Package org.geotools.api.metadata.extent
Interface VerticalExtent
-
public interface VerticalExtentVertical domain of dataset.- Since:
- GeoAPI 1.0
- Author:
- Martin Desruisseaux (IRD), Cory Horner (Refractions Research)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DoublegetMaximumValue()Returns the highest vertical extent contained in the dataset.DoublegetMinimumValue()Returns the lowest vertical extent contained in the dataset.VerticalCRSgetVerticalCRS()Provides information about the vertical coordinate reference system to which the maximum and minimum elevation values are measured.
-
-
-
Method Detail
-
getMinimumValue
Double getMinimumValue()
Returns the lowest vertical extent contained in the dataset.- Returns:
- Double mandatory for valid content, may be null for an invalid document.
-
getMaximumValue
Double getMaximumValue()
Returns the highest vertical extent contained in the dataset.- Returns:
- Double mandatory for valid content, may be null for an invalid document.
-
getVerticalCRS
VerticalCRS getVerticalCRS()
Provides information about the vertical coordinate reference system to which the maximum and minimum elevation values are measured. The CRS identification includes unit of measure.- Returns:
- The vertical CRS.
- Since:
- GeoAPI 2.1
-
-