imagecrs.java

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

JAVA
53
字号
/*$************************************************************************************************ ** ** $Id: ImageCRS.java,v 1.1.2.1 2004/05/18 11:20:27 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/referencing/crs/ImageCRS.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.CartesianCS;import org.opengis.referencing.cs.ObliqueCartesianCS;import org.opengis.referencing.datum.ImageDatum; /** * An engineering coordinate reference system applied to locations in images. Image coordinate * reference systems are treated as a separate sub-type because a separate user community exists * for images with its own terms of reference. * * <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} * </TD></TR></TABLE> * * @UML abstract SC_ImageCRS * @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 ImageCRS extends CoordinateReferenceSystem {    /**     * Returns the cartesian coordinate system.     *     * @return The cartesian coordinate system.     * @UML association usesObliqueCartesianCS     * @UML association usesCartesianCS     *///  ObliqueCartesianCS getCoordinateSystem();             /**     * Returns the datum, which must be an image one.     *     * @return The datum.     * @UML association usesDatum     *///  ImageDatum getDatum();}

⌨️ 快捷键说明

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