compoundcrs.java
来自「GEo 地理操作源代码」· Java 代码 · 共 34 行
JAVA
34 行
/*$************************************************************************************************ ** ** $Id: CompoundCRS.java,v 1.1 2004/05/06 15:51:50 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/referencing/crs/CompoundCRS.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.referencing.crs;/** * A coordinate reference system describing the position of points through two or more * independent coordinate reference systems. Thus it is associated with two or more * {@linkplain org.opengis.referencing.cs.CoordinateSystem Coordinate Systems} and * {@linkplain org.opengis.referencing.datum.Datum Datums} by defining the compound CRS * as an ordered set of two or more instances of {@link CoordinateReferenceSystem}. * * @UML abstract SC_CompoundCRS * @author ISO 19111 * @author <A HREF="http://www.opengis.org">OpenGIS® consortium</A> * @version <A HREF="http://www.opengis.org/docs/03-073r1.zip">Abstract specification 2.0</A> */public interface CompoundCRS extends CoordinateReferenceSystem { /** * The ordered list of coordinate reference systems. * * @return The coordinate reference systems. * @UML association includesCRS */ CoordinateReferenceSystem[] getCoordinateReferenceSystems();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?