Skip to content

Instantly share code, notes, and snippets.

@jmccartie
Created May 13, 2011 00:24
Show Gist options
  • Save jmccartie/969736 to your computer and use it in GitHub Desktop.
Save jmccartie/969736 to your computer and use it in GitHub Desktop.
Geocode CLI
$ geocode Oklahoma City, OK
Latitude: 35.4675602
Longitude: -97.5164276
Full address: Oklahoma City, OK, USA
City: Oklahoma City
State/province: Oklahoma
Postal code:
Country: United States
Google map: http://maps.google.com/maps?q=35.4675602,-97.5164276
$ geocode 70.112.132.198
Latitude: 30.5248
Longitude: -97.6795
Full address: Round Rock, TX , United States
City: Round Rock
State/province: Texas
Postal code:
Country: United States
Google map: http://maps.google.com/maps?q=30.5248,-97.6795
$ geocode --json "1 Twins Way, Minneapolis"
{
"status": "OK",
"results": [ {
"types": [ "street_address" ],
"formatted_address": "536 1/2 N 3rd St...",
...
} ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment