Class DefaultConcatenatedOperation

  • All Implemented Interfaces:
    Serializable, IdentifiedObject, ConcatenatedOperation, CoordinateOperation

    public class DefaultConcatenatedOperation
    extends AbstractCoordinateOperation
    implements ConcatenatedOperation
    An ordered sequence of two or more single coordinate operations. The sequence of operations is constrained by the requirement that the source coordinate reference system of step (n+1) must be the same as the target coordinate reference system of step (n). The source coordinate reference system of the first step and the target coordinate reference system of the last step are the source and target coordinate reference system associated with the concatenated operation.
    Since:
    2.1
    Author:
    Martin Desruisseaux (IRD)
    See Also:
    Serialized Form
    • Constructor Detail

      • DefaultConcatenatedOperation

        public DefaultConcatenatedOperation​(String name,
                                            CoordinateOperation... operations)
        Constructs a concatenated operation from the specified name.
        Parameters:
        name - The operation name.
        operations - The sequence of operations.
      • DefaultConcatenatedOperation

        public DefaultConcatenatedOperation​(Map<String,​?> properties,
                                            CoordinateOperation... operations)
        Constructs a concatenated operation from a set of properties. The properties given in argument follow the same rules than for the AbstractCoordinateOperation constructor.
        Parameters:
        properties - Set of properties. Should contains at least "name".
        operations - The sequence of operations.
      • DefaultConcatenatedOperation

        public DefaultConcatenatedOperation​(Map<String,​?> properties,
                                            CoordinateOperation[] operations,
                                            MathTransformFactory factory)
                                     throws FactoryException
        Constructs a concatenated operation from a set of properties and a math transform factory. The properties given in argument follow the same rules than for the AbstractCoordinateOperation constructor.
        Parameters:
        properties - Set of properties. Should contains at least "name".
        operations - The sequence of operations.
        factory - The math transform factory to use for math transforms concatenation.
        Throws:
        FactoryException - if the factory can't concatenate the math transforms.
    • Method Detail

      • equals

        public boolean equals​(AbstractIdentifiedObject object,
                              boolean compareMetadata)
        Compare this concatenated operation with the specified object for equality. If compareMetadata is true, then all available properties are compared including valid area and scope.
        Overrides:
        equals in class AbstractCoordinateOperation
        Parameters:
        object - The object to compare to this.
        compareMetadata - true for performing a strict comparaison, or false for comparing only properties relevant to transformations.
        Returns:
        true if both objects are equal.
      • hashCode

        public int hashCode()
        Returns a hash code value for this concatenated operation.
        Overrides:
        hashCode in class AbstractCoordinateOperation
        Returns:
        The hash code value. This value doesn't need to be the same in past or future versions of this class.
      • formatWKT

        protected String formatWKT​(Formatter formatter)
        Format this operation as a pseudo-WKT format. No WKT format were defined for coordinate operation at the time this method was written. This method may change in any future version until a standard format is found.
        Overrides:
        formatWKT in class AbstractCoordinateOperation
        Parameters:
        formatter - The formatter to use.
        Returns:
        The WKT element name.
        See Also:
        Formattable.toWKT(), Formattable.toString()