Class AbstractCS
- All Implemented Interfaces:
Serializable,CoordinateSystem,IdentifiedObject
- Direct Known Subclasses:
DefaultAffineCS,DefaultCompoundCS,DefaultCylindricalCS,DefaultEllipsoidalCS,DefaultLinearCS,DefaultPolarCS,DefaultSphericalCS,DefaultTimeCS,DefaultUserDefinedCS,DefaultVerticalCS
This class is conceptually abstract, even if it is technically possible to instantiate it. Typical
applications should create instances of the most specific subclass with Default prefix instead. An exception
to this rule may occurs when it is not possible to identify the exact type. For example it is not possible to infer
the exact coordinate system from Well Known
Text is some cases (e.g. in a LOCAL_CS element). In such exceptional situation, a plain
AbstractCS object may be instantiated.
- Since:
- 2.1
- Author:
- Martin Desruisseaux (IRD)
- See Also:
-
DefaultCoordinateSystemAxisjavax.measure.unit.UnitAbstractDatumAbstractCRS- Serialized Form
-
Field Summary
Fields inherited from class AbstractIdentifiedObject
EMPTY_ALIAS_ARRAY, EMPTY_IDENTIFIER_ARRAY, IDENTIFIER_COMPARATOR, NAME_COMPARATOR, REMARKS_COMPARATORFields inherited from class Formattable
SINGLE_LINEFields inherited from interface IdentifiedObject
ALIAS_KEY, IDENTIFIERS_KEY, NAME_KEY, REMARKS_KEY -
Constructor Summary
ConstructorsConstructorDescriptionAbstractCS(String name, CoordinateSystemAxis... axis) Constructs a coordinate system from a name.AbstractCS(Map<String, ?> properties, CoordinateSystemAxis... axis) Constructs a coordinate system from a set of properties.Constructs a new coordinate system with the same values than the specified one. -
Method Summary
Modifier and TypeMethodDescriptiondistance(double[] coord1, double[] coord2) Computes the distance between two points.booleanequals(AbstractIdentifiedObject object, boolean compareMetadata) Compares the specified object with this coordinate system for equality.protected StringFormat the inner part of a Well Known Text (WKT) element.getAxis(int dimension) Returns the axis for this coordinate system at the specified dimension.intReturns the dimension of the coordinate system.inthashCode()Returns a hash value for this coordinate system.protected booleanisCompatibleDirection(AxisDirection direction) Returnstrueif the specified axis direction is allowed for this coordinate system.protected booleanisCompatibleUnit(AxisDirection direction, Unit<?> unit) Returnstrueis the specified unit is legal for the specified axis direction.static CoordinateSystemReturns a coordinate system with "standard" axis order and units.static MatrixswapAndScaleAxis(CoordinateSystem sourceCS, CoordinateSystem targetCS) Returns an affine transform between two coordinate systems.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, nameMatchesMethods inherited from class Formattable
cleanupThreadLocals, toString, toWKT, toWKT, toWKT, toWKTMethods inherited from interface IdentifiedObject
getAlias, getIdentifiers, getName, getRemarks, toWKT
-
Constructor Details
-
AbstractCS
Constructs a new coordinate system with the same values than the specified one. This copy constructor provides a way to wrap an arbitrary implementation into a Geotools one or a user-defined one (as a subclass), usually in order to leverage some implementation-specific API. This constructor performs a shallow copy, i.e. the properties are not cloned.- Parameters:
cs- The coordinate system to copy.- Since:
- 2.2
-
AbstractCS
Constructs a coordinate system from a name.- Parameters:
name- The coordinate system name.axis- The set of axis.
-
AbstractCS
Constructs a coordinate system from a set of properties. The properties map is given unchanged to the super-class constructor.- Parameters:
properties- Set of properties. Should contains at least"name".axis- The set of axis.
-
-
Method Details
-
isCompatibleDirection
Returnstrueif the specified axis direction is allowed for this coordinate system. This method is invoked at construction time for checking argument validity. The default implementation returnstruefor all axis directions. Subclasses will overrides this method in order to put more restrictions on allowed axis directions.- Parameters:
direction- The direction to test for compatibility.- Returns:
trueif the given direction is compatible with this coordinate system.
-
isCompatibleUnit
Returnstrueis the specified unit is legal for the specified axis direction. This method is invoked at construction time for checking units compatibility. The default implementation returnstruein all cases. Subclasses can override this method and check for compatibility with meter or degree units.- Parameters:
direction- The direction of the axis having the given unit.unit- The unit to test for compatibility.- Returns:
trueif the given unit is compatible with this coordinate system.- Since:
- 2.2
-
getDimension
public int getDimension()Returns the dimension of the coordinate system. This is the number of axis.- Specified by:
getDimensionin interfaceCoordinateSystem- Returns:
- The dimension of the coordinate system.
-
getAxis
Returns the axis for this coordinate system at the specified dimension.- Specified by:
getAxisin interfaceCoordinateSystem- Parameters:
dimension- The zero based index of axis.- Returns:
- The axis at the specified dimension.
- Throws:
IndexOutOfBoundsException- ifdimensionis out of bounds.
-
swapAndScaleAxis
public static Matrix swapAndScaleAxis(CoordinateSystem sourceCS, CoordinateSystem targetCS) throws IllegalArgumentException Returns an affine transform between two coordinate systems. Only units and axis order (e.g. transforming from (NORTH,WEST) to (EAST,NORTH are taken in account.Example: If coordinates in
sourceCSare (x,y) pairs in metres and coordinates intargetCSare (-y,x) pairs in centimetres, then the transformation can be performed as below:[-y(cm)] [ 0 -100 0 ] [x(m)] [ x(cm)] = [ 100 0 0 ] [y(m)] [ 1 ] [ 0 0 1 ] [1 ]
- Parameters:
sourceCS- The source coordinate system.targetCS- The target coordinate system.- Returns:
- The conversion from
sourceCStotargetCSas an affine transform. Only axis direction and units are taken in account. - Throws:
IllegalArgumentException- if axis doesn't matches, or the CS doesn't have the same geometry.ConversionException- if the unit conversion is non-linear.
-
standard
Returns a coordinate system with "standard" axis order and units. Most of the time, this method returns one of the predefined constants with axis in (longitude,latitude) or (X,Y) order, and units in degrees or metres. In some particular cases like Cartesian CS, this method may create a new instance on the fly. In every cases this method attempts to return a right-handed coordinate system, but this is not garanteed.This method is typically used together with
swapAndScaleAxisfor the creation of a transformation step before some math transform. Example:
A rational for standard axis order and units is explained in the Axis units and direction section in the description of map projection package.Matrix step1 = swapAndScaleAxis(sourceCS, standard(sourceCS)); Matrix step2 = ... some transform operating on standard axis ... Matrix step3 = swapAndScaleAxis(standard(targetCS), targetCS);
- Parameters:
cs- The coordinate system.- Returns:
- A constant similar to the specified
cswith "standard" axis. - Throws:
IllegalArgumentException- if the specified coordinate system is unknow to this method.- Since:
- 2.2
-
distance
public Measure distance(double[] coord1, double[] coord2) throws UnsupportedOperationException, MismatchedDimensionException Computes the distance between two points. This method is not available for all coordinate systems. For example, ellipsoidal CS doesn't have suffisient information.- Parameters:
coord1- Coordinates of the first point.coord2- Coordinates of the second point.- Returns:
- The distance between
coord1andcoord2. - Throws:
UnsupportedOperationException- if this coordinate system can't compute distances.MismatchedDimensionException- if a coordinate doesn't have the expected dimension.
-
equals
Compares the specified object with this coordinate system for equality.- Overrides:
equalsin classAbstractIdentifiedObject- Parameters:
object- The object to compare tothis.compareMetadata-truefor performing a strict comparaison, orfalsefor comparing only properties relevant to transformations.- Returns:
trueif both objects are equal.
-
hashCode
public int hashCode()Returns a hash value for this coordinate system.- Overrides:
hashCodein classAbstractIdentifiedObject- Returns:
- The hash code value. This value doesn't need to be the same in past or future versions of this class.
-
formatWKT
Format the inner part of a Well Known Text (WKT) element. Note that WKT is not yet defined for coordinate system. Current implementation list the axis contained in this CS.- Overrides:
formatWKTin classFormattable- Parameters:
formatter- The formatter to use.- Returns:
- The WKT element name. Current implementation default to the class name.
- See Also:
-