Uses of Class
org.opengis.referencing.operation.TransformException
Packages that use TransformException
Package
Description
Coordinate operations (relationship between
any two coordinate reference systems).
Validators and test suites for the
org.opengis.referencing
package.-
Uses of TransformException in org.opengis.referencing.operation
Subclasses of TransformException in org.opengis.referencing.operationModifier and TypeClassDescriptionclass
Thrown whenMathTransform.inverse()
is invoked but the transform can't be inverted.Methods in org.opengis.referencing.operation that throw TransformExceptionModifier and TypeMethodDescriptionMathTransform2D.createTransformedShape
(Shape shape) Transforms the specified shape.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.MathTransform2D.derivative
(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.MathTransform.transform
(DirectPosition ptSrc, DirectPosition ptDst) Transforms the specifiedptSrc
and stores the result inptDst
.double
MathTransform1D.transform
(double value) Transforms the specified value.Transforms the specifiedptSrc
and stores the result inptDst
. -
Uses of TransformException in org.opengis.test.referencing
Methods in org.opengis.test.referencing that throw TransformExceptionModifier and TypeMethodDescriptionprotected 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.