|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use OperationMethod | |
---|---|
org.geotools.parameter | Parameter implementation. |
org.geotools.referencing.crs | Coordinate reference systems implementation. |
org.geotools.referencing.factory | Base classes for factories and authority factories. |
org.geotools.referencing.factory.epsg | Authority factories for the EPSG database. |
org.geotools.referencing.operation | Coordinate operation implementation. |
org.geotools.referencing.operation.projection | Basic implementations of map projections. |
org.geotools.referencing.operation.transform | Basic implementations of math transforms. |
org.opengis.referencing.operation | Coordinate operations (relationship between any two coordinate reference systems). |
Uses of OperationMethod in org.geotools.parameter |
---|
Methods in org.geotools.parameter with parameters of type OperationMethod | |
---|---|
void |
ParameterWriter.format(OperationMethod operation)
Prints the elements of an operation to the output stream. |
static void |
ParameterWriter.print(OperationMethod operation)
Prints the elements of an operation to the default output stream. |
Uses of OperationMethod in org.geotools.referencing.crs |
---|
Constructors in org.geotools.referencing.crs with parameters of type OperationMethod | |
---|---|
DefaultDerivedCRS(Map<String,?> properties,
OperationMethod method,
CoordinateReferenceSystem base,
MathTransform baseToDerived,
CoordinateSystem derivedCS)
Deprecated. Create explicitly a DefiningConversion instead. |
|
DefaultProjectedCRS(Map<String,?> properties,
OperationMethod method,
GeographicCRS base,
MathTransform baseToDerived,
CartesianCS derivedCS)
Deprecated. Create explicitly a DefiningConversion instead. |
Uses of OperationMethod in org.geotools.referencing.factory |
---|
Methods in org.geotools.referencing.factory that return OperationMethod | |
---|---|
OperationMethod |
BufferedAuthorityFactory.createOperationMethod(String code)
Returns an operation method from a code. |
OperationMethod |
AuthorityFactoryAdapter.createOperationMethod(String code)
Creates an operation method from a code. |
OperationMethod |
ThreadedAuthorityFactory.createOperationMethod(String code)
Returns an operation method from a code. |
OperationMethod |
FallbackAuthorityFactory.createOperationMethod(String code)
Creates an operation method from a code. |
OperationMethod |
AbstractAuthorityFactory.createOperationMethod(String code)
Creates an operation method from a code. |
OperationMethod |
ReferencingFactoryContainer.getLastUsedMethod()
Deprecated. Moved to the MathTransformFactory interface. |
OperationMethod |
ReferencingFactoryContainer.getOperationMethod(String name)
Deprecated. Use DefaultMathTransformFactory.getOperationMethod(java.lang.String) . This method
was inefficient for other implementations. |
Uses of OperationMethod in org.geotools.referencing.factory.epsg |
---|
Methods in org.geotools.referencing.factory.epsg that return OperationMethod | |
---|---|
OperationMethod |
DirectEpsgFactory.createOperationMethod(String code)
Returns an operation method from a code. |
OperationMethod |
AbstractEpsgFactory.generateOperationMethod(String code)
Returns an operation method from a code. |
Uses of OperationMethod in org.geotools.referencing.operation |
---|
Classes in org.geotools.referencing.operation that implement OperationMethod | |
---|---|
class |
DefaultOperationMethod
Definition of an algorithm used to perform a coordinate operation. |
class |
MathTransformProvider
An operation method capable to creates a math transform from set of parameter values. |
Fields in org.geotools.referencing.operation declared as OperationMethod | |
---|---|
OperationMethod |
MathTransformProvider.Delegate.method
The provider for the transform. |
protected OperationMethod |
DefaultOperation.method
The operation method. |
Methods in org.geotools.referencing.operation that return OperationMethod | |
---|---|
OperationMethod |
DefaultMathTransformFactory.getLastMethodUsed()
Returns the operation method used for the latest call to createParameterizedTransform
in the currently running thread. |
OperationMethod |
DefaultOperation.getMethod()
Returns the operation method. |
OperationMethod |
DefaultMathTransformFactory.getOperationMethod(String name)
Returns the operation method for the specified name. |
Methods in org.geotools.referencing.operation that return types with arguments of type OperationMethod | |
---|---|
Set<OperationMethod> |
DefaultMathTransformFactory.getAvailableMethods(Class<? extends Operation> type)
Returns a set of available methods for math transforms. |
Methods in org.geotools.referencing.operation with parameters of type OperationMethod | |
---|---|
static void |
DefaultOperationMethod.checkDimensions(OperationMethod method,
MathTransform transform)
Checks if an operation method and a math transform have a compatible number of source and target dimensions. |
static CoordinateOperation |
DefaultOperation.create(Map<String,?> properties,
CoordinateReferenceSystem sourceCRS,
CoordinateReferenceSystem targetCRS,
MathTransform transform,
OperationMethod method,
Class<? extends CoordinateOperation> type)
Returns a coordinate operation of the specified class. |
Conversion |
AbstractCoordinateOperationFactory.createDefiningConversion(Map<String,?> properties,
OperationMethod method,
ParameterValueGroup parameters)
Constructs a defining conversion from a set of properties. |
protected CoordinateOperation |
AbstractCoordinateOperationFactory.createFromMathTransform(Map<String,?> properties,
CoordinateReferenceSystem sourceCRS,
CoordinateReferenceSystem targetCRS,
MathTransform transform,
OperationMethod method,
Class<? extends CoordinateOperation> type)
Creates a coordinate operation from a math transform. |
CoordinateOperation |
DefaultCoordinateOperationFactory.createOperation(CoordinateReferenceSystem sourceCRS,
CoordinateReferenceSystem targetCRS,
OperationMethod method)
Deprecated. Current implementation ignore the method argument. |
CoordinateOperation |
BufferedCoordinateOperationFactory.createOperation(CoordinateReferenceSystem sourceCRS,
CoordinateReferenceSystem targetCRS,
OperationMethod method)
Deprecated. Will be removed. |
Constructors in org.geotools.referencing.operation with parameters of type OperationMethod | |
---|---|
DefaultConicProjection(Map<String,?> properties,
CoordinateReferenceSystem sourceCRS,
CoordinateReferenceSystem targetCRS,
MathTransform transform,
OperationMethod method)
Constructs a projection from a set of properties. |
|
DefaultConversion(Map<String,?> properties,
CoordinateReferenceSystem sourceCRS,
CoordinateReferenceSystem targetCRS,
MathTransform transform,
OperationMethod method)
Constructs a conversion from a set of properties. |
|
DefaultCylindricalProjection(Map<String,?> properties,
CoordinateReferenceSystem sourceCRS,
CoordinateReferenceSystem targetCRS,
MathTransform transform,
OperationMethod method)
Constructs a projection from a set of properties. |
|
DefaultOperation(Map<String,?> properties,
CoordinateReferenceSystem sourceCRS,
CoordinateReferenceSystem targetCRS,
MathTransform transform,
OperationMethod method)
Constructs an operation from a set of properties. |
|
DefaultOperationMethod(OperationMethod method)
Constructs a new operation method with the same values than the specified one. |
|
DefaultOperationMethod(OperationMethod method,
int sourceDimensions,
int targetDimensions)
Constructs a new operation method with the same values than the specified one except the dimensions. |
|
DefaultPlanarProjection(Map<String,?> properties,
CoordinateReferenceSystem sourceCRS,
CoordinateReferenceSystem targetCRS,
MathTransform transform,
OperationMethod method)
Constructs a projection from a set of properties. |
|
DefaultProjection(Map<String,?> properties,
CoordinateReferenceSystem sourceCRS,
CoordinateReferenceSystem targetCRS,
MathTransform transform,
OperationMethod method)
Constructs a projection from a set of properties. |
|
DefaultTransformation(Map<String,?> properties,
CoordinateReferenceSystem sourceCRS,
CoordinateReferenceSystem targetCRS,
MathTransform transform,
OperationMethod method)
Constructs a transformation from a set of properties. |
|
DefiningConversion(Map<String,?> properties,
OperationMethod method,
MathTransform transform)
Constructs a conversion from a math transform. |
|
DefiningConversion(Map<String,?> properties,
OperationMethod method,
ParameterValueGroup parameters)
Constructs a conversion from a set of parameters. |
|
MathTransformProvider.Delegate(MathTransform transform,
OperationMethod method)
Encapsulates the math transform created by the specified provider. |
Uses of OperationMethod in org.geotools.referencing.operation.projection |
---|
Uses of OperationMethod in org.geotools.referencing.operation.transform |
---|
Uses of OperationMethod in org.opengis.referencing.operation |
---|
Methods in org.opengis.referencing.operation that return OperationMethod | |
---|---|
OperationMethod |
MathTransformFactory.getLastMethodUsed()
Returns the operation method used for the latest call to createParameterizedTransform ,
or null if not applicable. |
OperationMethod |
Operation.getMethod()
Returns the operation method. |
Methods in org.opengis.referencing.operation that return types with arguments of type OperationMethod | |
---|---|
Set<OperationMethod> |
MathTransformFactory.getAvailableMethods(Class<? extends Operation> type)
Returns a set of available methods for math transforms. |
Methods in org.opengis.referencing.operation with parameters of type OperationMethod | |
---|---|
Conversion |
CoordinateOperationFactory.createDefiningConversion(Map<String,?> properties,
OperationMethod method,
ParameterValueGroup parameters)
Constructs a defining conversion from a set of properties. |
CoordinateOperation |
CoordinateOperationFactory.createOperation(CoordinateReferenceSystem sourceCRS,
CoordinateReferenceSystem targetCRS,
OperationMethod method)
Returns an operation using a particular method for conversion or transformation between two coordinate reference systems. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |