📄 geodesicstring.java
字号:
/*$************************************************************************************************ ** ** $Id: GeodesicString.java,v 1.7 2004/05/06 15:51:52 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/spatialschema/geometry/geometry/GeodesicString.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.spatialschema.geometry.geometry;// J2SE direct dependenciesimport java.util.List;// OpenGIS direct dependenciesimport org.opengis.spatialschema.geometry.primitive.CurveInterpolation;import org.opengis.spatialschema.geometry.primitive.CurveSegment;/** * Sequence of geodesic segments. The interface essentially combines a * <code>Sequence<{@link Geodesic}></code> into a single object, * with the obvious savings of storage space. * * @UML abstract GM_GeodesicString * @author ISO/DIS 19107 * @author <A HREF="http://www.opengis.org">OpenGIS® consortium</A> * @version 2.0 * * @see GeometryFactory#createGeodesicString */public interface GeodesicString extends CurveSegment { /** * Returns a sequence of positions between which this <code>GeodesicString</code> is interpolated * using geodesics from the geoid or {@linkplain org.opengis.referencing.datum.Ellipsoid ellipsoid} of the * {@linkplain org.opengis.referencing.crs.CoordinateReferenceSystem coordinate reference system} being used. * The organization of these points is identical to that in {@link LineString}. * * @return The control points. * @UML operation controlPoint */ public PointArray getControlPoints(); /** * The interpolation for a <code>GeodesicString</code> is * "{@linkplain CurveInterpolation#GEODESIC geodesic}". * * @return Always {@link CurveInterpolation#GEODESIC}. * @UML operation interpolation */ public CurveInterpolation getInterpolation(); /** * Decomposes a geodesic string into an equivalent sequence of geodesic segments. * * @return The equivalent sequence of geodesic segments. * @UML operation asGM_Geodesic */ public List asGeodesics();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -