Interface Operation
-
- All Superinterfaces:
CoordinateOperation
,IdentifiedObject
,SingleOperation
- All Known Subinterfaces:
ConicProjection
,Conversion
,CylindricalProjection
,PlanarProjection
,Projection
,Transformation
- All Known Implementing Classes:
DefaultConicProjection
,DefaultConversion
,DefaultCylindricalProjection
,DefaultOperation
,DefaultPlanarProjection
,DefaultProjection
,DefaultTransformation
,DefiningConversion
public interface Operation extends SingleOperation
A parameterized mathematical operation on coordinates that transforms or converts coordinates to another coordinate reference system. This coordinate operation thus uses an operation method, usually with associated parameter values.- Since:
- GeoAPI 1.0
- Author:
- Martin Desruisseaux (IRD)
- See Also:
OperationMethod
-
-
Field Summary
-
Fields inherited from interface CoordinateOperation
COORDINATE_OPERATION_ACCURACY_KEY, DOMAIN_OF_VALIDITY_KEY, OPERATION_VERSION_KEY, SCOPE_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 OperationMethod
getMethod()
Returns the operation method.ParameterValueGroup
getParameterValues()
Returns the parameter values.-
Methods inherited from interface CoordinateOperation
getCoordinateOperationAccuracy, getDomainOfValidity, getMathTransform, getOperationVersion, getScope, getSourceCRS, getTargetCRS
-
Methods inherited from interface IdentifiedObject
getAlias, getIdentifiers, getName, getRemarks, toWKT
-
-
-
-
Method Detail
-
getMethod
OperationMethod getMethod()
Returns the operation method.- Returns:
- The operation method.
-
getParameterValues
ParameterValueGroup getParameterValues()
Returns the parameter values.- Returns:
- The parameter values.
-
-