org.opengis.referencing.crs
Interface CRSAuthorityFactory
-
- All Superinterfaces:
- AuthorityFactory, Factory
@UML(identifier="CS_CoordinateSystemAuthorityFactory", specification=OGC_01009) public interface CRSAuthorityFactory extends AuthorityFactory
Creates coordinate reference systems using authority codes. External authorities are used to manage definitions of objects used in this interface. The definitions of these objects are referenced using code strings. A commonly used authority is EPSG, which is also used in the GeoTIFF standard.- Since:
- GeoAPI 1.0
- See Also:
CSAuthorityFactory,DatumAuthorityFactory
-
-
Method Summary
-
Methods inherited from interface org.opengis.referencing.AuthorityFactory
createObject, getAuthority, getAuthorityCodes, getDescriptionText
-
-
-
-
Method Detail
-
createCoordinateReferenceSystem
@UML(identifier="createHorizontalCoordinateSystem", specification=OGC_01009) CoordinateReferenceSystem createCoordinateReferenceSystem(java.lang.String code) throws FactoryException
Returns an arbitrary coordinate reference system from a code. If the coordinate reference system type is know at compile time, it is recommended to invoke the most precise method instead of this one (for examplecreateGeographicCRS(code)instead ofcreateCoordinateReferenceSystem(code)if the caller know he is asking for a geographic coordinate reference system).- Parameters:
code- Value allocated by authority.- Throws:
NoSuchAuthorityCodeException- if the specifiedcodewas not found.FactoryException- if the object creation failed for some other reason.- See Also:
createGeographicCRS(java.lang.String),createProjectedCRS(java.lang.String),createVerticalCRS(java.lang.String),createTemporalCRS(java.lang.String),createCompoundCRS(java.lang.String)
-
createCompoundCRS
@UML(identifier="createCompoundCoordinateSystem", specification=OGC_01009) CompoundCRS createCompoundCRS(java.lang.String code) throws FactoryException
Creates a 3D coordinate reference system from a code.- Parameters:
code- Value allocated by authority.- Throws:
NoSuchAuthorityCodeException- if the specifiedcodewas not found.FactoryException- if the object creation failed for some other reason.
-
createDerivedCRS
DerivedCRS createDerivedCRS(java.lang.String code) throws FactoryException
Creates a derived coordinate reference system from a code.- Parameters:
code- Value allocated by authority.- Throws:
NoSuchAuthorityCodeException- if the specifiedcodewas not found.FactoryException- if the object creation failed for some other reason.
-
createEngineeringCRS
EngineeringCRS createEngineeringCRS(java.lang.String code) throws FactoryException
Create a engineering coordinate reference system from a code.- Parameters:
code- Value allocated by authority.- Throws:
NoSuchAuthorityCodeException- if the specifiedcodewas not found.FactoryException- if the object creation failed for some other reason.
-
createGeographicCRS
@UML(identifier="createGeographicCoordinateSystem", specification=OGC_01009) GeographicCRS createGeographicCRS(java.lang.String code) throws FactoryException
Returns a geographic coordinate reference system from a code.- Parameters:
code- Value allocated by authority.- Throws:
NoSuchAuthorityCodeException- if the specifiedcodewas not found.FactoryException- if the object creation failed for some other reason.- See Also:
DatumAuthorityFactory.createGeodeticDatum(java.lang.String)
-
createGeocentricCRS
GeocentricCRS createGeocentricCRS(java.lang.String code) throws FactoryException
Returns a geocentric coordinate reference system from a code.- Parameters:
code- Value allocated by authority.- Throws:
FactoryException- if the object creation failed.- See Also:
DatumAuthorityFactory.createGeodeticDatum(java.lang.String)
-
createImageCRS
ImageCRS createImageCRS(java.lang.String code) throws FactoryException
Create a image coordinate reference system from a code.- Parameters:
code- Value allocated by authority.- Throws:
NoSuchAuthorityCodeException- if the specifiedcodewas not found.FactoryException- if the object creation failed for some other reason.
-
createProjectedCRS
@UML(identifier="createProjectedCoordinateSystem", specification=OGC_01009) ProjectedCRS createProjectedCRS(java.lang.String code) throws FactoryException
Returns a projected coordinate reference system from a code.- Parameters:
code- Value allocated by authority.- Throws:
NoSuchAuthorityCodeException- if the specifiedcodewas not found.FactoryException- if the object creation failed for some other reason.- See Also:
DatumAuthorityFactory.createGeodeticDatum(java.lang.String)
-
createTemporalCRS
TemporalCRS createTemporalCRS(java.lang.String code) throws FactoryException
Create a temporal coordinate reference system from a code.- Parameters:
code- Value allocated by authority.- Throws:
NoSuchAuthorityCodeException- if the specifiedcodewas not found.FactoryException- if the object creation failed for some other reason.- See Also:
DatumAuthorityFactory.createTemporalDatum(java.lang.String)
-
createVerticalCRS
@UML(identifier="createVerticalCoordinateSystem", specification=OGC_01009) VerticalCRS createVerticalCRS(java.lang.String code) throws FactoryException
Create a vertical coordinate reference system from a code.- Parameters:
code- Value allocated by authority.- Throws:
NoSuchAuthorityCodeException- if the specifiedcodewas not found.FactoryException- if the object creation failed for some other reason.- See Also:
DatumAuthorityFactory.createVerticalDatum(java.lang.String)
-
-
DataMelt 3.0 © DataMelt by jWork.ORG