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

📄 operationmethod.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/*$************************************************************************************************ ** ** $Id: OperationMethod.java,v 1.1 2004/05/06 15:51:51 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/referencing/operation/OperationMethod.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.referencing.operation;// J2SE direct dependenciesimport java.util.Locale;// OpenGIS direct dependenciesimport org.opengis.referencing.Info;import org.opengis.parameter.GeneralOperationParameter;/** * Definition of an algorithm used to perform a coordinate operation. Most operation * methods use a number of operation parameters, although some coordinate conversions * use none. Each coordinate operation using the method assigns values to these parameters. *   * @UML abstract CC_OperationMethod * @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> * * @see Operation */public interface OperationMethod extends Info {    /**     * Formula(s) or procedure used by this operation method. This may be a reference to a     * publication. Note that the operation method may not be analytic, in which case this     * attribute references or contains the procedure, not an analytic formula.     *     * @param  locale The desired locale for the formula to be returned, or <code>null</code>     *         for a formula in some default locale (may or may not be the     *         {@linkplain Locale#getDefault() system default}).     * @return The coordinate operation method formula in the given locale. If no formula     *         is available in the given locale, then some default locale is used.     * @UML mandatory formula     */    String getFormula(Locale locale);    /**     * Number of dimensions in the source CRS of this operation method.     *     * @return The dimension of source CRS.     * @UML mandatory sourceDimensions     */    int getSourceDimensions();    /**     * Number of dimensions in the target CRS of this operation method.     *     * @return The dimension of target CRS.     * @UML mandatory targetDimensions     */    int getTargetDimensions();    /**     * The set of parameters.     *     * @return The parameters, or an empty array if none.     * @UML association usesParameter     */    GeneralOperationParameter[] getParameters();}

⌨️ 快捷键说明

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