Help for this page

Select Code to Download


  1. or download this
    use Geo::Coder::US;
    Geo::Coder::US->set_db( "geocoder.db" );
    ...
                        "1005 Gravenstein Hwy N, 95472" );
    print "O'Reilly is located at $ora->{lat} degrees north, "
                                 "$ora->{long} degrees east.\n";
    
  2. or download this
    use Geo::Ellipsoid;
      $geo = Geo::Ellipsoid->new(ellipsoid=>'NAD27', units=>'degrees');
    ...
      ($lat,$lon) = $geo->at( @origin, 45.0, 2000 );
      ( $x, $y ) = $geo->displacement( @origin, $lat, $lon );
      @pos = $geo->location( $lat, $lon, $x, $y );