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

📄 coordinateoperationauthorityfactory.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/*$************************************************************************************************ ** ** $Id: CoordinateOperationAuthorityFactory.java,v 1.1 2004/05/06 15:51:51 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/referencing/operation/CoordinateOperationAuthorityFactory.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.referencing.operation;// OpenGIS direct dependencies and extensionsimport org.opengis.referencing.AuthorityFactory;import org.opengis.referencing.FactoryException;import org.opengis.referencing.NoSuchAuthorityCodeException;  // For javadocimport org.opengis.referencing.crs.CoordinateReferenceSystem;/** * Creates coordinate transformation objects from codes. * The codes are maintained by an external authority. * A commonly used authority is EPSG, which is also used * in the GeoTIFF standard. * * @UML abstract CT_CoordinateTransformationAuthorityFactory * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> * @version <A HREF="http://www.opengis.org/docs/01-009.pdf">Implementation specification 1.0</A> */public interface CoordinateOperationAuthorityFactory extends AuthorityFactory {    /**     * Creates an operation from a single operation code.      * The "Authority" and "Code" values of the created object will be set     * to the authority of this object, and the code specified by the client,     * respectively. The other metadata values may or may not be set.     *     * @param code Coded value for transformation.     *     * @UML operation createFromTransformationCode in 1.0 specification     * @throws NoSuchAuthorityCodeException if the specified <code>code</code> was not found.     * @throws FactoryException if the object creation failed for some other reason.     */    CoordinateOperation createCoordinateOperation(String code) throws FactoryException;    /**     * Creates an operation from coordinate reference system codes.     *     * @param  sourceCode   Coded value of source coordinate reference system.     * @param  targetCode   Coded value of target coordinate reference system.     *     * @UML operation createFromCoordinateSystemCodes in 1.0 specification     * @throws NoSuchAuthorityCodeException if a specified code was not found.     * @throws FactoryException if the object creation failed for some other reason.     */    CoordinateOperation createFromCoordinateReferenceSystemCodes(String sourceCode, String targetCode) throws FactoryException;}

⌨️ 快捷键说明

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