Package org.opengis.referencing.crs
Interface DerivedCRS
-
- All Superinterfaces:
CoordinateReferenceSystem,GeneralDerivedCRS,IdentifiedObject,ReferenceSystem,SingleCRS
@UML(identifier="SC_DerivedCRS", specification=ISO_19111) public interface DerivedCRS extends GeneralDerivedCRS
A coordinate reference system that is defined by its coordinate conversion from another CRS but is not a projected CRS. This category includes coordinate reference systems derived from a projected CRS.A
DerivedCRSinstance may also implement one of the interfaces listed below, provided that the conditions in the right column are meet:Derived CRS types Type Conditions GeodeticCRSBase CRS is also a GeodeticCRS.VerticalCRSBase CRS is also a VerticalCRS.TemporalCRSBase CRS is also a TemporalCRS.EngineeringCRSBase CRS is a GeodeticCRS,ProjectedCRSorEngineeringCRS.- Since:
- 1.0
- See Also:
CRSAuthorityFactory.createDerivedCRS(String),CRSFactory.createDerivedCRS(Map, CoordinateReferenceSystem, Conversion, CoordinateSystem)
Departure from OGC/ISO specification:
ISO 19111 defines aSC_DerivedCRSTypecode list with the following values:geodetic,vertical,engineeringandimage. But ISO 19162 takes a slightly different approach without such code list. Instead, ISO 19162 writes the derived CRS using the WKT keyword of the corresponding CRS type (“GeodCRS”,“VertCRS”,“TimeCRS”or“EngCRS”). GeoAPI follows a similar path by not providing aDerivedCRSTypecode list. Instead, we recommend to implement the corresponding interface as documented in the above table. Then, Java expressions like(baseCRS instanceof FooCRS)provides the same capability than the code list with more flexibility. For example it allows to use a derived CRS of type “vertical” with API expecting an instance ofVerticalCRS.
-
-
Field Summary
-
Fields inherited from interface IdentifiedObject
ALIAS_KEY, IDENTIFIERS_KEY, NAME_KEY, REMARKS_KEY
-
Fields inherited from interface ReferenceSystem
DOMAIN_OF_VALIDITY_KEY, SCOPE_KEY
-
-
Method Summary
-
Methods inherited from interface GeneralDerivedCRS
getBaseCRS, getConversionFromBase
-
Methods inherited from interface IdentifiedObject
getAlias, getIdentifiers, getName, getRemarks, toWKT
-
Methods inherited from interface ReferenceSystem
getDomainOfValidity, getScope
-
Methods inherited from interface SingleCRS
getCoordinateSystem, getDatum
-
-