Uses of Class
org.opengis.referencing.operation.TransformException
-
Packages that use TransformException Package Description org.opengis.referencing.operation Coordinate operations (relationship between any two coordinate reference systems).org.opengis.test.referencing Validators and test suites for theorg.opengis.referencing
package. -
-
Uses of TransformException in org.opengis.referencing.operation
Subclasses of TransformException in org.opengis.referencing.operation Modifier and Type Class Description class
NoninvertibleTransformException
Thrown whenMathTransform.inverse()
is invoked but the transform can't be inverted.Methods in org.opengis.referencing.operation that throw TransformException Modifier and Type Method Description java.awt.Shape
MathTransform2D. createTransformedShape(java.awt.Shape shape)
Transforms the specified shape.Matrix
MathTransform. derivative(DirectPosition point)
Gets the derivative of this transform at a point.double
MathTransform1D. derivative(double value)
Gets the derivative of this function at a value.Matrix
MathTransform2D. derivative(java.awt.geom.Point2D point)
Gets the derivative of this transform at a point.void
MathTransform. transform(double[] srcPts, int srcOff, double[] dstPts, int dstOff, int numPts)
Transforms a list of coordinate point ordinal values.void
MathTransform. transform(double[] srcPts, int srcOff, float[] dstPts, int dstOff, int numPts)
Transforms a list of coordinate point ordinal values.void
MathTransform. transform(float[] srcPts, int srcOff, double[] dstPts, int dstOff, int numPts)
Transforms a list of coordinate point ordinal values.void
MathTransform. transform(float[] srcPts, int srcOff, float[] dstPts, int dstOff, int numPts)
Transforms a list of coordinate point ordinal values.DirectPosition
MathTransform. transform(DirectPosition ptSrc, DirectPosition ptDst)
Transforms the specifiedptSrc
and stores the result inptDst
.double
MathTransform1D. transform(double value)
Transforms the specified value.java.awt.geom.Point2D
MathTransform2D. transform(java.awt.geom.Point2D ptSrc, java.awt.geom.Point2D ptDst)
Transforms the specifiedptSrc
and stores the result inptDst
. -
Uses of TransformException in org.opengis.test.referencing
Methods in org.opengis.test.referencing that throw TransformException Modifier and Type Method Description protected float[]
TransformTestCase. verifyConsistency(float[] sourceFloats)
Transforms coordinates using various versions ofMathTransform.transform(...)
and verifies that they produce the same numerical values.protected void
TransformTestCase. verifyInverse(double[] coordinates)
Transforms the given coordinates, applies the inverse transform and compares with the original values.protected void
TransformTestCase. verifyInverse(float[] coordinates)
Transforms the given coordinates, applies the inverse transform and compares with the original values.protected void
TransformTestCase. verifyTransform(double[] coordinates, double[] expected)
Transforms the given coordinates and verifies that the result is equals (within a positive delta) to the expected ones.
-