📄 verticalextent.java
字号:
/*$************************************************************************************************ ** ** $Id: VerticalExtent.java,v 1.5 2004/05/06 15:51:50 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/metadata/extent/VerticalExtent.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.metadata.extent;// J2SE dextensionsimport javax.units.Unit;// OpenGIS direct dependenciesimport org.opengis.referencing.datum.VerticalDatum;/** * Vertical domain of dataset. * * @UML abstract EX_VerticalExtent * @author ISO 19115 * @author <A HREF="http://www.opengis.org">OpenGIS® consortium</A> * @version 5.0 */public interface VerticalExtent { /** * Returns the lowest vertical extent contained in the dataset. * * @UML mandatory minimumValue */ public double getMinimumValue(); /** * Returns the highest vertical extent contained in the dataset. * * @UML mandatory maximumValue */ public double getMaximumValue(); /** * Returns the vertical units used for vertical extent information. * Examples: metres, feet, millimetres, hectopascals. * * @UML mandatory unitOfMeasure */ public Unit getUnit(); /** * Provides information about the origin from which the * maximum and minimum elevation values are measured. * * @UML mandatory verticalDatum */ public VerticalDatum getVerticalDatum();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -