-
-
24 Dec 2005 16:14:01 UTC
- Distribution: Geo-Coordinates-VandH
- Module version: 1.11
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (1)
- Testers (497 / 1 / 0)
- Kwalitee
Bus factor: 0- 12.80% Coverage
- License: unknown
- Activity
24 month- Tools
- Download (3.75KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- Math::Complex
- Math::Trig
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Geo::Coordinates::VandH - Convert and Manipulate telco V and H coordinates
SYNOPSIS To convert V: 5498 H: 2895 to lat/long coordinates:
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
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
Paul Timmins, <paul@timmins.net>
SEE ALSO
perl.
Module Install Instructions
To install Geo::Coordinates::VandH, copy and paste the appropriate command in to your terminal.
cpanm Geo::Coordinates::VandH
perl -MCPAN -e shell install Geo::Coordinates::VandH
For more information on module installation, please visit the detailed CPAN module installation guide.