Module org.opengis.geoapi
Interface CoordinateOperationAuthorityFactory
- All Superinterfaces:
AuthorityFactory
,Factory
@UML(identifier="CT_CoordinateTransformationAuthorityFactory",
specification=OGC_01009)
public interface CoordinateOperationAuthorityFactory
extends AuthorityFactory
Creates coordinate transformation objects from codes. The codes are maintained by an external authority.
A commonly used authority is the EPSG geodetic registry.
- Since:
- 1.0
-
Method Summary
Modifier and TypeMethodDescriptionCreates an operation from a single operation code.createFromCoordinateReferenceSystemCodes
(String sourceCRS, String targetCRS) Creates operations from Coordinate Reference System codes.createOperationMethod
(String code) Creates an operation method from a single code.Methods inherited from interface org.opengis.referencing.AuthorityFactory
createObject, getAuthority, getAuthorityCodes, getDescriptionText, getDescriptionText
-
Method Details
-
createOperationMethod
Creates an operation method from a single code. The "authority" and "code" values of the created object will be set to the authority of this object, and the code specified by the client, respectively. The other metadata values may or may not be set.- Parameters:
code
- coded value for operation method.- Returns:
- the operation method for the given code.
- Throws:
NoSuchAuthorityCodeException
- if the specifiedcode
was not found.FactoryException
- if the object creation failed for some other reason.- See Also:
Extension to OGC/ISO standard
This method has been added because OGC 01-009 does not define a factory method for creating such object. -
createCoordinateOperation
@UML(identifier="createFromTransformationCode", specification=OGC_01009) CoordinateOperation createCoordinateOperation(String code) throws FactoryException Creates an operation from a single operation code. The "authority" and "code" values of the created object will be set to the authority of this object, and the code specified by the client, respectively. The other metadata values may or may not be set.- Parameters:
code
- coded value for coordinate operation.- Returns:
- the operation for the given code.
- Throws:
NoSuchAuthorityCodeException
- if the specifiedcode
was not found.FactoryException
- if the object creation failed for some other reason.
-
createFromCoordinateReferenceSystemCodes
@UML(identifier="createFromCoordinateSystemCodes", specification=OGC_01009) Set<CoordinateOperation> createFromCoordinateReferenceSystemCodes(String sourceCRS, String targetCRS) throws FactoryException Creates operations from Coordinate Reference System codes. This method returns only the operations declared by the authority, with preferred operations first. This method doesn't need to compute operations fromsource
totarget
CRS if no such operations were explicitly defined in the authority database. Computation of arbitrary operations can be performed byCoordinateOperationFactory.createOperation(sourceCRS, targetCRS)
instead.- Parameters:
sourceCRS
- coded value of source coordinate reference system.targetCRS
- coded value of target coordinate reference system.- Returns:
- the operations from
sourceCRS
totargetCRS
. - Throws:
NoSuchAuthorityCodeException
- if a specified code was not found.FactoryException
- if the object creation failed for some other reason.
-