? Spherical


public class Spherical extends CoordinateSystem
Spherical Coordinates - an implementation of positional coordinates based on Latitude and Longitude. Whilst often not explicitly stated in practice, these are relative to a specified datum and ellipsoid.
  • ???????

    • Spherical

      protected Spherical()
      Creates a new instance of Spherical
    • Spherical

      public Spherical(LatLong latLon, Ellipsoid e, Datum d)
      Create a new Spherical Coordinate set based on Lat/Lon, the Ellipsoid and Datum
      ??:
      latLon - A LatLong object containing the Latitude and Longitude of the point
      e - The Ellipsoid used to define Lat and Lon
      d - The Datum used to determine the Lat / Lon
    • Spherical

      public Spherical(Position p, Ellipsoid e, Datum d)
      Create a new Spherical Coordinate set based on a specific Position, Ellipsoid and Datum
      ??:
      p - The Position
      e - The Ellipsoid to use when translating this Position
      d - The Datum to use when representing this point.
  • ??????