Uses of Interface
org.geotools.api.referencing.operation.Operation
-
Packages that use Operation Package Description org.geotools.api.referencing.operation Coordinate operations (relationship between any two coordinate reference systems).org.geotools.referencing.operation Coordinate operation implementation. -
-
Uses of Operation in org.geotools.api.referencing.operation
Subinterfaces of Operation in org.geotools.api.referencing.operation Modifier and Type Interface Description interface
ConicProjection
Base interface for conical map projections.interface
Conversion
An operation on coordinates that does not include any change of Datum.interface
CylindricalProjection
Base interface for cylindrical map projections.interface
PlanarProjection
Base interface for for azimuthal (or planar) map projections.interface
Projection
A conversion transforming (longitude,latitude) coordinates to cartesian coordinates (x,y).interface
Transformation
An operation on coordinates that usually includes a change of Datum.Methods in org.geotools.api.referencing.operation that return Operation Modifier and Type Method Description Operation
PassThroughOperation. getOperation()
Returns the operation to apply on the subset of a coordinate tuple.Method parameters in org.geotools.api.referencing.operation with type arguments of type Operation Modifier and Type Method Description Set<OperationMethod>
MathTransformFactory. getAvailableMethods(Class<? extends Operation> type)
Returns a set of available methods for math transforms. -
Uses of Operation in org.geotools.referencing.operation
Classes in org.geotools.referencing.operation that implement Operation Modifier and Type Class Description class
DefaultConicProjection
Base class for conical map projections.class
DefaultConversion
An operation on coordinates that does not include any change of Datum.class
DefaultCylindricalProjection
Base class for cylindrical map projections.class
DefaultOperation
A parameterized mathematical operation on coordinates that transforms or converts coordinates to another coordinate reference system.class
DefaultPlanarProjection
Base class for for azimuthal (or planar) map projections.class
DefaultProjection
A conversion transforming (longitude,latitude) coordinates to cartesian coordinates (x,y).class
DefaultTransformation
An operation on coordinates that usually includes a change of Datum.class
DefiningConversion
A conversion used for the definition of a derived CRS (including projections).Fields in org.geotools.referencing.operation declared as Operation Modifier and Type Field Description protected Operation
DefaultPassThroughOperation. operation
The operation to apply on the subset of a coordinate tuple.Methods in org.geotools.referencing.operation that return Operation Modifier and Type Method Description Operation
DefaultPassThroughOperation. getOperation()
Returns the operation to apply on the subset of a coordinate tuple.Methods in org.geotools.referencing.operation that return types with arguments of type Operation Modifier and Type Method Description Class<? extends Operation>
MathTransformProvider. getOperationType()
Returns the operation type.Method parameters in org.geotools.referencing.operation with type arguments of type Operation Modifier and Type Method Description Set<OperationMethod>
DefaultMathTransformFactory. getAvailableMethods(Class<? extends Operation> type)
Returns a set of available methods for math transforms.Constructors in org.geotools.referencing.operation with parameters of type Operation Constructor Description DefaultPassThroughOperation(Map<String,?> properties, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, Operation operation, int firstAffectedOrdinate, int numTrailingOrdinates)
Constructs a single operation from a set of properties.DefaultPassThroughOperation(Map<String,?> properties, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, Operation operation, MathTransform transform)
Constructs a single operation from a set of properties and the given transform.
-