Uses of Class
org.hermit.geo.Vector

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

Methods in org.hermit.geo that return Vector
static Vector Vector.fromMetresRadians(double metres, double radians)
          Create a Vector from distance in metres and an azimuth given in radians.
static Vector Vector.fromNmRadians(double nmiles, double radians)
          Create a Vector from distance in nautical miles and an azimuth given in radians.
 Vector Position.vector(Position pos)
          Calculate the distance and azimuth from this position to another, using the haversine formula, which is based on a spherical approximation of the Earth.
 Vector AndoyerCalculator.vector(Position p1, Position p2)
          Calculate the azimuth and distance from a position to another.
abstract  Vector GeoCalculator.vector(Position p1, Position p2)
          Calculate the azimuth and distance from a position to another.
 Vector VincentyCalculator.vector(Position p1, Position p2)
          Calculate the azimuth and distance from a position to another.
 Vector HaversineCalculator.vector(Position p1, Position p2)
          Calculate the azimuth and distance from a position to another.
 

Methods in org.hermit.geo with parameters of type Vector
 Position Position.offset(Vector vector)
          Calculate a second position given its offset from this one, using the current geodetic calculator -- see GeoCalculator.