⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 verticalcrs.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/*$************************************************************************************************ ** ** $Id: VerticalCRS.java,v 1.1 2004/05/06 15:51:50 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/referencing/crs/VerticalCRS.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.cs.VerticalCS;    import org.opengis.referencing.datum.VerticalDatum;/** * A 1D coordinate reference system used for recording heights or depths. Vertical CRSs make use * of the direction of gravity to define the concept of height or depth, but the relationship with * gravity may not be straightforward. By implication, ellipsoidal heights (h) cannot be captured * in a vertical coordinate reference system. Ellipsoidal heights cannot exist independently, but * only as inseparable part of a 3D coordinate tuple defined in a geographic 3D coordinate * reference system. * * <TABLE CELLPADDING='6' BORDER='1'> * <TR BGCOLOR="#EEEEFF"><TH NOWRAP>Used with CS type(s)</TH></TR> * <TR><TD> *   {@link org.opengis.referencing.cs.VerticalCS Vertical} * </TD></TR></TABLE> * * @UML abstract SC_VerticalCRS * @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 VerticalCRS extends CoordinateReferenceSystem {    /**     * Returns the coordinate system, which must be vertical.     *     * @return The coordinate system.     * @UML association usesCS     *///  VerticalCS getCoordinateSystem();    /**     * Returns the datum, which must be vertical.     *     * @return The datum.     * @UML association usesDatum     *///  VerticalDatum getDatum();}

⌨️ 快捷键说明

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