All Implemented Interfaces:
Identifier, CoordinateSystemAxis, IdentifiedObject, ReferenceIdentifier

public class SimpleAxis extends SimpleIdentifiedObject implements CoordinateSystemAxis
A CoordinateSystemAxis defined by conventional symbols. This implementation infers some axis properties from the abbreviation, as documented in the following table:
Axis properties inferred from the abbreviation
Symbol Common name Axis direction Unit Range Meaning
λ geodetic longitude EAST degree ±90° EXACT
φ geodetic latitude NORTH degree ±180° WRAPAROUND
h ellipsoidal height UP Units.METRE
H gravity-related height UP Units.METRE
d depth DOWN Units.METRE
r geocentric radius UP Units.METRE [0…∞]
Ω spherical longitude EAST degree ±90° EXACT
Θ spherical latitude NORTH degree ±180° WRAPAROUND
X geocentric X GEOCENTRIC_X Units.METRE
Y geocentric Y GEOCENTRIC_Y Units.METRE
Z geocentric Z GEOCENTRIC_Z Units.METRE
E easting EAST Units.METRE
W westing WEST Units.METRE
N northing NORTH Units.METRE
S southing SOUTH Units.METRE
t time FUTURE Units.SECOND
i column COLUMN_POSITIVE
invalid @link
AbstractUnit#ONE
j row ROW_POSITIVE
invalid @link
AbstractUnit#ONE
Since:
3.1
  • Field Details

    • LATITUDE

      public static final CoordinateSystemAxis LATITUDE
      The geodetic latitude axis. Values are increasing toward East, in decimal degrees.
    • LONGITUDE

      public static final CoordinateSystemAxis LONGITUDE
      The geodetic longitude axis. Values are increasing toward North, in decimal degrees.
    • abbreviation

      protected final char abbreviation
      The abbreviation used for this coordinate system axes. This abbreviation is also used to identify the coordinates in coordinate tuple. Examples are "X" and "Y".
      See Also:
    • direction

      protected final AxisDirection direction
      Direction of this coordinate system axis.
      See Also:
    • unit

      protected final Unit<?> unit
      The unit of measure used for this coordinate system axis.
      See Also:
  • Constructor Details

    • SimpleAxis

      public SimpleAxis(Citation authority, String name, char abbreviation) throws IllegalArgumentException
      Creates a new axis for the given authority, name and abbreviation. The axis direction and units are inferred from the abbreviation using the table documented in the class javadoc.
      Parameters:
      authority - organization responsible for definition of the name, or null.
      name - the name of the new axis.
      abbreviation - the abbreviation used for this coordinate system axes.
      Throws:
      IllegalArgumentException - if the abbreviation is not one of the documented ones.
    • SimpleAxis

      public SimpleAxis(Citation authority, String name, char abbreviation, AxisDirection direction, Unit<?> unit)
      Creates a new axis for the given authority, name, units and direction. The following abbreviation are handled specially by this class:
      • λ for geodetic longitude
      • φ for geodetic latitude
      • Ω for spherical longitude
      • Θ for spherical latitude
      • r for geocentric radius
      Parameters:
      authority - organization responsible for definition of the name, or null.
      name - the name of the new axis.
      abbreviation - the abbreviation used for this coordinate system axes.
      direction - direction of this coordinate system axis.
      unit - the unit of measure used for this coordinate system axis.
  • Method Details