Uses of Interface
gistoolkit.projection.Ellipsoid

Packages that use Ellipsoid
gistoolkit.projection   
gistoolkit.projection.ellipsoid   
gistoolkit.projection.ellipsoid.transform   
 

Uses of Ellipsoid in gistoolkit.projection
 

Methods in gistoolkit.projection that return Ellipsoid
 Ellipsoid EllipsoidProjection.getEllipsoid()
          Retrieve the ellipsoid that serves as the basis for this projection
 Ellipsoid NoProjection.getEllipsoid()
          Return the Ellipsoid for this projection
 Ellipsoid SimpleProjection.getEllipsoid()
          Retrieve the ellipsoid used to model the lat long coordinates of the earth
 Ellipsoid TransversMercatorProjection.getEllipsoid()
          Retrieve the ellipsoid used to model the lat long coordinates of the earth
 

Methods in gistoolkit.projection with parameters of type Ellipsoid
 void NoProjection.setEllipsoid(Ellipsoid inEllipsoid)
          Set the Ellipsoid for this projection
 void SimpleProjection.setEllipsoid(Ellipsoid inEllipsoid)
          Set the ellipsoid used to model the lat long coordinates of the earth
 void TransversMercatorProjection.setEllipsoid(Ellipsoid inEllipsoid)
          Set the ellipsoid used to model the lat long coordinates of the earth
 

Uses of Ellipsoid in gistoolkit.projection.ellipsoid
 

Classes in gistoolkit.projection.ellipsoid that implement Ellipsoid
 class Airy1830
          An Ellipsoid that is used in the Brittish national grid to better describe their country than wgs84.
 class Airy1830Modified
          An ellipsoid modified to more exactly match Ireland.
 class Clarke1866
          Used a lot in England.
 class EPSGEllipsoid
          Place to store the additional imformation provided by EPSG.
 class GRS80
          The Ellipsoid used to describe the GRS80 lat long conversion same as WGS84.
 class I1924UTM
          Spheroid used to describe the International 1924 or Hayford 1909 sphere, I must confess I don't know what these are, but I have the parameters, so they are immortalized here.
 class SimpleEllipsoid
          Simple class to be used as a super class of sub Ellipsoids.
 class WGS84
          The Ellipsoid used to describe the WGS84 lat long conversion same as GRS80.
 

Methods in gistoolkit.projection.ellipsoid that return Ellipsoid
static Ellipsoid EllipsoidFactory.getEllipsoid(java.lang.String inName)
          Retrieve the ellipsoid by name
static Ellipsoid[] EllipsoidFactory.getKnownEllipsoids()
          Return the list of know ellipsoids
 

Uses of Ellipsoid in gistoolkit.projection.ellipsoid.transform
 

Methods in gistoolkit.projection.ellipsoid.transform that return Ellipsoid
 Ellipsoid EllipsoidTransform.getFromEllipsoid()
          Retrieve the Ellipsoid to convert from
 Ellipsoid EllipsoidTransform.getToEllipsoid()
          Retrieve the Ellipsoid to convert to
 

Methods in gistoolkit.projection.ellipsoid.transform with parameters of type Ellipsoid
 void EllipsoidTransform.setFromEllipsoid(Ellipsoid inEllipsoid)
          Set the Ellipsoid to convert from
 void EllipsoidTransform.setToEllipsoid(Ellipsoid inEllipsoid)
          Set the Ellipsoid to convert to
static void EllipsoidTransform.toCartesian(Ellipsoid inEllipsoid, Point inPoint, CartesianPoint inCartesianPoint)
          Convert the given point from polar coordinates on the given from ellipsoid to cartesizn coordinates.
static void EllipsoidTransform.toPolar(Ellipsoid inEllipsoid, CartesianPoint inCartesianPoint, Point inPoint)
          Convert the given point from it's Cartesian representation to a point on the given TO ellipsoid
 EllipsoidTransform TransformFactory.getTransform(Ellipsoid inFromEllipsoid, Ellipsoid inToEllipsoid)
          Find the ellipsoid transform and parameters for converting between the given ellipsoids
 

Constructors in gistoolkit.projection.ellipsoid.transform with parameters of type Ellipsoid
CoordinateFrameRotation(Ellipsoid inFromEllipsoid, Ellipsoid inToEllipsoid, double inXTranslation, double inYTranslation, double inZTranslation, double inXRotation, double inYRotation, double inZRotation, double inScaleDifference)
          Creates new CoordinateFrameRotation.
EllipsoidTransform(Ellipsoid inFromEllipsoid, Ellipsoid inToEllipsoid)
          Create new Ellipsoid from the given ellipsoids
GeocentricTranslation(Ellipsoid inFromEllipsoid, Ellipsoid inToEllipsoid, double inXTranslation, double inYTranslation, double inZTranslation)
          Creates new GeocentricTranslation with the given ellipsoids, and translation parameters.
PositionVectorTransform(Ellipsoid inFromEllipsoid, Ellipsoid inToEllipsoid, double inXTranslation, double inYTranslation, double inZTranslation, double inXRotation, double inYRotation, double inZRotation, double inScaleDifference)
          Creates new PositionVectorTransform.