engineeringcrs.java

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

JAVA
51
字号
/*$************************************************************************************************ ** ** $Id: EngineeringCRS.java,v 1.1 2004/05/06 15:51:50 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/referencing/crs/EngineeringCRS.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.referencing.crs;// OpenGIS direct dependenciesimport org.opengis.referencing.datum.EngineeringDatum; /** * A contextually local coordinate reference system. It can be divided into two broad categories: * <ul> *   <li>earth-fixed systems applied to engineering activities on or near the surface of the *       earth;</li> *   <li>CRSs on moving platforms such as road vehicles, vessels, aircraft, or spacecraft.</li> * </ul> * * <TABLE CELLPADDING='6' BORDER='1'> * <TR BGCOLOR="#EEEEFF"><TH NOWRAP>Used with CS type(s)</TH></TR> * <TR><TD> *   {@link org.opengis.referencing.cs.CartesianCS        Cartesian}, *   {@link org.opengis.referencing.cs.ObliqueCartesianCS ObliqueCartesian}, *   {@link org.opengis.referencing.cs.EllipsoidalCS      Ellipsoidal}, *   {@link org.opengis.referencing.cs.SphericalCS        Spherical}, *   {@link org.opengis.referencing.cs.CylindricalCS      Cylindrical}, *   {@link org.opengis.referencing.cs.PolarCS            Polar}, *   {@link org.opengis.referencing.cs.VerticalCS         Vertical}, *   {@link org.opengis.referencing.cs.LinearCS           Linear} * </TD></TR></TABLE> * * @UML abstract SC_EngineeringCRS * @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> */public interface EngineeringCRS extends CoordinateReferenceSystem {    /**     * Returns the datum, which must be an engineering one.     *     * @return The datum.     * @UML association usesDatum     *///  EngineeringDatum getDatum();}

⌨️ 快捷键说明

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