Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Getting Locations using Distance

by kvale (Monsignor)
on Apr 12, 2006 at 17:28 UTC ( [id://542902]=note: print w/replies, xml ) Need Help??

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 );
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://542902]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (1)
As of 2024-04-25 03:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found