| org.geotools.metadata.iso.MetadataEntity org.geotools.metadata.iso.extent.VerticalExtentImpl
VerticalExtentImpl | public class VerticalExtentImpl extends MetadataEntity implements VerticalExtent(Code) | | Vertical domain of dataset.
version: $Id: VerticalExtentImpl.java 25385 2007-04-29 18:23:14Z desruisseaux $ author: Martin Desruisseaux author: Touraïvane since: 2.1 |
Constructor Summary | |
public | VerticalExtentImpl() Constructs an initially empty vertical extent. | public | VerticalExtentImpl(VerticalExtent source) Constructs a metadata entity initialized with the values from the specified metadata. | public | VerticalExtentImpl(Double minimumValue, Double maximumValue, VerticalCRS verticalCRS) Creates a vertical extent initialized to the specified values. | public | VerticalExtentImpl(double minimumValue, double maximumValue, Unit unit, VerticalDatum verticalDatum) Creates a vertical extent initialized to the specified values. |
Method Summary | |
public Double | getMaximumValue() Returns the highest vertical extent contained in the dataset. | public Double | getMinimumValue() Returns the lowest vertical extent contained in the dataset. | public Unit | getUnit() Returns the vertical units used for vertical extent information. | public VerticalCRS | getVerticalCRS() Provides information about the vertical coordinate reference system to
which the maximum and minimum elevation values are measured. | public VerticalDatum | getVerticalDatum() Provides information about the origin from which the
maximum and minimum elevation values are measured. | public synchronized void | setMaximumValue(Double newValue) Set the highest vertical extent contained in the dataset. | public synchronized void | setMinimumValue(Double newValue) Set the lowest vertical extent contained in the dataset. | public void | setUnit(Unit newValue) Set the vertical units used for vertical extent information. | public synchronized void | setVerticalCRS(VerticalCRS newValue) Set the information about the vertical coordinate reference system to
which the maximum and minimum elevation values are measured. | public void | setVerticalDatum(VerticalDatum newValue) Set information about the origin from which the
maximum and minimum elevation values are measured. |
VerticalExtentImpl | public VerticalExtentImpl()(Code) | | Constructs an initially empty vertical extent.
|
VerticalExtentImpl | public VerticalExtentImpl(VerticalExtent source)(Code) | | Constructs a metadata entity initialized with the values from the specified metadata.
since: 2.4 |
VerticalExtentImpl | public VerticalExtentImpl(Double minimumValue, Double maximumValue, VerticalCRS verticalCRS)(Code) | | Creates a vertical extent initialized to the specified values.
since: 2.4 |
getMaximumValue | public Double getMaximumValue()(Code) | | Returns the highest vertical extent contained in the dataset.
|
getMinimumValue | public Double getMinimumValue()(Code) | | Returns the lowest vertical extent contained in the dataset.
|
getUnit | public Unit getUnit()(Code) | | Returns the vertical units used for vertical extent information.
Examples: metres, feet, millimetres, hectopascals.
This convenience method get the unit from the
,
if any.
|
getVerticalCRS | public VerticalCRS getVerticalCRS()(Code) | | 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.
since: 2.4 |
getVerticalDatum | public VerticalDatum getVerticalDatum()(Code) | | Provides information about the origin from which the
maximum and minimum elevation values are measured.
VerticalExtentImpl.getVerticalCRS |
setMaximumValue | public synchronized void setMaximumValue(Double newValue)(Code) | | Set the highest vertical extent contained in the dataset.
|
setMinimumValue | public synchronized void setMinimumValue(Double newValue)(Code) | | Set the lowest vertical extent contained in the dataset.
|
setVerticalCRS | public synchronized void setVerticalCRS(VerticalCRS newValue)(Code) | | Set the information about the vertical coordinate reference system to
which the maximum and minimum elevation values are measured.
since: 2.4 |
setVerticalDatum | public void setVerticalDatum(VerticalDatum newValue)(Code) | | Set information about the origin from which the
maximum and minimum elevation values are measured.
VerticalExtentImpl.setVerticalCRS |
|
|