org.geotools.referencing.operation
Class DefaultConcatenatedOperation
Object
Formattable
AbstractIdentifiedObject
AbstractCoordinateOperation
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
- Module:
modules/library/referencing (gt-referencing.jar)
Methods inherited from class AbstractCoordinateOperation |
getAccuracy, getAccuracy, getCoordinateOperationAccuracy, getDomainOfValidity, getMathTransform, getOperationVersion, getPositionalAccuracy, getScope, getSourceCRS, getTargetCRS, getType, getValidArea |
Methods inherited from class AbstractIdentifiedObject |
asSet, ensureAngularUnit, ensureLinearUnit, ensureNonNull, ensureNonNull, ensureTimeUnit, equals, equals, equals, equals, getAlias, getIdentifier, getIdentifier, getIdentifiers, getName, getName, getName, getProperties, getProperties, getRemarks, nameMatches, nameMatches, nameMatches |
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.
getOperations
public List<SingleOperation> getOperations()
- Returns the sequence of operations.
- Specified by:
getOperations
in interface ConcatenatedOperation
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()
Copyright © 1996-2010 Geotools. All Rights Reserved.