Package org.opengis.referencing.datum
Interface TemporalDatum
-
- All Superinterfaces:
Datum
,IdentifiedObject
@UML(identifier="CD_TemporalDatum", specification=ISO_19111) public interface TemporalDatum extends Datum
A temporal datum defines the origin of a temporal coordinate reference system.- Since:
- 1.0
- Version:
- 3.0
-
-
Field Summary
-
Fields inherited from interface org.opengis.referencing.datum.Datum
ANCHOR_POINT_KEY, DOMAIN_OF_VALIDITY_KEY, REALIZATION_EPOCH_KEY, SCOPE_KEY
-
Fields inherited from interface org.opengis.referencing.IdentifiedObject
ALIAS_KEY, IDENTIFIERS_KEY, NAME_KEY, REMARKS_KEY
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InternationalString
getAnchorPoint()
This attribute is defined in theDatum
parent interface, but is not used by a temporal datum.java.util.Date
getOrigin()
The date and time origin of this temporal datum.java.util.Date
getRealizationEpoch()
This attribute is defined in theDatum
parent interface, but is not used by a temporal datum.-
Methods inherited from interface org.opengis.referencing.datum.Datum
getDomainOfValidity, getScope
-
Methods inherited from interface org.opengis.referencing.IdentifiedObject
getAlias, getIdentifiers, getName, getRemarks, toWKT
-
-
-
-
Method Detail
-
getOrigin
@UML(identifier="origin", obligation=MANDATORY, specification=ISO_19111) java.util.Date getOrigin()
The date and time origin of this temporal datum.Warning: The return type of this method may change in GeoAPI 3.1 release. It may be replaced by a type matching more closely either ISO 19108 (Temporal Schema) or ISO 19103.
- Returns:
- The date and time origin of this temporal datum.
-
getAnchorPoint
@UML(identifier="anchorPoint", obligation=FORBIDDEN, specification=ISO_19111) InternationalString getAnchorPoint()
This attribute is defined in theDatum
parent interface, but is not used by a temporal datum.- Specified by:
getAnchorPoint
in interfaceDatum
- Returns:
- Always
null
.
-
getRealizationEpoch
@UML(identifier="realizationEpoch", obligation=FORBIDDEN, specification=ISO_19111) java.util.Date getRealizationEpoch()
This attribute is defined in theDatum
parent interface, but is not used by a temporal datum.Warning: The return type of this method may change in GeoAPI 3.1 release. It may be replaced by a type matching more closely either ISO 19108 (Temporal Schema) or ISO 19103.
- Specified by:
getRealizationEpoch
in interfaceDatum
- Returns:
- Always
null
.
-
-