coordinatesystem.java

来自「GEo 地理操作源代码」· Java 代码 · 共 52 行

JAVA
52
字号
/*$************************************************************************************************ ** ** $Id: CoordinateSystem.java,v 1.1 2004/05/06 15:51:50 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/referencing/cs/CoordinateSystem.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.referencing.cs;// OpenGIS direct dependenciesimport org.opengis.referencing.Info;/** * The set of coordinate system axes that spans a given coordinate space. A coordinate system (CS) * is derived from a set of (mathematical) rules for specifying how coordinates in a given space * are to be assigned to points. The coordinate values in a coordinate tuple shall be recorded in * the order in which the coordinate system axes associations are recorded, whenever those * coordinates use a coordinate reference system that uses this coordinate system. * * @UML abstract CS_CoordinateSystem * @author ISO 19111 * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> * @version <A HREF="http://www.opengis.org/docs/03-073r1.zip">Abstract specification 2.0</A> * * @see org.opengis.referencing.cs.CoordinateSystemAxis * @see javax.units.Unit * @see org.opengis.referencing.datum.Datum * @see org.opengis.referencing.crs.CoordinateReferenceSystem */public interface CoordinateSystem extends Info {    /**     * Returns the dimension of the coordinate system.     *     * @return The dimension of the coordinate system.     */    int getDimension();    /**     * Returns the axis for this coordinate system at the specified dimension.     * Each coordinate system must have at least one axis.     *     * @param  dimension The zero based index of axis.     * @return The axis at the specified dimension.     * @throws IndexOutOfBoundsException if <code>dimension</code> is out of bounds.     * @UML association usesAxis     */    CoordinateSystemAxis getAxis(int dimension) throws IndexOutOfBoundsException;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?