Created
May 13, 2011 00:24
-
-
Save jmccartie/969736 to your computer and use it in GitHub Desktop.
Geocode CLI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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