Uses of Class
org.hermit.geo.GeoCalculator.Algorithm

Packages that use GeoCalculator.Algorithm
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 GeoCalculator.Algorithm in org.hermit.geo
 

Methods in org.hermit.geo that return GeoCalculator.Algorithm
 GeoCalculator.Algorithm AndoyerCalculator.getAlgorithm()
          Get the algorithm this calculator uses.
abstract  GeoCalculator.Algorithm GeoCalculator.getAlgorithm()
          Get the algorithm this calculator uses.
 GeoCalculator.Algorithm VincentyCalculator.getAlgorithm()
          Get the algorithm this calculator uses.
 GeoCalculator.Algorithm HaversineCalculator.getAlgorithm()
          Get the algorithm this calculator uses.
static GeoCalculator.Algorithm GeoCalculator.getCurrentAlgorithm()
          Get the geodetic calculator in use.
static GeoCalculator.Algorithm GeoCalculator.Algorithm.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static GeoCalculator.Algorithm[] GeoCalculator.Algorithm.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 GeoCalculator.Algorithm
static void GeoCalculator.setAlgorithm(GeoCalculator.Algorithm algorithm)
          Set the geodetic calculator to use for future calculations.
static void GeoCalculator.setAlgorithm(GeoCalculator.Algorithm algorithm, GeoConstants.Ellipsoid ellipsoid)
          Set the geodetic calcualtor to use for future calculations.