Update Sep.21.2011: I took the code in the two parts and made a github project off of it called Gborders. The code is simpler and there are more options to generate the borders overlay based on geographic regions. Happy forks!
In Part 1 we imported world political borders into a database table. In this second part we’ll use the table and generate a script that will be used to add the borders overlay to Google Maps. We’ll use the cool Ruby and some fancy GIS words along the way.
We left-off with a database table containing all borders. The goal today is to produce a Javascript file that will be used for overlaying polygons representing countries, over a map using the Google Maps API.
Let’s examine the table data first (I’m using mysql through the command line):
mysql> desc world_boundaries; +-----------+--------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-----------+--------------+------+-----+---------+-------+ | ID | int(11) | NO | PRI | NULL | | | FIPS | varchar(255) | YES | | NULL | | | ISO2 | varchar(255) | YES | | NULL | | | ISO3 | varchar(255) | YES | | NULL | | | UN | int(11) | YES | | NULL | | | NAME | varchar(255) | YES | | NULL | | | AREA | int(11) | YES | | NULL | | | POP2005 | bigint(20) | YES | | NULL | | | REGION | int(11) | YES | | NULL | | | SUBREGION | int(11) | YES | | NULL | | | LON | double | YES | | NULL | | | LAT | double | YES | | NULL | | | ogc_geom | geometry | YES | | NULL | | +-----------+--------------+------+-----+---------+-------+
A lot of information here but we’ll need just these fields: name (country name), iso2 (two letter country codes) the_geom, iso2 (border geometry) and region (grouping countries by regions). To check the data-set let’s examine a small country. I’ll pick the tiny State of Vatican for its size:
mysql> select iso2, AsText(ogc_geom), region from world_boundaries where iso2='VA'; +------+---------------------------------------------------------------------------------------------------------------------------------------------------+--------+ | iso2 | AsText(ogc_geom) | region | +------+---------------------------------------------------------------------------------------------------------------------------------------------------+--------+ | VA | MULTIPOLYGON(((12.445090330889 41.903117521785,12.451653339581 41.907989033391,12.456660170954 41.901426024699,12.445090330889 41.903117521785))) | 150 | +------+---------------------------------------------------------------------------------------------------------------------------------------------------+--------+ 1 row in set (0.00 sec)
The only surprise here is that the country border is described as a MULTIPLOYGON spatial type which describe a collection of polygons that don’t interset. This is in order to accommodate countries that have islands under ownership.
Let’s see how these points look on the map. We’ll use the excellent polygon encoder utility written by Mark McClure. Copy Vatican’s point set in the “Input Text” input box (choose lng/lat option):
12.445090330889, 41.903117521785 12.451653339581, 41.907989033391 12.456660170954, 41.901426024699 12.445090330889, 41.903117521785
Here’s the result:
Not very accurate but we’ll have to live with it, it’s a free data set after all…
Continue reading “Spincloud Labs: Political boundaries overlay in Google maps (Part 2)”