Class DirectPosition1D

All Implemented Interfaces:
Serializable, Cloneable, org.opengis.geometry.coordinate.Position, org.opengis.geometry.DirectPosition

public class DirectPosition1D extends AbstractDirectPosition implements Serializable, Cloneable
A one-dimensional position within some coordinate reference system.
Since:
0.3
Version:
1.0
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    double
    The coordinate value.
    private org.opengis.referencing.crs.CoordinateReferenceSystem
    The coordinate reference system for this position;
    private static final long
    Serial number for inter-operability with different versions.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Constructs a position initialized to (0) with a null 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.
    DirectPosition1D(org.opengis.referencing.crs.CoordinateReferenceSystem crs)
    Constructs a position with the specified coordinate reference system.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns a copy of this position.
    final double[]
    Returns a sequence of numbers that hold the coordinate of this position in its reference system.
    final org.opengis.referencing.crs.CoordinateReferenceSystem
    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
    setCoordinateReferenceSystem(org.opengis.referencing.crs.CoordinateReferenceSystem crs)
    Sets the coordinate reference system in which the coordinate is given.
    void
    setLocation(org.opengis.geometry.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 org.apache.sis.geometry.AbstractDirectPosition

    castOrCopy, equals, formatTo, getDirectPosition, normalize, parse, toString

    Methods inherited from class org.apache.sis.io.wkt.FormattableObject

    print, toString, toWKT

    Methods inherited from class java.lang.Object

    finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      Serial number for inter-operability with different versions.
      See Also:
    • crs

      private org.opengis.referencing.crs.CoordinateReferenceSystem crs
      The coordinate reference system for this position;
    • coordinate

      public double coordinate
      The coordinate value.
  • Constructor Details

    • DirectPosition1D

      public DirectPosition1D()
      Constructs a position initialized to (0) with a null coordinate reference system.
    • DirectPosition1D

      public DirectPosition1D(org.opengis.referencing.crs.CoordinateReferenceSystem crs)
      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

      public DirectPosition1D(CharSequence wkt) throws IllegalArgumentException
      Constructs a position initialized to the values parsed from the given string in Well Known Text (WKT) format. The given string is typically a POINT element like below:
      Parameters:
      wkt - the POINT or other kind of element to parse.
      Throws:
      IllegalArgumentException - if the given string cannot be parsed.
      org.opengis.geometry.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 for DirectPosition1D objects.
      Specified by:
      getDimension in interface org.opengis.geometry.DirectPosition
      Returns:
      the dimensionality of this position.
    • getCoordinateReferenceSystem

      public final org.opengis.referencing.crs.CoordinateReferenceSystem getCoordinateReferenceSystem()
      Returns the coordinate reference system in which the coordinate is given. May be null if this particular DirectPosition is included in a larger object with such a reference to a CRS.
      Specified by:
      getCoordinateReferenceSystem in interface org.opengis.geometry.DirectPosition
      Overrides:
      getCoordinateReferenceSystem in class AbstractDirectPosition
      Returns:
      the coordinate reference system, or null.
    • setCoordinateReferenceSystem

      public void setCoordinateReferenceSystem(org.opengis.referencing.crs.CoordinateReferenceSystem crs)
      Sets the coordinate reference system in which the coordinate is given.
      Parameters:
      crs - the new coordinate reference system, or null.
    • 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 the coordinate field, which is public.
      Specified by:
      getCoordinate in interface org.opengis.geometry.DirectPosition
      Overrides:
      getCoordinate in class AbstractDirectPosition
      Returns:
      the coordinates.
    • getOrdinate

      public final double getOrdinate(int dimension) throws IndexOutOfBoundsException
      Returns the coordinate at the specified dimension.
      API note: This method is final for ensuring consistency with the coordinate field, which is public.
      Specified by:
      getOrdinate in interface org.opengis.geometry.DirectPosition
      Parameters:
      dimension - the dimension, which must be 0.
      Returns:
      the coordinate.
      Throws:
      IndexOutOfBoundsException - if the specified dimension is out of bounds.
    • setOrdinate

      public void setOrdinate(int dimension, double value) throws IndexOutOfBoundsException
      Sets the coordinate value along the specified dimension.
      Specified by:
      setOrdinate in interface org.opengis.geometry.DirectPosition
      Overrides:
      setOrdinate in class AbstractDirectPosition
      Parameters:
      dimension - the dimension, which must be 0.
      value - the coordinate value.
      Throws:
      IndexOutOfBoundsException - if the specified dimension is out of bounds.
    • setLocation

      public void setLocation(org.opengis.geometry.DirectPosition position) throws org.opengis.geometry.MismatchedDimensionException
      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 class AbstractDirectPosition
      Parameters:
      position - the new position for this point.
      Throws:
      org.opengis.geometry.MismatchedDimensionException - if this point doesn't have the expected dimension.
    • toString

      public String toString()
      Formats this position in the Well Known Text (WKT) format. The output is like below: The string returned by this method can be parsed by the DirectPosition1D constructor.
      Overrides:
      toString in class AbstractDirectPosition
      Returns:
      this position as a POINT in Well Known Text (WKT) format.
    • clone

      public DirectPosition1D clone()
      Returns a copy of this position.
      Overrides:
      clone in class Object
      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 the DirectPosition.hashCode() javadoc. Consequently, it should be possible to mix different DirectPosition implementations in the same hash map.
      Specified by:
      hashCode in interface org.opengis.geometry.DirectPosition
      Overrides:
      hashCode in class AbstractDirectPosition
      Returns:
      a hash code value for this position.