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

📄 concatenatedoperation.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/*$************************************************************************************************ ** ** $Id: ConcatenatedOperation.java,v 1.1 2004/05/06 15:51:51 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/referencing/operation/ConcatenatedOperation.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.referencing.operation;/** * An ordered sequence of two or more single coordinate operations. The sequence of operations is * constrained by the requirement that the source coordinate reference system of step * (<var>n</var>+1) must be the same as the target coordinate reference system of step * (<var>n</var>). The source coordinate reference system of the first step and the target * coordinate reference system of the last step are the source and target coordinate reference * system associated with the concatenated operation. Instead of a forward operation, an inverse * operation may be used for one or more of the operation steps mentioned above, if the inverse * operation is uniquely defined by the forward operation. *   * @UML abstract CC_ConcatenatedOperation * @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 ConcatenatedOperation extends CoordinateOperation {    /**     * Returns the sequence of operations.     *     * @return The sequence of operations.     * @UML association usesOperation     */    SingleOperation[] getOperations();}

⌨️ 快捷键说明

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