Geo::Coordinates::VandH - Convert and Manipulate telco V and H coordinates


Geo-Coordinates-VandH documentation  | view source Contained in the Geo-Coordinates-VandH distribution.

Index


NAME

Top

Geo::Coordinates::VandH - Convert and Manipulate telco V and H coordinates

SYNOPSIS To convert V: 5498 H: 2895 to lat/long coordinates:

Top

  use Geo::Coordinates::VandH;
  $blah=new Geo::Coordinates::VandH;
  ($lat,$lon) = $blah->vh2ll(5498,2895);
  printf "%lf,%lf\n",$lat,$lon;

 To find the mileage between 5498,2895 and 5527,2873 in miles:

  use Geo::Coordinates::VandH;
  $blah=new Geo::Coordinates::VandH;
  printf "Distance between Pontiac, MI and Southfield, MI is approximately: %d miles\n",$blah->distance(5498,2895,5527,2873);

DESCRIPTION

Top

      Currently this package supports the translation of V+H to Lat/Long, and mileage calculations between two V+H coordinates.
      Results are returned in decimal degrees for V+H to Lat/Long, and Miles for distance.
      Future versions will convert Lat/Long to V+H coordinates.

AUTHOR

Top

Paul Timmins, <paul@timmins.net>

SEE ALSO

Top

perl.


Geo-Coordinates-VandH documentation  | view source Contained in the Geo-Coordinates-VandH distribution.