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

📄 imagecrs.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/*$************************************************************************************************ ** ** $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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -