Class PassThroughTransform
- Object
-
- FormattableObject
-
- AbstractMathTransform
-
- PassThroughTransform
-
- All Implemented Interfaces:
Serializable,Parameterized,LenientComparable,MathTransform
public class PassThroughTransform extends AbstractMathTransform implements Serializable
Transform which passes through a subset of coordinates to another transform. This allows transforms to operate on a subset of coordinate values.Example: giving (latitude, longitude, height) coordinates,PassThroughTransformcan convert the height values from feet to meters without affecting the latitude and longitude values. Such transform can be built as below:MathTransform feetToMetres = MathTransforms.linear(0.3048, 0); // One-dimensional conversion. MathTransform tr = MathTransforms.passThrough(2, feetToMetres, 0); // Three-dimensional conversion.
Immutability and thread safetyPassThroughTransformis immutable and thread-safe if its subTransform is also immutable and thread-safe.SerializationSerialized instances of this class are not guaranteed to be compatible with future SIS versions. Serialization should be used only for short term storage or RMI between applications running the same SIS version.- Since:
- 0.5
- See Also:
MathTransforms.passThrough(int, MathTransform, int),MathTransforms.compound(MathTransform...), Serialized Form
Defined in the
sis-referencingmodule
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class AbstractMathTransform
AbstractMathTransform.Inverse
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedPassThroughTransform(int firstAffectedCoordinate, MathTransform subTransform, int numTrailingCoordinates)Constructor for sub-classes.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected intcomputeHashCode()Computes a hash value for this transform.static MathTransformcreate(int firstAffectedCoordinate, MathTransform subTransform, int numTrailingCoordinates)Deprecated.Matrixderivative(DirectPosition point)Gets the derivative of this transform at a point.booleanequals(Object object, ComparisonMode mode)Compares the specified object with this math transform for equality.protected StringformatTo(Formatter formatter)Formats this transform as a Well Known Text version 1 (WKT 1) element.int[]getModifiedCoordinates()Returns the ordered sequence of positive integers defining the positions in a source coordinate tuple of the coordinates affected by this pass-through operation.intgetSourceDimensions()Gets the dimension of input points.MathTransformgetSubTransform()Returns the sub-transform to apply on the modified coordinates.intgetTargetDimensions()Gets the dimension of output points.MathTransforminverse()Creates the inverse transform of this object.booleanisIdentity()Tests whether this transform does not move any points.Matrixtransform(double[] srcPts, int srcOff, double[] dstPts, int dstOff, boolean derivate)Transforms a single coordinate in a list of ordinal values, and opportunistically computes the transform derivative if requested.voidtransform(double[] srcPts, int srcOff, double[] dstPts, int dstOff, int numPts)Transforms many coordinates in a list of ordinal values.voidtransform(double[] srcPts, int srcOff, float[] dstPts, int dstOff, int numPts)Transforms many coordinates in a list of ordinal values.voidtransform(float[] srcPts, int srcOff, double[] dstPts, int dstOff, int numPts)Transforms many coordinates in a list of ordinal values.voidtransform(float[] srcPts, int srcOff, float[] dstPts, int dstOff, int numPts)Transforms many coordinates in a list of ordinal values.protected MathTransformtryConcatenate(boolean applyOtherFirst, MathTransform other, MathTransformFactory factory)Concatenates or pre-concatenates in an optimized way this transform with the given transform, if possible.-
Methods inherited from class AbstractMathTransform
equals, getContextualParameters, getParameterDescriptors, getParameterValues, hashCode, transform
-
Methods inherited from class FormattableObject
print, toString, toString, toWKT
-
Methods inherited from class Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface MathTransform
toWKT
-
-
-
-
Constructor Detail
-
PassThroughTransform
protected PassThroughTransform(int firstAffectedCoordinate, MathTransform subTransform, int numTrailingCoordinates)Constructor for sub-classes. Users should invoke the staticMathTransforms.passThrough(int, MathTransform, int)factory method instead, since the most optimal pass-through transform for the givensubTransformis not necessarily aPassThroughTransforminstance.- Parameters:
firstAffectedCoordinate- index of the first affected coordinate.subTransform- the sub-transform to apply on modified coordinates.numTrailingCoordinates- number of trailing coordinates to pass through.- See Also:
MathTransforms.passThrough(int, MathTransform, int)
-
-
Method Detail
-
create
@Deprecated public static MathTransform create(int firstAffectedCoordinate, MathTransform subTransform, int numTrailingCoordinates)
Deprecated.Creates a transform which passes through a subset of coordinates to another transform. This method returns a transform having the following dimensions:
Affected coordinates will range fromSource: firstAffectedCoordinate + subTransform.getSourceDimensions() + numTrailingCoordinates Target: firstAffectedCoordinate + subTransform.getTargetDimensions() + numTrailingCoordinates
firstAffectedCoordinateinclusive todimTarget - numTrailingCoordinatesexclusive.- Parameters:
firstAffectedCoordinate- index of the first affected coordinate.subTransform- the sub-transform to apply on modified coordinates.numTrailingCoordinates- number of trailing coordinates to pass through.- Returns:
- a pass-through transform, not necessarily a
PassThroughTransforminstance.
-
getSourceDimensions
public final int getSourceDimensions()
Gets the dimension of input points. This the source dimension of the sub-transform plus the number of pass-through dimensions.- Specified by:
getSourceDimensionsin interfaceMathTransform- Specified by:
getSourceDimensionsin classAbstractMathTransform- Returns:
- the dimension of input points.
- See Also:
DefaultOperationMethod.getSourceDimensions()
-
getTargetDimensions
public final int getTargetDimensions()
Gets the dimension of output points. This the target dimension of the sub-transform plus the number of pass-through dimensions.- Specified by:
getTargetDimensionsin interfaceMathTransform- Specified by:
getTargetDimensionsin classAbstractMathTransform- Returns:
- the dimension of output points.
- See Also:
DefaultOperationMethod.getTargetDimensions()
-
getModifiedCoordinates
public final int[] getModifiedCoordinates()
Returns the ordered sequence of positive integers defining the positions in a source coordinate tuple of the coordinates affected by this pass-through operation.API note: this method is final for now because most of Apache SIS code do not use themodifiedCoordinatesarray. Instead, SIS uses thefirstAffectedCoordinateandnumTrailingCoordinatesinformation provided to the constructor. Consequently overriding this method may be misleading since it would be ignored by SIS. We do not want to make the "really used" fields public in order to keep the flexibility to replace them by amodifiedCoordinatesarray in a future SIS version.- Returns:
- Zero-based indices of the modified source coordinates.
- See Also:
DefaultPassThroughOperation.getModifiedCoordinates()
-
getSubTransform
public final MathTransform getSubTransform()
Returns the sub-transform to apply on the modified coordinates. This is often the sub-transform specified at construction time, but not necessarily.- Returns:
- the sub-transform.
- See Also:
DefaultPassThroughOperation.getOperation()
-
isIdentity
public boolean isIdentity()
Tests whether this transform does not move any points. APassThroughTransformis identity if the sub-transform is also identity.- Specified by:
isIdentityin interfaceMathTransform- Overrides:
isIdentityin classAbstractMathTransform- Returns:
-
transform
public Matrix transform(double[] srcPts, int srcOff, double[] dstPts, int dstOff, boolean derivate) throws TransformException
Transforms a single coordinate in a list of ordinal values, and opportunistically computes the transform derivative if requested.- Specified by:
transformin classAbstractMathTransform- Parameters:
srcPts- the array containing the source coordinate (can not benull).srcOff- the offset to the point to be transformed in the source array.dstPts- the array into which the transformed coordinate is returned. May be the same thansrcPts. May benullif only the derivative matrix is desired.dstOff- the offset to the location of the transformed point that is stored in the destination array.derivate-truefor computing the derivative, orfalseif not needed.- Returns:
- the matrix of the transform derivative at the given source position,
or
nullif thederivateargument isfalse. - Throws:
TransformException- if the sub-transform failed.- See Also:
AbstractMathTransform.derivative(DirectPosition),AbstractMathTransform.transform(DirectPosition, DirectPosition),MathTransforms.derivativeAndTransform(MathTransform, double[], int, double[], int)
-
transform
public void transform(double[] srcPts, int srcOff, double[] dstPts, int dstOff, int numPts) throws TransformExceptionTransforms many coordinates in a list of ordinal values.- Specified by:
transformin interfaceMathTransform- Overrides:
transformin classAbstractMathTransform- Parameters:
srcPts- the array containing the source point coordinates.srcOff- the offset to the first point to be transformed in the source array.dstPts- the array into which the transformed point coordinates are returned. May be the same thansrcPts.dstOff- the offset to the location of the first transformed point that is stored in the destination array.numPts- the number of point objects to be transformed.- Throws:
TransformException- if the sub-transform failed.
-
transform
public void transform(float[] srcPts, int srcOff, float[] dstPts, int dstOff, int numPts) throws TransformExceptionTransforms many coordinates in a list of ordinal values.- Specified by:
transformin interfaceMathTransform- Overrides:
transformin classAbstractMathTransform- Parameters:
srcPts- the array containing the source point coordinates.srcOff- the offset to the first point to be transformed in the source array.dstPts- the array into which the transformed point coordinates are returned. May be the same thansrcPts.dstOff- the offset to the location of the first transformed point that is stored in the destination array.numPts- the number of point objects to be transformed.- Throws:
TransformException- if the sub-transform failed.
-
transform
public void transform(double[] srcPts, int srcOff, float[] dstPts, int dstOff, int numPts) throws TransformExceptionTransforms many coordinates in a list of ordinal values.- Specified by:
transformin interfaceMathTransform- Overrides:
transformin classAbstractMathTransform- Parameters:
srcPts- the array containing the source point coordinates.srcOff- the offset to the first point to be transformed in the source array.dstPts- the array into which the transformed point coordinates are returned.dstOff- the offset to the location of the first transformed point that is stored in the destination array.numPts- the number of point objects to be transformed.- Throws:
TransformException- if the sub-transform failed.
-
transform
public void transform(float[] srcPts, int srcOff, double[] dstPts, int dstOff, int numPts) throws TransformExceptionTransforms many coordinates in a list of ordinal values.- Specified by:
transformin interfaceMathTransform- Overrides:
transformin classAbstractMathTransform- Parameters:
srcPts- the array containing the source point coordinates.srcOff- the offset to the first point to be transformed in the source array.dstPts- the array into which the transformed point coordinates are returned.dstOff- the offset to the location of the first transformed point that is stored in the destination array.numPts- the number of point objects to be transformed.- Throws:
TransformException- if the sub-transform failed.
-
derivative
public Matrix derivative(DirectPosition point) throws TransformException
Gets the derivative of this transform at a point.- Specified by:
derivativein interfaceMathTransform- Overrides:
derivativein classAbstractMathTransform- Parameters:
point- the coordinate point where to evaluate the derivative.- Returns:
- the derivative at the specified point (never
null). - Throws:
TransformException- if the sub-transform failed.
-
inverse
public MathTransform inverse() throws NoninvertibleTransformException
Creates the inverse transform of this object.- Specified by:
inversein interfaceMathTransform- Overrides:
inversein classAbstractMathTransform- Returns:
- Throws:
NoninvertibleTransformException- if the sub-transform is not invertible.
-
tryConcatenate
protected MathTransform tryConcatenate(boolean applyOtherFirst, MathTransform other, MathTransformFactory factory) throws FactoryException
Concatenates or pre-concatenates in an optimized way this transform with the given transform, if possible. This method applies the following special cases:- If the other transform is also a
PassThroughTransform, then the two transforms may be merged in a singlePassThroughTransforminstance. - If the other transform discards some dimensions, verify if we still need a
PassThroughTransform.
- Overrides:
tryConcatenatein classAbstractMathTransform- Parameters:
applyOtherFirst-trueif the transformation order isotherfollowed bythis, orfalseif the transformation order isthisfollowed byother.other- the other math transform to (pre-)concatenate with this transform.factory- the factory which is (indirectly) invoking this method, ornullif none.- Returns:
- the simplified transform, or
nullif no such optimization is available. - Throws:
FactoryException- if an error occurred while combining the transforms.- Since:
- 1.0
- See Also:
DefaultMathTransformFactory.createConcatenatedTransform(MathTransform, MathTransform)
- If the other transform is also a
-
computeHashCode
protected int computeHashCode()
Computes a hash value for this transform. This method is invoked byAbstractMathTransform.hashCode()when first needed.- Overrides:
computeHashCodein classAbstractMathTransform- Returns:
- the hash code value. This value may change between different execution of the Apache SIS library.
-
equals
public boolean equals(Object object, ComparisonMode mode)
Compares the specified object with this math transform for equality.- Specified by:
equalsin interfaceLenientComparable- Overrides:
equalsin classAbstractMathTransform- Parameters:
object- the object to compare with this transform.mode- the strictness level of the comparison. Default toSTRICT.- Returns:
trueif the given object is considered equals to this math transform.- See Also:
Utilities.deepEquals(Object, Object, ComparisonMode)
-
formatTo
protected String formatTo(Formatter formatter)
Formats this transform as a Well Known Text version 1 (WKT 1) element.Compatibility note:PassThrough_MTis defined in the WKT 1 specification only. If the formatter convention is set to WKT 2, then this method silently uses the WKT 1 convention without raising an error (unless thisPassThroughTransformcan not be formatted as valid WKT 1 neither).- Overrides:
formatToin classAbstractMathTransform- Parameters:
formatter- the formatter to use.- Returns:
- the WKT element name, which is
"PassThrough_MT". - See Also:
FormattableObject.toWKT(),FormattableObject.toString()
-
-