| org.geotools.metadata.iso.MetadataEntity org.geotools.metadata.iso.extent.ExtentImpl
ExtentImpl | public class ExtentImpl extends MetadataEntity implements Extent(Code) | | Information about spatial, vertical, and temporal extent.
This interface has four optional attributes
(
,
, and
) and an element called
.
At least one of the four shall be used.
version: $Id: ExtentImpl.java 25189 2007-04-17 13:23:47Z desruisseaux $ author: Martin Desruisseaux author: Touraïvane since: 2.1 |
Field Summary | |
final public static Extent | WORLD A geographic extent ranging from 180°W to 180°E and 90°S to 90°N. |
Constructor Summary | |
public | ExtentImpl() Constructs an initially empty extent. | public | ExtentImpl(Extent source) Constructs a metadata entity initialized with the values from the specified metadata. |
WORLD | final public static Extent WORLD(Code) | | A geographic extent ranging from 180°W to 180°E and 90°S to 90°N.
since: 2.2 |
ExtentImpl | public ExtentImpl()(Code) | | Constructs an initially empty extent.
|
ExtentImpl | public ExtentImpl(Extent source)(Code) | | Constructs a metadata entity initialized with the values from the specified metadata.
since: 2.4 |
getDescription | public InternationalString getDescription()(Code) | | Returns the spatial and temporal extent for the referring object.
|
getGeographicBoundingBox | public static GeographicBoundingBox getGeographicBoundingBox(Extent extent)(Code) | | Convenience method returning a single geographic bounding box from the specified extent.
If no bounding box was found, then this method returns
null . If more than one box
is found, then boxes are
together.
since: 2.2 |
getGeographicElements | public synchronized Collection getGeographicElements()(Code) | | Provides geographic component of the extent of the referring object
|
getTemporalElements | public synchronized Collection getTemporalElements()(Code) | | Provides temporal component of the extent of the referring object
|
getVerticalElements | public synchronized Collection getVerticalElements()(Code) | | Provides vertical component of the extent of the referring object
|
setDescription | public synchronized void setDescription(InternationalString newValue)(Code) | | Set the spatial and temporal extent for the referring object.
|
setGeographicElements | public synchronized void setGeographicElements(Collection newValues)(Code) | | Set geographic component of the extent of the referring object
|
setTemporalElements | public synchronized void setTemporalElements(Collection newValues)(Code) | | Set temporal component of the extent of the referring object
|
setVerticalElements | public synchronized void setVerticalElements(Collection newValues)(Code) | | Set vertical component of the extent of the referring object
|
|
|