From 42a63c759abfdbe54aae7d6d3b30a2d201e480c1 Mon Sep 17 00:00:00 2001 From: Carla Date: Tue, 12 Aug 2014 18:28:01 +0200 Subject: [PATCH] includes manual synonyms protocol fixes format --- geocoder/admin0/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/geocoder/admin0/README.md b/geocoder/admin0/README.md index 7f69b50..cbcad89 100644 --- a/geocoder/admin0/README.md +++ b/geocoder/admin0/README.md @@ -34,13 +34,18 @@ sql/subdivide_polygons.sql In order to add new entries manually for admin0, table [admin0_synonym_additions](https://geocoding.cartodb.com/tables/admin0_synonym_additions) has been created. The table contains the following columns to be populated: + 1. **adm0_a3** : ISO code for the region. Used to get the unique geometry for the region in terms of the synonym. + 2. **name**: Actually, the synonym you want to include for a specific region (identified ad adm0_a3). + 3. notes: Extra information as the source of the data. Use: 'data source: X'. + 4. rank: Use '9' for manually curated additions. The following query can be used: + ```` INSERT INTO admin0_synonym_additions (adm0_a3, name, notes, rank) VALUES ($iso3_code, $synonym, $notes, 9) ````