Uses of Class
org.hermit.geo.GeoConstants.Ellipsoid

Packages that use GeoConstants.Ellipsoid
org.hermit.geo A library of various geodetic utilities for handling positions, directions and distances over the surface of the Earth, with a choice of algorithms from the fast and simple Haversine formula, to the super-accurate Vincenty formula. 
 

Uses of GeoConstants.Ellipsoid in org.hermit.geo
 

Methods in org.hermit.geo that return GeoConstants.Ellipsoid
static GeoConstants.Ellipsoid GeoConstants.Ellipsoid.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static GeoConstants.Ellipsoid[] GeoConstants.Ellipsoid.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.hermit.geo with parameters of type GeoConstants.Ellipsoid
static void GeoCalculator.setAlgorithm(GeoCalculator.Algorithm algorithm, GeoConstants.Ellipsoid ellipsoid)
          Set the geodetic calcualtor to use for future calculations.
 

Constructors in org.hermit.geo with parameters of type GeoConstants.Ellipsoid
AndoyerCalculator(GeoConstants.Ellipsoid ellip)
          Create a calculator using a given ellipsoid.
GeoCalculator(GeoConstants.Ellipsoid ellip)
          Create a calculator using a given ellipsoid.
HaversineCalculator(GeoConstants.Ellipsoid ellip)
          Create a calculator using a given ellipsoid.
VincentyCalculator(GeoConstants.Ellipsoid ellip)
          Create a calculator using a given ellipsoid.