Package org.geotools.api.referencing
Interface ReferenceSystem
-
- All Superinterfaces:
IdentifiedObject
- All Known Subinterfaces:
Calendar,Clock,CompoundCRS,CoordinateReferenceSystem,DerivedCRS,EngineeringCRS,GeneralDerivedCRS,GeocentricCRS,GeodeticCRS,GeographicCRS,ImageCRS,OrdinalReferenceSystem,ProjectedCRS,SingleCRS,SpatialReferenceSystemUsingGeographicIdentifier,TemporalCoordinateSystem,TemporalCRS,TemporalReferenceSystem,VerticalCRS
- All Known Implementing Classes:
AbstractCRS,AbstractDerivedCRS,AbstractReferenceSystem,AbstractSingleCRS,DefaultCalendar,DefaultClock,DefaultCompoundCRS,DefaultDerivedCRS,DefaultEngineeringCRS,DefaultGeocentricCRS,DefaultGeographicCRS,DefaultImageCRS,DefaultOrdinalReferenceSystem,DefaultProjectedCRS,DefaultTemporalCoordinateSystem,DefaultTemporalCRS,DefaultTemporalReferenceSystem,DefaultVerticalCRS
public interface ReferenceSystem extends IdentifiedObject
Description of a spatial and temporal reference system used by a dataset.- Since:
- GeoAPI 1.0
- Author:
- Martin Desruisseaux (IRD)
- See Also:
CoordinateReferenceSystem
-
-
Field Summary
Fields Modifier and Type Field Description static StringDOMAIN_OF_VALIDITY_KEYstatic StringSCOPE_KEY-
Fields inherited from interface IdentifiedObject
ALIAS_KEY, IDENTIFIERS_KEY, NAME_KEY, REMARKS_KEY
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExtentgetDomainOfValidity()Area or region or timeframe in which this (coordinate) reference system is valid.InternationalStringgetScope()Description of domain of usage, or limitations of usage, for which this (coordinate) reference system object is valid.-
Methods inherited from interface IdentifiedObject
getAlias, getIdentifiers, getName, getRemarks, toWKT
-
-
-
-
Field Detail
-
DOMAIN_OF_VALIDITY_KEY
static final String DOMAIN_OF_VALIDITY_KEY
Key for the"domainOfValidity"property to be given to the object factorycreateFoo(…)methods. This is used for setting the value to be returned bygetDomainOfValidity().- Since:
- GeoAPI 2.1
- See Also:
getDomainOfValidity(), Constant Field Values
-
SCOPE_KEY
static final String SCOPE_KEY
Key for the"scope"property to be given to the object factorycreateFoo(…)methods. This is used for setting the value to be returned bygetScope().- See Also:
getScope(), Constant Field Values
-
-
Method Detail
-
getDomainOfValidity
Extent getDomainOfValidity()
Area or region or timeframe in which this (coordinate) reference system is valid.- Returns:
- The reference system valid domain, or
nullif not available. - Since:
- GeoAPI 2.1
-
getScope
InternationalString getScope()
Description of domain of usage, or limitations of usage, for which this (coordinate) reference system object is valid.- Returns:
- The domain of usage, or
nullif none.
-
-