The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Convert::VH - Convert and Manipulate telco V and H coordinates

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

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

DESCRIPTION

									       Currently this package only supports the translation of V+H to Lat/Long.
									       Results are returned in decimal degrees.
									       Future versions will do mileage calculation between V+H coordinates, and convert Lat/Long to V+H coordinates.
                                                                                

AUTHOR

Paul Timmins, <paul@timmins.net>

SEE ALSO

perl.