Beefy Boxes and Bandwidth Generously Provided by pair Networks RobOMonk
There's more than one way to do things
 
PerlMonks  

Comment on

( #3333=superdoc: print w/ replies, xml ) Need Help??
Yeah, it's basically a web-page parsing script, but this is still a quick and dirty useful tutorial on how to do that. Given an IP address or set of IP addresses (@x), it will spew back the latitude and longitude that NetGeo has for it (approximates only).
@x =('192.172.226.77'); #$/; foreach $ipaddress (@x) { $command = 'http://netgeo.caida.org/perl/netgeo.cgi/netgeo.cgi +?method=ge tLatLong\&target='.$ipaddress.'\&.cgifields=method\&.cgifields=nonbloc +king'; @foo = `lwp-request $command`; for $line (@foo) { chomp $line; $line =~ s/<br>//g; if ($line =~ /^(LAT:)/) { $lat = $line; $lat =~ s/^LAT://g; if ($lat < 0) {$lat = int($lat+180)} else {$lat = int($lat+0)} } elsif ($line =~ /^(LONG:)/) { $long = $line; $long =~ s/^LONG://g; if ($long < 0) {$long = int($long+180)} else {$long = int($long+0)} } } } print "Lat: $lat\tLong: $long";

This is from quite a while ago, but still works fine.

Kickstart


In reply to Getting longitude and latitude from an IP address by Kickstart

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • Outside of code tags, you may need to use entities for some characters:
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.
  • Log In?
    Username:
    Password:

    What's my password?
    Create A New User
    Chatterbox?
    and the web crawler heard nothing...

    How do I use this? | Other CB clients
    Other Users?
    Others studying the Monastery: (27)
    As of 2013-05-21 14:51 GMT
    Sections?
    Information?
    Find Nodes?
    Leftovers?
      Voting Booth?

      The best material for plates (tableware) is:









      Results (437 votes), past polls