Uses of Class
org.hermit.geo.Azimuth

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

Methods in org.hermit.geo that return Azimuth
 Azimuth Azimuth.add(double radians)
          Calculate the azimuth which is the given angular offset from this one.
 Azimuth Position.azimuth(Position pos)
          Calculate the azimuth (bearing) from this position to another, using the haversine formula, which is based on a spherical approximation of the Earth.
 Azimuth AndoyerCalculator.azimuth(Position p1, Position p2)
          Calculate the azimuth (bearing) from a position to another.
abstract  Azimuth GeoCalculator.azimuth(Position p1, Position p2)
          Calculate the azimuth (bearing) from a position to another.
 Azimuth VincentyCalculator.azimuth(Position p1, Position p2)
          Calculate the azimuth (bearing) from a position to another.
 Azimuth HaversineCalculator.azimuth(Position p1, Position p2)
          Calculate the azimuth (bearing) from a position to another.
static Azimuth Azimuth.fromDegrees(double degrees)
          Create a Azimuth from an azimuth given in degrees.
 Azimuth Vector.getAzimuth()
          Get the azimuth.
 

Methods in org.hermit.geo with parameters of type Azimuth
 Position Position.offset(Distance distance, Azimuth azimuth)
          Calculate a second position given its offset from this one, using the current geodetic calculator -- see GeoCalculator.
 Position AndoyerCalculator.offset(Position p1, Distance distance, Azimuth azimuth)
          Calculate a second position given its offset from a given position.
abstract  Position GeoCalculator.offset(Position p1, Distance distance, Azimuth azimuth)
          Calculate a second position given its offset from a given position.
 Position VincentyCalculator.offset(Position p1, Distance distance, Azimuth azimuth)
          Calculate a second position given its offset from a given position.
 Position HaversineCalculator.offset(Position p1, Distance distance, Azimuth azimuth)
          Calculate a second position given its offset from a given position.
 

Constructors in org.hermit.geo with parameters of type Azimuth
Vector(Distance distance, Azimuth azimuth)
          Create a Vector from a given distance and azimuth.