Is there an easy way to determine a point's region in the world based on it's latitude and longitude?

I have an entry form that a user enters in their address (city, state, and country). I then geocode this into a point that I can use on a Google Map.

However, I'd like to have it store the region of the point as well so I can use it for filtering the entry (North America, South America, Asia, Europe, Africa, Australia).

Is there a way to use the Google Maps API to determine the region of a geolocation?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

The Google Geocoder returns the country. Example:

     <Country>
      <CountryNameCode>US</CountryNameCode>
      <AdministrativeArea>
        <AdministrativeAreaName>CA</AdministrativeAreaName>
       <SubAdministrativeArea>
         <SubAdministrativeAreaName>Santa Clara</SubAdministrativeAreaName>
        ...

mapping countries to regions should be easy or easier to do.

Here is a list that would need some manual work: Countries by region

You may find a pre-filled table with ISO code to region mappings with some searching.

link|improve this answer
So you don't think google provides the region data for a point? I was hoping to make a simple javascript call to the api to determine the region. – proee Jan 27 '10 at 17:50
Good idea but I'm not sure mapping countries to regions is trivial. I know I've sat through boring discussions about it. – MarkJ Jan 27 '10 at 17:52
The United Nations Statistical Division seems to have some sort of official classification: see unstats.un.org/unsd/methods/m49/m49regin.htm – Pekka Jan 27 '10 at 17:56
I replaced the link in my answer with the UN one. – Pekka Jan 27 '10 at 17:56
My programming skills are limited so I was hoping to have an easy solution. My backup is to require the user to select their region, but that seems unnecessary if they've already entered in their country. – proee Jan 27 '10 at 17:58
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.