Uses of Interface
org.opengis.referencing.operation.MathTransform
-
Packages that use MathTransform Package Description org.opengis.referencing.operation Coordinate operations (relationship between any two coordinate reference systems).org.opengis.test Base classes for validators and test suites for all GeoAPI objects.org.opengis.test.referencing Validators and test suites for theorg.opengis.referencing
package. -
-
Uses of MathTransform in org.opengis.referencing.operation
Subinterfaces of MathTransform in org.opengis.referencing.operation Modifier and Type Interface Description interface
MathTransform1D
Transforms one-dimensional coordinate points.interface
MathTransform2D
Transforms two-dimensional coordinate points.Fields in org.opengis.referencing.operation declared as MathTransform Modifier and Type Field Description private MathTransform
TransformException. lastCompletedTransform
The last transform that either transformed successfully all coordinates, or filled the untransformable coordinates with NaN values.Methods in org.opengis.referencing.operation that return MathTransform Modifier and Type Method Description MathTransform
MathTransformFactory. createAffineTransform(Matrix matrix)
Creates an affine transform from a matrix.MathTransform
MathTransformFactory. createBaseToDerived(CoordinateReferenceSystem baseCRS, ParameterValueGroup parameters, CoordinateSystem derivedCS)
Creates a parameterized transform from a base CRS to a derived CS.MathTransform
MathTransformFactory. createConcatenatedTransform(MathTransform transform1, MathTransform transform2)
Creates a transform by concatenating two existing transforms.MathTransform
MathTransformFactory. createFromWKT(java.lang.String wkt)
Creates a math transform object from a string.MathTransform
MathTransformFactory. createFromXML(java.lang.String xml)
Creates a math transform object from a XML string.MathTransform
MathTransformFactory. createParameterizedTransform(ParameterValueGroup parameters)
Creates a transform from a group of parameters.MathTransform
MathTransformFactory. createPassThroughTransform(int firstAffectedOrdinate, MathTransform subTransform, int numTrailingOrdinates)
Creates a transform which passes through a subset of ordinates to another transform.MathTransform
TransformException. getLastCompletedTransform()
Returns the last transform that either transformed successfully all coordinates, or filled the untransformable coordinates with NaN values.MathTransform
CoordinateOperation. getMathTransform()
Gets the math transform.MathTransform
MathTransform. inverse()
Creates the inverse transform of this object.Methods in org.opengis.referencing.operation with parameters of type MathTransform Modifier and Type Method Description MathTransform
MathTransformFactory. createConcatenatedTransform(MathTransform transform1, MathTransform transform2)
Creates a transform by concatenating two existing transforms.MathTransform
MathTransformFactory. createPassThroughTransform(int firstAffectedOrdinate, MathTransform subTransform, int numTrailingOrdinates)
Creates a transform which passes through a subset of ordinates to another transform.void
TransformException. setLastCompletedTransform(MathTransform transform)
Sets the last transform that either transformed successfully all coordinates, or filled the untransformable coordinates with NaN values. -
Uses of MathTransform in org.opengis.test
Methods in org.opengis.test with parameters of type MathTransform Modifier and Type Method Description void
ValidatorContainer. validate(MathTransform object)
Tests the conformance of the given object.static void
Validators. validate(MathTransform object)
Tests the conformance of the given object. -
Uses of MathTransform in org.opengis.test.referencing
Fields in org.opengis.test.referencing declared as MathTransform Modifier and Type Field Description protected MathTransform
TransformTestCase. transform
The transform being tested.Methods in org.opengis.test.referencing with parameters of type MathTransform Modifier and Type Method Description void
OperationValidator. validate(MathTransform object)
Validates the given math transform.
-