Object
FormattableObject
AbstractDirectPosition
DirectPosition1D
- All Implemented Interfaces:
Serializable
,Cloneable
,Position
,DirectPosition
A one-dimensional position within some coordinate reference system.
- Since:
- 0.3
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionConstructs a position initialized to (0) with anull
coordinate reference system.DirectPosition1D
(double coordinate) Constructs a 1D position from the specified coordinate.Constructs a position initialized to the values parsed from the given string in Well Known Text (WKT) format.Constructs a position with the specified coordinate reference system. -
Method Summary
Modifier and TypeMethodDescriptionclone()
Returns a copy of this position.final double[]
Returns a sequence of numbers that hold the coordinate of this position in its reference system.Returns the coordinate reference system in which the coordinate is given.final int
The length of coordinate sequence (the number of entries).final double
getOrdinate
(int dimension) Returns the coordinate at the specified dimension.int
Returns a hash value for this coordinate tuple.void
Sets the coordinate reference system in which the coordinate is given.void
setLocation
(DirectPosition position) Sets this coordinate to the specified direct position.void
setOrdinate
(int dimension, double value) Sets the coordinate value along the specified dimension.Formats this position in the Well Known Text (WKT) format.Methods inherited from class AbstractDirectPosition
castOrCopy, equals, formatTo, getDirectPosition, normalize
Methods inherited from class FormattableObject
print, toString, toWKT
-
Field Details
-
coordinate
public double coordinateThe coordinate value.
-
-
Constructor Details
-
DirectPosition1D
public DirectPosition1D()Constructs a position initialized to (0) with anull
coordinate reference system. -
DirectPosition1D
Constructs a position with the specified coordinate reference system.- Parameters:
crs
- the coordinate reference system.
-
DirectPosition1D
public DirectPosition1D(double coordinate) Constructs a 1D position from the specified coordinate.- Parameters:
coordinate
- the coordinate value.
-
DirectPosition1D
Constructs a position initialized to the values parsed from the given string in Well Known Text (WKT) format. The given string is typically aPOINT
element like below:POINT(6)
- Parameters:
wkt
- thePOINT
or other kind of element to parse.- Throws:
IllegalArgumentException
- if the given string cannot be parsed.MismatchedDimensionException
- if the given point is not one-dimensional.- See Also:
-
-
Method Details
-
getDimension
public final int getDimension()The length of coordinate sequence (the number of entries). This is always 1 forDirectPosition1D
objects.- Specified by:
getDimension
in interfaceDirectPosition
- Returns:
- the dimensionality of this position.
-
getCoordinateReferenceSystem
Returns the coordinate reference system in which the coordinate is given. May benull
if this particularDirectPosition
is included in a larger object with such a reference to a CRS.- Specified by:
getCoordinateReferenceSystem
in interfaceDirectPosition
- Overrides:
getCoordinateReferenceSystem
in classAbstractDirectPosition
- Returns:
- the coordinate reference system, or
null
.
-
setCoordinateReferenceSystem
Sets the coordinate reference system in which the coordinate is given.- Parameters:
crs
- the new coordinate reference system, ornull
.
-
getCoordinate
public final double[] getCoordinate()Returns a sequence of numbers that hold the coordinate of this position in its reference system.API note: This method is final for ensuring consistency with thecoordinate
field, which is public.- Specified by:
getCoordinate
in interfaceDirectPosition
- Overrides:
getCoordinate
in classAbstractDirectPosition
- Returns:
- the coordinates.
-
getOrdinate
Returns the coordinate at the specified dimension.API note: This method is final for ensuring consistency with thecoordinate
field, which is public.- Specified by:
getOrdinate
in interfaceDirectPosition
- Parameters:
dimension
- the dimension, which must be 0.- Returns:
- the
coordinate
. - Throws:
IndexOutOfBoundsException
- if the specified dimension is out of bounds.
-
setOrdinate
Sets the coordinate value along the specified dimension.- Specified by:
setOrdinate
in interfaceDirectPosition
- Overrides:
setOrdinate
in classAbstractDirectPosition
- Parameters:
dimension
- the dimension, which must be 0.value
- the coordinate value.- Throws:
IndexOutOfBoundsException
- if the specified dimension is out of bounds.
-
setLocation
Sets this coordinate to the specified direct position. If the specified position contains a coordinate reference system (CRS), then the CRS for this position will be set to the CRS of the specified position.- Overrides:
setLocation
in classAbstractDirectPosition
- Parameters:
position
- the new position for this point.- Throws:
MismatchedDimensionException
- if this point doesn't have the expected dimension.
-
toString
Formats this position in the Well Known Text (WKT) format. The output is like below:POINT(coordinate)
DirectPosition1D
constructor.- Overrides:
toString
in classAbstractDirectPosition
- Returns:
- this position as a
POINT
in Well Known Text (WKT) format.
-
clone
Returns a copy of this position. -
hashCode
public int hashCode()Returns a hash value for this coordinate tuple. This method returns a value compliant with the contract documented in theDirectPosition.hashCode()
javadoc. Consequently, it should be possible to mix differentDirectPosition
implementations in the same hash map.- Specified by:
hashCode
in interfaceDirectPosition
- Overrides:
hashCode
in classAbstractDirectPosition
- Returns:
- a hash code value for this position.
-