Dump are available upon request, this maybe automated in the future if there's demand. Toolserver user can access these database by connecting to the server for their respective wikis. phpMyAdmin will helps introduce users to layout of the tables.
SELECT page_id, gc_lat, gc_lon, gc_region, page_title FROM u_dispenser_p.coord_enwiki JOIN page ON page_id = gc_from WHERE page_namespace=0 AND gc_from NOT IN (SELECT DISTINCT il_from from imagelinks) limit 100;The above query yields the first 100 pages have geographical coordinate but lack images, optimization and more sophisticated image analysis is left as an exercise for the reader.
&site=languageprefix (ex: commons, de, fr, ...). More Examples
iwcoord.py find possible coordinates that can be copied from one language to another, doesn't actually use ghel or the database.
regioncheck.py produces reports using Administrative Boundaries - First Level (ESRI) dataset retrieves all state boundary polygons and find the shortest distance to each one. If the point is found inside it skips it a moves to the next point. This way it gives the shortest distance to all points outside of the country.
It is reported data is being used from here on the project project
Error and warning outputted from the tool are available at http://toolserver.org/~dispenser/logs/. Error are items ghel could not parse, while warning are things it could parse but should be corrected for other programs to read correctly.
This section is rough draft of definitions
mysql> describe coord_dewiki;
+-------------+----------------------------------------------------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------------+----------------------------------------------------------+------+-----+---------+-------+
| gc_from | int(8) unsigned | NO | MUL | NULL | |
| gc_lat | float | NO | | NULL | |
| gc_lon | float | NO | | NULL | |
| gc_alt | float | YES | | NULL | |
| gc_head | float | YES | | NULL | |
| gc_dim | float unsigned | YES | | NULL | |
| gc_type | varchar(63) | YES | | NULL | |
| gc_size | float | YES | | NULL | |
| gc_region | varchar(127) | YES | | NULL | |
| gc_globe | enum('','mercury','venus','earth','moon','mars','ceres') | YES | | earth | |
| gc_primary | tinyint(1) | NO | | 0 | |
| gc_name | varchar(255) | NO | | NULL | |
| gc_location | point | NO | MUL | NULL | |
+-------------+----------------------------------------------------------+------+-----+---------+-------+
13 rows in set
The database is dump weekly and is accessible from http://toolserver.org/~dispenser/dumps/ as compressed sql dumps. Dumping is schedule for Thursdays at 9:40 UTC.