From c9e863a0a0c76ae8e0defff83cb11c895d38bdb6 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 12 Nov 2019 23:52:17 -0500 Subject: [PATCH 01/35] Add Country Coder dependency --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index ffa1b8852..4f35848fc 100644 --- a/package.json +++ b/package.json @@ -21,6 +21,9 @@ "txpull": "tx pull -a", "txpush": "tx push -s" }, + "dependencies": { + "country-coder": "^2.0.0" + }, "devDependencies": { "@fortawesome/fontawesome-svg-core": "^1.2.25", "@fortawesome/free-brands-svg-icons": "^5.11.2", From ada8f0afe1c9855959c4c845e633feb6f07e21a5 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 12 Nov 2019 23:52:38 -0500 Subject: [PATCH 02/35] Add include/excludeLocations properties to resources schema --- schema/feature.json | 24 +-- schema/resource.json | 369 ++++++++++++++++++++++++------------------- 2 files changed, 221 insertions(+), 172 deletions(-) diff --git a/schema/feature.json b/schema/feature.json index 524f9e01a..6366b80d6 100644 --- a/schema/feature.json +++ b/schema/feature.json @@ -1,15 +1,15 @@ { - "title": "Feature", - "description": "A GeoJSON Feature", - "allOf": [ - {"$ref": "http://json.schemastore.org/geojson.json#/definitions/feature"} - ], - "type": "object", - "required": ["id"], - "properties": { - "id": { - "type": "string", - "pattern": "^[-_.A-Za-z0-9]+$" - } + "title": "Feature", + "description": "A GeoJSON Feature", + "allOf": [ + { "$ref": "http://json.schemastore.org/geojson.json#/definitions/feature" } + ], + "type": "object", + "required": ["id"], + "properties": { + "id": { + "type": "string", + "pattern": "^[-_.A-Za-z0-9]+$" } + } } diff --git a/schema/resource.json b/schema/resource.json index d93247412..35bf72892 100644 --- a/schema/resource.json +++ b/schema/resource.json @@ -1,173 +1,222 @@ { - "title": "Resource", - "description": "An OpenStreetMap community resource", - "type": "object", - "additionalProperties": false, - "required": [ - "id", - "type", - "name", - "description", - "url" - ], - "properties": { - "id": { - "description": "(required) A unique identifier for the resource", + "title": "Resource", + "description": "An OpenStreetMap community resource", + "type": "object", + "additionalProperties": false, + "required": [ + "id", + "type", + "name", + "description", + "url" + ], + + "properties": { + "id": { + "description": "(required) A unique identifier for the resource", + "type": "string", + "pattern": "^[-_.A-Za-z0-9]+$" + }, + "featureId": { + "description": "(required) A unique identifier for the polygon", + "type": "string", + "pattern": "^[-_.A-Za-z0-9]+$" + }, + "type": { + "description": "(required) Type of community resource", + "type": "string", + "enum": [ + "aparat", + "discord", + "discourse", + "facebook", + "forum", + "github", + "group", + "irc", + "mailinglist", + "matrix", + "meetup", + "osm", + "osm-lc", + "reddit", + "slack", + "telegram", + "twitter", + "wiki", + "youthmappers", + "youtube" + ] + }, + "name": { + "$comment": "Assumed to be in English, this value will be sent to Transifex for translation", + "description": "(required) Display name for this community resource", + "type": "string" + }, + "description": { + "$comment": "Assumed to be in English, this value will be sent to Transifex for translation", + "description": "(required) One line description of the community resource", + "type": "string" + }, + "extendedDescription": { + "$comment": "Assumed to be in English, this value will be sent to Transifex for translation", + "description": "(optional) Longer description of the community resource", + "type": "string" + }, + "url": { + "description": "(required) A url link to visit the community resource", + "type": "string" + }, + "signupUrl": { + "description": "(optional) A url link to sign up for the community resource", + "type": "string" + }, + "contacts": { + "description": "(optional) People to contact about this community resource", + "type": "array", + "minItems": 1, + "uniqueItems": true, + "items": { + "type": "object", + "required": [ + "name", + "email" + ], + "properties": { + "name": { + "description": "The contact person's name", + "type": "string" + }, + "email": { + "description": "The contact person's email address", "type": "string", - "pattern": "^[-_.A-Za-z0-9]+$" + "format": "email" + } + } + } + }, + "order": { + "$comment": "When several resources with same geography are present, this controls the display order.", + "description": "(optional) Suggested sort order for this resource (default = 0, higher numbers display more prominently)", + "type": "number" + }, + "events": { + "description": "(optional) Featured events for this resource", + "type": "array", + "uniqueItems": true, + "items": { + "type": "object", + "required": [ + "name", + "description", + "when", + "where" + ], + "dependencies": { + "i18n": { "required": ["id"] } }, - "featureId": { - "description": "(required) A unique identifier for the polygon", + "properties": { + "i18n": { + "enum": [ true ], + "description": "(optional) if true, `name`, `description` and `where` will be translated", + "type": "boolean" + }, + "id": { + "description": "(required if i18n=true) A unique identifier for the event", "type": "string", "pattern": "^[-_.A-Za-z0-9]+$" - }, - "type": { - "description": "(required) Type of community resource", - "type": "string", - "enum": [ - "aparat", - "discord", - "discourse", - "facebook", - "forum", - "github", - "group", - "irc", - "mailinglist", - "matrix", - "meetup", - "osm", - "osm-lc", - "reddit", - "slack", - "telegram", - "twitter", - "wiki", - "youthmappers", - "youtube" - ] - }, - "name": { - "$comment": "Assumed to be in English, this value will be sent to Transifex for translation", - "description": "(required) Display name for this community resource", + }, + "name": { + "$comment": "In local language by default, in English if `i18n=true`", + "description": "(required) Name of the event", "type": "string" - }, - "description": { - "$comment": "Assumed to be in English, this value will be sent to Transifex for translation", - "description": "(required) One line description of the community resource", + }, + "description": { + "$comment": "In local language by default, in English if `i18n=true`", + "description": "(required) One line description of the event", "type": "string" - }, - "extendedDescription": { - "$comment": "Assumed to be in English, this value will be sent to Transifex for translation", - "description": "(optional) Longer description of the community resource", + }, + "where": { + "$comment": "In local language by default, in English if `i18n=true`", + "description": "(required) Where the event is", "type": "string" - }, - "url": { - "description": "(required) A url link to visit the community resource", + }, + "when": { + "description": "(required) When the event is (Should be a string parseable by Date.parse, and assumed to be local time zone for the event)", "type": "string" - }, - "signupUrl": { - "description": "(optional) A url link to sign up for the community resource", + }, + "url": { + "description": "(optional) A url link for the event", "type": "string" - }, - "contacts": { - "description": "(optional) People to contact about this community resource", - "type": "array", - "minItems": 1, - "uniqueItems": true, - "items": { - "type": "object", - "required": [ - "name", - "email" - ], - "properties": { - "name": { - "description": "The contact person's name", - "type": "string" - }, - "email": { - "description": "The contact person's email address", - "type": "string", - "format": "email" - } - } - } - }, - "order": { - "$comment": "When several resources with same geography are present, this controls the display order.", - "description": "(optional) Suggested sort order for this resource (default = 0, higher numbers display more prominently)", - "type": "number" - }, - "events": { - "description": "(optional) Featured events for this resource", - "type": "array", - "uniqueItems": true, - "items": { - "type": "object", - "required": [ - "name", - "description", - "when", - "where" - ], - "dependencies": { - "i18n": { "required": ["id"] } - }, - "properties": { - "i18n": { - "enum": [ true ], - "description": "(optional) if true, `name`, `description` and `where` will be translated", - "type": "boolean" - }, - "id": { - "description": "(required if i18n=true) A unique identifier for the event", - "type": "string", - "pattern": "^[-_.A-Za-z0-9]+$" - }, - "name": { - "$comment": "In local language by default, in English if `i18n=true`", - "description": "(required) Name of the event", - "type": "string" - }, - "description": { - "$comment": "In local language by default, in English if `i18n=true`", - "description": "(required) One line description of the event", - "type": "string" - }, - "where": { - "$comment": "In local language by default, in English if `i18n=true`", - "description": "(required) Where the event is", - "type": "string" - }, - "when": { - "description": "(required) When the event is (Should be a string parseable by Date.parse, and assumed to be local time zone for the event)", - "type": "string" - }, - "url": { - "description": "(optional) A url link for the event", - "type": "string" - } - } - } - }, - "countryCodes": { - "description": "(optional) Array of ISO 3166-1 alpha-2 two letter country codes in lowercase", - "type": "array", - "uniqueItems": true, - "items": { - "type": "string", - "pattern": "^[a-z]{2}$" - } - }, - "languageCodes": { - "description": "(optional) Array of ISO-639-1 (2 letter) or ISO-639-3 (3 letter) codes in lowercase", - "type": "array", - "uniqueItems": true, - "items": { - "type": "string", - "pattern": "^[a-z]{2,3}(-[a-zA-Z]{2})?$" - } + } } + } + }, + "countryCodes": { + "description": "(optional) Array of ISO 3166-1 alpha-2 two letter country codes in lowercase", + "type": "array", + "uniqueItems": true, + "items": { + "type": "string", + "pattern": "^[a-z]{2}$" + } + }, + "includeLocations": { + "$comment": "See country-coder documentation for compatible values: https://github.com/ideditor/country-coder#readme", + "description": "(optional) Array of locations where the resource is available", + "type": "array", + "uniqueItems": true, + "items": { + "anyOf": [ + { "$ref": "#/definitions/locationCode" }, + { "$ref": "#/definitions/coordinatePair" }, + { "$ref": "#/definitions/geojsonFilename" } + ] + } + }, + "excludeLocations": { + "$comment": "See country-coder documentation for compatible values: https://github.com/ideditor/country-coder#readme", + "description": "(optional) Array of locations where the resource is unavailable (after applying includeLocations)", + "type": "array", + "uniqueItems": true, + "items": { + "anyOf": [ + { "$ref": "#/definitions/locationCode" }, + { "$ref": "#/definitions/coordinatePair" }, + { "$ref": "#/definitions/geojsonFilename" } + ] + } + }, + "languageCodes": { + "description": "(optional) Array of ISO-639-1 (2 letter) or ISO-639-3 (3 letter) codes in lowercase", + "type": "array", + "uniqueItems": true, + "items": { + "type": "string", + "pattern": "^[a-z]{2,3}(-[a-zA-Z]{2})?$" + } + } + }, + + "definitions": { + "locationCode": { + "$comment": "See country-coder documentation for compatible values: https://github.com/ideditor/country-coder#readme", + "description": "A country code (ISO 3166-1, United Nations M49, or anything recognized by country-coder)", + "type": "string" + }, + "coordinatePair": { + "description": "A coordinate pair formatted as [longitude, latitude]", + "type": "array", + "items": { + "type": "number", + "minItems": 2, + "maxItems": 2 + } + }, + "geojsonFilename": { + "description": "A filename for one of the geojson features in this project", + "type": "string", + "pattern": "^.*\\.geojson$" } + } } From 11ee9ea8392e98c09e3993b64b20a596730c453e Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 12 Nov 2019 23:53:32 -0500 Subject: [PATCH 03/35] Add includeResources M49 codes for world and latam resources --- resources/world/OSM-Discord.json | 1 + resources/world/OSM-Facebook.json | 1 + resources/world/OSM-IRC.json | 1 + resources/world/OSM-Reddit.json | 1 + resources/world/OSM-Telegram.json | 1 + resources/world/OSM-Twitter.json | 1 + resources/world/OSM-help.json | 1 + resources/world/OSMF.json | 1 + resources/world/latam-facebook.json | 2 +- resources/world/latam-telegram.json | 2 +- resources/world/latam-twitter.json | 2 +- resources/world/latam.json | 2 +- 12 files changed, 12 insertions(+), 4 deletions(-) diff --git a/resources/world/OSM-Discord.json b/resources/world/OSM-Discord.json index 330750a8a..e3dbc1b52 100644 --- a/resources/world/OSM-Discord.json +++ b/resources/world/OSM-Discord.json @@ -1,6 +1,7 @@ { "id": "OSM-Discord", "type": "discord", + "includeLocations": ["001"], "languageCodes": ["en"], "name": "OpenStreetMap Discord", "description": "Get in touch with other mappers via Discord", diff --git a/resources/world/OSM-Facebook.json b/resources/world/OSM-Facebook.json index 49f3bd266..d7398152a 100644 --- a/resources/world/OSM-Facebook.json +++ b/resources/world/OSM-Facebook.json @@ -1,6 +1,7 @@ { "id": "OSM-Facebook", "type": "facebook", + "includeLocations": ["001"], "languageCodes": ["en"], "name": "OpenStreetMap on Facebook", "description": "Like us on Facebook for news and updates about OpenStreetMap.", diff --git a/resources/world/OSM-IRC.json b/resources/world/OSM-IRC.json index 662e4be9f..660666069 100644 --- a/resources/world/OSM-IRC.json +++ b/resources/world/OSM-IRC.json @@ -1,6 +1,7 @@ { "id": "OSM-IRC", "type": "irc", + "includeLocations": ["001"], "languageCodes": ["en"], "name": "OpenStreetMap IRC", "description": "Join #osm on irc.oftc.net (port 6667)", diff --git a/resources/world/OSM-Reddit.json b/resources/world/OSM-Reddit.json index 4b7450694..3272adf3d 100644 --- a/resources/world/OSM-Reddit.json +++ b/resources/world/OSM-Reddit.json @@ -1,6 +1,7 @@ { "id": "OSM-Reddit", "type": "reddit", + "includeLocations": ["001"], "languageCodes": ["en"], "name": "OpenStreetMap on Reddit", "description": "/r/openstreetmap/ is a great place to learn more about OpenStreetMap. Ask us anything!", diff --git a/resources/world/OSM-Telegram.json b/resources/world/OSM-Telegram.json index 4736573b4..8d2ebd720 100644 --- a/resources/world/OSM-Telegram.json +++ b/resources/world/OSM-Telegram.json @@ -1,6 +1,7 @@ { "id": "OSM-Telegram", "type": "telegram", + "includeLocations": ["001"], "languageCodes": ["en"], "name": "OpenStreetMap Telegram", "description": "Join the OpenStreetMap Telegram global supergroup at {url}", diff --git a/resources/world/OSM-Twitter.json b/resources/world/OSM-Twitter.json index f6e495d5f..efd2fb037 100644 --- a/resources/world/OSM-Twitter.json +++ b/resources/world/OSM-Twitter.json @@ -1,6 +1,7 @@ { "id": "OSM-Twitter", "type": "twitter", + "includeLocations": ["001"], "languageCodes": ["en"], "name": "OpenStreetMap Twitter", "description": "Follow us on Twitter at {url}", diff --git a/resources/world/OSM-help.json b/resources/world/OSM-help.json index b0a0fbe97..7cf3750d1 100644 --- a/resources/world/OSM-help.json +++ b/resources/world/OSM-help.json @@ -1,6 +1,7 @@ { "id": "OSM-help", "type": "forum", + "includeLocations": ["001"], "languageCodes": ["en"], "name": "OpenStreetMap Help", "description": "Ask a question and get answers on OSM's community-driven question and answer site.", diff --git a/resources/world/OSMF.json b/resources/world/OSMF.json index a85ebfaa6..bc81e4d36 100644 --- a/resources/world/OSMF.json +++ b/resources/world/OSMF.json @@ -1,6 +1,7 @@ { "id": "OSMF", "type": "osm", + "includeLocations": ["001"], "languageCodes": ["en", "nl", "fr", "it", "ja", "ru"], "name": "OpenStreetMap Foundation", "description": "OSMF is a UK-based not-for-profit that supports the OpenStreetMap Project", diff --git a/resources/world/latam-facebook.json b/resources/world/latam-facebook.json index e2c7b3a2c..b58b5370a 100644 --- a/resources/world/latam-facebook.json +++ b/resources/world/latam-facebook.json @@ -1,7 +1,7 @@ { "id": "LATAM-Facebook", - "featureId": "latam", "type": "facebook", + "includeLocations": ["419"], "languageCodes": ["es", "pt"], "name": "OpenStreetMap Latam Facebook", "description": "OpenStreetMap Latam on Facebook", diff --git a/resources/world/latam-telegram.json b/resources/world/latam-telegram.json index 3ec33f6b9..6de483041 100644 --- a/resources/world/latam-telegram.json +++ b/resources/world/latam-telegram.json @@ -1,7 +1,7 @@ { "id": "LATAM-Telegram", - "featureId": "latam", "type": "telegram", + "includeLocations": ["419"], "languageCodes": ["es", "pt"], "name": "OpenStreetMap Latam Telegram", "description": "OpenStreetMap Telegram for Latin America", diff --git a/resources/world/latam-twitter.json b/resources/world/latam-twitter.json index 807b98d14..fb848c8cd 100644 --- a/resources/world/latam-twitter.json +++ b/resources/world/latam-twitter.json @@ -1,7 +1,7 @@ { "id": "LATAM-Twitter", - "featureId": "latam", "type": "twitter", + "includeLocations": ["419"], "languageCodes": ["es", "pt"], "name": "OpenStreetMap Latam Twitter", "description": "Follow us on Twitter at {url}", diff --git a/resources/world/latam.json b/resources/world/latam.json index c91d772dd..c859fa163 100644 --- a/resources/world/latam.json +++ b/resources/world/latam.json @@ -1,7 +1,7 @@ { "id": "osm-latam", - "featureId": "latam", "type": "osm", + "includeLocations": ["419"], "languageCodes": ["es", "pt"], "name": "OpenStreetMap Latam", "description": "Supporting OpenStreetMap in Latin America", From 01ba1537ac2612020cd2b74bd909c3861a4f2fc2 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 12 Nov 2019 23:54:09 -0500 Subject: [PATCH 04/35] Tests for valid includeLocations strings against country coder --- build.js | 389 +++++++++++++++++++++++++++++-------------------------- 1 file changed, 207 insertions(+), 182 deletions(-) diff --git a/build.js b/build.js index 7bc77b60d..64418e589 100644 --- a/build.js +++ b/build.js @@ -3,6 +3,7 @@ const colors = require('colors/safe'); const fs = require('fs'); const glob = require('glob'); +const CC = require('country-coder'); const Validator = require('jsonschema').Validator; const shell = require('shelljs'); const prettyStringify = require('json-stringify-pretty-compact'); @@ -23,178 +24,200 @@ buildAll(); function buildAll() { - console.log('building data'); - console.time(colors.green('data built')); - - // Start clean - shell.rm('-f', ['dist/*.json', 'dist/*.js', 'i18n/en.yaml']); - - let tstrings = {}; // translation strings - const features = generateFeatures(); - const resources = generateResources(tstrings, features); - const combined = generateCombined(features, resources); - - // Save individual data files - fs.writeFileSync('dist/combined.geojson', prettyStringify(combined) ); - fs.writeFileSync('dist/combined.min.geojson', JSON.stringify(combined) ); - fs.writeFileSync('dist/features.json', prettyStringify({ features: features }, { maxLength: 9999 })); - fs.writeFileSync('dist/features.min.json', JSON.stringify({ features: features }) ); - fs.writeFileSync('dist/resources.json', prettyStringify({ resources: resources }, { maxLength: 9999 })); - fs.writeFileSync('dist/resources.min.json', JSON.stringify({ resources: resources }) ); - fs.writeFileSync('i18n/en.yaml', YAML.safeDump({ en: tstrings }, { lineWidth: -1 }) ); - - console.timeEnd(colors.green('data built')); + console.log('building data'); + console.time(colors.green('data built')); + + // Start clean + shell.rm('-f', ['dist/*.json', 'dist/*.js', 'i18n/en.yaml']); + + let tstrings = {}; // translation strings + const features = generateFeatures(); + const resources = generateResources(tstrings, features); + const combined = generateCombined(features, resources); + + // Save individual data files + fs.writeFileSync('dist/combined.geojson', prettyStringify(combined) ); + fs.writeFileSync('dist/combined.min.geojson', JSON.stringify(combined) ); + fs.writeFileSync('dist/features.json', prettyStringify({ features: features }, { maxLength: 9999 })); + fs.writeFileSync('dist/features.min.json', JSON.stringify({ features: features }) ); + fs.writeFileSync('dist/resources.json', prettyStringify({ resources: resources }, { maxLength: 9999 })); + fs.writeFileSync('dist/resources.min.json', JSON.stringify({ resources: resources }) ); + fs.writeFileSync('i18n/en.yaml', YAML.safeDump({ en: tstrings }, { lineWidth: -1 }) ); + + console.timeEnd(colors.green('data built')); } function generateFeatures() { - let features = {}; - let files = {}; - process.stdout.write('Features:'); - glob.sync(__dirname + '/features/**/*.geojson').forEach(function(file) { - const contents = fs.readFileSync(file, 'utf8'); - let parsed; - try { - parsed = JSON.parse(contents); - } catch (jsonParseError) - { - console.error(colors.red('Error - ' + jsonParseError.message + ' in:')); - console.error(' ' + colors.yellow(file)); - process.exit(1); - } + let features = {}; + let files = {}; + process.stdout.write('Features:'); + glob.sync(__dirname + '/features/**/*.geojson').forEach(file => { + const contents = fs.readFileSync(file, 'utf8'); + let parsed; + try { + parsed = JSON.parse(contents); + } catch (jsonParseError) { + console.error(colors.red('Error - ' + jsonParseError.message + ' in:')); + console.error(' ' + colors.yellow(file)); + process.exit(1); + } - let feature = precision(rewind(parsed, true), 5); - let fc = feature.features; + let feature = precision(rewind(parsed, true), 5); + let fc = feature.features; - // A FeatureCollection with a single feature inside (geojson.io likes to make these). - if (feature.type === 'FeatureCollection' && Array.isArray(fc) && fc.length === 1) { - if (feature.id && !fc[0].id) { - fc[0].id = feature.id; - } - feature = fc[0]; - } + // A FeatureCollection with a single feature inside (geojson.io likes to make these). + if (feature.type === 'FeatureCollection' && Array.isArray(fc) && fc.length === 1) { + if (feature.id && !fc[0].id) { + fc[0].id = feature.id; + } + feature = fc[0]; + } - // calculate area and set a property for it - let props = feature.properties || {}; - let area = calcArea.geometry(feature.geometry) / 1e6; // m² to km² - props.area = Number(area.toFixed(2)); - feature.properties = props; - - validateFile(file, feature, featureSchema); - prettifyFile(file, feature, contents); - - const id = feature.id; - if (files[id]) { - console.error(colors.red('Error - Duplicate feature id: ') + colors.yellow(id)); - console.error(' ' + colors.yellow(files[id])); - console.error(' ' + colors.yellow(file)); - process.exit(1); - } - features[id] = feature; - files[id] = file; + // calculate area and set a property for it + let props = feature.properties || {}; + let area = calcArea.geometry(feature.geometry) / 1e6; // m² to km² + props.area = Number(area.toFixed(2)); + feature.properties = props; + + validateFile(file, feature, featureSchema); + prettifyFile(file, feature, contents); + + const id = feature.id; + if (files[id]) { + console.error(colors.red('Error - Duplicate feature id: ') + colors.yellow(id)); + console.error(' ' + colors.yellow(files[id])); + console.error(' ' + colors.yellow(file)); + process.exit(1); + } + features[id] = feature; + files[id] = file; - process.stdout.write(colors.green('✓')); - }); + process.stdout.write(colors.green('✓')); + }); - process.stdout.write(Object.keys(files).length + '\n'); + process.stdout.write(Object.keys(files).length + '\n'); - return features; + return features; } -function generateResources(tstrings, features) { - let resources = {}; - let files = {}; - process.stdout.write('Resources:'); - glob.sync(__dirname + '/resources/**/*.json').forEach(function(file) { - let contents = fs.readFileSync(file, 'utf8'); - - let resource; - try { - resource = JSON.parse(contents); - } catch (jsonParseError) { - console.error(colors.red('Error - ' + jsonParseError.message + ' in:')); - console.error(' ' + colors.yellow(file)); - process.exit(1); - } - validateFile(file, resource, resourceSchema); - prettifyFile(file, resource, contents); +function generateResources(tstrings, features) { + let resources = {}; + let files = {}; + process.stdout.write('Resources:'); + glob.sync(__dirname + '/resources/**/*.json').forEach(file => { + let contents = fs.readFileSync(file, 'utf8'); + + let resource; + try { + resource = JSON.parse(contents); + } catch (jsonParseError) { + console.error(colors.red('Error - ' + jsonParseError.message + ' in:')); + console.error(' ' + colors.yellow(file)); + process.exit(1); + } - let resourceId = resource.id; - if (files[resourceId]) { - console.error(colors.red('Error - Duplicate resource id: ') + colors.yellow(resourceId)); - console.error(' ' + colors.yellow(files[resourceId])); - console.error(' ' + colors.yellow(file)); - process.exit(1); - } + validateFile(file, resource, resourceSchema); + prettifyFile(file, resource, contents); - let featureId = resource.featureId; - if (featureId && !features[featureId]) { - console.error(colors.red('Error - Unknown feature id: ') + colors.yellow(featureId)); - console.error(' ' + colors.yellow(file)); - process.exit(1); - } + let resourceId = resource.id; + if (files[resourceId]) { + console.error(colors.red('Error - Duplicate resource id: ') + colors.yellow(resourceId)); + console.error(' ' + colors.yellow(files[resourceId])); + console.error(' ' + colors.yellow(file)); + process.exit(1); + } - if (!featureId && !/\/resources\/world/.test(file)) { - console.error(colors.red('Error - feature id is required for non-worldwide resource:')); - console.error(' ' + colors.yellow(file)); - process.exit(1); - } + let featureId = resource.featureId; + if (featureId && !features[featureId]) { + console.error(colors.red('Error - Unknown feature id: ') + colors.yellow(featureId)); + console.error(' ' + colors.yellow(file)); + process.exit(1); + } - resources[resourceId] = resource; - files[resourceId] = file; + if (!featureId && !/\/resources\/world/.test(file)) { + console.error(colors.red('Error - feature id is required for non-worldwide resource:')); + console.error(' ' + colors.yellow(file)); + process.exit(1); + } - // collect translation strings for this resource - tstrings[resourceId] = { - name: resource.name, - description: resource.description + if (resource.includeLocations) { + let test = resource.includeLocations[0]; + console.log(' ' + colors.yellow(file)); + console.log(' Testing: ' + colors.yellow(test)); + let found; + if (test === '001') { + found = { + type: 'Feature', + properties: { + nameEn: 'World' + } }; + } else { + found = CC.feature(resource.includeLocations[0]); + } + if (found) { + console.log(' Found: ' + colors.yellow(found.properties.nameEn)); + } else { + console.log(' No Match!'); + } + } + + resources[resourceId] = resource; + files[resourceId] = file; - if (resource.extendedDescription) { - tstrings[resourceId].extendedDescription = resource.extendedDescription; + // collect translation strings for this resource + tstrings[resourceId] = { + name: resource.name, + description: resource.description + }; + + if (resource.extendedDescription) { + tstrings[resourceId].extendedDescription = resource.extendedDescription; + } + + // Validate event dates and collect strings from upcoming events (where `i18n=true`) + if (resource.events) { + let estrings = {}; + + for (let i = 0; i < resource.events.length; i++) { + let event = resource.events[i]; + + // check date + const d = new Date(event.when); + if (isNaN(d.getTime())) { + console.error(colors.red('Error - Bad date: ') + colors.yellow(event.when)); + console.error(' ' + colors.yellow(file)); + process.exit(1); } - // Validate event dates and collect strings from upcoming events (where `i18n=true`) - if (resource.events) { - let estrings = {}; - - for (let i = 0; i < resource.events.length; i++) { - let event = resource.events[i]; - - // check date - const d = new Date(event.when); - if (isNaN(d.getTime())) { - console.error(colors.red('Error - Bad date: ') + colors.yellow(event.when)); - console.error(' ' + colors.yellow(file)); - process.exit(1); - } - - if (!event.i18n) continue; - - if (estrings[event.id]) { - console.error(colors.red('Error - Duplicate event id: ') + colors.yellow(event.id)); - console.error(' ' + colors.yellow(file)); - process.exit(1); - } - - estrings[event.id] = { - name: event.name, - description: event.description, - where: event.where - }; - } - - if (Object.keys(estrings).length) { - tstrings[resourceId].events = estrings; - } + if (!event.i18n) continue; + + if (estrings[event.id]) { + console.error(colors.red('Error - Duplicate event id: ') + colors.yellow(event.id)); + console.error(' ' + colors.yellow(file)); + process.exit(1); } - process.stdout.write(colors.green('✓')); - }); + estrings[event.id] = { + name: event.name, + description: event.description, + where: event.where + }; + } + + if (Object.keys(estrings).length) { + tstrings[resourceId].events = estrings; + } + } - process.stdout.write(Object.keys(files).length + '\n'); + process.stdout.write(colors.green('✓')); + }); - return resources; + process.stdout.write(Object.keys(files).length + '\n'); + + return resources; } @@ -235,53 +258,55 @@ function generateResources(tstrings, features) { // // function generateCombined(features, resources) { - let keepFeatures = {}; - Object.keys(resources).forEach(resourceId => { - const resource = resources[resourceId]; - const featureId = resource.featureId; - if (!featureId) return; // note: this will exclude worldwide resources - - const origFeature = features[featureId]; - if (!origFeature) return; - - let keepFeature = keepFeatures[featureId]; - if (!keepFeature) { - keepFeature = deepClone(origFeature); - keepFeature.properties.resources = {}; - keepFeatures[featureId] = keepFeature; - } + let keepFeatures = {}; + Object.keys(resources).forEach(resourceId => { + const resource = resources[resourceId]; + const featureId = resource.featureId; + if (!featureId) return; // note: this will exclude worldwide resources + + const origFeature = features[featureId]; + if (!origFeature) return; + + let keepFeature = keepFeatures[featureId]; + if (!keepFeature) { + keepFeature = deepClone(origFeature); + keepFeature.properties.resources = {}; + keepFeatures[featureId] = keepFeature; + } - keepFeature.properties.resources[resourceId] = deepClone(resource); - }); + keepFeature.properties.resources[resourceId] = deepClone(resource); + }); - return { type: 'FeatureCollection', features: Object.values(keepFeatures) }; + return { type: 'FeatureCollection', features: Object.values(keepFeatures) }; } function validateFile(file, resource, schema) { - const validationErrors = v.validate(resource, schema).errors; - if (validationErrors.length) { - console.error(colors.red('Error - Schema validation:')); - console.error(' ' + colors.yellow(file + ': ')); - validationErrors.forEach(function(error) { - if (error.property) { - console.error(' ' + colors.yellow(error.property + ' ' + error.message)); - } else { - console.error(' ' + colors.yellow(error)); - } - }); - process.exit(1); - } + const validationErrors = v.validate(resource, schema).errors; + if (validationErrors.length) { + console.error(colors.red('Error - Schema validation:')); + console.error(' ' + colors.yellow(file + ': ')); + validationErrors.forEach(error => { + if (error.property) { + console.error(' ' + colors.yellow(error.property + ' ' + error.message)); + } else { + console.error(' ' + colors.yellow(error)); + } + }); + process.exit(1); + } } + function prettifyFile(file, object, contents) { - const pretty = prettyStringify(object, { maxLength: 100 }); - if (pretty !== contents) { - fs.writeFileSync(file, pretty); - } + const pretty = prettyStringify(object, { maxLength: 100 }); + if (pretty !== contents) { + fs.writeFileSync(file, pretty); + } } + function deepClone(obj) { - return JSON.parse(JSON.stringify(obj)); + return JSON.parse(JSON.stringify(obj)); } From 5e31630d7b23de2426917a6e2c75a1a4250425fe Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 13 Nov 2019 22:52:30 -0500 Subject: [PATCH 05/35] Upgrade to country-coder 2.1.0, which supports 'world' --- build.js | 12 +----------- package.json | 2 +- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/build.js b/build.js index 64418e589..43f905307 100644 --- a/build.js +++ b/build.js @@ -146,17 +146,7 @@ function generateResources(tstrings, features) { let test = resource.includeLocations[0]; console.log(' ' + colors.yellow(file)); console.log(' Testing: ' + colors.yellow(test)); - let found; - if (test === '001') { - found = { - type: 'Feature', - properties: { - nameEn: 'World' - } - }; - } else { - found = CC.feature(resource.includeLocations[0]); - } + let found = CC.feature(resource.includeLocations[0]); if (found) { console.log(' Found: ' + colors.yellow(found.properties.nameEn)); } else { diff --git a/package.json b/package.json index 4f35848fc..d1ea1aa45 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "txpush": "tx push -s" }, "dependencies": { - "country-coder": "^2.0.0" + "country-coder": "^2.1.0" }, "devDependencies": { "@fortawesome/fontawesome-svg-core": "^1.2.25", From d30a2330205474c84f5fd02f5ce274ba28fac24e Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 13 Nov 2019 23:55:00 -0500 Subject: [PATCH 06/35] Validate `includeLocation` and `excludeLocation` values --- build.js | 110 +++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 70 insertions(+), 40 deletions(-) diff --git a/build.js b/build.js index 43f905307..76fdbef02 100644 --- a/build.js +++ b/build.js @@ -143,15 +143,10 @@ function generateResources(tstrings, features) { } if (resource.includeLocations) { - let test = resource.includeLocations[0]; - console.log(' ' + colors.yellow(file)); - console.log(' Testing: ' + colors.yellow(test)); - let found = CC.feature(resource.includeLocations[0]); - if (found) { - console.log(' Found: ' + colors.yellow(found.properties.nameEn)); - } else { - console.log(' No Match!'); - } + validateLocations(resource.includeLocations, file, features); + } + if (resource.excludeLocations) { + validateLocations(resource.excludeLocations, file, features); } resources[resourceId] = resource; @@ -211,6 +206,72 @@ function generateResources(tstrings, features) { } +function validateLocations(locations, file, features) { + locations.forEach(location => { + if (Array.isArray(location)) { // a [lon,lat] coordinate pair? + if (location.length === 2 && Number.isFinite(location[0]) && Number.isFinite(location[1]) && + location[0] >= -180 && location[0] <= 180 && location[1] >= -90 && location[1] <= 90 + ) { + console.log(' Lon,Lat: ' + colors.yellow(location)); + } else { + console.error(colors.red('Error - Invalid location: ') + colors.yellow(location)); + console.error(' ' + colors.yellow(file)); + process.exit(1); + } + + } else if (/^\S+\.geojson$/i.test(location)) { // a .geojson filename? + if (features[location]) { + console.log(' GeoJSON: ' + colors.yellow(location)); + } else { + console.error(colors.red('Error - Invalid location: ') + colors.yellow(location)); + console.error(' ' + colors.yellow(file)); + process.exit(1); + } + + } else { // a country-coder string? + let found = CC.feature(location); + if (found) { + console.log(' Country Coder: ' + colors.yellow(found.properties.nameEn)); + } else { + console.error(colors.red('Error - Invalid location: ') + colors.yellow(location)); + console.error(' ' + colors.yellow(file)); + process.exit(1); + } + } + }); +} + + +function validateFile(file, resource, schema) { + const validationErrors = v.validate(resource, schema).errors; + if (validationErrors.length) { + console.error(colors.red('Error - Schema validation:')); + console.error(' ' + colors.yellow(file + ': ')); + validationErrors.forEach(error => { + if (error.property) { + console.error(' ' + colors.yellow(error.property + ' ' + error.message)); + } else { + console.error(' ' + colors.yellow(error)); + } + }); + process.exit(1); + } +} + + +function prettifyFile(file, object, contents) { + const pretty = prettyStringify(object, { maxLength: 100 }); + if (pretty !== contents) { + fs.writeFileSync(file, pretty); + } +} + + +function deepClone(obj) { + return JSON.parse(JSON.stringify(obj)); +} + + // Generate a combined GeoJSON FeatureCollection // containing all the features w/ resources stored in properties // @@ -269,34 +330,3 @@ function generateCombined(features, resources) { return { type: 'FeatureCollection', features: Object.values(keepFeatures) }; } - - -function validateFile(file, resource, schema) { - const validationErrors = v.validate(resource, schema).errors; - if (validationErrors.length) { - console.error(colors.red('Error - Schema validation:')); - console.error(' ' + colors.yellow(file + ': ')); - validationErrors.forEach(error => { - if (error.property) { - console.error(' ' + colors.yellow(error.property + ' ' + error.message)); - } else { - console.error(' ' + colors.yellow(error)); - } - }); - process.exit(1); - } -} - - -function prettifyFile(file, object, contents) { - const pretty = prettyStringify(object, { maxLength: 100 }); - if (pretty !== contents) { - fs.writeFileSync(file, pretty); - } -} - - -function deepClone(obj) { - return JSON.parse(JSON.stringify(obj)); -} - From 4427f1ab2b4bb0c8f33130308f7ef8a4f50d4407 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 14 Nov 2019 00:21:13 -0500 Subject: [PATCH 07/35] From now on, set feature ids to match the feature filename This lets us refer to them in `includeLocations`/`excludeLocations` by their filename --- build.js | 21 +++++++++++-------- ...-lUniversit-Felix-Houphouet-Boigny.geojson | 2 +- ...mbia-YMCA-University-of-the-Gambia.geojson | 2 +- ...iversity-of-Science-and-Technology.geojson | 2 +- .../ghana/University-of-Cape-Coast.geojson | 2 +- ...ty-of-Energy-and-Natural-Resources.geojson | 2 +- .../africa/ghana/University-of-Ghana.geojson | 2 +- ...University-of-Mines-and-Technology.geojson | 2 +- .../General-Lansana-Conte-University.geojson | 2 +- ...of-Science-and-Veterinary-Medicine.geojson | 2 +- .../africa/guinea/Universit-de-NZrkor.geojson | 2 +- ...n-Kimathi-University-of-Technology.geojson | 2 +- ...sity-of-Agriculture-and-Technology.geojson | 2 +- .../africa/kenya/Karatina-University.geojson | 2 +- .../africa/kenya/Kenyatta-University.geojson | 2 +- features/africa/kenya/Moi-University.geojson | 2 +- .../Technical-University-of-Kenya.geojson | 2 +- .../kenya/University-of-Nairobi.geojson | 2 +- ...can-Methodist-Episcopal-University.geojson | 2 +- .../liberia/Cuttington-University.geojson | 2 +- ...and-Gedeh-County-Community-College.geojson | 2 +- .../Nimba-County-Community-College.geojson | 2 +- .../liberia/Stella-Maris-Polytechnic.geojson | 2 +- ...University-of-Liberia-YouthMappers.geojson | 2 +- .../malawi/University-of-Malawi.geojson | 2 +- ...es-Sociale-et-de-Gestion-de-Bamako.geojson | 2 +- .../Universidade-Eduardo-Mondlane.geojson | 2 +- ...iversity-of-Science-and-Technology.geojson | 2 +- .../nigeria/Abia-State-University.geojson | 2 +- .../nigeria/Ahmadu-Bello-University.geojson | 2 +- .../nigeria/Federal-School-of-Surveys.geojson | 2 +- ...ral-University-of-Technology-Akure.geojson | 2 +- ...tius-Ajuru-University-of-Education.geojson | 2 +- ...University-of-Nigeria-Enugu-Campus.geojson | 2 +- .../University-of-Nigeria-Nsukka.geojson | 2 +- .../University-of-Port-Harcourt.geojson | 2 +- ...nseignement-Superieur-de-Ruhengeri.geojson | 2 +- .../University-of-Rwanda-Huye-Campus.geojson | 2 +- ...titut-Suprieur-de-Management-Kolda.geojson | 2 +- .../senegal/Universit-Gaston-Berger.geojson | 2 +- .../sierra_leone/Fourah-Bay-College.geojson | 2 +- .../Njala-University-Freetown-Campus.geojson | 2 +- .../Njala-University-Njala-Campus.geojson | 2 +- .../University-of-Pretoria.geojson | 2 +- .../africa/tanzania/Ardhi-University.geojson | 2 +- .../Institute-of-Finance-Management.geojson | 2 +- ...-Rural-Development-Planning-Mwanza.geojson | 2 +- ...tute-of-Rural-Development-Planning.geojson | 2 +- .../Open-University-of-Tanzania.geojson | 2 +- .../Sokoine-University-of-Agriculture.geojson | 2 +- .../University-of-Dar-es-Salaam.geojson | 2 +- .../africa/uganda/Busitema-University.geojson | 2 +- .../africa/uganda/Gulu-University.geojson | 2 +- .../africa/uganda/Kumi-University.geojson | 2 +- .../africa/uganda/Makerere-University.geojson | 2 +- ...iversity-of-Science-and-Technology.geojson | 2 +- ...Augustine-International-University.geojson | 2 +- ...-Christian-University-Mbale-Campus.geojson | 2 +- .../Uganda-Pentecostal-University.geojson | 2 +- ...awaggali-Trades-Training-Institute.geojson | 2 +- .../zambia/The-University-of-Zambia.geojson | 2 +- .../zimbabwe/University-of-Zimbabwe.geojson | 2 +- .../Asian-University-for-Women.geojson | 2 +- .../asia/bangladesh/Dhaka-College.geojson | 2 +- .../asia/bangladesh/Dhaka-University.geojson | 2 +- .../bangladesh/Eastern-University.geojson | 2 +- .../Jahangirnagar-University.geojson | 2 +- .../asia/bangladesh/Khulna-University.geojson | 2 +- ...iversity-of-Engineering-Technology.geojson | 2 +- features/asia/bangladesh/bangladesh.geojson | 2 +- .../asia/bhutan/Sherubtse-College.geojson | 2 +- .../asia/india/Gujarat-University.geojson | 2 +- .../Universitas-Negeri-Makassar.geojson | 2 +- .../University-Muhammadiyah-Surakarta.geojson | 2 +- features/asia/indonesia/indonesia.geojson | 2 +- features/asia/mongolia/mongolia.geojson | 2 +- features/asia/myanmar/myanmar.geojson | 2 +- ...itute-of-Crisis-Management-Studies.geojson | 2 +- .../asia/nepal/Kathmandu-University.geojson | 2 +- .../asia/nepal/Tribhuvan-University.geojson | 2 +- features/asia/nepal/nepal.geojson | 2 +- ...University-Institute-of-Technology.geojson | 2 +- ...e-Philippines-Resilience-Institute.geojson | 2 +- features/asia/thailand/thailand.geojson | 2 +- features/europe/belgium/brussels.geojson | 2 +- features/europe/belgium/flanders.geojson | 2 +- features/europe/belgium/wallonia.geojson | 2 +- .../germany/Heidelberg-University.geojson | 2 +- .../italy/Politecnico-di-Milano.geojson | 2 +- features/europe/italy/lazio.geojson | 2 +- features/europe/italy/roma-capitale.geojson | 2 +- features/europe/italy/south-tyrol.geojson | 2 +- features/europe/luxembourg/luxembourg.geojson | 2 +- .../Universit-Mohammed-V-Rabat.geojson | 2 +- features/europe/portugal/portugal.geojson | 2 +- .../Universidad-Autonoma-de-Madrid.geojson | 2 +- .../Universidad-Politcnica-de-Madrid.geojson | 2 +- .../Istanbul-Technical-University.geojson | 2 +- .../Queen-Mary-University-of-London.geojson | 2 +- .../University-of-Exeter.geojson | 2 +- .../University-of-Warwick.geojson | 2 +- .../united_kingdom/east_midlands.geojson | 2 +- features/europe/united_kingdom/london.geojson | 2 +- .../jordan/Yarmouk-University.geojson | 2 +- .../Sacred-Heart-Junior-College.geojson | 2 +- .../Universidad-de-Costa-Rica.geojson | 2 +- ...sidad-Nacional-Autnoma-de-Honduras.geojson | 2 +- ...ity-of-the-West-Indies-Mona-Campus.geojson | 2 +- ...Universidad-Nacional-de-Ingenieria.geojson | 2 +- .../panama/University-of-Panama.geojson | 2 +- ...ersidad-de-Puerto-Rico-Rio-Piedras.geojson | 2 +- .../Ball-State-University.geojson | 2 +- ...ifornia-University-of-Pennsylvania.geojson | 2 +- .../Central-Washington-University.geojson | 2 +- .../united_states/Clemson-University.geojson | 2 +- .../College-of-William-and-Mary.geojson | 2 +- .../united_states/Cornell-University.geojson | 2 +- .../George-Mason-University.geojson | 2 +- ...Indiana-University-of-Pennsylvania.geojson | 2 +- .../Jacksonville-State-University.geojson | 2 +- .../Kansas-State-University.geojson | 2 +- .../united_states/McGill-University.geojson | 2 +- .../united_states/Miami-University.geojson | 2 +- .../Monroe-Community-College.geojson | 2 +- .../united_states/Montgomery-College.geojson | 2 +- .../united_states/New-York-University.geojson | 2 +- .../Ohio-Wesleyan-University.geojson | 2 +- .../Oklahoma-State-University.geojson | 2 +- .../united_states/SUNY-at-Fredonia.geojson | 2 +- ...ate-University-of-New-York-Geneseo.geojson | 2 +- .../Texas-Tech-University.geojson | 2 +- .../united_states/The-Citadel.geojson | 2 +- .../The-George-Washington-University.geojson | 2 +- .../The-Johns-Hopkins-University-SAIS.geojson | 2 +- .../The-Pennsylvania-State-University.geojson | 2 +- .../united_states/UW-Madison.geojson | 2 +- .../University-of-California-Davis.geojson | 2 +- .../University-of-Central-Florida.geojson | 2 +- .../University-of-Chicago.geojson | 2 +- ...niversity-of-Maryland-College-Park.geojson | 2 +- .../University-of-North-Texas.geojson | 2 +- .../University-of-Northern-Colorado.geojson | 2 +- .../University-of-Oregon.geojson | 2 +- .../University-of-Redlands.geojson | 2 +- .../University-of-South-Carolina.geojson | 2 +- .../University-of-Southern-California.geojson | 2 +- .../University-of-Vermont.geojson | 2 +- .../University-of-Victoria.geojson | 2 +- .../University-of-Wyoming.geojson | 2 +- .../united_states/Vassar-College.geojson | 2 +- .../Villanova-University.geojson | 2 +- .../West-Virginia-University.geojson | 2 +- .../Western-Michigan-University.geojson | 2 +- features/south-america/brazil/df.geojson | 2 +- features/south-america/brazil/rs.geojson | 2 +- ...Distrital-Francisco-Jose-de-Caldas.geojson | 2 +- .../Universidad-Nacional-de-Colombia.geojson | 2 +- .../colombia/Universidad-de-Antioquia.geojson | 2 +- .../Universidad-de-La-Guajira.geojson | 2 +- .../colombia/Universidad-de-Los-Andes.geojson | 2 +- .../Universidad-de-San-Buenaventura.geojson | 2 +- ...-de-lUniversit-Felix-Houphouet-Boigny.json | 2 +- ...-Gambia-YMCA-University-of-the-Gambia.json | 2 +- ...-University-of-Science-and-Technology.json | 2 +- .../ghana/ym-University-of-Cape-Coast.json | 2 +- ...rsity-of-Energy-and-Natural-Resources.json | 2 +- .../africa/ghana/ym-University-of-Ghana.json | 2 +- ...ym-University-of-Mines-and-Technology.json | 2 +- .../ym-General-Lansana-Conte-University.json | 2 +- ...te-of-Science-and-Veterinary-Medicine.json | 2 +- .../africa/guinea/ym-Universit-de-NZrkor.json | 2 +- ...edan-Kimathi-University-of-Technology.json | 2 +- ...versity-of-Agriculture-and-Technology.json | 2 +- .../africa/kenya/ym-Karatina-University.json | 2 +- .../africa/kenya/ym-Kenyatta-University.json | 2 +- resources/africa/kenya/ym-Moi-University.json | 2 +- .../ym-Technical-University-of-Kenya.json | 2 +- .../kenya/ym-University-of-Nairobi.json | 2 +- ...frican-Methodist-Episcopal-University.json | 2 +- .../liberia/ym-Cuttington-University.json | 2 +- ...-Grand-Gedeh-County-Community-College.json | 2 +- .../ym-Nimba-County-Community-College.json | 2 +- .../liberia/ym-Stella-Maris-Polytechnic.json | 2 +- ...ym-University-of-Liberia-YouthMappers.json | 2 +- .../malawi/ym-University-of-Malawi.json | 2 +- ...ences-Sociale-et-de-Gestion-de-Bamako.json | 2 +- .../ym-Universidade-Eduardo-Mondlane.json | 2 +- ...-University-of-Science-and-Technology.json | 2 +- .../nigeria/ym-Abia-State-University.json | 2 +- .../nigeria/ym-Ahmadu-Bello-University.json | 2 +- .../nigeria/ym-Federal-School-of-Surveys.json | 2 +- ...ederal-University-of-Technology-Akure.json | 2 +- ...gnatius-Ajuru-University-of-Education.json | 2 +- ...ym-University-of-Nigeria-Enugu-Campus.json | 2 +- .../ym-University-of-Nigeria-Nsukka.json | 2 +- .../ym-University-of-Port-Harcourt.json | 2 +- ...d-Enseignement-Superieur-de-Ruhengeri.json | 2 +- .../ym-University-of-Rwanda-Huye-Campus.json | 2 +- ...Institut-Suprieur-de-Management-Kolda.json | 2 +- .../senegal/ym-Universit-Gaston-Berger.json | 2 +- .../sierra_leone/ym-Fourah-Bay-College.json | 2 +- .../ym-Njala-University-Freetown-Campus.json | 2 +- .../ym-Njala-University-Njala-Campus.json | 2 +- .../ym-University-of-Pretoria.json | 2 +- .../africa/tanzania/ym-Ardhi-University.json | 2 +- .../ym-Institute-of-Finance-Management.json | 2 +- ...-of-Rural-Development-Planning-Mwanza.json | 2 +- ...stitute-of-Rural-Development-Planning.json | 2 +- .../ym-Open-University-of-Tanzania.json | 2 +- .../ym-Sokoine-University-of-Agriculture.json | 2 +- .../ym-University-of-Dar-es-Salaam.json | 2 +- .../africa/uganda/ym-Busitema-University.json | 2 +- .../africa/uganda/ym-Gulu-University.json | 2 +- .../africa/uganda/ym-Kumi-University.json | 2 +- .../africa/uganda/ym-Makerere-University.json | 2 +- ...-University-of-Science-and-Technology.json | 2 +- ...t.-Augustine-International-University.json | 2 +- ...nda-Christian-University-Mbale-Campus.json | 2 +- .../ym-Uganda-Pentecostal-University.json | 2 +- ....-Mawaggali-Trades-Training-Institute.json | 2 +- .../zambia/ym-The-University-of-Zambia.json | 2 +- .../zimbabwe/ym-University-of-Zimbabwe.json | 2 +- .../bangladesh/osm-bangladesh-facebook.json | 2 +- .../ym-Asian-University-for-Women.json | 2 +- .../asia/bangladesh/ym-Dhaka-College.json | 2 +- .../asia/bangladesh/ym-Dhaka-University.json | 2 +- .../bangladesh/ym-Eastern-University.json | 2 +- .../ym-Jahangirnagar-University.json | 2 +- .../asia/bangladesh/ym-Khulna-University.json | 2 +- ...-University-of-Engineering-Technology.json | 2 +- .../asia/bhutan/ym-Sherubtse-College.json | 2 +- .../asia/india/ym-Gujarat-University.json | 2 +- resources/asia/indonesia/indonesia.json | 2 +- .../ym-Universitas-Negeri-Makassar.json | 2 +- .../ym-University-Muhammadiyah-Surakarta.json | 2 +- resources/asia/mongolia/mongolia.json | 2 +- .../asia/myanmar/osm-myanmar-facebook.json | 2 +- resources/asia/nepal/osm-nepal-facebook.json | 2 +- ...nstitute-of-Crisis-Management-Studies.json | 2 +- .../asia/nepal/ym-Kathmandu-University.json | 2 +- .../asia/nepal/ym-Tribhuvan-University.json | 2 +- ...rn-University-Institute-of-Technology.json | 2 +- ...-the-Philippines-Resilience-Institute.json | 2 +- resources/asia/thailand/OSM-TH-facebook.json | 2 +- resources/asia/thailand/OSM-TH-forum.json | 2 +- .../germany/ym-Heidelberg-University.json | 2 +- resources/europe/italy/roma-meetup.json | 2 +- resources/europe/italy/south-tyrol.json | 2 +- .../italy/talk-it-lazio_mailinglist.json | 2 +- .../italy/ym-Politecnico-di-Milano.json | 2 +- .../europe/luxembourg/lu-mailinglist.json | 2 +- .../ym-Universit-Mohammed-V-Rabat.json | 2 +- resources/europe/portugal/pt-mailinglist.json | 2 +- resources/europe/portugal/pt-telegram.json | 2 +- .../ym-Universidad-Autonoma-de-Madrid.json | 2 +- .../ym-Universidad-Politcnica-de-Madrid.json | 2 +- .../ym-Istanbul-Technical-University.json | 2 +- .../uk-eastmidlands-meetup.json | 2 +- .../united_kingdom/uk-london-twitter.json | 2 +- .../ym-Queen-Mary-University-of-London.json | 2 +- .../ym-University-of-Exeter.json | 2 +- .../ym-University-of-Warwick.json | 2 +- .../jordan/ym-Yarmouk-University.json | 2 +- .../ym-Sacred-Heart-Junior-College.json | 2 +- .../ym-Universidad-de-Costa-Rica.json | 2 +- ...versidad-Nacional-Autnoma-de-Honduras.json | 2 +- ...ersity-of-the-West-Indies-Mona-Campus.json | 2 +- ...ym-Universidad-Nacional-de-Ingenieria.json | 2 +- .../panama/ym-University-of-Panama.json | 2 +- ...niversidad-de-Puerto-Rico-Rio-Piedras.json | 2 +- .../ym-Ball-State-University.json | 2 +- ...California-University-of-Pennsylvania.json | 2 +- .../ym-Central-Washington-University.json | 2 +- .../united_states/ym-Clemson-University.json | 2 +- .../ym-College-of-William-and-Mary.json | 2 +- .../united_states/ym-Cornell-University.json | 2 +- .../ym-George-Mason-University.json | 2 +- ...ym-Indiana-University-of-Pennsylvania.json | 2 +- .../ym-Jacksonville-State-University.json | 2 +- .../ym-Kansas-State-University.json | 2 +- .../united_states/ym-McGill-University.json | 2 +- .../united_states/ym-Miami-University.json | 2 +- .../ym-Monroe-Community-College.json | 2 +- .../united_states/ym-Montgomery-College.json | 2 +- .../united_states/ym-New-York-University.json | 2 +- .../ym-Ohio-Wesleyan-University.json | 2 +- .../ym-Oklahoma-State-University.json | 2 +- .../united_states/ym-SUNY-at-Fredonia.json | 2 +- ...-State-University-of-New-York-Geneseo.json | 2 +- .../ym-Texas-Tech-University.json | 2 +- .../united_states/ym-The-Citadel.json | 2 +- .../ym-The-George-Washington-University.json | 2 +- .../ym-The-Johns-Hopkins-University-SAIS.json | 2 +- .../ym-The-Pennsylvania-State-University.json | 2 +- .../united_states/ym-UW-Madison.json | 2 +- .../ym-University-of-California-Davis.json | 2 +- .../ym-University-of-Central-Florida.json | 2 +- .../ym-University-of-Chicago.json | 2 +- ...m-University-of-Maryland-College-Park.json | 2 +- .../ym-University-of-North-Texas.json | 2 +- .../ym-University-of-Northern-Colorado.json | 2 +- .../ym-University-of-Oregon.json | 2 +- .../ym-University-of-Redlands.json | 2 +- .../ym-University-of-South-Carolina.json | 2 +- .../ym-University-of-Southern-California.json | 2 +- .../ym-University-of-Vermont.json | 2 +- .../ym-University-of-Victoria.json | 2 +- .../ym-University-of-Wyoming.json | 2 +- .../united_states/ym-Vassar-College.json | 2 +- .../ym-Villanova-University.json | 2 +- .../ym-West-Virginia-University.json | 2 +- .../ym-Western-Michigan-University.json | 2 +- .../south-america/brazil/DF-telegram.json | 2 +- .../south-america/brazil/RS-telegram.json | 2 +- ...ad-Distrital-Francisco-Jose-de-Caldas.json | 2 +- .../ym-Universidad-Nacional-de-Colombia.json | 2 +- .../colombia/ym-Universidad-de-Antioquia.json | 2 +- .../ym-Universidad-de-La-Guajira.json | 2 +- .../colombia/ym-Universidad-de-Los-Andes.json | 2 +- .../ym-Universidad-de-San-Buenaventura.json | 2 +- 320 files changed, 331 insertions(+), 328 deletions(-) diff --git a/build.js b/build.js index 76fdbef02..4e92b08c1 100644 --- a/build.js +++ b/build.js @@ -2,6 +2,7 @@ const colors = require('colors/safe'); const fs = require('fs'); const glob = require('glob'); +const path = require('path'); const CC = require('country-coder'); const Validator = require('jsonschema').Validator; @@ -52,6 +53,7 @@ function generateFeatures() { let features = {}; let files = {}; process.stdout.write('Features:'); + glob.sync(__dirname + '/features/**/*.geojson').forEach(file => { const contents = fs.readFileSync(file, 'utf8'); let parsed; @@ -68,9 +70,6 @@ function generateFeatures() { // A FeatureCollection with a single feature inside (geojson.io likes to make these). if (feature.type === 'FeatureCollection' && Array.isArray(fc) && fc.length === 1) { - if (feature.id && !fc[0].id) { - fc[0].id = feature.id; - } feature = fc[0]; } @@ -80,12 +79,15 @@ function generateFeatures() { props.area = Number(area.toFixed(2)); feature.properties = props; + // use the filename as the feature.id + const id = path.basename(file, '.geojson').toLowerCase(); + feature.id = id; + validateFile(file, feature, featureSchema); prettifyFile(file, feature, contents); - const id = feature.id; if (files[id]) { - console.error(colors.red('Error - Duplicate feature id: ') + colors.yellow(id)); + console.error(colors.red('Error - Duplicate filenames: ') + colors.yellow(id)); console.error(' ' + colors.yellow(files[id])); console.error(' ' + colors.yellow(file)); process.exit(1); @@ -220,7 +222,8 @@ function validateLocations(locations, file, features) { } } else if (/^\S+\.geojson$/i.test(location)) { // a .geojson filename? - if (features[location]) { + let featureId = location.replace('.geojson', ''); + if (features[featureId]) { console.log(' GeoJSON: ' + colors.yellow(location)); } else { console.error(colors.red('Error - Invalid location: ') + colors.yellow(location)); @@ -229,9 +232,9 @@ function validateLocations(locations, file, features) { } } else { // a country-coder string? - let found = CC.feature(location); - if (found) { - console.log(' Country Coder: ' + colors.yellow(found.properties.nameEn)); + let ccmatch = CC.feature(location); + if (ccmatch) { + console.log(' Country Coder: ' + colors.yellow(ccmatch.properties.nameEn)); } else { console.error(colors.red('Error - Invalid location: ') + colors.yellow(location)); console.error(' ' + colors.yellow(file)); diff --git a/features/africa/cote_d'_ivoire/Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.geojson b/features/africa/cote_d'_ivoire/Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.geojson index 2c51a9e2a..3d0221742 100644 --- a/features/africa/cote_d'_ivoire/Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.geojson +++ b/features/africa/cote_d'_ivoire/Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny", + "id": "centre-universitaire-de-recherche-et-dapplication-en-tldtection-curat-de-luniversit-felix-houphouet-boigny", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/africa/gambia/The-Gambia-YMCA-University-of-the-Gambia.geojson b/features/africa/gambia/The-Gambia-YMCA-University-of-the-Gambia.geojson index 4a32a6bd5..640cbbf03 100644 --- a/features/africa/gambia/The-Gambia-YMCA-University-of-the-Gambia.geojson +++ b/features/africa/gambia/The-Gambia-YMCA-University-of-the-Gambia.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "The-Gambia-YMCA-University-of-the-Gambia", + "id": "the-gambia-ymca-university-of-the-gambia", "properties": {"area": 1767.78}, "geometry": { "type": "Polygon", diff --git a/features/africa/ghana/Kwame-Nkrumah-University-of-Science-and-Technology.geojson b/features/africa/ghana/Kwame-Nkrumah-University-of-Science-and-Technology.geojson index b956fbb5a..d18e9addd 100644 --- a/features/africa/ghana/Kwame-Nkrumah-University-of-Science-and-Technology.geojson +++ b/features/africa/ghana/Kwame-Nkrumah-University-of-Science-and-Technology.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Kwame-Nkrumah-University-of-Science-and-Technology", + "id": "kwame-nkrumah-university-of-science-and-technology", "properties": {"area": 1767.79}, "geometry": { "type": "Polygon", diff --git a/features/africa/ghana/University-of-Cape-Coast.geojson b/features/africa/ghana/University-of-Cape-Coast.geojson index be9b84710..08cfd52da 100644 --- a/features/africa/ghana/University-of-Cape-Coast.geojson +++ b/features/africa/ghana/University-of-Cape-Coast.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Cape-Coast", + "id": "university-of-cape-coast", "properties": {"area": 1767.78}, "geometry": { "type": "Polygon", diff --git a/features/africa/ghana/University-of-Energy-and-Natural-Resources.geojson b/features/africa/ghana/University-of-Energy-and-Natural-Resources.geojson index df801fbc7..4043f9553 100644 --- a/features/africa/ghana/University-of-Energy-and-Natural-Resources.geojson +++ b/features/africa/ghana/University-of-Energy-and-Natural-Resources.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Energy-and-Natural-Resources", + "id": "university-of-energy-and-natural-resources", "properties": {"area": 1767.75}, "geometry": { "type": "Polygon", diff --git a/features/africa/ghana/University-of-Ghana.geojson b/features/africa/ghana/University-of-Ghana.geojson index 180844e11..6f8f4e2d2 100644 --- a/features/africa/ghana/University-of-Ghana.geojson +++ b/features/africa/ghana/University-of-Ghana.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Ghana", + "id": "university-of-ghana", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/africa/ghana/University-of-Mines-and-Technology.geojson b/features/africa/ghana/University-of-Mines-and-Technology.geojson index 9f4d202b8..b838bfef0 100644 --- a/features/africa/ghana/University-of-Mines-and-Technology.geojson +++ b/features/africa/ghana/University-of-Mines-and-Technology.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Mines-and-Technology", + "id": "university-of-mines-and-technology", "properties": {"area": 1767.74}, "geometry": { "type": "Polygon", diff --git a/features/africa/guinea/General-Lansana-Conte-University.geojson b/features/africa/guinea/General-Lansana-Conte-University.geojson index e46be3cf1..28fc6556f 100644 --- a/features/africa/guinea/General-Lansana-Conte-University.geojson +++ b/features/africa/guinea/General-Lansana-Conte-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "General-Lansana-Conte-University", + "id": "general-lansana-conte-university", "properties": {"area": 1767.78}, "geometry": { "type": "Polygon", diff --git a/features/africa/guinea/Institute-of-Science-and-Veterinary-Medicine.geojson b/features/africa/guinea/Institute-of-Science-and-Veterinary-Medicine.geojson index 8d2b6e495..7ff9c27cc 100644 --- a/features/africa/guinea/Institute-of-Science-and-Veterinary-Medicine.geojson +++ b/features/africa/guinea/Institute-of-Science-and-Veterinary-Medicine.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Institute-of-Science-and-Veterinary-Medicine", + "id": "institute-of-science-and-veterinary-medicine", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/africa/guinea/Universit-de-NZrkor.geojson b/features/africa/guinea/Universit-de-NZrkor.geojson index 10df9439c..6813c2234 100644 --- a/features/africa/guinea/Universit-de-NZrkor.geojson +++ b/features/africa/guinea/Universit-de-NZrkor.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Universit-de-NZrkor", + "id": "universit-de-nzrkor", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/africa/kenya/Dedan-Kimathi-University-of-Technology.geojson b/features/africa/kenya/Dedan-Kimathi-University-of-Technology.geojson index 46c07c9e6..7b2e87e8f 100644 --- a/features/africa/kenya/Dedan-Kimathi-University-of-Technology.geojson +++ b/features/africa/kenya/Dedan-Kimathi-University-of-Technology.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Dedan-Kimathi-University-of-Technology", + "id": "dedan-kimathi-university-of-technology", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/africa/kenya/Jomo-Kenyatta-University-of-Agriculture-and-Technology.geojson b/features/africa/kenya/Jomo-Kenyatta-University-of-Agriculture-and-Technology.geojson index e4968c521..8bccc4394 100644 --- a/features/africa/kenya/Jomo-Kenyatta-University-of-Agriculture-and-Technology.geojson +++ b/features/africa/kenya/Jomo-Kenyatta-University-of-Agriculture-and-Technology.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Jomo-Kenyatta-University-of-Agriculture-and-Technology", + "id": "jomo-kenyatta-university-of-agriculture-and-technology", "properties": {"area": 1767.79}, "geometry": { "type": "Polygon", diff --git a/features/africa/kenya/Karatina-University.geojson b/features/africa/kenya/Karatina-University.geojson index 1db1d4564..421f8ad8a 100644 --- a/features/africa/kenya/Karatina-University.geojson +++ b/features/africa/kenya/Karatina-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Karatina-University", + "id": "karatina-university", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/africa/kenya/Kenyatta-University.geojson b/features/africa/kenya/Kenyatta-University.geojson index 6d47d7fa4..d6a73ffe7 100644 --- a/features/africa/kenya/Kenyatta-University.geojson +++ b/features/africa/kenya/Kenyatta-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Kenyatta-University", + "id": "kenyatta-university", "properties": {"area": 1767.79}, "geometry": { "type": "Polygon", diff --git a/features/africa/kenya/Moi-University.geojson b/features/africa/kenya/Moi-University.geojson index 571feaedd..67b7f1be5 100644 --- a/features/africa/kenya/Moi-University.geojson +++ b/features/africa/kenya/Moi-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Moi-University", + "id": "moi-university", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/africa/kenya/Technical-University-of-Kenya.geojson b/features/africa/kenya/Technical-University-of-Kenya.geojson index aaa3a541f..3bce24a12 100644 --- a/features/africa/kenya/Technical-University-of-Kenya.geojson +++ b/features/africa/kenya/Technical-University-of-Kenya.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Technical-University-of-Kenya", + "id": "technical-university-of-kenya", "properties": {"area": 1767.73}, "geometry": { "type": "Polygon", diff --git a/features/africa/kenya/University-of-Nairobi.geojson b/features/africa/kenya/University-of-Nairobi.geojson index 37728f90c..ff5f47594 100644 --- a/features/africa/kenya/University-of-Nairobi.geojson +++ b/features/africa/kenya/University-of-Nairobi.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Nairobi", + "id": "university-of-nairobi", "properties": {"area": 1767.78}, "geometry": { "type": "Polygon", diff --git a/features/africa/liberia/African-Methodist-Episcopal-University.geojson b/features/africa/liberia/African-Methodist-Episcopal-University.geojson index 427fe3218..822650441 100644 --- a/features/africa/liberia/African-Methodist-Episcopal-University.geojson +++ b/features/africa/liberia/African-Methodist-Episcopal-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "African-Methodist-Episcopal-University", + "id": "african-methodist-episcopal-university", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/africa/liberia/Cuttington-University.geojson b/features/africa/liberia/Cuttington-University.geojson index 2513cd1b9..0058bdb20 100644 --- a/features/africa/liberia/Cuttington-University.geojson +++ b/features/africa/liberia/Cuttington-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Cuttington-University", + "id": "cuttington-university", "properties": {"area": 1767.73}, "geometry": { "type": "Polygon", diff --git a/features/africa/liberia/Grand-Gedeh-County-Community-College.geojson b/features/africa/liberia/Grand-Gedeh-County-Community-College.geojson index 3f3ff1920..dcf512714 100644 --- a/features/africa/liberia/Grand-Gedeh-County-Community-College.geojson +++ b/features/africa/liberia/Grand-Gedeh-County-Community-College.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Grand-Gedeh-County-Community-College", + "id": "grand-gedeh-county-community-college", "properties": {"area": 1767.78}, "geometry": { "type": "Polygon", diff --git a/features/africa/liberia/Nimba-County-Community-College.geojson b/features/africa/liberia/Nimba-County-Community-College.geojson index ce9c9142c..dc76f57d2 100644 --- a/features/africa/liberia/Nimba-County-Community-College.geojson +++ b/features/africa/liberia/Nimba-County-Community-College.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Nimba-County-Community-College", + "id": "nimba-county-community-college", "properties": {"area": 1767.79}, "geometry": { "type": "Polygon", diff --git a/features/africa/liberia/Stella-Maris-Polytechnic.geojson b/features/africa/liberia/Stella-Maris-Polytechnic.geojson index 8a175785b..355846b42 100644 --- a/features/africa/liberia/Stella-Maris-Polytechnic.geojson +++ b/features/africa/liberia/Stella-Maris-Polytechnic.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Stella-Maris-Polytechnic", + "id": "stella-maris-polytechnic", "properties": {"area": 1767.78}, "geometry": { "type": "Polygon", diff --git a/features/africa/liberia/University-of-Liberia-YouthMappers.geojson b/features/africa/liberia/University-of-Liberia-YouthMappers.geojson index f423c9396..aa0ee9b39 100644 --- a/features/africa/liberia/University-of-Liberia-YouthMappers.geojson +++ b/features/africa/liberia/University-of-Liberia-YouthMappers.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Liberia-YouthMappers", + "id": "university-of-liberia-youthmappers", "properties": {"area": 1767.75}, "geometry": { "type": "Polygon", diff --git a/features/africa/malawi/University-of-Malawi.geojson b/features/africa/malawi/University-of-Malawi.geojson index cbf844196..7fca3298f 100644 --- a/features/africa/malawi/University-of-Malawi.geojson +++ b/features/africa/malawi/University-of-Malawi.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Malawi", + "id": "university-of-malawi", "properties": {"area": 1767.78}, "geometry": { "type": "Polygon", diff --git a/features/africa/mali/Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.geojson b/features/africa/mali/Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.geojson index c648ec37f..c59b1ff31 100644 --- a/features/africa/mali/Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.geojson +++ b/features/africa/mali/Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako", + "id": "universit-des-sciences-sociale-et-de-gestion-de-bamako", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/africa/mozambique/Universidade-Eduardo-Mondlane.geojson b/features/africa/mozambique/Universidade-Eduardo-Mondlane.geojson index 9bcd4cb20..9d6d154a3 100644 --- a/features/africa/mozambique/Universidade-Eduardo-Mondlane.geojson +++ b/features/africa/mozambique/Universidade-Eduardo-Mondlane.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Universidade-Eduardo-Mondlane", + "id": "universidade-eduardo-mondlane", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/africa/namibia/Namibia-University-of-Science-and-Technology.geojson b/features/africa/namibia/Namibia-University-of-Science-and-Technology.geojson index 206ae0b74..1246a56f2 100644 --- a/features/africa/namibia/Namibia-University-of-Science-and-Technology.geojson +++ b/features/africa/namibia/Namibia-University-of-Science-and-Technology.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Namibia-University-of-Science-and-Technology", + "id": "namibia-university-of-science-and-technology", "properties": {"area": 1767.78}, "geometry": { "type": "Polygon", diff --git a/features/africa/nigeria/Abia-State-University.geojson b/features/africa/nigeria/Abia-State-University.geojson index 6b285ff56..7ecb96431 100644 --- a/features/africa/nigeria/Abia-State-University.geojson +++ b/features/africa/nigeria/Abia-State-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Abia-State-University", + "id": "abia-state-university", "properties": {"area": 1767.8}, "geometry": { "type": "Polygon", diff --git a/features/africa/nigeria/Ahmadu-Bello-University.geojson b/features/africa/nigeria/Ahmadu-Bello-University.geojson index 6ec5e2c82..efd170ead 100644 --- a/features/africa/nigeria/Ahmadu-Bello-University.geojson +++ b/features/africa/nigeria/Ahmadu-Bello-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Ahmadu-Bello-University", + "id": "ahmadu-bello-university", "properties": {"area": 1767.79}, "geometry": { "type": "Polygon", diff --git a/features/africa/nigeria/Federal-School-of-Surveys.geojson b/features/africa/nigeria/Federal-School-of-Surveys.geojson index 2d20b63c3..296cfad57 100644 --- a/features/africa/nigeria/Federal-School-of-Surveys.geojson +++ b/features/africa/nigeria/Federal-School-of-Surveys.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Federal-School-of-Surveys", + "id": "federal-school-of-surveys", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/africa/nigeria/Federal-University-of-Technology-Akure.geojson b/features/africa/nigeria/Federal-University-of-Technology-Akure.geojson index 3f397e567..9cc7c899a 100644 --- a/features/africa/nigeria/Federal-University-of-Technology-Akure.geojson +++ b/features/africa/nigeria/Federal-University-of-Technology-Akure.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Federal-University-of-Technology-Akure", + "id": "federal-university-of-technology-akure", "properties": {"area": 1767.78}, "geometry": { "type": "Polygon", diff --git a/features/africa/nigeria/Ignatius-Ajuru-University-of-Education.geojson b/features/africa/nigeria/Ignatius-Ajuru-University-of-Education.geojson index 94df8f7f3..993e33889 100644 --- a/features/africa/nigeria/Ignatius-Ajuru-University-of-Education.geojson +++ b/features/africa/nigeria/Ignatius-Ajuru-University-of-Education.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Ignatius-Ajuru-University-of-Education", + "id": "ignatius-ajuru-university-of-education", "properties": {"area": 1767.78}, "geometry": { "type": "Polygon", diff --git a/features/africa/nigeria/University-of-Nigeria-Enugu-Campus.geojson b/features/africa/nigeria/University-of-Nigeria-Enugu-Campus.geojson index 1d0b6be02..b898bb658 100644 --- a/features/africa/nigeria/University-of-Nigeria-Enugu-Campus.geojson +++ b/features/africa/nigeria/University-of-Nigeria-Enugu-Campus.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Nigeria-Enugu-Campus", + "id": "university-of-nigeria-enugu-campus", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/africa/nigeria/University-of-Nigeria-Nsukka.geojson b/features/africa/nigeria/University-of-Nigeria-Nsukka.geojson index 627566b13..8071b0e60 100644 --- a/features/africa/nigeria/University-of-Nigeria-Nsukka.geojson +++ b/features/africa/nigeria/University-of-Nigeria-Nsukka.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Nigeria-Nsukka", + "id": "university-of-nigeria-nsukka", "properties": {"area": 1767.74}, "geometry": { "type": "Polygon", diff --git a/features/africa/nigeria/University-of-Port-Harcourt.geojson b/features/africa/nigeria/University-of-Port-Harcourt.geojson index 733b5598c..313743ddf 100644 --- a/features/africa/nigeria/University-of-Port-Harcourt.geojson +++ b/features/africa/nigeria/University-of-Port-Harcourt.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Port-Harcourt", + "id": "university-of-port-harcourt", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/africa/rwanda/Insititue-d-Enseignement-Superieur-de-Ruhengeri.geojson b/features/africa/rwanda/Insititue-d-Enseignement-Superieur-de-Ruhengeri.geojson index 86ef65531..0948288f9 100644 --- a/features/africa/rwanda/Insititue-d-Enseignement-Superieur-de-Ruhengeri.geojson +++ b/features/africa/rwanda/Insititue-d-Enseignement-Superieur-de-Ruhengeri.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Insititue-d-Enseignement-Superieur-de-Ruhengeri", + "id": "insititue-d-enseignement-superieur-de-ruhengeri", "properties": {"area": 1767.75}, "geometry": { "type": "Polygon", diff --git a/features/africa/rwanda/University-of-Rwanda-Huye-Campus.geojson b/features/africa/rwanda/University-of-Rwanda-Huye-Campus.geojson index 488c28076..9440c1c1d 100644 --- a/features/africa/rwanda/University-of-Rwanda-Huye-Campus.geojson +++ b/features/africa/rwanda/University-of-Rwanda-Huye-Campus.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Rwanda-Huye-Campus", + "id": "university-of-rwanda-huye-campus", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/africa/senegal/Institut-Suprieur-de-Management-Kolda.geojson b/features/africa/senegal/Institut-Suprieur-de-Management-Kolda.geojson index 950f4c5f7..618e9fda3 100644 --- a/features/africa/senegal/Institut-Suprieur-de-Management-Kolda.geojson +++ b/features/africa/senegal/Institut-Suprieur-de-Management-Kolda.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Institut-Suprieur-de-Management-Kolda", + "id": "institut-suprieur-de-management-kolda", "properties": {"area": 1767.78}, "geometry": { "type": "Polygon", diff --git a/features/africa/senegal/Universit-Gaston-Berger.geojson b/features/africa/senegal/Universit-Gaston-Berger.geojson index e6869e17b..aec2ef109 100644 --- a/features/africa/senegal/Universit-Gaston-Berger.geojson +++ b/features/africa/senegal/Universit-Gaston-Berger.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Universit-Gaston-Berger", + "id": "universit-gaston-berger", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/africa/sierra_leone/Fourah-Bay-College.geojson b/features/africa/sierra_leone/Fourah-Bay-College.geojson index 7d6ec706d..f2abd3b1c 100644 --- a/features/africa/sierra_leone/Fourah-Bay-College.geojson +++ b/features/africa/sierra_leone/Fourah-Bay-College.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Fourah-Bay-College", + "id": "fourah-bay-college", "properties": {"area": 1767.74}, "geometry": { "type": "Polygon", diff --git a/features/africa/sierra_leone/Njala-University-Freetown-Campus.geojson b/features/africa/sierra_leone/Njala-University-Freetown-Campus.geojson index 0e2e26e2b..3e834ff27 100644 --- a/features/africa/sierra_leone/Njala-University-Freetown-Campus.geojson +++ b/features/africa/sierra_leone/Njala-University-Freetown-Campus.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Njala-University-Freetown-Campus", + "id": "njala-university-freetown-campus", "properties": {"area": 1767.78}, "geometry": { "type": "Polygon", diff --git a/features/africa/sierra_leone/Njala-University-Njala-Campus.geojson b/features/africa/sierra_leone/Njala-University-Njala-Campus.geojson index 8e93cf931..11935056d 100644 --- a/features/africa/sierra_leone/Njala-University-Njala-Campus.geojson +++ b/features/africa/sierra_leone/Njala-University-Njala-Campus.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Njala-University-Njala-Campus", + "id": "njala-university-njala-campus", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/africa/south_africa/University-of-Pretoria.geojson b/features/africa/south_africa/University-of-Pretoria.geojson index 2351e1b2c..f70a5d32d 100644 --- a/features/africa/south_africa/University-of-Pretoria.geojson +++ b/features/africa/south_africa/University-of-Pretoria.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Pretoria", + "id": "university-of-pretoria", "properties": {"area": 1767.75}, "geometry": { "type": "Polygon", diff --git a/features/africa/tanzania/Ardhi-University.geojson b/features/africa/tanzania/Ardhi-University.geojson index 2aa3235b5..1c93a7136 100644 --- a/features/africa/tanzania/Ardhi-University.geojson +++ b/features/africa/tanzania/Ardhi-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Ardhi-University", + "id": "ardhi-university", "properties": {"area": 1767.75}, "geometry": { "type": "Polygon", diff --git a/features/africa/tanzania/Institute-of-Finance-Management.geojson b/features/africa/tanzania/Institute-of-Finance-Management.geojson index a218625fd..4943ca6c3 100644 --- a/features/africa/tanzania/Institute-of-Finance-Management.geojson +++ b/features/africa/tanzania/Institute-of-Finance-Management.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Institute-of-Finance-Management", + "id": "institute-of-finance-management", "properties": {"area": 1767.75}, "geometry": { "type": "Polygon", diff --git a/features/africa/tanzania/Institute-of-Rural-Development-Planning-Mwanza.geojson b/features/africa/tanzania/Institute-of-Rural-Development-Planning-Mwanza.geojson index ceefab062..fe032f3b0 100644 --- a/features/africa/tanzania/Institute-of-Rural-Development-Planning-Mwanza.geojson +++ b/features/africa/tanzania/Institute-of-Rural-Development-Planning-Mwanza.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Institute-of-Rural-Development-Planning-Mwanza", + "id": "institute-of-rural-development-planning-mwanza", "properties": {"area": 1767.74}, "geometry": { "type": "Polygon", diff --git a/features/africa/tanzania/Institute-of-Rural-Development-Planning.geojson b/features/africa/tanzania/Institute-of-Rural-Development-Planning.geojson index 3ad6303d5..bf770fcb5 100644 --- a/features/africa/tanzania/Institute-of-Rural-Development-Planning.geojson +++ b/features/africa/tanzania/Institute-of-Rural-Development-Planning.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Institute-of-Rural-Development-Planning", + "id": "institute-of-rural-development-planning", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/africa/tanzania/Open-University-of-Tanzania.geojson b/features/africa/tanzania/Open-University-of-Tanzania.geojson index 3424413ba..d4dec3199 100644 --- a/features/africa/tanzania/Open-University-of-Tanzania.geojson +++ b/features/africa/tanzania/Open-University-of-Tanzania.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Open-University-of-Tanzania", + "id": "open-university-of-tanzania", "properties": {"area": 1767.73}, "geometry": { "type": "Polygon", diff --git a/features/africa/tanzania/Sokoine-University-of-Agriculture.geojson b/features/africa/tanzania/Sokoine-University-of-Agriculture.geojson index b974705e0..32d3a5d7c 100644 --- a/features/africa/tanzania/Sokoine-University-of-Agriculture.geojson +++ b/features/africa/tanzania/Sokoine-University-of-Agriculture.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Sokoine-University-of-Agriculture", + "id": "sokoine-university-of-agriculture", "properties": {"area": 1767.75}, "geometry": { "type": "Polygon", diff --git a/features/africa/tanzania/University-of-Dar-es-Salaam.geojson b/features/africa/tanzania/University-of-Dar-es-Salaam.geojson index f2c10bd29..d8fce4dc6 100644 --- a/features/africa/tanzania/University-of-Dar-es-Salaam.geojson +++ b/features/africa/tanzania/University-of-Dar-es-Salaam.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Dar-es-Salaam", + "id": "university-of-dar-es-salaam", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/africa/uganda/Busitema-University.geojson b/features/africa/uganda/Busitema-University.geojson index 89a05f80b..87291b7d1 100644 --- a/features/africa/uganda/Busitema-University.geojson +++ b/features/africa/uganda/Busitema-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Busitema-University", + "id": "busitema-university", "properties": {"area": 1767.79}, "geometry": { "type": "Polygon", diff --git a/features/africa/uganda/Gulu-University.geojson b/features/africa/uganda/Gulu-University.geojson index d72e483a6..924b89794 100644 --- a/features/africa/uganda/Gulu-University.geojson +++ b/features/africa/uganda/Gulu-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Gulu-University", + "id": "gulu-university", "properties": {"area": 1767.75}, "geometry": { "type": "Polygon", diff --git a/features/africa/uganda/Kumi-University.geojson b/features/africa/uganda/Kumi-University.geojson index 040587f3c..7954c29ca 100644 --- a/features/africa/uganda/Kumi-University.geojson +++ b/features/africa/uganda/Kumi-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Kumi-University", + "id": "kumi-university", "properties": {"area": 1767.79}, "geometry": { "type": "Polygon", diff --git a/features/africa/uganda/Makerere-University.geojson b/features/africa/uganda/Makerere-University.geojson index d1f8648af..751481d98 100644 --- a/features/africa/uganda/Makerere-University.geojson +++ b/features/africa/uganda/Makerere-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Makerere-University", + "id": "makerere-university", "properties": {"area": 1767.75}, "geometry": { "type": "Polygon", diff --git a/features/africa/uganda/Mbarara-University-of-Science-and-Technology.geojson b/features/africa/uganda/Mbarara-University-of-Science-and-Technology.geojson index bd26aec71..4f4f6f98f 100644 --- a/features/africa/uganda/Mbarara-University-of-Science-and-Technology.geojson +++ b/features/africa/uganda/Mbarara-University-of-Science-and-Technology.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Mbarara-University-of-Science-and-Technology", + "id": "mbarara-university-of-science-and-technology", "properties": {"area": 1767.73}, "geometry": { "type": "Polygon", diff --git a/features/africa/uganda/St.-Augustine-International-University.geojson b/features/africa/uganda/St.-Augustine-International-University.geojson index 6e2a55ccd..b0551d294 100644 --- a/features/africa/uganda/St.-Augustine-International-University.geojson +++ b/features/africa/uganda/St.-Augustine-International-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "St.-Augustine-International-University", + "id": "st.-augustine-international-university", "properties": {"area": 1767.81}, "geometry": { "type": "Polygon", diff --git a/features/africa/uganda/Uganda-Christian-University-Mbale-Campus.geojson b/features/africa/uganda/Uganda-Christian-University-Mbale-Campus.geojson index ea80ca9b1..e64001bfe 100644 --- a/features/africa/uganda/Uganda-Christian-University-Mbale-Campus.geojson +++ b/features/africa/uganda/Uganda-Christian-University-Mbale-Campus.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Uganda-Christian-University-Mbale-Campus", + "id": "uganda-christian-university-mbale-campus", "properties": {"area": 1767.79}, "geometry": { "type": "Polygon", diff --git a/features/africa/uganda/Uganda-Pentecostal-University.geojson b/features/africa/uganda/Uganda-Pentecostal-University.geojson index b251678d9..3a3352304 100644 --- a/features/africa/uganda/Uganda-Pentecostal-University.geojson +++ b/features/africa/uganda/Uganda-Pentecostal-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Uganda-Pentecostal-University", + "id": "uganda-pentecostal-university", "properties": {"area": 1767.74}, "geometry": { "type": "Polygon", diff --git a/features/africa/zambia/St.-Mawaggali-Trades-Training-Institute.geojson b/features/africa/zambia/St.-Mawaggali-Trades-Training-Institute.geojson index fcd811823..fd7bfa3c4 100644 --- a/features/africa/zambia/St.-Mawaggali-Trades-Training-Institute.geojson +++ b/features/africa/zambia/St.-Mawaggali-Trades-Training-Institute.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "St.-Mawaggali-Trades-Training-Institute", + "id": "st.-mawaggali-trades-training-institute", "properties": {"area": 1767.8}, "geometry": { "type": "Polygon", diff --git a/features/africa/zambia/The-University-of-Zambia.geojson b/features/africa/zambia/The-University-of-Zambia.geojson index 7b8846f94..8fb130291 100644 --- a/features/africa/zambia/The-University-of-Zambia.geojson +++ b/features/africa/zambia/The-University-of-Zambia.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "The-University-of-Zambia", + "id": "the-university-of-zambia", "properties": {"area": 1767.74}, "geometry": { "type": "Polygon", diff --git a/features/africa/zimbabwe/University-of-Zimbabwe.geojson b/features/africa/zimbabwe/University-of-Zimbabwe.geojson index 13865482b..472ad1c45 100644 --- a/features/africa/zimbabwe/University-of-Zimbabwe.geojson +++ b/features/africa/zimbabwe/University-of-Zimbabwe.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Zimbabwe", + "id": "university-of-zimbabwe", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/asia/bangladesh/Asian-University-for-Women.geojson b/features/asia/bangladesh/Asian-University-for-Women.geojson index fd9dee84b..3ca4bdd57 100644 --- a/features/asia/bangladesh/Asian-University-for-Women.geojson +++ b/features/asia/bangladesh/Asian-University-for-Women.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Asian-University-for-Women", + "id": "asian-university-for-women", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/asia/bangladesh/Dhaka-College.geojson b/features/asia/bangladesh/Dhaka-College.geojson index ed0b48324..08820204d 100644 --- a/features/asia/bangladesh/Dhaka-College.geojson +++ b/features/asia/bangladesh/Dhaka-College.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Dhaka-College", + "id": "dhaka-college", "properties": {"area": 1767.8}, "geometry": { "type": "Polygon", diff --git a/features/asia/bangladesh/Dhaka-University.geojson b/features/asia/bangladesh/Dhaka-University.geojson index 0e2ae8f81..e2518b9d3 100644 --- a/features/asia/bangladesh/Dhaka-University.geojson +++ b/features/asia/bangladesh/Dhaka-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Dhaka-University", + "id": "dhaka-university", "properties": {"area": 1767.8}, "geometry": { "type": "Polygon", diff --git a/features/asia/bangladesh/Eastern-University.geojson b/features/asia/bangladesh/Eastern-University.geojson index d90e46223..bbfed97c5 100644 --- a/features/asia/bangladesh/Eastern-University.geojson +++ b/features/asia/bangladesh/Eastern-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Eastern-University", + "id": "eastern-university", "properties": {"area": 1767.75}, "geometry": { "type": "Polygon", diff --git a/features/asia/bangladesh/Jahangirnagar-University.geojson b/features/asia/bangladesh/Jahangirnagar-University.geojson index b3823c7c9..f1c8341ea 100644 --- a/features/asia/bangladesh/Jahangirnagar-University.geojson +++ b/features/asia/bangladesh/Jahangirnagar-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Jahangirnagar-University", + "id": "jahangirnagar-university", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/asia/bangladesh/Khulna-University.geojson b/features/asia/bangladesh/Khulna-University.geojson index 9fe24c4a9..0557536b8 100644 --- a/features/asia/bangladesh/Khulna-University.geojson +++ b/features/asia/bangladesh/Khulna-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Khulna-University", + "id": "khulna-university", "properties": {"area": 1767.74}, "geometry": { "type": "Polygon", diff --git a/features/asia/bangladesh/Rajshahi-University-of-Engineering-Technology.geojson b/features/asia/bangladesh/Rajshahi-University-of-Engineering-Technology.geojson index c73dd1572..73c3ed61f 100644 --- a/features/asia/bangladesh/Rajshahi-University-of-Engineering-Technology.geojson +++ b/features/asia/bangladesh/Rajshahi-University-of-Engineering-Technology.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Rajshahi-University-of-Engineering-Technology", + "id": "rajshahi-university-of-engineering-technology", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/asia/bangladesh/bangladesh.geojson b/features/asia/bangladesh/bangladesh.geojson index db170fe1e..74a5f1991 100644 --- a/features/asia/bangladesh/bangladesh.geojson +++ b/features/asia/bangladesh/bangladesh.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "BGD", + "id": "bangladesh", "properties": {"name": "Bangladesh", "area": 134364.93}, "geometry": { "type": "Polygon", diff --git a/features/asia/bhutan/Sherubtse-College.geojson b/features/asia/bhutan/Sherubtse-College.geojson index 671f2084b..d1399814c 100644 --- a/features/asia/bhutan/Sherubtse-College.geojson +++ b/features/asia/bhutan/Sherubtse-College.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Sherubtse-College", + "id": "sherubtse-college", "properties": {"area": 1767.73}, "geometry": { "type": "Polygon", diff --git a/features/asia/india/Gujarat-University.geojson b/features/asia/india/Gujarat-University.geojson index 270028da8..27760d973 100644 --- a/features/asia/india/Gujarat-University.geojson +++ b/features/asia/india/Gujarat-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Gujarat-University", + "id": "gujarat-university", "properties": {"area": 1767.78}, "geometry": { "type": "Polygon", diff --git a/features/asia/indonesia/Universitas-Negeri-Makassar.geojson b/features/asia/indonesia/Universitas-Negeri-Makassar.geojson index 723ddd99e..0209825d6 100644 --- a/features/asia/indonesia/Universitas-Negeri-Makassar.geojson +++ b/features/asia/indonesia/Universitas-Negeri-Makassar.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Universitas-Negeri-Makassar", + "id": "universitas-negeri-makassar", "properties": {"area": 1767.74}, "geometry": { "type": "Polygon", diff --git a/features/asia/indonesia/University-Muhammadiyah-Surakarta.geojson b/features/asia/indonesia/University-Muhammadiyah-Surakarta.geojson index 26290bb99..1c403188f 100644 --- a/features/asia/indonesia/University-Muhammadiyah-Surakarta.geojson +++ b/features/asia/indonesia/University-Muhammadiyah-Surakarta.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-Muhammadiyah-Surakarta", + "id": "university-muhammadiyah-surakarta", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/asia/indonesia/indonesia.geojson b/features/asia/indonesia/indonesia.geojson index c00f08159..6df1ea038 100644 --- a/features/asia/indonesia/indonesia.geojson +++ b/features/asia/indonesia/indonesia.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "IDN", + "id": "indonesia", "properties": {"area": 6397922.94}, "geometry": { "type": "Polygon", diff --git a/features/asia/mongolia/mongolia.geojson b/features/asia/mongolia/mongolia.geojson index d59187f5a..ab6881b31 100644 --- a/features/asia/mongolia/mongolia.geojson +++ b/features/asia/mongolia/mongolia.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "MNG", + "id": "mongolia", "properties": {"name": "Mongolia", "area": 1543736.23}, "geometry": { "type": "Polygon", diff --git a/features/asia/myanmar/myanmar.geojson b/features/asia/myanmar/myanmar.geojson index 977408a19..0eb959182 100644 --- a/features/asia/myanmar/myanmar.geojson +++ b/features/asia/myanmar/myanmar.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "MMR", + "id": "myanmar", "properties": {"name": "Myanmar", "area": 734123.47}, "geometry": { "type": "Polygon", diff --git a/features/asia/nepal/Institute-of-Crisis-Management-Studies.geojson b/features/asia/nepal/Institute-of-Crisis-Management-Studies.geojson index 8b0bd1399..bafdaa918 100644 --- a/features/asia/nepal/Institute-of-Crisis-Management-Studies.geojson +++ b/features/asia/nepal/Institute-of-Crisis-Management-Studies.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Institute-of-Crisis-Management-Studies", + "id": "institute-of-crisis-management-studies", "properties": {"area": 1767.73}, "geometry": { "type": "Polygon", diff --git a/features/asia/nepal/Kathmandu-University.geojson b/features/asia/nepal/Kathmandu-University.geojson index 07ecdb3bf..37b69ea6f 100644 --- a/features/asia/nepal/Kathmandu-University.geojson +++ b/features/asia/nepal/Kathmandu-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Kathmandu-University", + "id": "kathmandu-university", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/asia/nepal/Tribhuvan-University.geojson b/features/asia/nepal/Tribhuvan-University.geojson index 0fff1e249..5c835ae49 100644 --- a/features/asia/nepal/Tribhuvan-University.geojson +++ b/features/asia/nepal/Tribhuvan-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Tribhuvan-University", + "id": "tribhuvan-university", "properties": {"area": 1767.8}, "geometry": { "type": "Polygon", diff --git a/features/asia/nepal/nepal.geojson b/features/asia/nepal/nepal.geojson index a18d5ed69..508c0ca01 100644 --- a/features/asia/nepal/nepal.geojson +++ b/features/asia/nepal/nepal.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "NPL", + "id": "nepal", "properties": {"name": "Nepal", "area": 151278.45}, "geometry": { "type": "Polygon", diff --git a/features/asia/philippines/Far-Eastern-University-Institute-of-Technology.geojson b/features/asia/philippines/Far-Eastern-University-Institute-of-Technology.geojson index f7adb01c1..96993d544 100644 --- a/features/asia/philippines/Far-Eastern-University-Institute-of-Technology.geojson +++ b/features/asia/philippines/Far-Eastern-University-Institute-of-Technology.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Far-Eastern-University-Institute-of-Technology", + "id": "far-eastern-university-institute-of-technology", "properties": {"area": 0}, "geometry": { "type": "Polygon", diff --git a/features/asia/philippines/University-of-the-Philippines-Resilience-Institute.geojson b/features/asia/philippines/University-of-the-Philippines-Resilience-Institute.geojson index cb21576b3..c253ebc31 100644 --- a/features/asia/philippines/University-of-the-Philippines-Resilience-Institute.geojson +++ b/features/asia/philippines/University-of-the-Philippines-Resilience-Institute.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-the-Philippines-Resilience-Institute", + "id": "university-of-the-philippines-resilience-institute", "properties": {"area": 57.55}, "geometry": { "type": "Polygon", diff --git a/features/asia/thailand/thailand.geojson b/features/asia/thailand/thailand.geojson index 776bb4187..b54c5ed5d 100644 --- a/features/asia/thailand/thailand.geojson +++ b/features/asia/thailand/thailand.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "thailand_full", + "id": "thailand", "properties": {"area": 874326.44}, "geometry": { "type": "Polygon", diff --git a/features/europe/belgium/brussels.geojson b/features/europe/belgium/brussels.geojson index a06271719..d8ca9be83 100644 --- a/features/europe/belgium/brussels.geojson +++ b/features/europe/belgium/brussels.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "be_brussels", + "id": "brussels", "properties": {"area": 175.91}, "geometry": { "type": "Polygon", diff --git a/features/europe/belgium/flanders.geojson b/features/europe/belgium/flanders.geojson index b5902d4dc..f3789b69c 100644 --- a/features/europe/belgium/flanders.geojson +++ b/features/europe/belgium/flanders.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "be_flanders", + "id": "flanders", "properties": {"area": 15565.45}, "geometry": { "type": "Polygon", diff --git a/features/europe/belgium/wallonia.geojson b/features/europe/belgium/wallonia.geojson index 4476d9e5c..f2eccf054 100644 --- a/features/europe/belgium/wallonia.geojson +++ b/features/europe/belgium/wallonia.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "be_wallonia", + "id": "wallonia", "properties": {"area": 16809.63}, "geometry": { "type": "Polygon", diff --git a/features/europe/germany/Heidelberg-University.geojson b/features/europe/germany/Heidelberg-University.geojson index 516a659c5..b9725010f 100644 --- a/features/europe/germany/Heidelberg-University.geojson +++ b/features/europe/germany/Heidelberg-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Heidelberg-University", + "id": "heidelberg-university", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/europe/italy/Politecnico-di-Milano.geojson b/features/europe/italy/Politecnico-di-Milano.geojson index 5de12b1f1..af5efc1ad 100644 --- a/features/europe/italy/Politecnico-di-Milano.geojson +++ b/features/europe/italy/Politecnico-di-Milano.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Politecnico-di-Milano", + "id": "politecnico-di-milano", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/europe/italy/lazio.geojson b/features/europe/italy/lazio.geojson index b3590814c..974ce293c 100644 --- a/features/europe/italy/lazio.geojson +++ b/features/europe/italy/lazio.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "IT_Lazio", + "id": "lazio", "properties": {"area": 31965.66}, "geometry": { "type": "Polygon", diff --git a/features/europe/italy/roma-capitale.geojson b/features/europe/italy/roma-capitale.geojson index 301612194..437c619f0 100644 --- a/features/europe/italy/roma-capitale.geojson +++ b/features/europe/italy/roma-capitale.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "IT_Roma_Capitale", + "id": "roma-capitale", "properties": {"area": 9122.36}, "geometry": { "type": "Polygon", diff --git a/features/europe/italy/south-tyrol.geojson b/features/europe/italy/south-tyrol.geojson index d2fba8a9c..349e03058 100644 --- a/features/europe/italy/south-tyrol.geojson +++ b/features/europe/italy/south-tyrol.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "south_tyrol", + "id": "south-tyrol", "properties": {"area": 8631.87}, "geometry": { "type": "Polygon", diff --git a/features/europe/luxembourg/luxembourg.geojson b/features/europe/luxembourg/luxembourg.geojson index ebd784e3f..c3e87ba8f 100644 --- a/features/europe/luxembourg/luxembourg.geojson +++ b/features/europe/luxembourg/luxembourg.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "luxembourg_full", + "id": "luxembourg", "properties": {"area": 2614.92}, "geometry": { "type": "Polygon", diff --git a/features/europe/morocco/Universit-Mohammed-V-Rabat.geojson b/features/europe/morocco/Universit-Mohammed-V-Rabat.geojson index 23c5dfa9a..d243ca037 100644 --- a/features/europe/morocco/Universit-Mohammed-V-Rabat.geojson +++ b/features/europe/morocco/Universit-Mohammed-V-Rabat.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Universit-Mohammed-V-Rabat", + "id": "universit-mohammed-v-rabat", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/europe/portugal/portugal.geojson b/features/europe/portugal/portugal.geojson index 8744e0971..843c72ae2 100644 --- a/features/europe/portugal/portugal.geojson +++ b/features/europe/portugal/portugal.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "portugal_full", + "id": "portugal", "properties": {"area": 595445.26}, "geometry": { "type": "MultiPolygon", diff --git a/features/europe/spain/Universidad-Autonoma-de-Madrid.geojson b/features/europe/spain/Universidad-Autonoma-de-Madrid.geojson index b0a02104f..227a37029 100644 --- a/features/europe/spain/Universidad-Autonoma-de-Madrid.geojson +++ b/features/europe/spain/Universidad-Autonoma-de-Madrid.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Universidad-Autonoma-de-Madrid", + "id": "universidad-autonoma-de-madrid", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/europe/spain/Universidad-Politcnica-de-Madrid.geojson b/features/europe/spain/Universidad-Politcnica-de-Madrid.geojson index 01d12fb0d..bdb189178 100644 --- a/features/europe/spain/Universidad-Politcnica-de-Madrid.geojson +++ b/features/europe/spain/Universidad-Politcnica-de-Madrid.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Universidad-Politcnica-de-Madrid", + "id": "universidad-politcnica-de-madrid", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/europe/turkey/Istanbul-Technical-University.geojson b/features/europe/turkey/Istanbul-Technical-University.geojson index a1773e9c0..4887d72d1 100644 --- a/features/europe/turkey/Istanbul-Technical-University.geojson +++ b/features/europe/turkey/Istanbul-Technical-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Istanbul-Technical-University", + "id": "istanbul-technical-university", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/europe/united_kingdom/Queen-Mary-University-of-London.geojson b/features/europe/united_kingdom/Queen-Mary-University-of-London.geojson index a9c7ce648..7a28c1fdb 100644 --- a/features/europe/united_kingdom/Queen-Mary-University-of-London.geojson +++ b/features/europe/united_kingdom/Queen-Mary-University-of-London.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Queen-Mary-University-of-London", + "id": "queen-mary-university-of-london", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/europe/united_kingdom/University-of-Exeter.geojson b/features/europe/united_kingdom/University-of-Exeter.geojson index 52797d900..752402842 100644 --- a/features/europe/united_kingdom/University-of-Exeter.geojson +++ b/features/europe/united_kingdom/University-of-Exeter.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Exeter", + "id": "university-of-exeter", "properties": {"area": 1767.75}, "geometry": { "type": "Polygon", diff --git a/features/europe/united_kingdom/University-of-Warwick.geojson b/features/europe/united_kingdom/University-of-Warwick.geojson index f9fdf89c0..a30b1202e 100644 --- a/features/europe/united_kingdom/University-of-Warwick.geojson +++ b/features/europe/united_kingdom/University-of-Warwick.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Warwick", + "id": "university-of-warwick", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/europe/united_kingdom/east_midlands.geojson b/features/europe/united_kingdom/east_midlands.geojson index cfe54b9a3..c1b563c3a 100644 --- a/features/europe/united_kingdom/east_midlands.geojson +++ b/features/europe/united_kingdom/east_midlands.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "east_midlands_uk", + "id": "east_midlands", "properties": {"area": 15714.38}, "geometry": { "type": "Polygon", diff --git a/features/europe/united_kingdom/london.geojson b/features/europe/united_kingdom/london.geojson index 27a08eb45..60379b536 100644 --- a/features/europe/united_kingdom/london.geojson +++ b/features/europe/united_kingdom/london.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "london_uk", + "id": "london", "properties": {"area": 2308.48}, "geometry": { "type": "Polygon", diff --git a/features/middle-east/jordan/Yarmouk-University.geojson b/features/middle-east/jordan/Yarmouk-University.geojson index 794ea6212..c98dd055c 100644 --- a/features/middle-east/jordan/Yarmouk-University.geojson +++ b/features/middle-east/jordan/Yarmouk-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Yarmouk-University", + "id": "yarmouk-university", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/north-america/belize/Sacred-Heart-Junior-College.geojson b/features/north-america/belize/Sacred-Heart-Junior-College.geojson index 4535f503d..58ecf894f 100644 --- a/features/north-america/belize/Sacred-Heart-Junior-College.geojson +++ b/features/north-america/belize/Sacred-Heart-Junior-College.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Sacred-Heart-Junior-College", + "id": "sacred-heart-junior-college", "properties": {"area": 1767.75}, "geometry": { "type": "Polygon", diff --git a/features/north-america/costa_rica/Universidad-de-Costa-Rica.geojson b/features/north-america/costa_rica/Universidad-de-Costa-Rica.geojson index 899b1fe76..4df4dff96 100644 --- a/features/north-america/costa_rica/Universidad-de-Costa-Rica.geojson +++ b/features/north-america/costa_rica/Universidad-de-Costa-Rica.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Universidad-de-Costa-Rica", + "id": "universidad-de-costa-rica", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/north-america/honduras/Universidad-Nacional-Autnoma-de-Honduras.geojson b/features/north-america/honduras/Universidad-Nacional-Autnoma-de-Honduras.geojson index 844edb9de..9fee78cdb 100644 --- a/features/north-america/honduras/Universidad-Nacional-Autnoma-de-Honduras.geojson +++ b/features/north-america/honduras/Universidad-Nacional-Autnoma-de-Honduras.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Universidad-Nacional-Autnoma-de-Honduras", + "id": "universidad-nacional-autnoma-de-honduras", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/north-america/jamaica/University-of-the-West-Indies-Mona-Campus.geojson b/features/north-america/jamaica/University-of-the-West-Indies-Mona-Campus.geojson index 12df09038..f7e0a8b60 100644 --- a/features/north-america/jamaica/University-of-the-West-Indies-Mona-Campus.geojson +++ b/features/north-america/jamaica/University-of-the-West-Indies-Mona-Campus.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-the-West-Indies-Mona-Campus", + "id": "university-of-the-west-indies-mona-campus", "properties": {"area": 1767.73}, "geometry": { "type": "Polygon", diff --git a/features/north-america/nicaragua/Universidad-Nacional-de-Ingenieria.geojson b/features/north-america/nicaragua/Universidad-Nacional-de-Ingenieria.geojson index db275f79b..2ac77755b 100644 --- a/features/north-america/nicaragua/Universidad-Nacional-de-Ingenieria.geojson +++ b/features/north-america/nicaragua/Universidad-Nacional-de-Ingenieria.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Universidad-Nacional-de-Ingenieria", + "id": "universidad-nacional-de-ingenieria", "properties": {"area": 1767.75}, "geometry": { "type": "Polygon", diff --git a/features/north-america/panama/University-of-Panama.geojson b/features/north-america/panama/University-of-Panama.geojson index 530a73659..f1af3ec98 100644 --- a/features/north-america/panama/University-of-Panama.geojson +++ b/features/north-america/panama/University-of-Panama.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Panama", + "id": "university-of-panama", "properties": {"area": 1767.74}, "geometry": { "type": "Polygon", diff --git a/features/north-america/puerto_rico/Universidad-de-Puerto-Rico-Rio-Piedras.geojson b/features/north-america/puerto_rico/Universidad-de-Puerto-Rico-Rio-Piedras.geojson index 29f41c593..126122a7a 100644 --- a/features/north-america/puerto_rico/Universidad-de-Puerto-Rico-Rio-Piedras.geojson +++ b/features/north-america/puerto_rico/Universidad-de-Puerto-Rico-Rio-Piedras.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Universidad-de-Puerto-Rico-Rio-Piedras", + "id": "universidad-de-puerto-rico-rio-piedras", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/Ball-State-University.geojson b/features/north-america/united_states/Ball-State-University.geojson index 1fafdc017..f36bb6c70 100644 --- a/features/north-america/united_states/Ball-State-University.geojson +++ b/features/north-america/united_states/Ball-State-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Ball-State-University", + "id": "ball-state-university", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/California-University-of-Pennsylvania.geojson b/features/north-america/united_states/California-University-of-Pennsylvania.geojson index b77482cd8..1288f23b9 100644 --- a/features/north-america/united_states/California-University-of-Pennsylvania.geojson +++ b/features/north-america/united_states/California-University-of-Pennsylvania.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "California-University-of-Pennsylvania", + "id": "california-university-of-pennsylvania", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/Central-Washington-University.geojson b/features/north-america/united_states/Central-Washington-University.geojson index 31ac6c9d0..fb366e695 100644 --- a/features/north-america/united_states/Central-Washington-University.geojson +++ b/features/north-america/united_states/Central-Washington-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Central-Washington-University", + "id": "central-washington-university", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/Clemson-University.geojson b/features/north-america/united_states/Clemson-University.geojson index ce85f0242..1fa160df3 100644 --- a/features/north-america/united_states/Clemson-University.geojson +++ b/features/north-america/united_states/Clemson-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Clemson-University", + "id": "clemson-university", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/College-of-William-and-Mary.geojson b/features/north-america/united_states/College-of-William-and-Mary.geojson index a8f1d7397..3636634c6 100644 --- a/features/north-america/united_states/College-of-William-and-Mary.geojson +++ b/features/north-america/united_states/College-of-William-and-Mary.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "College-of-William-and-Mary", + "id": "college-of-william-and-mary", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/Cornell-University.geojson b/features/north-america/united_states/Cornell-University.geojson index 171f63976..8a47bf220 100644 --- a/features/north-america/united_states/Cornell-University.geojson +++ b/features/north-america/united_states/Cornell-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Cornell-University", + "id": "cornell-university", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/George-Mason-University.geojson b/features/north-america/united_states/George-Mason-University.geojson index fc99d10e9..b2a2f5294 100644 --- a/features/north-america/united_states/George-Mason-University.geojson +++ b/features/north-america/united_states/George-Mason-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "George-Mason-University", + "id": "george-mason-university", "properties": {"area": 1767.78}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/Indiana-University-of-Pennsylvania.geojson b/features/north-america/united_states/Indiana-University-of-Pennsylvania.geojson index 35245243b..ebde707b2 100644 --- a/features/north-america/united_states/Indiana-University-of-Pennsylvania.geojson +++ b/features/north-america/united_states/Indiana-University-of-Pennsylvania.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Indiana-University-of-Pennsylvania", + "id": "indiana-university-of-pennsylvania", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/Jacksonville-State-University.geojson b/features/north-america/united_states/Jacksonville-State-University.geojson index 49343a8e6..57eb72813 100644 --- a/features/north-america/united_states/Jacksonville-State-University.geojson +++ b/features/north-america/united_states/Jacksonville-State-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Jacksonville-State-University", + "id": "jacksonville-state-university", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/Kansas-State-University.geojson b/features/north-america/united_states/Kansas-State-University.geojson index 54458d9bc..07e21e0f5 100644 --- a/features/north-america/united_states/Kansas-State-University.geojson +++ b/features/north-america/united_states/Kansas-State-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Kansas-State-University", + "id": "kansas-state-university", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/McGill-University.geojson b/features/north-america/united_states/McGill-University.geojson index 6c72b7dcc..e10cdedb4 100644 --- a/features/north-america/united_states/McGill-University.geojson +++ b/features/north-america/united_states/McGill-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "McGill-University", + "id": "mcgill-university", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/Miami-University.geojson b/features/north-america/united_states/Miami-University.geojson index 8e336812c..fc33f1e68 100644 --- a/features/north-america/united_states/Miami-University.geojson +++ b/features/north-america/united_states/Miami-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Miami-University", + "id": "miami-university", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/Monroe-Community-College.geojson b/features/north-america/united_states/Monroe-Community-College.geojson index cc320fa14..c0904cc8e 100644 --- a/features/north-america/united_states/Monroe-Community-College.geojson +++ b/features/north-america/united_states/Monroe-Community-College.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Monroe-Community-College", + "id": "monroe-community-college", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/Montgomery-College.geojson b/features/north-america/united_states/Montgomery-College.geojson index 139e814e5..78d8a6c14 100644 --- a/features/north-america/united_states/Montgomery-College.geojson +++ b/features/north-america/united_states/Montgomery-College.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Montgomery-College", + "id": "montgomery-college", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/New-York-University.geojson b/features/north-america/united_states/New-York-University.geojson index 4b3f46d41..900dbdfca 100644 --- a/features/north-america/united_states/New-York-University.geojson +++ b/features/north-america/united_states/New-York-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "New-York-University", + "id": "new-york-university", "properties": {"area": 1767.73}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/Ohio-Wesleyan-University.geojson b/features/north-america/united_states/Ohio-Wesleyan-University.geojson index b9241db6b..d64f8e68c 100644 --- a/features/north-america/united_states/Ohio-Wesleyan-University.geojson +++ b/features/north-america/united_states/Ohio-Wesleyan-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Ohio-Wesleyan-University", + "id": "ohio-wesleyan-university", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/Oklahoma-State-University.geojson b/features/north-america/united_states/Oklahoma-State-University.geojson index 9a3aa2ae1..3aa7c89e2 100644 --- a/features/north-america/united_states/Oklahoma-State-University.geojson +++ b/features/north-america/united_states/Oklahoma-State-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Oklahoma-State-University", + "id": "oklahoma-state-university", "properties": {"area": 1767.75}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/SUNY-at-Fredonia.geojson b/features/north-america/united_states/SUNY-at-Fredonia.geojson index 4879712ba..7fd441191 100644 --- a/features/north-america/united_states/SUNY-at-Fredonia.geojson +++ b/features/north-america/united_states/SUNY-at-Fredonia.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "SUNY-at-Fredonia", + "id": "suny-at-fredonia", "properties": {"area": 1767.81}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/State-University-of-New-York-Geneseo.geojson b/features/north-america/united_states/State-University-of-New-York-Geneseo.geojson index 44abda380..6c324d0b8 100644 --- a/features/north-america/united_states/State-University-of-New-York-Geneseo.geojson +++ b/features/north-america/united_states/State-University-of-New-York-Geneseo.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "State-University-of-New-York-Geneseo", + "id": "state-university-of-new-york-geneseo", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/Texas-Tech-University.geojson b/features/north-america/united_states/Texas-Tech-University.geojson index 380778fa2..a785f08dc 100644 --- a/features/north-america/united_states/Texas-Tech-University.geojson +++ b/features/north-america/united_states/Texas-Tech-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Texas-Tech-University", + "id": "texas-tech-university", "properties": {"area": 1767.72}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/The-Citadel.geojson b/features/north-america/united_states/The-Citadel.geojson index 467caf43f..b35d73c91 100644 --- a/features/north-america/united_states/The-Citadel.geojson +++ b/features/north-america/united_states/The-Citadel.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "The-Citadel", + "id": "the-citadel", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/The-George-Washington-University.geojson b/features/north-america/united_states/The-George-Washington-University.geojson index ea3129fb7..2c2d47c8e 100644 --- a/features/north-america/united_states/The-George-Washington-University.geojson +++ b/features/north-america/united_states/The-George-Washington-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "The-George-Washington-University", + "id": "the-george-washington-university", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/The-Johns-Hopkins-University-SAIS.geojson b/features/north-america/united_states/The-Johns-Hopkins-University-SAIS.geojson index 184191dd0..4a805c7f4 100644 --- a/features/north-america/united_states/The-Johns-Hopkins-University-SAIS.geojson +++ b/features/north-america/united_states/The-Johns-Hopkins-University-SAIS.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "The-Johns-Hopkins-University-SAIS", + "id": "the-johns-hopkins-university-sais", "properties": {"area": 1767.8}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/The-Pennsylvania-State-University.geojson b/features/north-america/united_states/The-Pennsylvania-State-University.geojson index a4eab951d..6458476a9 100644 --- a/features/north-america/united_states/The-Pennsylvania-State-University.geojson +++ b/features/north-america/united_states/The-Pennsylvania-State-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "The-Pennsylvania-State-University", + "id": "the-pennsylvania-state-university", "properties": {"area": 1767.75}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/UW-Madison.geojson b/features/north-america/united_states/UW-Madison.geojson index 0a7cf6f88..d8cdda067 100644 --- a/features/north-america/united_states/UW-Madison.geojson +++ b/features/north-america/united_states/UW-Madison.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "UW-Madison", + "id": "uw-madison", "properties": {"area": 1767.74}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/University-of-California-Davis.geojson b/features/north-america/united_states/University-of-California-Davis.geojson index 5726fc08c..f49487989 100644 --- a/features/north-america/united_states/University-of-California-Davis.geojson +++ b/features/north-america/united_states/University-of-California-Davis.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-California-Davis", + "id": "university-of-california-davis", "properties": {"area": 1767.75}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/University-of-Central-Florida.geojson b/features/north-america/united_states/University-of-Central-Florida.geojson index a268247c8..19375a4b2 100644 --- a/features/north-america/united_states/University-of-Central-Florida.geojson +++ b/features/north-america/united_states/University-of-Central-Florida.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Central-Florida", + "id": "university-of-central-florida", "properties": {"area": 1767.78}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/University-of-Chicago.geojson b/features/north-america/united_states/University-of-Chicago.geojson index 48b9ec13f..c65669e7e 100644 --- a/features/north-america/united_states/University-of-Chicago.geojson +++ b/features/north-america/united_states/University-of-Chicago.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Chicago", + "id": "university-of-chicago", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/University-of-Maryland-College-Park.geojson b/features/north-america/united_states/University-of-Maryland-College-Park.geojson index fbb7bafe1..fa7f8aaa9 100644 --- a/features/north-america/united_states/University-of-Maryland-College-Park.geojson +++ b/features/north-america/united_states/University-of-Maryland-College-Park.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Maryland-College-Park", + "id": "university-of-maryland-college-park", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/University-of-North-Texas.geojson b/features/north-america/united_states/University-of-North-Texas.geojson index c28770fb6..541f3c902 100644 --- a/features/north-america/united_states/University-of-North-Texas.geojson +++ b/features/north-america/united_states/University-of-North-Texas.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-North-Texas", + "id": "university-of-north-texas", "properties": {"area": 1767.79}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/University-of-Northern-Colorado.geojson b/features/north-america/united_states/University-of-Northern-Colorado.geojson index 6148f9ccb..7a5706cd2 100644 --- a/features/north-america/united_states/University-of-Northern-Colorado.geojson +++ b/features/north-america/united_states/University-of-Northern-Colorado.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Northern-Colorado", + "id": "university-of-northern-colorado", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/University-of-Oregon.geojson b/features/north-america/united_states/University-of-Oregon.geojson index 167cc5115..694fec55b 100644 --- a/features/north-america/united_states/University-of-Oregon.geojson +++ b/features/north-america/united_states/University-of-Oregon.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Oregon", + "id": "university-of-oregon", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/University-of-Redlands.geojson b/features/north-america/united_states/University-of-Redlands.geojson index 79cf64c25..c084318a9 100644 --- a/features/north-america/united_states/University-of-Redlands.geojson +++ b/features/north-america/united_states/University-of-Redlands.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Redlands", + "id": "university-of-redlands", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/University-of-South-Carolina.geojson b/features/north-america/united_states/University-of-South-Carolina.geojson index eebfccb68..65f1f1ccf 100644 --- a/features/north-america/united_states/University-of-South-Carolina.geojson +++ b/features/north-america/united_states/University-of-South-Carolina.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-South-Carolina", + "id": "university-of-south-carolina", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/University-of-Southern-California.geojson b/features/north-america/united_states/University-of-Southern-California.geojson index e0acc04d2..6fd21d181 100644 --- a/features/north-america/united_states/University-of-Southern-California.geojson +++ b/features/north-america/united_states/University-of-Southern-California.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Southern-California", + "id": "university-of-southern-california", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/University-of-Vermont.geojson b/features/north-america/united_states/University-of-Vermont.geojson index 34532da73..92df74ae1 100644 --- a/features/north-america/united_states/University-of-Vermont.geojson +++ b/features/north-america/united_states/University-of-Vermont.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Vermont", + "id": "university-of-vermont", "properties": {"area": 1767.81}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/University-of-Victoria.geojson b/features/north-america/united_states/University-of-Victoria.geojson index e92a4fb65..d7be303f4 100644 --- a/features/north-america/united_states/University-of-Victoria.geojson +++ b/features/north-america/united_states/University-of-Victoria.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Victoria", + "id": "university-of-victoria", "properties": {"area": 1767.75}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/University-of-Wyoming.geojson b/features/north-america/united_states/University-of-Wyoming.geojson index 3c2d2e6b9..713032b91 100644 --- a/features/north-america/united_states/University-of-Wyoming.geojson +++ b/features/north-america/united_states/University-of-Wyoming.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "University-of-Wyoming", + "id": "university-of-wyoming", "properties": {"area": 1767.73}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/Vassar-College.geojson b/features/north-america/united_states/Vassar-College.geojson index 6825736d7..d6454ac01 100644 --- a/features/north-america/united_states/Vassar-College.geojson +++ b/features/north-america/united_states/Vassar-College.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Vassar-College", + "id": "vassar-college", "properties": {"area": 1767.75}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/Villanova-University.geojson b/features/north-america/united_states/Villanova-University.geojson index e9f642e90..3ec33b237 100644 --- a/features/north-america/united_states/Villanova-University.geojson +++ b/features/north-america/united_states/Villanova-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Villanova-University", + "id": "villanova-university", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/West-Virginia-University.geojson b/features/north-america/united_states/West-Virginia-University.geojson index 8a33eb67a..634be56d1 100644 --- a/features/north-america/united_states/West-Virginia-University.geojson +++ b/features/north-america/united_states/West-Virginia-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "West-Virginia-University", + "id": "west-virginia-university", "properties": {"area": 1767.78}, "geometry": { "type": "Polygon", diff --git a/features/north-america/united_states/Western-Michigan-University.geojson b/features/north-america/united_states/Western-Michigan-University.geojson index f3d939e31..0b1b49373 100644 --- a/features/north-america/united_states/Western-Michigan-University.geojson +++ b/features/north-america/united_states/Western-Michigan-University.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Western-Michigan-University", + "id": "western-michigan-university", "properties": {"area": 1767.78}, "geometry": { "type": "Polygon", diff --git a/features/south-america/brazil/df.geojson b/features/south-america/brazil/df.geojson index 30010eab6..269a27699 100644 --- a/features/south-america/brazil/df.geojson +++ b/features/south-america/brazil/df.geojson @@ -1,5 +1,5 @@ { - "id": "df_br", + "id": "df", "type": "Feature", "properties": {"area": 5794.12}, "geometry": { diff --git a/features/south-america/brazil/rs.geojson b/features/south-america/brazil/rs.geojson index 8f339cd48..a62ac7591 100644 --- a/features/south-america/brazil/rs.geojson +++ b/features/south-america/brazil/rs.geojson @@ -1,5 +1,5 @@ { - "id": "rs_br", + "id": "rs", "type": "Feature", "properties": {"area": 325696.77}, "geometry": { diff --git a/features/south-america/colombia/Universidad-Distrital-Francisco-Jose-de-Caldas.geojson b/features/south-america/colombia/Universidad-Distrital-Francisco-Jose-de-Caldas.geojson index 4848d97bf..db73e87cf 100644 --- a/features/south-america/colombia/Universidad-Distrital-Francisco-Jose-de-Caldas.geojson +++ b/features/south-america/colombia/Universidad-Distrital-Francisco-Jose-de-Caldas.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Universidad-Distrital-Francisco-Jose-de-Caldas", + "id": "universidad-distrital-francisco-jose-de-caldas", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/south-america/colombia/Universidad-Nacional-de-Colombia.geojson b/features/south-america/colombia/Universidad-Nacional-de-Colombia.geojson index 23763dab2..96874aa91 100644 --- a/features/south-america/colombia/Universidad-Nacional-de-Colombia.geojson +++ b/features/south-america/colombia/Universidad-Nacional-de-Colombia.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Universidad-Nacional-de-Colombia", + "id": "universidad-nacional-de-colombia", "properties": {"area": 1767.76}, "geometry": { "type": "Polygon", diff --git a/features/south-america/colombia/Universidad-de-Antioquia.geojson b/features/south-america/colombia/Universidad-de-Antioquia.geojson index ee03f1edf..c99f1245d 100644 --- a/features/south-america/colombia/Universidad-de-Antioquia.geojson +++ b/features/south-america/colombia/Universidad-de-Antioquia.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Universidad-de-Antioquia", + "id": "universidad-de-antioquia", "properties": {"area": 1767.74}, "geometry": { "type": "Polygon", diff --git a/features/south-america/colombia/Universidad-de-La-Guajira.geojson b/features/south-america/colombia/Universidad-de-La-Guajira.geojson index 3c631b300..380068370 100644 --- a/features/south-america/colombia/Universidad-de-La-Guajira.geojson +++ b/features/south-america/colombia/Universidad-de-La-Guajira.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Universidad-de-La-Guajira", + "id": "universidad-de-la-guajira", "properties": {"area": 1767.77}, "geometry": { "type": "Polygon", diff --git a/features/south-america/colombia/Universidad-de-Los-Andes.geojson b/features/south-america/colombia/Universidad-de-Los-Andes.geojson index e6275f536..e7409efdd 100644 --- a/features/south-america/colombia/Universidad-de-Los-Andes.geojson +++ b/features/south-america/colombia/Universidad-de-Los-Andes.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Universidad-de-Los-Andes", + "id": "universidad-de-los-andes", "properties": {"area": 1767.8}, "geometry": { "type": "Polygon", diff --git a/features/south-america/colombia/Universidad-de-San-Buenaventura.geojson b/features/south-america/colombia/Universidad-de-San-Buenaventura.geojson index d2fefbe11..4f046c9e5 100644 --- a/features/south-america/colombia/Universidad-de-San-Buenaventura.geojson +++ b/features/south-america/colombia/Universidad-de-San-Buenaventura.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "Universidad-de-San-Buenaventura", + "id": "universidad-de-san-buenaventura", "properties": {"area": 1767.74}, "geometry": { "type": "Polygon", diff --git a/resources/africa/cote_d'_ivoire/ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.json b/resources/africa/cote_d'_ivoire/ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.json index df8317710..51cc8249f 100644 --- a/resources/africa/cote_d'_ivoire/ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.json +++ b/resources/africa/cote_d'_ivoire/ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.json @@ -3,7 +3,7 @@ "name": "YouthMappers CURAT", "description": "YouthMappers chapter at Centre Universitaire de Recherche et d'Application en Télédétection (CURAT) de l'Université Felix Houphouet Boigny", "id": "ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny", - "featureId": "Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny", + "featureId": "centre-universitaire-de-recherche-et-dapplication-en-tldtection-curat-de-luniversit-felix-houphouet-boigny", "contacts": [{"name": "Organizer", "email": "gpcome@gmail.com"}], "extendedDescription": "Our chapter aim is to promote the use of collaborative free mapping and the use of openstreetmap data in the field of research and their application in the implementation of tools for decision-making. Help students produce their own data of their research.", "countryCodes": ["ci"], diff --git a/resources/africa/gambia/ym-The-Gambia-YMCA-University-of-the-Gambia.json b/resources/africa/gambia/ym-The-Gambia-YMCA-University-of-the-Gambia.json index 114499bd7..bb8513e8a 100644 --- a/resources/africa/gambia/ym-The-Gambia-YMCA-University-of-the-Gambia.json +++ b/resources/africa/gambia/ym-The-Gambia-YMCA-University-of-the-Gambia.json @@ -3,7 +3,7 @@ "name": "Connected YouthMappers", "description": "YouthMappers chapter at The Gambia YMCA / University of the Gambia", "id": "ym-The-Gambia-YMCA-University-of-the-Gambia", - "featureId": "The-Gambia-YMCA-University-of-the-Gambia", + "featureId": "the-gambia-ymca-university-of-the-gambia", "contacts": [{"name": "Organizer", "email": "connectedyouthmappers@gmail.com"}], "extendedDescription": "Connected YouthMappers is comprised of dedicated young Gambians who aspire to change and aid national development.", "countryCodes": ["gm"], diff --git a/resources/africa/ghana/ym-Kwame-Nkrumah-University-of-Science-and-Technology.json b/resources/africa/ghana/ym-Kwame-Nkrumah-University-of-Science-and-Technology.json index 7829f0472..21d6f3323 100644 --- a/resources/africa/ghana/ym-Kwame-Nkrumah-University-of-Science-and-Technology.json +++ b/resources/africa/ghana/ym-Kwame-Nkrumah-University-of-Science-and-Technology.json @@ -3,7 +3,7 @@ "name": "Kwame Nkrumah University of Science and Technology YouthMappers", "description": "YouthMappers chapter at Kwame Nkrumah University of Science and Technology", "id": "ym-Kwame-Nkrumah-University-of-Science-and-Technology", - "featureId": "Kwame-Nkrumah-University-of-Science-and-Technology", + "featureId": "kwame-nkrumah-university-of-science-and-technology", "contacts": [{"name": "Organizer", "email": "knustyouthmappers@outlook.com"}], "countryCodes": ["gh"], "url": "https://www.facebook.com/KNUSTMappers/" diff --git a/resources/africa/ghana/ym-University-of-Cape-Coast.json b/resources/africa/ghana/ym-University-of-Cape-Coast.json index 1e4cc5d05..e66cc575b 100644 --- a/resources/africa/ghana/ym-University-of-Cape-Coast.json +++ b/resources/africa/ghana/ym-University-of-Cape-Coast.json @@ -3,7 +3,7 @@ "name": "UCC Geographical Society", "description": "YouthMappers chapter at University of Cape Coast", "id": "ym-University-of-Cape-Coast", - "featureId": "University-of-Cape-Coast", + "featureId": "university-of-cape-coast", "contacts": [{"name": "Organizer", "email": "geosoc_ucc@yahoo.com"}], "extendedDescription": "We are a society that encompasses all students who are reading and read geography in the Department of Geography and Regional Planning at the University of Cape Coast. Our main aim is to promote interest in the discipline inside and outside of the classroom. Our motto is “We comprehend the Earth and its inhabitants.”", "countryCodes": ["gh"], diff --git a/resources/africa/ghana/ym-University-of-Energy-and-Natural-Resources.json b/resources/africa/ghana/ym-University-of-Energy-and-Natural-Resources.json index 29fc4040a..a915036dc 100644 --- a/resources/africa/ghana/ym-University-of-Energy-and-Natural-Resources.json +++ b/resources/africa/ghana/ym-University-of-Energy-and-Natural-Resources.json @@ -3,7 +3,7 @@ "name": "Eco-Club", "description": "YouthMappers chapter at University of Energy and Natural Resources", "id": "ym-University-of-Energy-and-Natural-Resources", - "featureId": "University-of-Energy-and-Natural-Resources", + "featureId": "university-of-energy-and-natural-resources", "contacts": [{"name": "Organizer", "email": "james.agyei-ohemeng@uenr.edu.gh"}], "extendedDescription": "To provide a sound education to all citizens about the deteriorating environment and provide utmost use of recreation of the environment for human survival.", "countryCodes": ["gh"], diff --git a/resources/africa/ghana/ym-University-of-Ghana.json b/resources/africa/ghana/ym-University-of-Ghana.json index 1f0861752..e7471bae5 100644 --- a/resources/africa/ghana/ym-University-of-Ghana.json +++ b/resources/africa/ghana/ym-University-of-Ghana.json @@ -3,7 +3,7 @@ "name": "University of Ghana YouthMappers", "description": "YouthMappers chapter at University of Ghana", "id": "ym-University-of-Ghana", - "featureId": "University-of-Ghana", + "featureId": "university-of-ghana", "contacts": [{"name": "Organizer", "email": "mawulikaf@gmail.com"}], "extendedDescription": "UG YouthMappers consists of both graduate and undergraduate students possessing knowledge and skills in GIS and Remote Sensing. The club is composed of an energetic team that is poised to address social issues and mitigate environmental problems through mapping. Our fundamental principles are capacity building, empowerment and teamwork.", "countryCodes": ["gh"], diff --git a/resources/africa/ghana/ym-University-of-Mines-and-Technology.json b/resources/africa/ghana/ym-University-of-Mines-and-Technology.json index 2c57bdf84..861a26bf1 100644 --- a/resources/africa/ghana/ym-University-of-Mines-and-Technology.json +++ b/resources/africa/ghana/ym-University-of-Mines-and-Technology.json @@ -3,7 +3,7 @@ "name": "UMaT YouthMappers", "description": "YouthMappers chapter at University of Mines and Technology", "id": "ym-University-of-Mines-and-Technology", - "featureId": "University-of-Mines-and-Technology", + "featureId": "university-of-mines-and-technology", "contacts": [{"name": "Organizer", "email": "kwadzo459@gmail.com"}], "extendedDescription": "UMaT YouthMappers is a group of volunteer students who seek to grant students the opportunity to improve skills in the field of mapping & creating open geographic data and analyses that address locally defined development challenges worldwide.", "countryCodes": ["gh"], diff --git a/resources/africa/guinea/ym-General-Lansana-Conte-University.json b/resources/africa/guinea/ym-General-Lansana-Conte-University.json index 472492956..3ddc786d6 100644 --- a/resources/africa/guinea/ym-General-Lansana-Conte-University.json +++ b/resources/africa/guinea/ym-General-Lansana-Conte-University.json @@ -3,7 +3,7 @@ "name": "YouthMappers General Lansana Conte University", "description": "YouthMappers chapter at General Lansana Conte University", "id": "ym-General-Lansana-Conte-University", - "featureId": "General-Lansana-Conte-University", + "featureId": "general-lansana-conte-university", "contacts": [{"name": "Organizer", "email": "condefa3@gmail.com"}], "extendedDescription": "The YouthMappers of the University General Lansana Conté is a non profit community willing to contribute to Map Guinea and others part of the world. We are promoting the use of GIS and Open data to build decision support tools. We also work to build capacities among the students and local communities.", "countryCodes": ["gn"], diff --git a/resources/africa/guinea/ym-Institute-of-Science-and-Veterinary-Medicine.json b/resources/africa/guinea/ym-Institute-of-Science-and-Veterinary-Medicine.json index 89f859197..abedfaa82 100644 --- a/resources/africa/guinea/ym-Institute-of-Science-and-Veterinary-Medicine.json +++ b/resources/africa/guinea/ym-Institute-of-Science-and-Veterinary-Medicine.json @@ -3,7 +3,7 @@ "name": "YouthMappers ISSMV Dalaba", "description": "YouthMappers chapter at Institute of Science and Veterinary Medicine", "id": "ym-Institute-of-Science-and-Veterinary-Medicine", - "featureId": "Institute-of-Science-and-Veterinary-Medicine", + "featureId": "institute-of-science-and-veterinary-medicine", "contacts": [{"name": "Organizer", "email": "bvloua45@gmail.com"}], "extendedDescription": "YouthMappers ISSMV Dabala is a non profit organisation working to promote humanitarian mapping and the use of open sources and open data to build decision making tools in Guinea.", "countryCodes": ["gn"], diff --git a/resources/africa/guinea/ym-Universit-de-NZrkor.json b/resources/africa/guinea/ym-Universit-de-NZrkor.json index 085b6625a..6038a8b32 100644 --- a/resources/africa/guinea/ym-Universit-de-NZrkor.json +++ b/resources/africa/guinea/ym-Universit-de-NZrkor.json @@ -3,7 +3,7 @@ "name": "Youthmappers à N'Zérékoré", "description": "YouthMappers chapter at Université de N'Zérékoré", "id": "ym-Universit-de-NZrkor", - "featureId": "Universit-de-NZrkor", + "featureId": "universit-de-nzrkor", "contacts": [{"name": "Organizer", "email": "donpaul1974@gmail.com"}], "extendedDescription": "YouthMappers est un groupe qui permet de faire la cartographie des communautés enclavées et à la prise des décisions en cas de catastrophes ou épidémies. Elle permet aussi la production et l'utilisation des données en accès gratuit.", "countryCodes": ["gn"], diff --git a/resources/africa/kenya/ym-Dedan-Kimathi-University-of-Technology.json b/resources/africa/kenya/ym-Dedan-Kimathi-University-of-Technology.json index c33de65b6..d0b14c594 100644 --- a/resources/africa/kenya/ym-Dedan-Kimathi-University-of-Technology.json +++ b/resources/africa/kenya/ym-Dedan-Kimathi-University-of-Technology.json @@ -3,7 +3,7 @@ "name": "GDEV", "description": "YouthMappers chapter at Dedan Kimathi University of Technology", "id": "ym-Dedan-Kimathi-University-of-Technology", - "featureId": "Dedan-Kimathi-University-of-Technology", + "featureId": "dedan-kimathi-university-of-technology", "contacts": [{"name": "Organizer", "email": "gdevkenya@gmail.com"}], "extendedDescription": "GDEV is a group of enthusiastic GIS group at DeKUT that aims at helping students share, engage and learn from each other in matters geospatial", "countryCodes": ["ke"], diff --git a/resources/africa/kenya/ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology.json b/resources/africa/kenya/ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology.json index cb30bf376..c01d68e68 100644 --- a/resources/africa/kenya/ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology.json +++ b/resources/africa/kenya/ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology.json @@ -3,7 +3,7 @@ "name": "Association of Geomatics Engineering Students", "description": "YouthMappers chapter at Jomo Kenyatta University of Agriculture and Technology", "id": "ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology", - "featureId": "Jomo-Kenyatta-University-of-Agriculture-and-Technology", + "featureId": "jomo-kenyatta-university-of-agriculture-and-technology", "contacts": [{"name": "Organizer", "email": "laurahmugeha36@gmail.com"}], "extendedDescription": "The Association of Geomatics Engineering Students (AGES), aims at promoting GIS products and services as well as training students on the use of the same. It not only promotes socialization between the students and practicing professionals, but also provides a platform for exchanging new ideas for holding new GIS and surveying events and training at the university.", "countryCodes": ["ke"], diff --git a/resources/africa/kenya/ym-Karatina-University.json b/resources/africa/kenya/ym-Karatina-University.json index fbe30110b..63dabdb0e 100644 --- a/resources/africa/kenya/ym-Karatina-University.json +++ b/resources/africa/kenya/ym-Karatina-University.json @@ -3,7 +3,7 @@ "name": "Nature Club Karatina University", "description": "YouthMappers chapter at Karatina University", "id": "ym-Karatina-University", - "featureId": "Karatina-University", + "featureId": "karatina-university", "contacts": [{"name": "Organizer", "email": "karunatureclub@gmail.com"}], "extendedDescription": "This chapter aims to bring together all GIS enthusiasts.They include environment experts, wildlife experts, aquatic and tourism officers, just to mention a few. Its main aim is to provide a platform where students can learn from each other and, in the process, understand how to integrate the GIS skills in their various career paths as well as provide solutions to various environmental related challenges.", "countryCodes": ["ke"], diff --git a/resources/africa/kenya/ym-Kenyatta-University.json b/resources/africa/kenya/ym-Kenyatta-University.json index 3051cb63d..c830725b0 100644 --- a/resources/africa/kenya/ym-Kenyatta-University.json +++ b/resources/africa/kenya/ym-Kenyatta-University.json @@ -3,7 +3,7 @@ "name": "Kenyatta University GIS Club", "description": "YouthMappers chapter at Kenyatta University", "id": "ym-Kenyatta-University", - "featureId": "Kenyatta-University", + "featureId": "kenyatta-university", "contacts": [{"name": "Organizer", "email": "jamesmagige24@gmail.com"}], "extendedDescription": "Kenyatta University GIS Club (KUGISC) was founded on 28th October 2016, with more than 200 students and staff from all faculty within campus as members. We are committed to empower members with spatial knowledge, skills and expertise required in understanding the Earth. We help in mapping resources within the university by incorporating geospatial data in their projects as well as fieldwork data collection.", "countryCodes": ["ke"], diff --git a/resources/africa/kenya/ym-Moi-University.json b/resources/africa/kenya/ym-Moi-University.json index faa413e4d..78e8042e2 100644 --- a/resources/africa/kenya/ym-Moi-University.json +++ b/resources/africa/kenya/ym-Moi-University.json @@ -3,7 +3,7 @@ "name": "Geography Students Association", "description": "YouthMappers chapter at Moi University", "id": "ym-Moi-University", - "featureId": "Moi-University", + "featureId": "moi-university", "contacts": [{"name": "Organizer", "email": "geosamu44@gmail.com"}], "extendedDescription": "The Geography Students Association at Moi University (GEOSAMU) explores, discovers and aims at developing the entire world through the young Geo-Spatial analysts.  GEOSAMU is part of the Department of Geography.", "countryCodes": ["ke"], diff --git a/resources/africa/kenya/ym-Technical-University-of-Kenya.json b/resources/africa/kenya/ym-Technical-University-of-Kenya.json index eea205b8a..b7c7e4ada 100644 --- a/resources/africa/kenya/ym-Technical-University-of-Kenya.json +++ b/resources/africa/kenya/ym-Technical-University-of-Kenya.json @@ -3,7 +3,7 @@ "name": "Geospatial Science Student Association", "description": "YouthMappers chapter at Technical University of Kenya", "id": "ym-Technical-University-of-Kenya", - "featureId": "Technical-University-of-Kenya", + "featureId": "technical-university-of-kenya", "contacts": [{"name": "Organizer", "email": "youthmappers.tuk@gmail.com"}], "extendedDescription": "It's a geographical information based group with very passionate students in the relevant fields of study. We do training to members on emerging trends in the market and keep up with technological advancements", "countryCodes": ["ke"], diff --git a/resources/africa/kenya/ym-University-of-Nairobi.json b/resources/africa/kenya/ym-University-of-Nairobi.json index fcaee9507..0c95c24f3 100644 --- a/resources/africa/kenya/ym-University-of-Nairobi.json +++ b/resources/africa/kenya/ym-University-of-Nairobi.json @@ -3,7 +3,7 @@ "name": "Geospatial Engineering Students Association", "description": "YouthMappers chapter at University of Nairobi", "id": "ym-University-of-Nairobi", - "featureId": "University-of-Nairobi", + "featureId": "university-of-nairobi", "contacts": [{"name": "Organizer", "email": "contact@mapkibera.org"}], "extendedDescription": "UN students are working with the local OSM community, Map Kibera, and GrouthTruth to learn about open mapping and contribute data for needs in their urban communities.", "countryCodes": ["ke"], diff --git a/resources/africa/liberia/ym-African-Methodist-Episcopal-University.json b/resources/africa/liberia/ym-African-Methodist-Episcopal-University.json index d0939f5de..e7a1a0386 100644 --- a/resources/africa/liberia/ym-African-Methodist-Episcopal-University.json +++ b/resources/africa/liberia/ym-African-Methodist-Episcopal-University.json @@ -3,7 +3,7 @@ "name": "YouthMappers-AMEU", "description": "YouthMappers chapter at African Methodist Episcopal University", "id": "ym-African-Methodist-Episcopal-University", - "featureId": "African-Methodist-Episcopal-University", + "featureId": "african-methodist-episcopal-university", "contacts": [{"name": "Organizer", "email": "youthmapper.ameu@gmail.com"}], "countryCodes": ["lr"], "url": "mailto:youthmapper.ameu@gmail.com" diff --git a/resources/africa/liberia/ym-Cuttington-University.json b/resources/africa/liberia/ym-Cuttington-University.json index 3c0750df1..4aff21267 100644 --- a/resources/africa/liberia/ym-Cuttington-University.json +++ b/resources/africa/liberia/ym-Cuttington-University.json @@ -3,7 +3,7 @@ "name": "Cuttington University YouthMappers", "description": "YouthMappers chapter at Cuttington University", "id": "ym-Cuttington-University", - "featureId": "Cuttington-University", + "featureId": "cuttington-university", "contacts": [{"name": "Organizer", "email": "youthmappers.cu@gmail.com"}], "extendedDescription": "The YouthMappers at Cuttington University, Suakoko, and Bong County comprised of Students from three different departments; namely, the Department of Natural Resources Management “DONRM”, Department of Environmental Sciences, and the Department of Natural Sciences. Since the establishment of the Chapter in February 2017, the overall membership is 20 students, with each department containing 5 students.", "countryCodes": ["lr"], diff --git a/resources/africa/liberia/ym-Grand-Gedeh-County-Community-College.json b/resources/africa/liberia/ym-Grand-Gedeh-County-Community-College.json index 45daaec12..63874a91d 100644 --- a/resources/africa/liberia/ym-Grand-Gedeh-County-Community-College.json +++ b/resources/africa/liberia/ym-Grand-Gedeh-County-Community-College.json @@ -3,7 +3,7 @@ "name": "YouthMappers at Grand Gedeh County Community College", "description": "YouthMappers chapter at Grand Gedeh County Community College", "id": "ym-Grand-Gedeh-County-Community-College", - "featureId": "Grand-Gedeh-County-Community-College", + "featureId": "grand-gedeh-county-community-college", "contacts": [{"name": "Organizer", "email": "yimodaxzibitallison@gmail.com"}], "extendedDescription": "The Youth Mappers of GGCCC sole intent is to put places in and around Liberia that are not on the map. We gather youths from the college within the Grand Gedeh Community College to make it their duties to unite and bring these places to the spot light geographically.", "countryCodes": ["lr"], diff --git a/resources/africa/liberia/ym-Nimba-County-Community-College.json b/resources/africa/liberia/ym-Nimba-County-Community-College.json index 685e68524..7fcb2e05e 100644 --- a/resources/africa/liberia/ym-Nimba-County-Community-College.json +++ b/resources/africa/liberia/ym-Nimba-County-Community-College.json @@ -3,7 +3,7 @@ "name": "Nimba County Community College Youth Mappers", "description": "YouthMappers chapter at Nimba County Community College", "id": "ym-Nimba-County-Community-College", - "featureId": "Nimba-County-Community-College", + "featureId": "nimba-county-community-college", "contacts": [{"name": "Organizer", "email": "ncccyouthmappers@yahoo.com"}], "countryCodes": ["lr"], "url": "mailto:ncccyouthmappers@yahoo.com" diff --git a/resources/africa/liberia/ym-Stella-Maris-Polytechnic.json b/resources/africa/liberia/ym-Stella-Maris-Polytechnic.json index fea863710..ce1569a74 100644 --- a/resources/africa/liberia/ym-Stella-Maris-Polytechnic.json +++ b/resources/africa/liberia/ym-Stella-Maris-Polytechnic.json @@ -3,7 +3,7 @@ "name": "YouthMappers-SMP", "description": "YouthMappers chapter at Stella Maris Polytechnic", "id": "ym-Stella-Maris-Polytechnic", - "featureId": "Stella-Maris-Polytechnic", + "featureId": "stella-maris-polytechnic", "contacts": [{"name": "Organizer", "email": "youthmappers.smp@gmail.com"}], "countryCodes": ["lr"], "url": "mailto:youthmappers.smp@gmail.com" diff --git a/resources/africa/liberia/ym-University-of-Liberia-YouthMappers.json b/resources/africa/liberia/ym-University-of-Liberia-YouthMappers.json index 2b8de4758..172c1d0c3 100644 --- a/resources/africa/liberia/ym-University-of-Liberia-YouthMappers.json +++ b/resources/africa/liberia/ym-University-of-Liberia-YouthMappers.json @@ -3,7 +3,7 @@ "name": "University of Liberia YouthMappers", "description": "YouthMappers chapter at University of Liberia YouthMappers", "id": "ym-University-of-Liberia-YouthMappers", - "featureId": "University-of-Liberia-YouthMappers", + "featureId": "university-of-liberia-youthmappers", "contacts": [{"name": "Organizer", "email": "ulym2017@gmail.com"}], "extendedDescription": "The University of Liberia YouthMappers is a chapter organization of the Global YouthMappers. We are a nonprofit student mapping organization focus on mapping for Liberia’s development and the World at large. The purpose of this organization shall be to utilize technology and geospatial knowledge as means of creating and developing maps; collecting and analyzing data that will address local and worldwide challenges. Our aim is to support and create opportunity for students to develop interest and skills in the fields of mapping. We envision a united student community that are collaborative, active and are willing to work with the University of Liberia YouthMappers in order to better the lives of others.", "countryCodes": ["lr"], diff --git a/resources/africa/malawi/ym-University-of-Malawi.json b/resources/africa/malawi/ym-University-of-Malawi.json index 05669549d..f81ab0e51 100644 --- a/resources/africa/malawi/ym-University-of-Malawi.json +++ b/resources/africa/malawi/ym-University-of-Malawi.json @@ -3,7 +3,7 @@ "name": "Chanco Malawi YouthMappers", "description": "YouthMappers chapter at University of Malawi", "id": "ym-University-of-Malawi", - "featureId": "University-of-Malawi", + "featureId": "university-of-malawi", "contacts": [{"name": "Organizer", "email": "zolamanyungwa@gmail.com"}], "extendedDescription": "Chanco Malawi YouthMappers is the student mapping organization for the University of Malawi's Chancellor College. The students in this chapter focus on mapping for Malawi's development and science needs.", "countryCodes": ["mw"], diff --git a/resources/africa/mali/ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.json b/resources/africa/mali/ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.json index 0191b7f02..fbbfd73fb 100644 --- a/resources/africa/mali/ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.json +++ b/resources/africa/mali/ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.json @@ -3,7 +3,7 @@ "name": "Etudiant au Laboratoire HoPE", "description": "YouthMappers chapter at Université des Sciences Sociale et de Gestion de Bamako", "id": "ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako", - "featureId": "Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako", + "featureId": "universit-des-sciences-sociale-et-de-gestion-de-bamako", "contacts": [{"name": "Organizer", "email": "youthmappersfhg@gmail.com"}], "countryCodes": ["ml"], "url": "mailto:youthmappersfhg@gmail.com" diff --git a/resources/africa/mozambique/ym-Universidade-Eduardo-Mondlane.json b/resources/africa/mozambique/ym-Universidade-Eduardo-Mondlane.json index e5047e0c9..b8a3c50f2 100644 --- a/resources/africa/mozambique/ym-Universidade-Eduardo-Mondlane.json +++ b/resources/africa/mozambique/ym-Universidade-Eduardo-Mondlane.json @@ -3,7 +3,7 @@ "name": "Comunidade YouthMappers Moçambique", "description": "YouthMappers chapter at Universidade Eduardo Mondlane", "id": "ym-Universidade-Eduardo-Mondlane", - "featureId": "Universidade-Eduardo-Mondlane", + "featureId": "universidade-eduardo-mondlane", "contacts": [{"name": "Organizer", "email": "moz.youthmappers1@hotmail.com"}], "extendedDescription": "We are a student group that intends to join Mozambican society to create a resilient community of humanitarian mapping. The community intend to map the physical occupation of our Country and create open geographic data, accessible to the public and able to be used in several areas without associated costs.", "countryCodes": ["mz"], diff --git a/resources/africa/namibia/ym-Namibia-University-of-Science-and-Technology.json b/resources/africa/namibia/ym-Namibia-University-of-Science-and-Technology.json index ac7f3f325..980d2e86c 100644 --- a/resources/africa/namibia/ym-Namibia-University-of-Science-and-Technology.json +++ b/resources/africa/namibia/ym-Namibia-University-of-Science-and-Technology.json @@ -3,7 +3,7 @@ "name": "Geoinformation Technology Student Society", "description": "YouthMappers chapter at Namibia University of Science and Technology", "id": "ym-Namibia-University-of-Science-and-Technology", - "featureId": "Namibia-University-of-Science-and-Technology", + "featureId": "namibia-university-of-science-and-technology", "contacts": [{"name": "Organizer", "email": "patriciasem87@gmail.com"}], "countryCodes": ["na"], "url": "mailto:patriciasem87@gmail.com" diff --git a/resources/africa/nigeria/ym-Abia-State-University.json b/resources/africa/nigeria/ym-Abia-State-University.json index 1552a7b62..945a0dc2d 100644 --- a/resources/africa/nigeria/ym-Abia-State-University.json +++ b/resources/africa/nigeria/ym-Abia-State-University.json @@ -3,7 +3,7 @@ "name": "AbsuMappersTeam", "description": "YouthMappers chapter at Abia State University", "id": "ym-Abia-State-University", - "featureId": "Abia-State-University", + "featureId": "abia-state-university", "contacts": [{"name": "Organizer", "email": "absumappersteam@gmail.com"}], "extendedDescription": "AbsuMappersTeam is voluntary team of map enthusiast ,using openstreetmap,GIS and other open source geospatial techno;ogy to solve problems.It is a dedicated for disaster response using OpenStreetMap.It is a professional mentoring and empowerment platform for those with passion for GIS and Mapping.It is a community of volunteers for geospatial data creation,field data collection and mapping.The team was co-founded by Victor N.Sunday(the Team mentor) and Professor J.U.Ogbonna ,the team coordinator and faculty Advisor. AbsuMapperTeam is an affiliate of UniiqueMappersTeam-Port Harcourt.The team stands to support sustainable development using geospatial technology", "countryCodes": ["ng"], diff --git a/resources/africa/nigeria/ym-Ahmadu-Bello-University.json b/resources/africa/nigeria/ym-Ahmadu-Bello-University.json index 481585434..74cdb9844 100644 --- a/resources/africa/nigeria/ym-Ahmadu-Bello-University.json +++ b/resources/africa/nigeria/ym-Ahmadu-Bello-University.json @@ -3,7 +3,7 @@ "name": "ABU Geomappers", "description": "YouthMappers chapter at Ahmadu Bello University", "id": "ym-Ahmadu-Bello-University", - "featureId": "Ahmadu-Bello-University", + "featureId": "ahmadu-bello-university", "contacts": [{"name": "Organizer", "email": "abugeomappers@gmail.com"}], "extendedDescription": "We are a group of Data driven Humanitarian mappers, who are dedicated to rendering humanitarian service in response to disaster and mitigation. We are glad to contribute our expertise and knowledge through mapping, and helping to spread #OpenEvangelism through Training, and collaboration.", "countryCodes": ["ng"], diff --git a/resources/africa/nigeria/ym-Federal-School-of-Surveys.json b/resources/africa/nigeria/ym-Federal-School-of-Surveys.json index 66ea64314..6436264a1 100644 --- a/resources/africa/nigeria/ym-Federal-School-of-Surveys.json +++ b/resources/africa/nigeria/ym-Federal-School-of-Surveys.json @@ -3,7 +3,7 @@ "name": "OyoMappersTeam (OMT) Oyo", "description": "YouthMappers chapter at Federal School of Surveys", "id": "ym-Federal-School-of-Surveys", - "featureId": "Federal-School-of-Surveys", + "featureId": "federal-school-of-surveys", "contacts": [{"name": "Organizer", "email": "oyomappersteam@gmail.com"}], "countryCodes": ["ng"], "url": "https://web.facebook.com/Oyomappersteam-omt-oyo-1432864713415765/" diff --git a/resources/africa/nigeria/ym-Federal-University-of-Technology-Akure.json b/resources/africa/nigeria/ym-Federal-University-of-Technology-Akure.json index d71fa9189..3e971e320 100644 --- a/resources/africa/nigeria/ym-Federal-University-of-Technology-Akure.json +++ b/resources/africa/nigeria/ym-Federal-University-of-Technology-Akure.json @@ -3,7 +3,7 @@ "name": "YouthMappers Futa Space Club", "description": "YouthMappers chapter at Federal University of Technology, Akure", "id": "ym-Federal-University-of-Technology-Akure", - "featureId": "Federal-University-of-Technology-Akure", + "featureId": "federal-university-of-technology-akure", "contacts": [{"name": "Organizer", "email": "denironyx@gmail.com"}], "extendedDescription": "Our mission is to raise the next generation of Space Leaders. Activities include research and capacity building in Remote Sensing, GIS, Climate Change, Astronomy, Cosmology, Space Engineering, Global Navigation, Robotics and Space Education.", "countryCodes": ["ng"], diff --git a/resources/africa/nigeria/ym-Ignatius-Ajuru-University-of-Education.json b/resources/africa/nigeria/ym-Ignatius-Ajuru-University-of-Education.json index fc08c73e6..007bcf0b6 100644 --- a/resources/africa/nigeria/ym-Ignatius-Ajuru-University-of-Education.json +++ b/resources/africa/nigeria/ym-Ignatius-Ajuru-University-of-Education.json @@ -3,7 +3,7 @@ "name": "IgnatiusMappersTeam (IMT)", "description": "YouthMappers chapter at Ignatius Ajuru University of Education", "id": "ym-Ignatius-Ajuru-University-of-Education", - "featureId": "Ignatius-Ajuru-University-of-Education", + "featureId": "ignatius-ajuru-university-of-education", "contacts": [{"name": "Organizer", "email": "ignatiusmappersteam@gmail.com"}], "extendedDescription": "We are a YouthMappers Chapter of Ignatius Ajuru University of Education involved in crowdsourced mapping of our environment and remote mapping of resilient communities.We are a team of volunteers using openstreetmap and other open Geospatial source for mapping.", "countryCodes": ["ng"], diff --git a/resources/africa/nigeria/ym-University-of-Nigeria-Enugu-Campus.json b/resources/africa/nigeria/ym-University-of-Nigeria-Enugu-Campus.json index 9b83d247e..bb78d49be 100644 --- a/resources/africa/nigeria/ym-University-of-Nigeria-Enugu-Campus.json +++ b/resources/africa/nigeria/ym-University-of-Nigeria-Enugu-Campus.json @@ -3,7 +3,7 @@ "name": "LionMappersTeam (LMT) Enugu", "description": "YouthMappers chapter at University of Nigeria, Enugu Campus", "id": "ym-University-of-Nigeria-Enugu-Campus", - "featureId": "University-of-Nigeria-Enugu-Campus", + "featureId": "university-of-nigeria-enugu-campus", "contacts": [{"name": "Organizer", "email": "lmtenugucampus@gmail.com"}], "extendedDescription": "The LionMappersTeam(LMT)Enugu Campus is an affiliate of YouthMappers Network, with the sole aim of providing members the opportunity to learn and improve their skills in the field of Geoinformatics and to create open geographic data and analysis that addresses locally defined challenges globally. It is a team of volunteers for Crowdsourced Mapping and Geographic Information provision using Openstreetmap, Citizen Science and other Geospatial Technology for research, training and response to resilient community challenges. We are involved in Web-Cartography, GIS and Remote Sensing Applications and ResearchWe are passionate about Volunteered Geographic Information.Paticipatory GIS and Citizen Science.Our major activities include online crowdsourced-Cartography, Field Mapping ,Training workshops and outreaches to High School as well as Humanitarian/Disaster Response Mapping.", "countryCodes": ["ng"], diff --git a/resources/africa/nigeria/ym-University-of-Nigeria-Nsukka.json b/resources/africa/nigeria/ym-University-of-Nigeria-Nsukka.json index ef97b8891..5776bee41 100644 --- a/resources/africa/nigeria/ym-University-of-Nigeria-Nsukka.json +++ b/resources/africa/nigeria/ym-University-of-Nigeria-Nsukka.json @@ -3,7 +3,7 @@ "name": "LionMappersTeam (LMT) Nsukka", "description": "YouthMappers chapter at University of Nigeria, Nsukka", "id": "ym-University-of-Nigeria-Nsukka", - "featureId": "University-of-Nigeria-Nsukka", + "featureId": "university-of-nigeria-nsukka", "contacts": [{"name": "Organizer", "email": "lionmappersteam@gmail.com"}], "extendedDescription": "The LionMappersTeam is an affiliate of YouthMappers Network, with the sole aim of providing members the opportunity to learn and improve their skills in the field of mapping science and to create open geographic data and analysis that addresses locally defined challenges globally. It is a team of volunteers for crowdsourced mapping and geographic information provision using Openstreetmap, citizen science and other geospatial technology for research, training and response to resilient community challenges. We are involved in GIS and Remote Sensing Applications and Research.Paticipatory GIS and Citizen Science,field mapping ,training workshops and outreaches to High Schools.", "countryCodes": ["ng"], diff --git a/resources/africa/nigeria/ym-University-of-Port-Harcourt.json b/resources/africa/nigeria/ym-University-of-Port-Harcourt.json index 89c16fb92..2c93259b2 100644 --- a/resources/africa/nigeria/ym-University-of-Port-Harcourt.json +++ b/resources/africa/nigeria/ym-University-of-Port-Harcourt.json @@ -3,7 +3,7 @@ "name": "UniqueMappersTeam (UMT) Port Harcourt", "description": "YouthMappers chapter at University of Port Harcourt", "id": "ym-University-of-Port-Harcourt", - "featureId": "University-of-Port-Harcourt", + "featureId": "university-of-port-harcourt", "contacts": [{"name": "Organizer", "email": "victor.sunday@uniport.edu.ng"}], "extendedDescription": "UniqueMappersTeam(UMT)Port Harcourt is an action group and a team of volunteers for a collaborative online mapping targeted at training and empowering members with trending mapping skills to create open geospatial data and analysis that addresses locally defined challenges for geoinformation and to provide humanitarian mapping services to resilient communities in Niger Delta,Nigeria and elsewhere.We promote Crowdsoucred Mapping and Geographic information volunteering using OpenStreetMap(OSM) platform and other accessible platforms for Rapid Response Mapping,Disaster Mapping,Geo-intelligence Mapping,Map updates and training.Its an affiliate Campus chapter of Humanitarian OpenStreetMap Team(HOT).It is a project-task team of YouthMappers that provide opportunity for members to learn and improve their skills in Geoinformatics so as to explore global opportunities in the field of Mapping and Geoinformation.", "countryCodes": ["ng"], diff --git a/resources/africa/rwanda/ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri.json b/resources/africa/rwanda/ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri.json index e767f0ebc..1a6057187 100644 --- a/resources/africa/rwanda/ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri.json +++ b/resources/africa/rwanda/ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri.json @@ -3,7 +3,7 @@ "name": "YouthMappers at INES Ruhengeri", "description": "YouthMappers chapter at Insititue d' Enseignement Superieur de Ruhengeri", "id": "ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri", - "featureId": "Insititue-d-Enseignement-Superieur-de-Ruhengeri", + "featureId": "insititue-d-enseignement-superieur-de-ruhengeri", "contacts": [{"name": "Organizer", "email": "dufitesaie91@yahoo.com"}], "extendedDescription": "We are students from Land Administration and Management and Land survey Departments from INES-Ruhengeri. We are engaged in mapping activities that create the changes toward sustainable development in our community.", "countryCodes": ["rw"], diff --git a/resources/africa/rwanda/ym-University-of-Rwanda-Huye-Campus.json b/resources/africa/rwanda/ym-University-of-Rwanda-Huye-Campus.json index 4cdef9814..9dbb2094f 100644 --- a/resources/africa/rwanda/ym-University-of-Rwanda-Huye-Campus.json +++ b/resources/africa/rwanda/ym-University-of-Rwanda-Huye-Campus.json @@ -3,7 +3,7 @@ "name": "Rwanda YouthMappers", "description": "YouthMappers chapter at University of Rwanda - Huye Campus", "id": "ym-University-of-Rwanda-Huye-Campus", - "featureId": "University-of-Rwanda-Huye-Campus", + "featureId": "university-of-rwanda-huye-campus", "contacts": [{"name": "Organizer", "email": "erneruz@gmail.com"}], "extendedDescription": "Based on the commitment and the purpose of promoting mapping, and the information from YouthMappers public talks, we have organized as students in Geography department who are committed in mapping to found a chapter of our Campus. We have supported by our Facilitator Dr. Gaspard Rwanyiziri (Director of CGIS-Rwanda) and various lecturer mentors.", "countryCodes": ["rw"], diff --git a/resources/africa/senegal/ym-Institut-Suprieur-de-Management-Kolda.json b/resources/africa/senegal/ym-Institut-Suprieur-de-Management-Kolda.json index 072ff74b3..d246a2d85 100644 --- a/resources/africa/senegal/ym-Institut-Suprieur-de-Management-Kolda.json +++ b/resources/africa/senegal/ym-Institut-Suprieur-de-Management-Kolda.json @@ -3,7 +3,7 @@ "name": "Les Femmes Leaders de ISM/Kolda", "description": "YouthMappers chapter at Institut Supérieur de Management Kolda", "id": "ym-Institut-Suprieur-de-Management-Kolda", - "featureId": "Institut-Suprieur-de-Management-Kolda", + "featureId": "institut-suprieur-de-management-kolda", "contacts": [{"name": "Organizer", "email": "koldaym@gmail.com"}], "extendedDescription": "Les Femmes Leaders de ISM/Kolda is an all-female mapping group in southern Senegal looking to put Kolda and surrounding villages on the map and better understand how to use OSM.", "countryCodes": ["sn"], diff --git a/resources/africa/senegal/ym-Universit-Gaston-Berger.json b/resources/africa/senegal/ym-Universit-Gaston-Berger.json index c95dd5aca..8ef3f7a0d 100644 --- a/resources/africa/senegal/ym-Universit-Gaston-Berger.json +++ b/resources/africa/senegal/ym-Universit-Gaston-Berger.json @@ -3,7 +3,7 @@ "name": "YouthMappers at UGB", "description": "YouthMappers chapter at Université Gaston Berger", "id": "ym-Universit-Gaston-Berger", - "featureId": "Universit-Gaston-Berger", + "featureId": "universit-gaston-berger", "contacts": [{"name": "Organizer", "email": "youthmappers.ugb@gmail.com"}], "extendedDescription": "YouthMappers UGB is made up of young students and researchers who are passionate about mapping. Our aim is to improve students' skills in the field of cartography and to participate in the creation of open geographic data that responds to development challenges around the world and particularly in Africa.", "countryCodes": ["sn"], diff --git a/resources/africa/sierra_leone/ym-Fourah-Bay-College.json b/resources/africa/sierra_leone/ym-Fourah-Bay-College.json index be99590ec..ae34abc0d 100644 --- a/resources/africa/sierra_leone/ym-Fourah-Bay-College.json +++ b/resources/africa/sierra_leone/ym-Fourah-Bay-College.json @@ -3,7 +3,7 @@ "name": "Student's Geographical Association", "description": "YouthMappers chapter at Fourah Bay College", "id": "ym-Fourah-Bay-College", - "featureId": "Fourah-Bay-College", + "featureId": "fourah-bay-college", "contacts": [{"name": "Organizer", "email": "sgayouthmappers@gmail.com"}], "extendedDescription": "The Student's Geographical Association- YouthMappers is an association of Fourah Bay College Students with the common goals of mapping out vulnerable places in Sierra Leone and the world at large for relief and other beneficial purposes,carry out Research and other educative endeavors. The chapter consists of young people with great ideas, development oriented with the capacity to relate with each other, comprehend and implement sustainable developmental projects as a team.", "countryCodes": ["sl"], diff --git a/resources/africa/sierra_leone/ym-Njala-University-Freetown-Campus.json b/resources/africa/sierra_leone/ym-Njala-University-Freetown-Campus.json index 535c9497b..9db1431cd 100644 --- a/resources/africa/sierra_leone/ym-Njala-University-Freetown-Campus.json +++ b/resources/africa/sierra_leone/ym-Njala-University-Freetown-Campus.json @@ -3,7 +3,7 @@ "name": "Njala Freetown YouthMappers", "description": "YouthMappers chapter at Njala University, Freetown Campus", "id": "ym-Njala-University-Freetown-Campus", - "featureId": "Njala-University-Freetown-Campus", + "featureId": "njala-university-freetown-campus", "contacts": [{"name": "Organizer", "email": "njalafreetownmappers@gmail.com"}], "extendedDescription": "We are students of Njala University Freetown Campus, studying Information Technology under the department of Physics and Computer Science. and we are located at Henry Street Freetown, Sierra Leone.", "countryCodes": ["sl"], diff --git a/resources/africa/sierra_leone/ym-Njala-University-Njala-Campus.json b/resources/africa/sierra_leone/ym-Njala-University-Njala-Campus.json index 39020b95d..cf1642f2b 100644 --- a/resources/africa/sierra_leone/ym-Njala-University-Njala-Campus.json +++ b/resources/africa/sierra_leone/ym-Njala-University-Njala-Campus.json @@ -3,7 +3,7 @@ "name": "YouthMappers Njala University, Njala Campus", "description": "YouthMappers chapter at Njala University, Njala Campus", "id": "ym-Njala-University-Njala-Campus", - "featureId": "Njala-University-Njala-Campus", + "featureId": "njala-university-njala-campus", "contacts": [{"name": "Organizer", "email": "youthmappersnu2017@gmail.com"}], "countryCodes": ["sl"], "url": "mailto:youthmappersnu2017@gmail.com" diff --git a/resources/africa/south_africa/ym-University-of-Pretoria.json b/resources/africa/south_africa/ym-University-of-Pretoria.json index 3dfb77f07..c758ba952 100644 --- a/resources/africa/south_africa/ym-University-of-Pretoria.json +++ b/resources/africa/south_africa/ym-University-of-Pretoria.json @@ -3,7 +3,7 @@ "name": "Centre for Geoinformation Science", "description": "YouthMappers chapter at University of Pretoria", "id": "ym-University-of-Pretoria", - "featureId": "University-of-Pretoria", + "featureId": "university-of-pretoria", "contacts": [{"name": "Organizer", "email": "cgis-info@kendy.up.ac.za"}], "extendedDescription": "The students who map Pretoria are supported by the University of Pretoria's Centre for Geoinformation Science, a platform from where the excellence of UP individuals and teams involved in geographic information science (GISc) research, education and training, professional development and community engagement is encouraged and strengthened through collaborations, education and training and alliances within South Africa and abroad.", "countryCodes": ["za"], diff --git a/resources/africa/tanzania/ym-Ardhi-University.json b/resources/africa/tanzania/ym-Ardhi-University.json index d1ec40c54..840a56e48 100644 --- a/resources/africa/tanzania/ym-Ardhi-University.json +++ b/resources/africa/tanzania/ym-Ardhi-University.json @@ -3,7 +3,7 @@ "name": "ARU Mapper", "description": "YouthMappers chapter at Ardhi University", "id": "ym-Ardhi-University", - "featureId": "Ardhi-University", + "featureId": "ardhi-university", "contacts": [{"name": "Organizer", "email": "bayonakennedy@gmail.com"}], "extendedDescription": "As upcoming geospatial data consultants we seek to educate and provide advice to the society on how they can use spatial data not only as a form of location but a tool of decision making and predict different hazardous and climatical changes which may harm them or future genarations.", "countryCodes": ["tz"], diff --git a/resources/africa/tanzania/ym-Institute-of-Finance-Management.json b/resources/africa/tanzania/ym-Institute-of-Finance-Management.json index 1277d8716..21451aa07 100644 --- a/resources/africa/tanzania/ym-Institute-of-Finance-Management.json +++ b/resources/africa/tanzania/ym-Institute-of-Finance-Management.json @@ -3,7 +3,7 @@ "name": "IFM mappers", "description": "YouthMappers chapter at Institute of Finance Management", "id": "ym-Institute-of-Finance-Management", - "featureId": "Institute-of-Finance-Management", + "featureId": "institute-of-finance-management", "contacts": [{"name": "Organizer", "email": "supermalik95@gmail.com"}], "extendedDescription": "This is a new chapter at out institute and we are looking forward to use our financial education that we are receiving here at the campus and link ig with the environment in order to develop our sustainable environment towards helping the community with the effects of our environment in a financial ways by converting them into numbers. this is widely explained in ecosystem accounting and environmental accounts", "countryCodes": ["tz"], diff --git a/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning-Mwanza.json b/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning-Mwanza.json index 275a5fb68..0352fa63b 100644 --- a/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning-Mwanza.json +++ b/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning-Mwanza.json @@ -3,7 +3,7 @@ "name": "Youth Mappers Chapter at Institute of Rural Development Planning - Lake Zone Centre", "description": "YouthMappers chapter at Institute of Rural Development Planning Mwanza", "id": "ym-Institute-of-Rural-Development-Planning-Mwanza", - "featureId": "Institute-of-Rural-Development-Planning-Mwanza", + "featureId": "institute-of-rural-development-planning-mwanza", "contacts": [{"name": "Organizer", "email": "shabanimagawila@gmail.com"}], "countryCodes": ["tz"], "url": "www.facebook.com/IYMLZC/" diff --git a/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning.json b/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning.json index 457a2288d..1fc82b063 100644 --- a/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning.json +++ b/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning.json @@ -3,7 +3,7 @@ "name": "Mipango YouthMappers Chapter", "description": "YouthMappers chapter at Institute of Rural Development Planning", "id": "ym-Institute-of-Rural-Development-Planning", - "featureId": "Institute-of-Rural-Development-Planning", + "featureId": "institute-of-rural-development-planning", "contacts": [{"name": "Organizer", "email": "msmapperschapter@gmail.com"}], "extendedDescription": "Mipango YouthMappers Chapter was introduced at IRDP on 3rd July, 2017 by Dr.Domitilla Bashemera. The founding members were 300 (190 males and 110 female) Bachelor Degree students, who were registered as members of the Chapter. Gerald Zacharia is the president of the chapter and Juster Lugira is Vice President.", "countryCodes": ["tz"], diff --git a/resources/africa/tanzania/ym-Open-University-of-Tanzania.json b/resources/africa/tanzania/ym-Open-University-of-Tanzania.json index 1e7f8afe0..41d9e03a5 100644 --- a/resources/africa/tanzania/ym-Open-University-of-Tanzania.json +++ b/resources/africa/tanzania/ym-Open-University-of-Tanzania.json @@ -3,7 +3,7 @@ "name": "Youth Mappers at Open University of Tanzania", "description": "YouthMappers chapter at Open University of Tanzania", "id": "ym-Open-University-of-Tanzania", - "featureId": "Open-University-of-Tanzania", + "featureId": "open-university-of-tanzania", "contacts": [{"name": "Organizer", "email": "youthmapout@gmail.com"}], "extendedDescription": "Youth Mappers at Open University of Tanzania\n\nHad been founded by members and students of Open University of Tanzania in Department of Geography who are mainly need to improve their career and help young community through joint and partnership projects with local community groups such as Mikoko Scout Group (www.msg.or.tz) and start cooperation with international colleges and universities for exchange programs in relation to Geography Studies as some programs prepared by Mikoko Scout Group which will link local university and other universities of the same interest through International Nature & Environmental Youth Camp 2019 (www.campsite.msg.or.tz/nature.html )\n\nOur chapter will soon be recognized as youth network program that will open opportunity for students to study and conduct research studies at a local levels.", "countryCodes": ["tz"], diff --git a/resources/africa/tanzania/ym-Sokoine-University-of-Agriculture.json b/resources/africa/tanzania/ym-Sokoine-University-of-Agriculture.json index 9abebc219..17842be48 100644 --- a/resources/africa/tanzania/ym-Sokoine-University-of-Agriculture.json +++ b/resources/africa/tanzania/ym-Sokoine-University-of-Agriculture.json @@ -3,7 +3,7 @@ "name": "SMCoSE YouthMappers", "description": "YouthMappers chapter at Sokoine University of Agriculture", "id": "ym-Sokoine-University-of-Agriculture", - "featureId": "Sokoine-University-of-Agriculture", + "featureId": "sokoine-university-of-agriculture", "contacts": [{"name": "Organizer", "email": "smcoseyouthmappers@gmail.com"}], "extendedDescription": "A Chapter comprising of Environmental sciences and management students and Geography studies under the dept. of Geography and we will be using mapping techniques, based on systems concepts and theories, can be used to facilitate, explore, and capture the different understandings of the relationships, perspectives, and boundaries involved in environmental sustainability to obtain a more complete comprehension of the concept and develop plans for action.", "countryCodes": ["tz"], diff --git a/resources/africa/tanzania/ym-University-of-Dar-es-Salaam.json b/resources/africa/tanzania/ym-University-of-Dar-es-Salaam.json index 2f8559fba..fbeb5a81a 100644 --- a/resources/africa/tanzania/ym-University-of-Dar-es-Salaam.json +++ b/resources/africa/tanzania/ym-University-of-Dar-es-Salaam.json @@ -3,7 +3,7 @@ "name": "YouthMappers at University of Dar es Salaam", "description": "YouthMappers chapter at University of Dar es Salaam", "id": "ym-University-of-Dar-es-Salaam", - "featureId": "University-of-Dar-es-Salaam", + "featureId": "university-of-dar-es-salaam", "contacts": [{"name": "Organizer", "email": "godluckur@gmail.com"}], "extendedDescription": "The purpose of the University of Dar es Salaam YouthMappers is to use and promote open source data and GIS technologies to map potential disaster areas, provide resources for emergency management, connect its members with open source and GIS organizations in the city of Dar es Salaam, and serve any upcoming needs of our project partners .", "countryCodes": ["tz"], diff --git a/resources/africa/uganda/ym-Busitema-University.json b/resources/africa/uganda/ym-Busitema-University.json index 47bc80317..e760e0bfa 100644 --- a/resources/africa/uganda/ym-Busitema-University.json +++ b/resources/africa/uganda/ym-Busitema-University.json @@ -3,7 +3,7 @@ "name": "Good Mappers", "description": "YouthMappers chapter at Busitema University", "id": "ym-Busitema-University", - "featureId": "Busitema-University", + "featureId": "busitema-university", "contacts": [{"name": "Organizer", "email": "mulindwasteven82@gmail.com"}], "extendedDescription": "Good mappers is a team of students in Busitema University. Its main objective is to create a community of experienced mappers who can contribute to the world map.", "countryCodes": ["ug"], diff --git a/resources/africa/uganda/ym-Gulu-University.json b/resources/africa/uganda/ym-Gulu-University.json index f728f7c17..cf6cecd98 100644 --- a/resources/africa/uganda/ym-Gulu-University.json +++ b/resources/africa/uganda/ym-Gulu-University.json @@ -3,7 +3,7 @@ "name": "CSGU Mappers", "description": "YouthMappers chapter at Gulu University", "id": "ym-Gulu-University", - "featureId": "Gulu-University", + "featureId": "gulu-university", "contacts": [{"name": "Organizer", "email": "git445@gmail.com"}], "extendedDescription": "The CSGU Mappers are the Computing Society at Gulu University. This chapter is creative, passionate, innovative and ready to map Uganda and the world at large, beyond other people's imagination.", "countryCodes": ["ug"], diff --git a/resources/africa/uganda/ym-Kumi-University.json b/resources/africa/uganda/ym-Kumi-University.json index 98e9ad1d9..dbe322550 100644 --- a/resources/africa/uganda/ym-Kumi-University.json +++ b/resources/africa/uganda/ym-Kumi-University.json @@ -3,7 +3,7 @@ "name": "Ever Last YouthMappers", "description": "YouthMappers chapter at Kumi University", "id": "ym-Kumi-University", - "featureId": "Kumi-University", + "featureId": "kumi-university", "contacts": [{"name": "Organizer", "email": "kumiuniversityeverlastyouthmap@gmail.com"}], "extendedDescription": "This energetic group of students organizes within the faculty of Science and Information Technology.", "countryCodes": ["ug"], diff --git a/resources/africa/uganda/ym-Makerere-University.json b/resources/africa/uganda/ym-Makerere-University.json index db721b34b..b1653d3b2 100644 --- a/resources/africa/uganda/ym-Makerere-University.json +++ b/resources/africa/uganda/ym-Makerere-University.json @@ -3,7 +3,7 @@ "name": "Geo YouthMappers", "description": "YouthMappers chapter at Makerere University", "id": "ym-Makerere-University", - "featureId": "Makerere-University", + "featureId": "makerere-university", "contacts": [{"name": "Organizer", "email": "geo-youthmappers@googlegroups.com"}], "extendedDescription": "Geo YouthMappers is a Makerere University based mapping chapter esteemed to apply the spatial conception to the real world.We have collaborated on various mapping events with OSM. Our main aim is the desire to simplify data and make it readily available mostly for disaster preparedness.\"We map the world and change lives.", "countryCodes": ["ug"], diff --git a/resources/africa/uganda/ym-Mbarara-University-of-Science-and-Technology.json b/resources/africa/uganda/ym-Mbarara-University-of-Science-and-Technology.json index 345110c55..07413f759 100644 --- a/resources/africa/uganda/ym-Mbarara-University-of-Science-and-Technology.json +++ b/resources/africa/uganda/ym-Mbarara-University-of-Science-and-Technology.json @@ -3,7 +3,7 @@ "name": "MUST Street Mappers", "description": "YouthMappers chapter at Mbarara University of Science and Technology", "id": "ym-Mbarara-University-of-Science-and-Technology", - "featureId": "Mbarara-University-of-Science-and-Technology", + "featureId": "mbarara-university-of-science-and-technology", "contacts": [{"name": "Organizer", "email": "muststreetmappers@gmail.com"}], "extendedDescription": "MUST Street Mappers is a Youth Mappers chapter at the Mbarara University of Science and Technology that is based on making our country and the world at large a better place through mapping. We base on collected information to notice patterns and data mine to present relevant and beneficial information to society.", "countryCodes": ["ug"], diff --git a/resources/africa/uganda/ym-St.-Augustine-International-University.json b/resources/africa/uganda/ym-St.-Augustine-International-University.json index 2c268c3f0..93b5791d3 100644 --- a/resources/africa/uganda/ym-St.-Augustine-International-University.json +++ b/resources/africa/uganda/ym-St.-Augustine-International-University.json @@ -3,7 +3,7 @@ "name": "YouthMappers at St Augustine International University", "description": "YouthMappers chapter at St. Augustine International University", "id": "ym-St.-Augustine-International-University", - "featureId": "St.-Augustine-International-University", + "featureId": "st.-augustine-international-university", "contacts": [{"name": "Organizer", "email": "youthmapperssaiu@gmail.com"}], "countryCodes": ["ng"], "url": "mailto:youthmapperssaiu@gmail.com" diff --git a/resources/africa/uganda/ym-Uganda-Christian-University-Mbale-Campus.json b/resources/africa/uganda/ym-Uganda-Christian-University-Mbale-Campus.json index e02a7d772..0706a6edc 100644 --- a/resources/africa/uganda/ym-Uganda-Christian-University-Mbale-Campus.json +++ b/resources/africa/uganda/ym-Uganda-Christian-University-Mbale-Campus.json @@ -3,7 +3,7 @@ "name": "Mappers for Life", "description": "YouthMappers chapter at Uganda Christian University Mbale Campus", "id": "ym-Uganda-Christian-University-Mbale-Campus", - "featureId": "Uganda-Christian-University-Mbale-Campus", + "featureId": "uganda-christian-university-mbale-campus", "contacts": [{"name": "Organizer", "email": "munhilll@gmail.com"}], "extendedDescription": "We are Team Mappers for life! Please come and join us as we map together!\" This group works from the Department of Information Technology at the UCU.", "countryCodes": ["ug"], diff --git a/resources/africa/uganda/ym-Uganda-Pentecostal-University.json b/resources/africa/uganda/ym-Uganda-Pentecostal-University.json index eb701d3cd..d949eb302 100644 --- a/resources/africa/uganda/ym-Uganda-Pentecostal-University.json +++ b/resources/africa/uganda/ym-Uganda-Pentecostal-University.json @@ -3,7 +3,7 @@ "name": "HiTech Youth Mappers", "description": "YouthMappers chapter at Uganda Pentecostal University", "id": "ym-Uganda-Pentecostal-University", - "featureId": "Uganda-Pentecostal-University", + "featureId": "uganda-pentecostal-university", "contacts": [{"name": "Organizer", "email": "hitechyouthmappers@gmail.com"}], "extendedDescription": "A new Youthmappers Chapter in Western Uganda. Ready to map and provide open data with OpenStreetMap for development purposes.", "countryCodes": ["ug"], diff --git a/resources/africa/zambia/ym-St.-Mawaggali-Trades-Training-Institute.json b/resources/africa/zambia/ym-St.-Mawaggali-Trades-Training-Institute.json index 13fab85fc..e446330f0 100644 --- a/resources/africa/zambia/ym-St.-Mawaggali-Trades-Training-Institute.json +++ b/resources/africa/zambia/ym-St.-Mawaggali-Trades-Training-Institute.json @@ -3,7 +3,7 @@ "name": "MawaggaliMappers", "description": "YouthMappers chapter at St. Mawaggali Trades Training Institute", "id": "ym-St.-Mawaggali-Trades-Training-Institute", - "featureId": "St.-Mawaggali-Trades-Training-Institute", + "featureId": "st.-mawaggali-trades-training-institute", "contacts": [{"name": "Organizer", "email": "mawaggalimappers@gmail.com"}], "extendedDescription": "We are the youthappers chapter at St. Mawaggali trades in choma who are want to contribute the different humantarian tasks to serve lives through mapping.", "countryCodes": ["zm"], diff --git a/resources/africa/zambia/ym-The-University-of-Zambia.json b/resources/africa/zambia/ym-The-University-of-Zambia.json index 581d460b3..949f9a202 100644 --- a/resources/africa/zambia/ym-The-University-of-Zambia.json +++ b/resources/africa/zambia/ym-The-University-of-Zambia.json @@ -3,7 +3,7 @@ "name": "YouthMappers Unza", "description": "YouthMappers chapter at The University of Zambia", "id": "ym-The-University-of-Zambia", - "featureId": "The-University-of-Zambia", + "featureId": "the-university-of-zambia", "contacts": [{"name": "Organizer", "email": "chombachishala13@gmail.com"}], "countryCodes": ["zm"], "url": "https://www.facebook.com/search/posts/?q=youth%20mappers%20unza" diff --git a/resources/africa/zimbabwe/ym-University-of-Zimbabwe.json b/resources/africa/zimbabwe/ym-University-of-Zimbabwe.json index e11d889a1..cf95a647b 100644 --- a/resources/africa/zimbabwe/ym-University-of-Zimbabwe.json +++ b/resources/africa/zimbabwe/ym-University-of-Zimbabwe.json @@ -3,7 +3,7 @@ "name": "UZMappers", "description": "YouthMappers chapter at University of Zimbabwe", "id": "ym-University-of-Zimbabwe", - "featureId": "University-of-Zimbabwe", + "featureId": "university-of-zimbabwe", "contacts": [{"name": "Organizer", "email": "uzmappersteam@gmail.com"}], "extendedDescription": "UzMappersTeam Zimbabwe is a team of Volunteers using OpenStreetMap for Open Data Mapping and Humanitarian Disaster response mapping .The team empowers its members with open source geospatial technology skills.", "countryCodes": ["zw"], diff --git a/resources/asia/bangladesh/osm-bangladesh-facebook.json b/resources/asia/bangladesh/osm-bangladesh-facebook.json index 9e6531918..42609b650 100644 --- a/resources/asia/bangladesh/osm-bangladesh-facebook.json +++ b/resources/asia/bangladesh/osm-bangladesh-facebook.json @@ -1,6 +1,6 @@ { "id": "OSM-BGD-facebook", - "featureId": "BGD", + "featureId": "bangladesh", "type": "facebook", "name": "OpenStreetMap Bangladesh", "description": "Improve OpenStreetMap in Bangladesh", diff --git a/resources/asia/bangladesh/ym-Asian-University-for-Women.json b/resources/asia/bangladesh/ym-Asian-University-for-Women.json index 6803a27e4..138a9a079 100644 --- a/resources/asia/bangladesh/ym-Asian-University-for-Women.json +++ b/resources/asia/bangladesh/ym-Asian-University-for-Women.json @@ -3,7 +3,7 @@ "name": "YouthMappers at AUW", "description": "YouthMappers chapter at Asian University for Women", "id": "ym-Asian-University-for-Women", - "featureId": "Asian-University-for-Women", + "featureId": "asian-university-for-women", "contacts": [{"name": "Organizer", "email": "harunur.rashid@auw.edu.bd"}], "extendedDescription": "The Asian University for Women seeks to graduate women who will be skilled and innovative professionals, service-oriented leaders in the businesses and communities in which they will work and live, and promoters of intercultural understanding and sustainable human and economic development in Asia and throughout the world.", "countryCodes": ["bd"], diff --git a/resources/asia/bangladesh/ym-Dhaka-College.json b/resources/asia/bangladesh/ym-Dhaka-College.json index 9ecb2667c..071ebd526 100644 --- a/resources/asia/bangladesh/ym-Dhaka-College.json +++ b/resources/asia/bangladesh/ym-Dhaka-College.json @@ -3,7 +3,7 @@ "name": "YouthMappers Daka College", "description": "YouthMappers chapter at Dhaka College", "id": "ym-Dhaka-College", - "featureId": "Dhaka-College", + "featureId": "dhaka-college", "contacts": [{"name": "Organizer", "email": "youthmappersdc@gmail.com"}], "extendedDescription": "YouthMappers DhakaCollege is an approach by students to help mapping vulnerable areas of the world as a part of Humanitarian Action. YouthMappers  gives the opportunity to the students for helping people and using mapping for humanitarian purposes. This open geographic data can be used for educational, navigational and other humanitarian purposes. Happy mapping.", "countryCodes": ["bd"], diff --git a/resources/asia/bangladesh/ym-Dhaka-University.json b/resources/asia/bangladesh/ym-Dhaka-University.json index 1ade1eb30..9065d2e3c 100644 --- a/resources/asia/bangladesh/ym-Dhaka-University.json +++ b/resources/asia/bangladesh/ym-Dhaka-University.json @@ -3,7 +3,7 @@ "name": "Openstreetmap YouthMappers", "description": "YouthMappers chapter at Dhaka University", "id": "ym-Dhaka-University", - "featureId": "Dhaka-University", + "featureId": "dhaka-university", "contacts": [{"name": "Organizer", "email": "hoque.ahasan@gmail.com"}], "extendedDescription": "It's a great privilege for the students of University of Dhaka to map for humanitarian purposes. Our chapter gives the opportunity to the students for helping people and use mapping for humanitarian purposes.", "countryCodes": ["bd"], diff --git a/resources/asia/bangladesh/ym-Eastern-University.json b/resources/asia/bangladesh/ym-Eastern-University.json index c792e4118..72289c29f 100644 --- a/resources/asia/bangladesh/ym-Eastern-University.json +++ b/resources/asia/bangladesh/ym-Eastern-University.json @@ -3,7 +3,7 @@ "name": "YouthMappers at Eastern University", "description": "YouthMappers chapter at Eastern University", "id": "ym-Eastern-University", - "featureId": "Eastern-University", + "featureId": "eastern-university", "contacts": [{"name": "Organizer", "email": "infolimon@gmail.com"}], "extendedDescription": "YouthMappers at Eastern University, Bangladesh has been formed with a view to assisting people during humanitarian crisis. The students, likewise other mappers of the world, are promised to assist people in using the map for educational, navigational and other humanitarian purposes.", "countryCodes": ["bd"], diff --git a/resources/asia/bangladesh/ym-Jahangirnagar-University.json b/resources/asia/bangladesh/ym-Jahangirnagar-University.json index 8aee00493..41528e551 100644 --- a/resources/asia/bangladesh/ym-Jahangirnagar-University.json +++ b/resources/asia/bangladesh/ym-Jahangirnagar-University.json @@ -3,7 +3,7 @@ "name": "YouthMappers at IRS, Jahangirnagar University", "description": "YouthMappers chapter at Jahangirnagar University", "id": "ym-Jahangirnagar-University", - "featureId": "Jahangirnagar-University", + "featureId": "jahangirnagar-university", "contacts": [{"name": "Organizer", "email": "s.t.islam@juniv.edu"}], "countryCodes": ["bd"], "url": "mailto:s.t.islam@juniv.edu" diff --git a/resources/asia/bangladesh/ym-Khulna-University.json b/resources/asia/bangladesh/ym-Khulna-University.json index e5bb5df98..36a9d9825 100644 --- a/resources/asia/bangladesh/ym-Khulna-University.json +++ b/resources/asia/bangladesh/ym-Khulna-University.json @@ -3,7 +3,7 @@ "name": "Khulna University YouthMappers", "description": "YouthMappers chapter at Khulna University", "id": "ym-Khulna-University", - "featureId": "Khulna-University", + "featureId": "khulna-university", "contacts": [{"name": "Organizer", "email": "hoque.ahasan@gmail.com"}], "extendedDescription": "KU students and faculty from multiple disciplines are experienced at creating open data for OSM to address local challenges of development, including food security and other topics.", "countryCodes": ["bd"], diff --git a/resources/asia/bangladesh/ym-Rajshahi-University-of-Engineering-Technology.json b/resources/asia/bangladesh/ym-Rajshahi-University-of-Engineering-Technology.json index 04f629d78..71c1f726b 100644 --- a/resources/asia/bangladesh/ym-Rajshahi-University-of-Engineering-Technology.json +++ b/resources/asia/bangladesh/ym-Rajshahi-University-of-Engineering-Technology.json @@ -3,7 +3,7 @@ "name": "YouthMappers at RUET", "description": "YouthMappers chapter at Rajshahi University of Engineering & Technology", "id": "ym-Rajshahi-University-of-Engineering-Technology", - "featureId": "Rajshahi-University-of-Engineering-Technology", + "featureId": "rajshahi-university-of-engineering-technology", "contacts": [{"name": "Organizer", "email": "ruetmappers@gmail.com"}], "extendedDescription": "The \"YouthMappers at RUET\" is a humanitarian mapping group of students of Rajshahi University of Engineering & Technology (RUET) to share, develop and practice the knowledge of GIS. This group encourages using open source geospatial data and platform to make solution to reach the most vulnerable group of the world.", "countryCodes": ["bd"], diff --git a/resources/asia/bhutan/ym-Sherubtse-College.json b/resources/asia/bhutan/ym-Sherubtse-College.json index 250c48b77..fea602e99 100644 --- a/resources/asia/bhutan/ym-Sherubtse-College.json +++ b/resources/asia/bhutan/ym-Sherubtse-College.json @@ -3,7 +3,7 @@ "name": "Geographical Society", "description": "YouthMappers chapter at Sherubtse College", "id": "ym-Sherubtse-College", - "featureId": "Sherubtse-College", + "featureId": "sherubtse-college", "contacts": [{"name": "Organizer", "email": "gsscbhutan@gmail.com"}], "extendedDescription": "The Geographical Society, in the Department of Geography & Planning, Sherubtse College, Royal University of Bhutan, with support from the Center for Climate Change and Spatial Information, has made several efforts to create awareness and address important issues at the local and national level. We now join hands with the international student-centered YouthMappers network on \"Mapping for Resilience\" and contributing to a global 'Happiness'!", "countryCodes": ["bt"], diff --git a/resources/asia/india/ym-Gujarat-University.json b/resources/asia/india/ym-Gujarat-University.json index f37ac4070..0a4e4a80d 100644 --- a/resources/asia/india/ym-Gujarat-University.json +++ b/resources/asia/india/ym-Gujarat-University.json @@ -3,7 +3,7 @@ "name": "CCIM at Ahmedabad", "description": "YouthMappers chapter at Gujarat University", "id": "ym-Gujarat-University", - "featureId": "Gujarat-University", + "featureId": "gujarat-university", "contacts": [{"name": "Organizer", "email": "coolmulls@gmail.com"}], "countryCodes": ["in"], "url": "mailto:Coolmulls@gmail.com" diff --git a/resources/asia/indonesia/indonesia.json b/resources/asia/indonesia/indonesia.json index f812bef10..57a2080be 100644 --- a/resources/asia/indonesia/indonesia.json +++ b/resources/asia/indonesia/indonesia.json @@ -1,6 +1,6 @@ { "id": "OSM-IDN-facebook", - "featureId": "IDN", + "featureId": "indonesia", "type": "facebook", "name": "OpenStreetMap Indonesia", "description": "Improve OpenStreetMap in Indonesia", diff --git a/resources/asia/indonesia/ym-Universitas-Negeri-Makassar.json b/resources/asia/indonesia/ym-Universitas-Negeri-Makassar.json index df3c474fb..5f60f3610 100644 --- a/resources/asia/indonesia/ym-Universitas-Negeri-Makassar.json +++ b/resources/asia/indonesia/ym-Universitas-Negeri-Makassar.json @@ -3,7 +3,7 @@ "name": "Kontur Geografi", "description": "YouthMappers chapter at Universitas Negeri Makassar", "id": "ym-Universitas-Negeri-Makassar", - "featureId": "Universitas-Negeri-Makassar", + "featureId": "universitas-negeri-makassar", "contacts": [{"name": "Organizer", "email": "konturgeografi@gmail.com"}], "countryCodes": ["in"], "url": "https://tentangkontur.blogspot.co.id" diff --git a/resources/asia/indonesia/ym-University-Muhammadiyah-Surakarta.json b/resources/asia/indonesia/ym-University-Muhammadiyah-Surakarta.json index c874972f8..5a3e43938 100644 --- a/resources/asia/indonesia/ym-University-Muhammadiyah-Surakarta.json +++ b/resources/asia/indonesia/ym-University-Muhammadiyah-Surakarta.json @@ -3,7 +3,7 @@ "name": "SpaceTime", "description": "YouthMappers chapter at University Muhammadiyah Surakarta", "id": "ym-University-Muhammadiyah-Surakarta", - "featureId": "University-Muhammadiyah-Surakarta", + "featureId": "university-muhammadiyah-surakarta", "contacts": [{"name": "Organizer", "email": "spacetime1717@gmail.com"}], "extendedDescription": "SpaceTime is a community mapping in the Faculty of Geography of Muhammadiyah University of Surakarta. SpaceTime was founded by Bruce Maldy Pratama, Mukhlis Akbar and Irfandi Fauzi. They are active students in the Faculty of Geography University Muhammadiyah Surakarta.", "countryCodes": ["in"], diff --git a/resources/asia/mongolia/mongolia.json b/resources/asia/mongolia/mongolia.json index 98d989ba8..bc875fe7f 100644 --- a/resources/asia/mongolia/mongolia.json +++ b/resources/asia/mongolia/mongolia.json @@ -1,6 +1,6 @@ { "id": "OSM-MNG-facebook", - "featureId": "MNG", + "featureId": "mongolia", "type": "facebook", "name": "OpenStreetMap Mongolia", "description": "Improve OpenStreetMap in Mongolia", diff --git a/resources/asia/myanmar/osm-myanmar-facebook.json b/resources/asia/myanmar/osm-myanmar-facebook.json index bf832dfdd..98b952482 100644 --- a/resources/asia/myanmar/osm-myanmar-facebook.json +++ b/resources/asia/myanmar/osm-myanmar-facebook.json @@ -1,6 +1,6 @@ { "id": "OSM-MMR-facebook", - "featureId": "MMR", + "featureId": "myanmar", "type": "facebook", "name": "OpenStreetMap Myanmar", "description": "Improve OpenStreetMap in Myanmar", diff --git a/resources/asia/nepal/osm-nepal-facebook.json b/resources/asia/nepal/osm-nepal-facebook.json index 1551fb739..ae846aef3 100644 --- a/resources/asia/nepal/osm-nepal-facebook.json +++ b/resources/asia/nepal/osm-nepal-facebook.json @@ -1,6 +1,6 @@ { "id": "OSM-Nepal-facebook", - "featureId": "NPL", + "featureId": "nepal", "type": "facebook", "name": "OpenStreetMap Nepal", "description": "Improve OpenStreetMap in Nepal", diff --git a/resources/asia/nepal/ym-Institute-of-Crisis-Management-Studies.json b/resources/asia/nepal/ym-Institute-of-Crisis-Management-Studies.json index 1e2e4dbb5..b4ba966f4 100644 --- a/resources/asia/nepal/ym-Institute-of-Crisis-Management-Studies.json +++ b/resources/asia/nepal/ym-Institute-of-Crisis-Management-Studies.json @@ -3,7 +3,7 @@ "name": "Institute of Crisis Management Studies YouthMappers", "description": "YouthMappers chapter at Institute of Crisis Management Studies", "id": "ym-Institute-of-Crisis-Management-Studies", - "featureId": "Institute-of-Crisis-Management-Studies", + "featureId": "institute-of-crisis-management-studies", "contacts": [{"name": "Organizer", "email": "deepakadhikari@tuicms.edu.np"}], "extendedDescription": "To develop Crisis Mappers to assist during disaster situations.", "countryCodes": ["np"], diff --git a/resources/asia/nepal/ym-Kathmandu-University.json b/resources/asia/nepal/ym-Kathmandu-University.json index db5c5b8e9..4ab1a6a37 100644 --- a/resources/asia/nepal/ym-Kathmandu-University.json +++ b/resources/asia/nepal/ym-Kathmandu-University.json @@ -3,7 +3,7 @@ "name": "Geomatics Engineering Society,GES", "description": "YouthMappers chapter at Kathmandu University", "id": "ym-Kathmandu-University", - "featureId": "Kathmandu-University", + "featureId": "kathmandu-university", "contacts": [{"name": "Organizer", "email": "ges@ku.edu.np"}], "extendedDescription": "Geomatics Engineering Society (GES) established in 2008 A.D is a departmental club under Department of Civil and Geomatics Engineering (DCGE) at Kathmandu University. GES acts as a platform to develop the skills of students apart from their educational activities by focusing on activities like technical trainings, seminars, talk programs and interaction with experts from related field, sports activities etc.", "countryCodes": ["np"], diff --git a/resources/asia/nepal/ym-Tribhuvan-University.json b/resources/asia/nepal/ym-Tribhuvan-University.json index 1f49aca82..8476c219d 100644 --- a/resources/asia/nepal/ym-Tribhuvan-University.json +++ b/resources/asia/nepal/ym-Tribhuvan-University.json @@ -3,7 +3,7 @@ "name": "Geomatics Engineering Students Association", "description": "YouthMappers chapter at Tribhuvan University", "id": "ym-Tribhuvan-University", - "featureId": "Tribhuvan-University", + "featureId": "tribhuvan-university", "contacts": [{"name": "Organizer", "email": "gesan.nepal@gmail.com"}], "extendedDescription": "This organization is the student forum of Geomatics Engineering students of Tribhuvan University , Institute of Engineering on the Pashchimanchal campus. Established since the beginning of the degree program, students have been active in mapping and leadership and are thrilled to be a part of the YouthMappers network.", "countryCodes": ["np"], diff --git a/resources/asia/philippines/ym-Far-Eastern-University-Institute-of-Technology.json b/resources/asia/philippines/ym-Far-Eastern-University-Institute-of-Technology.json index 35096837e..31d21c01d 100644 --- a/resources/asia/philippines/ym-Far-Eastern-University-Institute-of-Technology.json +++ b/resources/asia/philippines/ym-Far-Eastern-University-Institute-of-Technology.json @@ -3,7 +3,7 @@ "name": "Junior Philippines Computer Society", "description": "YouthMappers chapter at Far Eastern University -Institute of Technology", "id": "ym-Far-Eastern-University-Institute-of-Technology", - "featureId": "Far-Eastern-University-Institute-of-Technology", + "featureId": "far-eastern-university-institute-of-technology", "contacts": [{"name": "Organizer", "email": "jpcsfeutech@outlook.com"}], "extendedDescription": "FEU has been recognized as one of the leading universities in the Philippines. Its mission centers on producing graduates who have contributed to the advancement of the country. The university continuously challenges itself to raise the bar of excellence to achieve a top-tier status not only in the Philippines but also in the South East Asian region", "countryCodes": ["ph"], diff --git a/resources/asia/philippines/ym-University-of-the-Philippines-Resilience-Institute.json b/resources/asia/philippines/ym-University-of-the-Philippines-Resilience-Institute.json index 52b3a2974..4aeb64b02 100644 --- a/resources/asia/philippines/ym-University-of-the-Philippines-Resilience-Institute.json +++ b/resources/asia/philippines/ym-University-of-the-Philippines-Resilience-Institute.json @@ -3,7 +3,7 @@ "name": "YouthMappers UP Resilience Institute", "description": "YouthMappers chapter at University of the Philippines Resilience Institute", "id": "ym-University-of-the-Philippines-Resilience-Institute", - "featureId": "University-of-the-Philippines-Resilience-Institute", + "featureId": "university-of-the-philippines-resilience-institute", "contacts": [{"name": "Organizer", "email": "llnguyen@up.edu.ph"}], "extendedDescription": "The UP Resilience Institute was established in 2016 with a mission statement to empower local communities through multidisciplinary research and actions toward resilience. Through UP NOAH Center, and the help of different organizations, we have provided building exposure maps for 17 provinces out of the 82 and uploaded more than 4 million footprints to Open Street Maps.", "countryCodes": ["ph"], diff --git a/resources/asia/thailand/OSM-TH-facebook.json b/resources/asia/thailand/OSM-TH-facebook.json index 02a456bb2..a0f774554 100644 --- a/resources/asia/thailand/OSM-TH-facebook.json +++ b/resources/asia/thailand/OSM-TH-facebook.json @@ -1,6 +1,6 @@ { "id": "OSM-TH-facebook", - "featureId": "thailand_full", + "featureId": "thailand", "type": "facebook", "countryCodes": ["th"], "languageCodes": ["en", "th"], diff --git a/resources/asia/thailand/OSM-TH-forum.json b/resources/asia/thailand/OSM-TH-forum.json index ab0600922..579267a8b 100644 --- a/resources/asia/thailand/OSM-TH-forum.json +++ b/resources/asia/thailand/OSM-TH-forum.json @@ -1,6 +1,6 @@ { "id": "OSM-TH-forum", - "featureId": "thailand_full", + "featureId": "thailand", "type": "forum", "countryCodes": ["th"], "languageCodes": ["en", "th"], diff --git a/resources/europe/germany/ym-Heidelberg-University.json b/resources/europe/germany/ym-Heidelberg-University.json index 2ab87ac60..71df7d585 100644 --- a/resources/europe/germany/ym-Heidelberg-University.json +++ b/resources/europe/germany/ym-Heidelberg-University.json @@ -3,7 +3,7 @@ "name": "disastermappers heidelberg", "description": "YouthMappers chapter at Heidelberg University", "id": "ym-Heidelberg-University", - "featureId": "Heidelberg-University", + "featureId": "heidelberg-university", "contacts": [{"name": "Organizer", "email": "disastermappers@posteo.de"}], "extendedDescription": "Disastermappers Heidelberg was founded in 2014 as a student initiative to build a platform for exchange between students, researchers and humanitarian actors. Disastermappers are a member of Missing Maps and are organizing mapathons, workshops and webinars in Heidelberg and beyond and support HOT and Missing Maps through research and applications.", "countryCodes": ["de"], diff --git a/resources/europe/italy/roma-meetup.json b/resources/europe/italy/roma-meetup.json index 7a0948f93..e53663fbb 100644 --- a/resources/europe/italy/roma-meetup.json +++ b/resources/europe/italy/roma-meetup.json @@ -1,6 +1,6 @@ { "id": "OSM-Rome-meetup", - "featureId": "IT_Roma_Capitale", + "featureId": "roma-capitale", "type": "group", "name": "Incontro Mappatori Romani", "countryCodes": ["it"], diff --git a/resources/europe/italy/south-tyrol.json b/resources/europe/italy/south-tyrol.json index a35aaf7dd..bd0eeb423 100644 --- a/resources/europe/italy/south-tyrol.json +++ b/resources/europe/italy/south-tyrol.json @@ -1,6 +1,6 @@ { "id": "South-Tyrol-Mailing-List", - "featureId": "south_tyrol", + "featureId": "south-tyrol", "type": "mailinglist", "countryCodes": ["it"], "languageCodes": ["de", "it", "lld", "en"], diff --git a/resources/europe/italy/talk-it-lazio_mailinglist.json b/resources/europe/italy/talk-it-lazio_mailinglist.json index ea94131e2..9c30224ba 100644 --- a/resources/europe/italy/talk-it-lazio_mailinglist.json +++ b/resources/europe/italy/talk-it-lazio_mailinglist.json @@ -1,6 +1,6 @@ { "id": "talk-it-lazio", - "featureId": "IT_Lazio", + "featureId": "lazio", "type": "mailinglist", "countryCodes": ["it"], "languageCodes": ["it"], diff --git a/resources/europe/italy/ym-Politecnico-di-Milano.json b/resources/europe/italy/ym-Politecnico-di-Milano.json index d154fe4ef..af6517371 100644 --- a/resources/europe/italy/ym-Politecnico-di-Milano.json +++ b/resources/europe/italy/ym-Politecnico-di-Milano.json @@ -3,7 +3,7 @@ "name": "PoliMappers", "description": "YouthMappers chapter at Politecnico di Milano", "id": "ym-Politecnico-di-Milano", - "featureId": "Politecnico-di-Milano", + "featureId": "politecnico-di-milano", "contacts": [{"name": "Organizer", "email": "polimappers@gmail.com"}], "extendedDescription": "PoliMappers is a volunteer students’ association based at Politecnico di Milano. The mission of the group is to train and motivate the next generation of volunteer mappers and to do mapping using free and open source software within the university as well as primary and secondary schools.", "countryCodes": ["it"], diff --git a/resources/europe/luxembourg/lu-mailinglist.json b/resources/europe/luxembourg/lu-mailinglist.json index 5d8cdbfb8..528fb5b41 100644 --- a/resources/europe/luxembourg/lu-mailinglist.json +++ b/resources/europe/luxembourg/lu-mailinglist.json @@ -1,6 +1,6 @@ { "id": "lu-mailinglist", - "featureId": "luxembourg_full", + "featureId": "luxembourg", "type": "mailinglist", "name": "Talk-lu Mailing List", "countryCodes": ["lu"], diff --git a/resources/europe/morocco/ym-Universit-Mohammed-V-Rabat.json b/resources/europe/morocco/ym-Universit-Mohammed-V-Rabat.json index 1b7ed619e..9375e3283 100644 --- a/resources/europe/morocco/ym-Universit-Mohammed-V-Rabat.json +++ b/resources/europe/morocco/ym-Universit-Mohammed-V-Rabat.json @@ -3,7 +3,7 @@ "name": "Brahmapoutre at Rabat", "description": "YouthMappers chapter at Université Mohammed V Rabat", "id": "ym-Universit-Mohammed-V-Rabat", - "featureId": "Universit-Mohammed-V-Rabat", + "featureId": "universit-mohammed-v-rabat", "contacts": [{"name": "Organizer", "email": "khmichasma@gmail.com"}], "extendedDescription": "This chapter sees participation in the YouthMappers program as an oppourtunity to share our knowlege create new working relationships with other chapters in different countries", "countryCodes": ["ma"], diff --git a/resources/europe/portugal/pt-mailinglist.json b/resources/europe/portugal/pt-mailinglist.json index 096bde04f..01aa7e9d2 100644 --- a/resources/europe/portugal/pt-mailinglist.json +++ b/resources/europe/portugal/pt-mailinglist.json @@ -1,6 +1,6 @@ { "id": "pt-mailinglist", - "featureId": "portugal_full", + "featureId": "portugal", "type": "mailinglist", "name": "Talk-pt Mailing List", "countryCodes": ["pt"], diff --git a/resources/europe/portugal/pt-telegram.json b/resources/europe/portugal/pt-telegram.json index 72887947b..e3b3cc155 100644 --- a/resources/europe/portugal/pt-telegram.json +++ b/resources/europe/portugal/pt-telegram.json @@ -1,6 +1,6 @@ { "id": "pt-telegram", - "featureId": "portugal_full", + "featureId": "portugal", "type": "telegram", "name": "OpenStreetMap Portugal on Telegram", "countryCodes": ["pt"], diff --git a/resources/europe/spain/ym-Universidad-Autonoma-de-Madrid.json b/resources/europe/spain/ym-Universidad-Autonoma-de-Madrid.json index b20f2e1ed..a5893f92e 100644 --- a/resources/europe/spain/ym-Universidad-Autonoma-de-Madrid.json +++ b/resources/europe/spain/ym-Universidad-Autonoma-de-Madrid.json @@ -3,7 +3,7 @@ "name": "YouthMappers at UAM", "description": "YouthMappers chapter at Universidad Autonoma de Madrid", "id": "ym-Universidad-Autonoma-de-Madrid", - "featureId": "Universidad-Autonoma-de-Madrid", + "featureId": "universidad-autonoma-de-madrid", "contacts": [{"name": "Organizer", "email": "youthmappersatuam@gmail.com"}], "countryCodes": ["es"], "url": "mailto:youthmappersatuam@gmail.com" diff --git a/resources/europe/spain/ym-Universidad-Politcnica-de-Madrid.json b/resources/europe/spain/ym-Universidad-Politcnica-de-Madrid.json index 5df27d77a..db8b1896f 100644 --- a/resources/europe/spain/ym-Universidad-Politcnica-de-Madrid.json +++ b/resources/europe/spain/ym-Universidad-Politcnica-de-Madrid.json @@ -3,7 +3,7 @@ "name": "Mapeo Humanitario", "description": "YouthMappers chapter at Universidad Politécnica de Madrid", "id": "ym-Universidad-Politcnica-de-Madrid", - "featureId": "Universidad-Politcnica-de-Madrid", + "featureId": "universidad-politcnica-de-madrid", "contacts": [{"name": "Organizer", "email": "lab.topografia@gmail.com"}], "extendedDescription": "Geo-volunteering group formed at Moncloa Campus on November 2017. Around 20 members from three Universities (Complutense, CEU and UPM). Undergraduate students, MSc and PhD students collaborate together with organizations (MSF, Acción contra el Hambre,...) supported by trainers from Geoinquietos. Official recognition by UPM as Educative Innovation Project (Code IE1718.0411)", "countryCodes": ["es"], diff --git a/resources/europe/turkey/ym-Istanbul-Technical-University.json b/resources/europe/turkey/ym-Istanbul-Technical-University.json index f0730aa87..f0c1d8ce9 100644 --- a/resources/europe/turkey/ym-Istanbul-Technical-University.json +++ b/resources/europe/turkey/ym-Istanbul-Technical-University.json @@ -3,7 +3,7 @@ "name": "YouthMappers ITU", "description": "YouthMappers chapter at Istanbul Technical University", "id": "ym-Istanbul-Technical-University", - "featureId": "Istanbul-Technical-University", + "featureId": "istanbul-technical-university", "contacts": [{"name": "Organizer", "email": "youthmappersitu@gmail.com"}], "extendedDescription": "YouthMappers ITU is an interdisciplinary and collaborative student community to promote humanitarian mapping for vulnerable settlements and aims to develop and share strategic and innovative spatial information for the future cities by using geographical information systems and open data.", "countryCodes": ["tr"], diff --git a/resources/europe/united_kingdom/uk-eastmidlands-meetup.json b/resources/europe/united_kingdom/uk-eastmidlands-meetup.json index c24b604d1..5a177551a 100644 --- a/resources/europe/united_kingdom/uk-eastmidlands-meetup.json +++ b/resources/europe/united_kingdom/uk-eastmidlands-meetup.json @@ -1,6 +1,6 @@ { "id": "Nottingham-OSM-pub-meetup", - "featureId": "east_midlands_uk", + "featureId": "east_midlands", "type": "group", "name": "East Midlands (Nottingham) Monthly pub meet-up", "countryCodes": ["gb"], diff --git a/resources/europe/united_kingdom/uk-london-twitter.json b/resources/europe/united_kingdom/uk-london-twitter.json index 5d0652dc6..8f164119f 100644 --- a/resources/europe/united_kingdom/uk-london-twitter.json +++ b/resources/europe/united_kingdom/uk-london-twitter.json @@ -1,6 +1,6 @@ { "id": "uk-london-twitter", - "featureId": "london_uk", + "featureId": "london", "type": "twitter", "name": "OpenStreetMap London on Twitter", "countryCodes": ["gb"], diff --git a/resources/europe/united_kingdom/ym-Queen-Mary-University-of-London.json b/resources/europe/united_kingdom/ym-Queen-Mary-University-of-London.json index a7a621aba..b9277e85f 100644 --- a/resources/europe/united_kingdom/ym-Queen-Mary-University-of-London.json +++ b/resources/europe/united_kingdom/ym-Queen-Mary-University-of-London.json @@ -3,7 +3,7 @@ "type": "youthmappers", "name": "Queen Mary YouthMappers", "description": "YouthMappers chapter at Queen Mary University of London", - "featureId": "Queen-Mary-University-of-London", + "featureId": "queen-mary-university-of-london", "contacts": [{"name": "Organizer", "email": "youthmappers@qmul.ac.uk"}], "extendedDescription": "This chapter will be part of the activities of the Queen Mary Geography Society.", "countryCodes": ["uk"], diff --git a/resources/europe/united_kingdom/ym-University-of-Exeter.json b/resources/europe/united_kingdom/ym-University-of-Exeter.json index 6a74b9eda..0ad06fa9e 100644 --- a/resources/europe/united_kingdom/ym-University-of-Exeter.json +++ b/resources/europe/united_kingdom/ym-University-of-Exeter.json @@ -3,7 +3,7 @@ "type": "youthmappers", "name": "University of Exeter British Red Cross Missing Maps", "description": "YouthMappers chapter at University of Exeter", - "featureId": "University-of-Exeter", + "featureId": "university-of-exeter", "contacts": [{"name": "Organizer", "email": "uniofexemissingmaps@gmail.com"}], "extendedDescription": "We are a team of enthusiastic Geographers with comprehensive knowledge of GIS. We are passionate about supporting the British Red Cross Society with various humanitarian aid efforts. We are also important teachers of the significance of mapping remotely sensed data and how this helps on the ground. Our mapathons have themed academic focuses that highlight the different GIS research in our geography department, while also functioning as employability awareness events which we use to invite speakers in to talk about their GIS/British Red Cross careers.", "countryCodes": ["uk"], diff --git a/resources/europe/united_kingdom/ym-University-of-Warwick.json b/resources/europe/united_kingdom/ym-University-of-Warwick.json index 58be78244..6ede3e508 100644 --- a/resources/europe/united_kingdom/ym-University-of-Warwick.json +++ b/resources/europe/united_kingdom/ym-University-of-Warwick.json @@ -3,7 +3,7 @@ "type": "youthmappers", "name": "University of Warwick Resilience Mapping Society", "description": "YouthMappers chapter at University of Warwick", - "featureId": "University-of-Warwick", + "featureId": "university-of-warwick", "contacts": [{"name": "Organizer", "email": "p.ulbrich@warwick.ac.uk"}], "extendedDescription": "We are a group of enthusiastic mappers based at Warwick University. Our aim is to get people excited about humanitarian mapping and help them understand the impact this activity has on the field. We are closely aligned with Missing Maps and Doctors Without Borders UK and focus on HOT tasks in our mapping activities and workshops. Our mapathons are listed on the Missing Maps page whenever they are scheduled.", "countryCodes": ["uk"], diff --git a/resources/middle-east/jordan/ym-Yarmouk-University.json b/resources/middle-east/jordan/ym-Yarmouk-University.json index b1dbcb008..3fe4c0caa 100644 --- a/resources/middle-east/jordan/ym-Yarmouk-University.json +++ b/resources/middle-east/jordan/ym-Yarmouk-University.json @@ -3,7 +3,7 @@ "name": "YouthMappers at YU", "description": "YouthMappers chapter at Yarmouk University", "id": "ym-Yarmouk-University", - "featureId": "Yarmouk-University", + "featureId": "yarmouk-university", "contacts": [{"name": "Organizer", "email": "rnjawarneh@yu.edu.jo"}], "extendedDescription": "YouthMappers chapter at YU is the first mapping group in the Middle East and North Africa region where refugees, drought, and poverty are rising crises and in urgent need for humanitarian mapping activities to mitigate the consequences of such crises. YU Mappers are encouraged to use open data to address challenges in MENA region to bring relief and development to target areas within the region.", "countryCodes": ["jo"], diff --git a/resources/north-america/belize/ym-Sacred-Heart-Junior-College.json b/resources/north-america/belize/ym-Sacred-Heart-Junior-College.json index 135814054..b9c1bd8f8 100644 --- a/resources/north-america/belize/ym-Sacred-Heart-Junior-College.json +++ b/resources/north-america/belize/ym-Sacred-Heart-Junior-College.json @@ -3,7 +3,7 @@ "name": "Youth Mappers at Sacred Heart Junior College", "description": "YouthMappers chapter at Sacred Heart Junior College", "id": "ym-Sacred-Heart-Junior-College", - "featureId": "Sacred-Heart-Junior-College", + "featureId": "sacred-heart-junior-college", "contacts": [{"name": "Organizer", "email": "jtzib18@gmail.com"}], "countryCodes": ["bz"], "url": "mailto:jtzib18@gmail.com" diff --git a/resources/north-america/costa_rica/ym-Universidad-de-Costa-Rica.json b/resources/north-america/costa_rica/ym-Universidad-de-Costa-Rica.json index cb9e31d8c..e67805e34 100644 --- a/resources/north-america/costa_rica/ym-Universidad-de-Costa-Rica.json +++ b/resources/north-america/costa_rica/ym-Universidad-de-Costa-Rica.json @@ -3,7 +3,7 @@ "name": "YouthMappers de Universidad de Costa Rica", "description": "YouthMappers chapter at Universidad de Costa Rica", "id": "ym-Universidad-de-Costa-Rica", - "featureId": "Universidad-de-Costa-Rica", + "featureId": "universidad-de-costa-rica", "contacts": [{"name": "Organizer", "email": "youthmappersucr@gmail.com"}], "extendedDescription": "YouthMappers de Universidad de Costa Rica nace en función de acción social para y por miembros de comunidades distintas según temáticas de involucramiento, interacción y representación de variables dentro de un espacio geográfico definido (un territorio) Gracias a las herramientas de OpenStreetMaps tenemos la viabilidad de poder obtener, validar y compartir la información generada para comprobación y uso destinadas a las comunidades o el interesado en tales temáticas objetivas.", "countryCodes": ["cr"], diff --git a/resources/north-america/honduras/ym-Universidad-Nacional-Autnoma-de-Honduras.json b/resources/north-america/honduras/ym-Universidad-Nacional-Autnoma-de-Honduras.json index 0af7fe8f0..ce3dfeaa6 100644 --- a/resources/north-america/honduras/ym-Universidad-Nacional-Autnoma-de-Honduras.json +++ b/resources/north-america/honduras/ym-Universidad-Nacional-Autnoma-de-Honduras.json @@ -3,7 +3,7 @@ "name": "PumaGis Hn", "description": "YouthMappers chapter at Universidad Nacional Autónoma de Honduras", "id": "ym-Universidad-Nacional-Autnoma-de-Honduras", - "featureId": "Universidad-Nacional-Autnoma-de-Honduras", + "featureId": "universidad-nacional-autnoma-de-honduras", "contacts": [{"name": "Organizer", "email": "pumagishn@gmail.com"}], "countryCodes": ["hn"], "url": "mailto:pumagishn@gmail.com" diff --git a/resources/north-america/jamaica/ym-University-of-the-West-Indies-Mona-Campus.json b/resources/north-america/jamaica/ym-University-of-the-West-Indies-Mona-Campus.json index 3822df4ed..742c955ac 100644 --- a/resources/north-america/jamaica/ym-University-of-the-West-Indies-Mona-Campus.json +++ b/resources/north-america/jamaica/ym-University-of-the-West-Indies-Mona-Campus.json @@ -3,7 +3,7 @@ "name": "Libraries Outreach - ODL", "description": "YouthMappers chapter at University of the West Indies, Mona Campus", "id": "ym-University-of-the-West-Indies-Mona-Campus", - "featureId": "University-of-the-West-Indies-Mona-Campus", + "featureId": "university-of-the-west-indies-mona-campus", "contacts": [{"name": "Organizer", "email": "benjamin.branch@uwimona.edu.jm"}], "extendedDescription": "The UWI, Mona Campus Library engages in public, outreach and special projects. This will allow our library the means to be a catalyst for spatial literacy and advocate for spatial data sharing and access to Jamaican and Caribbean interests. We have disaster relief and communication needs and extensive earth science and geo-hazards needs to better serve our campus and community. Specifically, we hace a Science Library to showcase such to all faculty and students.", "countryCodes": ["jm"], diff --git a/resources/north-america/nicaragua/ym-Universidad-Nacional-de-Ingenieria.json b/resources/north-america/nicaragua/ym-Universidad-Nacional-de-Ingenieria.json index ede519b2d..fb826a4e2 100644 --- a/resources/north-america/nicaragua/ym-Universidad-Nacional-de-Ingenieria.json +++ b/resources/north-america/nicaragua/ym-Universidad-Nacional-de-Ingenieria.json @@ -3,7 +3,7 @@ "name": "Yeka Street MGA", "description": "YouthMappers chapter at Universidad Nacional de Ingenieria", "id": "ym-Universidad-Nacional-de-Ingenieria", - "featureId": "Universidad-Nacional-de-Ingenieria", + "featureId": "universidad-nacional-de-ingenieria", "contacts": [{"name": "Organizer", "email": "yeka.street.mga@gmail.com"}], "extendedDescription": "YEKA STREET is a work team constituted by students from Universidad Nacional de Ingenieria at Managua, Nicaragua. With the principal purpose of apply our knowledge and skills using many tools and apps to map areas in our cities and contribute to the development community projects and disasters relieve plans. We want to lead the way adding more students from all careers and universities in our country to join us at this cause, increasing in this way the life level and reducing the population vulnerability.", "countryCodes": ["ni"], diff --git a/resources/north-america/panama/ym-University-of-Panama.json b/resources/north-america/panama/ym-University-of-Panama.json index 83a5050c4..ddab3cb7d 100644 --- a/resources/north-america/panama/ym-University-of-Panama.json +++ b/resources/north-america/panama/ym-University-of-Panama.json @@ -3,7 +3,7 @@ "name": "YouthMappers UP", "description": "YouthMappers chapter at University of Panama", "id": "ym-University-of-Panama", - "featureId": "University-of-Panama", + "featureId": "university-of-panama", "contacts": [{"name": "Organizer", "email": "youthmappers.up@gmail.com"}], "extendedDescription": "Student mappers in Panama work with open spatial data to help identify, define, address, and create meaning about locally defined development challenges. They collaborate with students from other countries on community mapping topics from ecotourism to food security, from biodiversity to indigenous issues, promoting a humanistic vision through scientific perspectives.", "countryCodes": ["pa"], diff --git a/resources/north-america/puerto_rico/ym-Universidad-de-Puerto-Rico-Rio-Piedras.json b/resources/north-america/puerto_rico/ym-Universidad-de-Puerto-Rico-Rio-Piedras.json index 8eb8e0110..d6eab01e8 100644 --- a/resources/north-america/puerto_rico/ym-Universidad-de-Puerto-Rico-Rio-Piedras.json +++ b/resources/north-america/puerto_rico/ym-Universidad-de-Puerto-Rico-Rio-Piedras.json @@ -3,7 +3,7 @@ "name": "UPR YouthMappers", "description": "YouthMappers chapter at Universidad de Puerto Rico - Rio Piedras", "id": "ym-Universidad-de-Puerto-Rico-Rio-Piedras", - "featureId": "Universidad-de-Puerto-Rico-Rio-Piedras", + "featureId": "universidad-de-puerto-rico-rio-piedras", "contacts": [{"name": "Organizer", "email": "carlosguilbe@gmail.com"}], "countryCodes": ["pa"], "url": "mailto:carlosguilbe@gmail.com" diff --git a/resources/north-america/united_states/ym-Ball-State-University.json b/resources/north-america/united_states/ym-Ball-State-University.json index 563a69775..4d05aefba 100644 --- a/resources/north-america/united_states/ym-Ball-State-University.json +++ b/resources/north-america/united_states/ym-Ball-State-University.json @@ -3,7 +3,7 @@ "name": "Gamma Theta Upsilon- Iota Omega Chapter", "description": "YouthMappers chapter at Ball State University", "id": "ym-Ball-State-University", - "featureId": "Ball-State-University", + "featureId": "ball-state-university", "contacts": [{"name": "Organizer", "email": "gtu@bsu.edu"}], "extendedDescription": "Our chapter is a very active one. We primarily focus on community events, fundraising, and field trips. We are currently looking to develop more mapping-related activities to draw in other students from campus who may be interested in contributing.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-California-University-of-Pennsylvania.json b/resources/north-america/united_states/ym-California-University-of-Pennsylvania.json index 6e2431d4b..b4c84876c 100644 --- a/resources/north-america/united_states/ym-California-University-of-Pennsylvania.json +++ b/resources/north-america/united_states/ym-California-University-of-Pennsylvania.json @@ -3,7 +3,7 @@ "name": "CalU PA GIS Club", "description": "YouthMappers chapter at California University of Pennsylvania", "id": "ym-California-University-of-Pennsylvania", - "featureId": "California-University-of-Pennsylvania", + "featureId": "california-university-of-pennsylvania", "contacts": [{"name": "Organizer", "email": "mueller@calu.edu"}], "extendedDescription": "GIS Students at Cal U learn to apply spatial theory to the real world. The university degree program focuses on geography as well as utilizing GIS in emergency management.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-Central-Washington-University.json b/resources/north-america/united_states/ym-Central-Washington-University.json index aa2930ea5..ad275ff0c 100644 --- a/resources/north-america/united_states/ym-Central-Washington-University.json +++ b/resources/north-america/united_states/ym-Central-Washington-University.json @@ -3,7 +3,7 @@ "name": "Geography Club", "description": "YouthMappers chapter at Central Washington University", "id": "ym-Central-Washington-University", - "featureId": "Central-Washington-University", + "featureId": "central-washington-university", "contacts": [{"name": "Organizer", "email": "valkoc@cwu.edu"}], "extendedDescription": "Our goal teaming up with Youthmappers is to bring relief to areas that are in need of humanitarian mapping. By doing so, we are serving our fellow brothers and sisters around the world as well as furthering our own cartography skills.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-Clemson-University.json b/resources/north-america/united_states/ym-Clemson-University.json index a69e784da..8c13a861a 100644 --- a/resources/north-america/united_states/ym-Clemson-University.json +++ b/resources/north-america/united_states/ym-Clemson-University.json @@ -3,7 +3,7 @@ "name": "Clemson Mappers", "description": "YouthMappers chapter at Clemson University", "id": "ym-Clemson-University", - "featureId": "Clemson-University", + "featureId": "clemson-university", "contacts": [{"name": "Organizer", "email": "clemsonmappers@gmail.com"}], "extendedDescription": "Students in Clemson are supported by the Center for Geospatial Technologies, a community of interdisciplinary geospatial science practitioners supporting research, teaching, and outreach activities using technologies that enable the collection, analysis, and application of geospatial data. Students integrate geospatial technologies within their scholarly activities across all disciplines and build connections throughout the world.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-College-of-William-and-Mary.json b/resources/north-america/united_states/ym-College-of-William-and-Mary.json index cb7cda71e..450017340 100644 --- a/resources/north-america/united_states/ym-College-of-William-and-Mary.json +++ b/resources/north-america/united_states/ym-College-of-William-and-Mary.json @@ -3,7 +3,7 @@ "name": "All over the map!", "description": "YouthMappers chapter at College of William and Mary", "id": "ym-College-of-William-and-Mary", - "featureId": "College-of-William-and-Mary", + "featureId": "college-of-william-and-mary", "contacts": [{"name": "Organizer", "email": "lnseitz@email.wm.edu"}], "extendedDescription": "The students who are all over the map are supported by the Center for Geospatial Analysis, a group integrating GIS across the curriculum and providing student and faculty with hardware, software, and expertise.  Students of all backgrounds utilize GIS across campus, including environmental science and policy, geology, history, business, sociology, biology, anthropology, public policy, and marine sciences.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-Cornell-University.json b/resources/north-america/united_states/ym-Cornell-University.json index 0847d3ce5..eab8fb963 100644 --- a/resources/north-america/united_states/ym-Cornell-University.json +++ b/resources/north-america/united_states/ym-Cornell-University.json @@ -3,7 +3,7 @@ "name": "Mapping Society", "description": "YouthMappers chapter at Cornell University", "id": "ym-Cornell-University", - "featureId": "Cornell-University", + "featureId": "cornell-university", "contacts": [{"name": "Organizer", "email": "mappingsocietycornell@gmail.com"}], "extendedDescription": "Cornell students and faculty use open data and open source software to address challenges at local, national, and global scales. In doing so, we advance our academic and personal goals of developing our own skills around GIS and spatial literacy.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-George-Mason-University.json b/resources/north-america/united_states/ym-George-Mason-University.json index 25cbac99b..5b6c1f400 100644 --- a/resources/north-america/united_states/ym-George-Mason-University.json +++ b/resources/north-america/united_states/ym-George-Mason-University.json @@ -3,7 +3,7 @@ "name": "Mason Mappers", "description": "YouthMappers chapter at George Mason University", "id": "ym-George-Mason-University", - "featureId": "George-Mason-University", + "featureId": "george-mason-university", "contacts": [{"name": "Organizer", "email": "masonmappers@gmail.com"}], "extendedDescription": "Mason Mappers Student Society is a humanitarian mapping student organization in the George Mason University GGS Department, and its goal is to promote education and knowledge in geo-technologies, geo-info science, to foster good global stewardship and engage in professional development while building a positive, interactive geo-community, as well as shaping students into leaders of tomorrow.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-Indiana-University-of-Pennsylvania.json b/resources/north-america/united_states/ym-Indiana-University-of-Pennsylvania.json index 548aef1ce..6c7d82b77 100644 --- a/resources/north-america/united_states/ym-Indiana-University-of-Pennsylvania.json +++ b/resources/north-america/united_states/ym-Indiana-University-of-Pennsylvania.json @@ -3,7 +3,7 @@ "name": "Geospatial Science Club", "description": "YouthMappers chapter at Indiana University of Pennsylvania", "id": "ym-Indiana-University-of-Pennsylvania", - "featureId": "Indiana-University-of-Pennsylvania", + "featureId": "indiana-university-of-pennsylvania", "contacts": [{"name": "Organizer", "email": "rhoch@iup.edu"}], "countryCodes": ["us"], "url": "mailto:rhoch@iup.edu" diff --git a/resources/north-america/united_states/ym-Jacksonville-State-University.json b/resources/north-america/united_states/ym-Jacksonville-State-University.json index 2ff121d8f..d103c2429 100644 --- a/resources/north-america/united_states/ym-Jacksonville-State-University.json +++ b/resources/north-america/united_states/ym-Jacksonville-State-University.json @@ -3,7 +3,7 @@ "name": "JSU Disaster Mapping Team", "description": "YouthMappers chapter at Jacksonville State University", "id": "ym-Jacksonville-State-University", - "featureId": "Jacksonville-State-University", + "featureId": "jacksonville-state-university", "contacts": [{"name": "Organizer", "email": "ltatum@stu.jsu.edu"}], "extendedDescription": "The JSU Disaster Mapping Team is a program at Jacksonville State University dedicated to assisting disaster response in times of emergencies. This includes tornadoes, severe thunderstorms, floods, etc. The team is intended to be a valuable asset to surrounding counties and a conduit for the JSU Geoscience Department students to apply what they have learned in an academic setting to support emergency services. Our goal is to streamline disaster response and recovery operations while utilizing student skill sets", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-Kansas-State-University.json b/resources/north-america/united_states/ym-Kansas-State-University.json index 644f2c3c0..9c2280447 100644 --- a/resources/north-america/united_states/ym-Kansas-State-University.json +++ b/resources/north-america/united_states/ym-Kansas-State-University.json @@ -3,7 +3,7 @@ "name": "Gamma Theta Upsilon: Beta Psi Chapter", "description": "YouthMappers chapter at Kansas State University", "id": "ym-Kansas-State-University", - "featureId": "Kansas-State-University", + "featureId": "kansas-state-university", "contacts": [{"name": "Organizer", "email": "tblarsen@ksu.edu"}], "extendedDescription": "We are the Kansas State University Chapter of Gamma Theta Upsilon, an international geography honor society with affiliation to YouthMappers. We have been active with mapping for OSM and conducted a mapathon called \"Map for Nepal,\" in which we used OpenStreetMap to digitize unmapped areas of Nepal after the earthquake in 2015.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-McGill-University.json b/resources/north-america/united_states/ym-McGill-University.json index ed0fccdbe..5b6212f09 100644 --- a/resources/north-america/united_states/ym-McGill-University.json +++ b/resources/north-america/united_states/ym-McGill-University.json @@ -3,7 +3,7 @@ "name": "Open Mapping Group McGill: A Member of the McGill Undergraduate Geography Society", "description": "YouthMappers chapter at McGill University", "id": "ym-McGill-University", - "featureId": "McGill-University", + "featureId": "mcgill-university", "contacts": [{"name": "Organizer", "email": "omg.mcgill@gmail.com"}], "extendedDescription": "The Open Mapping Group McGill: A Member of McGill Undergraduate Geography Society (OMG McGill) aims to connect students with open geospatial data and technologies to enhance resilience, community-building, and learning through mapping–on campus, in Montreal, in Canada, and abroad.", "countryCodes": ["ca"], diff --git a/resources/north-america/united_states/ym-Miami-University.json b/resources/north-america/united_states/ym-Miami-University.json index 15393b551..68cad6599 100644 --- a/resources/north-america/united_states/ym-Miami-University.json +++ b/resources/north-america/united_states/ym-Miami-University.json @@ -3,7 +3,7 @@ "name": "Geography and Planning Society", "description": "YouthMappers chapter at Miami University", "id": "ym-Miami-University", - "featureId": "Miami-University", + "featureId": "miami-university", "contacts": [{"name": "Organizer", "email": "gpsmiamioh@gmail.com"}], "extendedDescription": "GPS at Miami University aims to create a close-knit community of planners and geographers who want to have fun, learn more about careers and higher education in their field, network, and work alongside professionals for real experience.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-Monroe-Community-College.json b/resources/north-america/united_states/ym-Monroe-Community-College.json index abac49d0a..edc70018e 100644 --- a/resources/north-america/united_states/ym-Monroe-Community-College.json +++ b/resources/north-america/united_states/ym-Monroe-Community-College.json @@ -3,7 +3,7 @@ "name": "MCC Mapping Corps", "description": "YouthMappers chapter at Monroe Community College", "id": "ym-Monroe-Community-College", - "featureId": "Monroe-Community-College", + "featureId": "monroe-community-college", "contacts": [{"name": "Organizer", "email": "gist@monroecc.edu"}], "countryCodes": ["us"], "url": "mailto:GIST@monroecc.edu" diff --git a/resources/north-america/united_states/ym-Montgomery-College.json b/resources/north-america/united_states/ym-Montgomery-College.json index f7b2e9305..f88184620 100644 --- a/resources/north-america/united_states/ym-Montgomery-College.json +++ b/resources/north-america/united_states/ym-Montgomery-College.json @@ -3,7 +3,7 @@ "name": "GeoMC", "description": "YouthMappers chapter at Montgomery College", "id": "ym-Montgomery-College", - "featureId": "Montgomery-College", + "featureId": "montgomery-college", "contacts": [{"name": "Organizer", "email": "stephanie.calderon@montgomerycollege.edu"}], "extendedDescription": "GeoMC’s mission is to provide students with hands-on experience in applying geospatial tools, collecting data, and project management. Most of our students come with a background in GIS and are geography majors. Our chapter’s members come from diverse backgrounds and we all work together to make a positive impact in the world live in.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-New-York-University.json b/resources/north-america/united_states/ym-New-York-University.json index fea7c08ee..b5b616286 100644 --- a/resources/north-america/united_states/ym-New-York-University.json +++ b/resources/north-america/united_states/ym-New-York-University.json @@ -3,7 +3,7 @@ "name": "NYU mHealth Initiative Mapping Corps", "description": "YouthMappers chapter at New York University", "id": "ym-New-York-University", - "featureId": "New-York-University", + "featureId": "new-york-university", "contacts": [{"name": "Organizer", "email": "mhealth@nyu.edu"}], "extendedDescription": "The NYU mobile health or “mHealth” research initiative focuses on development of systems that link people - usually via their phones - to the places that they live and traverse, and thus supports novel research on the way phones and maps can be leveraged to understand behavioral decision making and ultimately health outcomes.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-Ohio-Wesleyan-University.json b/resources/north-america/united_states/ym-Ohio-Wesleyan-University.json index ed30739d5..21005032f 100644 --- a/resources/north-america/united_states/ym-Ohio-Wesleyan-University.json +++ b/resources/north-america/united_states/ym-Ohio-Wesleyan-University.json @@ -3,7 +3,7 @@ "name": "Environment and Wildlife Club", "description": "YouthMappers chapter at Ohio Wesleyan University", "id": "ym-Ohio-Wesleyan-University", - "featureId": "Ohio-Wesleyan-University", + "featureId": "ohio-wesleyan-university", "contacts": [{"name": "Organizer", "email": "envirowild@owu.edu"}], "extendedDescription": "Environment and Wildlife Club looks at environmental issues on campus, in Delaware, and even nationally! We create campus and community projects, explore and enjoy the outdoors, volunteer, and try to promote environmentalism in every aspect of our lives.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-Oklahoma-State-University.json b/resources/north-america/united_states/ym-Oklahoma-State-University.json index 0c620c7a3..29a8f18b4 100644 --- a/resources/north-america/united_states/ym-Oklahoma-State-University.json +++ b/resources/north-america/united_states/ym-Oklahoma-State-University.json @@ -3,7 +3,7 @@ "name": "Geography Club", "description": "YouthMappers chapter at Oklahoma State University", "id": "ym-Oklahoma-State-University", - "featureId": "Oklahoma-State-University", + "featureId": "oklahoma-state-university", "contacts": [{"name": "Organizer", "email": "hhayden@okstate.edu"}], "countryCodes": ["us"], "url": "mailto:hhayden@okstate.edu" diff --git a/resources/north-america/united_states/ym-SUNY-at-Fredonia.json b/resources/north-america/united_states/ym-SUNY-at-Fredonia.json index 2ae978944..e400ea49f 100644 --- a/resources/north-america/united_states/ym-SUNY-at-Fredonia.json +++ b/resources/north-america/united_states/ym-SUNY-at-Fredonia.json @@ -3,7 +3,7 @@ "name": "Geoventurers", "description": "YouthMappers chapter at SUNY at Fredonia", "id": "ym-SUNY-at-Fredonia", - "featureId": "SUNY-at-Fredonia", + "featureId": "suny-at-fredonia", "contacts": [{"name": "Organizer", "email": "amw30@geneseo.edu"}], "extendedDescription": "GeoVenturers is a group of students joining together across a number of majors on our campus that see geospatial technologies as a tool to serve others and to bring people together. Mentoring for the group brings in science education from the department of curriculum and instruction. We hope that we can bring our skills to play in helping make people's lives better.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-State-University-of-New-York-Geneseo.json b/resources/north-america/united_states/ym-State-University-of-New-York-Geneseo.json index 283d7baa9..d04c75aaa 100644 --- a/resources/north-america/united_states/ym-State-University-of-New-York-Geneseo.json +++ b/resources/north-america/united_states/ym-State-University-of-New-York-Geneseo.json @@ -3,7 +3,7 @@ "name": "SUNY Geneseo GIS Association", "description": "YouthMappers chapter at State University of New York Geneseo", "id": "ym-State-University-of-New-York-Geneseo", - "featureId": "State-University-of-New-York-Geneseo", + "featureId": "state-university-of-new-york-geneseo", "contacts": [{"name": "Organizer", "email": "bb18@geneseo.edu"}], "extendedDescription": "We spread awareness, support, education, volunteerism, and career advancement opportunities in geographic information systems, across disciplines and departments, in the context of SUNY Geneseo, the local community, and global community.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-Texas-Tech-University.json b/resources/north-america/united_states/ym-Texas-Tech-University.json index 4a3593191..4010baf83 100644 --- a/resources/north-america/united_states/ym-Texas-Tech-University.json +++ b/resources/north-america/united_states/ym-Texas-Tech-University.json @@ -3,7 +3,7 @@ "name": "YouthMappers at TTU", "description": "YouthMappers chapter at Texas Tech University", "id": "ym-Texas-Tech-University", - "featureId": "Texas-Tech-University", + "featureId": "texas-tech-university", "contacts": [{"name": "Organizer", "email": "emily.glaeser@ttu.edu"}], "extendedDescription": "As one of the co-founding chapters of the network, the TTU YouthMappers are enthusiastic to serve as interdisciplinary leaders to help create open geographic data and analyses that address locally defined development challenges worldwide. The chapter strives to exchange and collaborate with other chapters around the globe while also offering themselves as a local resource and service to Texas Tech student organizations in ways that add value to their respecitive campus activities through mapping.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-The-Citadel.json b/resources/north-america/united_states/ym-The-Citadel.json index 793e36f3a..91c1cb573 100644 --- a/resources/north-america/united_states/ym-The-Citadel.json +++ b/resources/north-america/united_states/ym-The-Citadel.json @@ -3,7 +3,7 @@ "name": "YouthMappers at The Citadel", "description": "YouthMappers chapter at The Citadel", "id": "ym-The-Citadel", - "featureId": "The-Citadel", + "featureId": "the-citadel", "contacts": [{"name": "Organizer", "email": "cstokes5@citadel.edu"}], "extendedDescription": "This chapter is also a Rotaract Club, which is an affiliate of Rotary International. Multiple members, as well as leadership have expressed an interest in YouthMappers and we would like to affiliate our Citadel Rotaract Club with YouthMappers.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-The-George-Washington-University.json b/resources/north-america/united_states/ym-The-George-Washington-University.json index 18b4c2c1f..a1399c114 100644 --- a/resources/north-america/united_states/ym-The-George-Washington-University.json +++ b/resources/north-america/united_states/ym-The-George-Washington-University.json @@ -3,7 +3,7 @@ "name": "Humanitarian Mapping Society", "description": "YouthMappers chapter at The George Washington University", "id": "ym-The-George-Washington-University", - "featureId": "The-George-Washington-University", + "featureId": "the-george-washington-university", "contacts": [{"name": "Organizer", "email": "hms.gwu@gmail.com"}], "extendedDescription": "Models of leadership and engagement, HMS seeks to render aid and better the world through humanitarian Geographic Information Systems (GIS) projects. This co-founding affiliated chapter on the campus of GWU has a plethora of experience to share, and frequently partners directly with USAID, the American Red Cross, and the US Department of State in their DC area to expand student-led efforts and serve the global community.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-The-Johns-Hopkins-University-SAIS.json b/resources/north-america/united_states/ym-The-Johns-Hopkins-University-SAIS.json index c1eb08542..931ea43be 100644 --- a/resources/north-america/united_states/ym-The-Johns-Hopkins-University-SAIS.json +++ b/resources/north-america/united_states/ym-The-Johns-Hopkins-University-SAIS.json @@ -3,7 +3,7 @@ "name": "SAIS YouthMappers", "description": "YouthMappers chapter at The Johns Hopkins University, SAIS", "id": "ym-The-Johns-Hopkins-University-SAIS", - "featureId": "The-Johns-Hopkins-University-SAIS", + "featureId": "the-johns-hopkins-university-sais", "contacts": [{"name": "Organizer", "email": "saisyouthmappers@gmail.com"}], "extendedDescription": "The mission of SAIS Youth Mappers is to provide students at the Johns Hopkins University SAIS with the opportunity to become highly skilled humanitarian mappers. As a group within the South Asia Club, its primary focus is on supporting humanitarian mapping projects in the Indo-Pacific Region.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-The-Pennsylvania-State-University.json b/resources/north-america/united_states/ym-The-Pennsylvania-State-University.json index ed496416f..015147da3 100644 --- a/resources/north-america/united_states/ym-The-Pennsylvania-State-University.json +++ b/resources/north-america/united_states/ym-The-Pennsylvania-State-University.json @@ -3,7 +3,7 @@ "name": "Penn State GIS Coalition", "description": "YouthMappers chapter at The Pennsylvania State University", "id": "ym-The-Pennsylvania-State-University", - "featureId": "The-Pennsylvania-State-University", + "featureId": "the-pennsylvania-state-university", "contacts": [{"name": "Organizer", "email": "advising@geog.psu.edu"}], "extendedDescription": "The Penn State Geospatial Information Science (GIS) Coalition is an organization that offers students majoring, minoring, or sharing an interest in GIS opportunities to develop supplementary knowledge and skills necessary to succeed in the professional GIS industry.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-UW-Madison.json b/resources/north-america/united_states/ym-UW-Madison.json index 90ea5ebb2..b1f73ccc3 100644 --- a/resources/north-america/united_states/ym-UW-Madison.json +++ b/resources/north-america/united_states/ym-UW-Madison.json @@ -3,7 +3,7 @@ "name": "BadgerMaps", "description": "YouthMappers chapter at UW-Madison", "id": "ym-UW-Madison", - "featureId": "UW-Madison", + "featureId": "uw-madison", "contacts": [{"name": "Organizer", "email": "uwbadgermaps@gmail.com"}], "extendedDescription": "BadgerMaps is the UW campus chapter of Youthmappers, an organization dedicated to humanitarian and community mapping services. We connect our volunteer network with opportunities to create GIS data for projects that need it.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-University-of-California-Davis.json b/resources/north-america/united_states/ym-University-of-California-Davis.json index 7d3b280ff..509e0acbd 100644 --- a/resources/north-america/united_states/ym-University-of-California-Davis.json +++ b/resources/north-america/united_states/ym-University-of-California-Davis.json @@ -3,7 +3,7 @@ "name": "Mapping Club", "description": "YouthMappers chapter at University of California, Davis", "id": "ym-University-of-California-Davis", - "featureId": "University-of-California-Davis", + "featureId": "university-of-california-davis", "contacts": [{"name": "Organizer", "email": "ucdmappingclub@ucdavis.edu"}], "countryCodes": ["us"], "url": "mailto:ucdmappingclub@ucdavis.edu?subject=YouthMappers%20and%20UC%20Davis%20Mapping%20Club" diff --git a/resources/north-america/united_states/ym-University-of-Central-Florida.json b/resources/north-america/united_states/ym-University-of-Central-Florida.json index 0609ccdc8..6d6ba0d66 100644 --- a/resources/north-america/united_states/ym-University-of-Central-Florida.json +++ b/resources/north-america/united_states/ym-University-of-Central-Florida.json @@ -3,7 +3,7 @@ "name": "Geospatial Information Society", "description": "YouthMappers chapter at University of Central Florida", "id": "ym-University-of-Central-Florida", - "featureId": "University-of-Central-Florida", + "featureId": "university-of-central-florida", "contacts": [{"name": "Organizer", "email": "rsouth@knights.ucf.edu"}], "extendedDescription": "Our mission is to foster a social and educational environment for all majors who are interested in the discussion and application of GIS. Group and community events throughout the academic year organize students to volunteer to help local and regional communities by using community-based GIS projects and educating local middle and high school students on the use and application of GIS.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-University-of-Chicago.json b/resources/north-america/united_states/ym-University-of-Chicago.json index 822c4114d..531640447 100644 --- a/resources/north-america/united_states/ym-University-of-Chicago.json +++ b/resources/north-america/united_states/ym-University-of-Chicago.json @@ -3,7 +3,7 @@ "name": "Tobler Society", "description": "YouthMappers chapter at University of Chicago", "id": "ym-University-of-Chicago", - "featureId": "University-of-Chicago", + "featureId": "university-of-chicago", "contacts": [{"name": "Organizer", "email": "toblersociety@uchicago.edu"}], "countryCodes": ["us"], "url": "mailto:toblersociety@uchicago.edu" diff --git a/resources/north-america/united_states/ym-University-of-Maryland-College-Park.json b/resources/north-america/united_states/ym-University-of-Maryland-College-Park.json index 957a68da2..fcd1d0007 100644 --- a/resources/north-america/united_states/ym-University-of-Maryland-College-Park.json +++ b/resources/north-america/united_states/ym-University-of-Maryland-College-Park.json @@ -3,7 +3,7 @@ "name": "Geography Club", "description": "YouthMappers chapter at University of Maryland - College Park", "id": "ym-University-of-Maryland-College-Park", - "featureId": "University-of-Maryland-College-Park", + "featureId": "university-of-maryland-college-park", "contacts": [{"name": "Organizer", "email": "geogclubumd@gmail.com"}], "extendedDescription": "The mission of the Geography Club at the University of Maryland College Park is to engage and encourage students to explore geographic interests within the campus and the community.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-University-of-North-Texas.json b/resources/north-america/united_states/ym-University-of-North-Texas.json index 92c9eacd6..9fa624baf 100644 --- a/resources/north-america/united_states/ym-University-of-North-Texas.json +++ b/resources/north-america/united_states/ym-University-of-North-Texas.json @@ -3,7 +3,7 @@ "name": "UNT Geography Club", "description": "YouthMappers chapter at University of North Texas", "id": "ym-University-of-North-Texas", - "featureId": "University-of-North-Texas", + "featureId": "university-of-north-texas", "contacts": [{"name": "Organizer", "email": "reeseramsey@my.unt.edu"}], "extendedDescription": "The Geography Club is a student organization at University of North Texas that welcomes all students who are interested in geography. The objective of the Geography Club is to promote interest in Geography, the Major and the Geography Department along with fellowship among students and faculty. The club also seeks to represent student needs and wants in regard to the study of geography and to provide a forum for the presentation of innovative ideas to the benefit of the University community.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-University-of-Northern-Colorado.json b/resources/north-america/united_states/ym-University-of-Northern-Colorado.json index e39bb971f..135214574 100644 --- a/resources/north-america/united_states/ym-University-of-Northern-Colorado.json +++ b/resources/north-america/united_states/ym-University-of-Northern-Colorado.json @@ -3,7 +3,7 @@ "name": "UNCO Geography and GIS Club", "description": "YouthMappers chapter at University of Northern Colorado", "id": "ym-University-of-Northern-Colorado", - "featureId": "University-of-Northern-Colorado", + "featureId": "university-of-northern-colorado", "contacts": [{"name": "Organizer", "email": "uncogeoggisclub@gmail.com"}], "extendedDescription": "Official Geography and GIS Club chapter affiliated with the University of Northern Colorado where our aim is to learn, share and connect with those around us. #MakingSenseOfTheWorld", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-University-of-Oregon.json b/resources/north-america/united_states/ym-University-of-Oregon.json index e5c06e706..d070e110d 100644 --- a/resources/north-america/united_states/ym-University-of-Oregon.json +++ b/resources/north-america/united_states/ym-University-of-Oregon.json @@ -3,7 +3,7 @@ "name": "Map by Northwest", "description": "YouthMappers chapter at University of Oregon", "id": "ym-University-of-Oregon", - "featureId": "University-of-Oregon", + "featureId": "university-of-oregon", "contacts": [{"name": "Organizer", "email": "cbone@uoregon.edu"}], "extendedDescription": "Map By Northwest aims to engage undergraduate students at the University of Oregon in mapping projects to assist in humanitarian causes and for conducting geographic research. We welcome students from all disciplines to join us in our mapping adventures.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-University-of-Redlands.json b/resources/north-america/united_states/ym-University-of-Redlands.json index 30f52bb63..d9d4e5aeb 100644 --- a/resources/north-america/united_states/ym-University-of-Redlands.json +++ b/resources/north-america/united_states/ym-University-of-Redlands.json @@ -3,7 +3,7 @@ "name": "URSpatial Geo-Thinkers", "description": "YouthMappers chapter at University of Redlands", "id": "ym-University-of-Redlands", - "featureId": "University-of-Redlands", + "featureId": "university-of-redlands", "contacts": [{"name": "Organizer", "email": "nathan_strout@redlands.edu"}], "extendedDescription": "To build upon the members' GIS skills and knowledge of the tools and methods through applied social engagement as well as to educate the campus community about the power of mapping and spatial analysis through community service events.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-University-of-South-Carolina.json b/resources/north-america/united_states/ym-University-of-South-Carolina.json index ec19f0b8a..3410f8d3c 100644 --- a/resources/north-america/united_states/ym-University-of-South-Carolina.json +++ b/resources/north-america/united_states/ym-University-of-South-Carolina.json @@ -3,7 +3,7 @@ "name": "Geography Graduate Student Association", "description": "YouthMappers chapter at University of South Carolina", "id": "ym-University-of-South-Carolina", - "featureId": "University-of-South-Carolina", + "featureId": "university-of-south-carolina", "contacts": [{"name": "Organizer", "email": "carolina_ggsa@gmail.com"}], "extendedDescription": "The GGSA is a fully student-run organization, designed to serve as an advocate and resource for all geography graduate students by filling the role of liaison between the department and students. Our goal is to further professional, academic, and personal development of graduate students interested in the field of geography and its sub disciplines.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-University-of-Southern-California.json b/resources/north-america/united_states/ym-University-of-Southern-California.json index 4021cd15a..0b05e9f75 100644 --- a/resources/north-america/united_states/ym-University-of-Southern-California.json +++ b/resources/north-america/united_states/ym-University-of-Southern-California.json @@ -3,7 +3,7 @@ "name": "SC Mappers", "description": "YouthMappers chapter at University of Southern California", "id": "ym-University-of-Southern-California", - "featureId": "University-of-Southern-California", + "featureId": "university-of-southern-california", "contacts": [{"name": "Organizer", "email": "scmappers@gmail.com"}], "extendedDescription": "We see the world differently: we view it through a spatial lens. With the power of spatial thinking, we connect place and space to help address global challenges. Collaborate with us!", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-University-of-Vermont.json b/resources/north-america/united_states/ym-University-of-Vermont.json index d8bb4ec22..5495dc94f 100644 --- a/resources/north-america/united_states/ym-University-of-Vermont.json +++ b/resources/north-america/united_states/ym-University-of-Vermont.json @@ -3,7 +3,7 @@ "name": "University of Vermont Humanitarian Mapping Club", "description": "YouthMappers chapter at University of Vermont", "id": "ym-University-of-Vermont", - "featureId": "University-of-Vermont", + "featureId": "university-of-vermont", "contacts": [{"name": "Organizer", "email": "uvm.hmc@gmail.com"}], "countryCodes": ["us"], "url": "https://www.facebook.com/UVMHMC" diff --git a/resources/north-america/united_states/ym-University-of-Victoria.json b/resources/north-america/united_states/ym-University-of-Victoria.json index 6b022eb75..47a103912 100644 --- a/resources/north-america/united_states/ym-University-of-Victoria.json +++ b/resources/north-america/united_states/ym-University-of-Victoria.json @@ -3,7 +3,7 @@ "name": "Society of Geography Students", "description": "YouthMappers chapter at University of Victoria", "id": "ym-University-of-Victoria", - "featureId": "University-of-Victoria", + "featureId": "university-of-victoria", "contacts": [{"name": "Organizer", "email": "sogsmappers@gmail.com"}], "extendedDescription": "SOGS seeks to promote and represent social and academic interests within the Department of Geography. This is expressed by four key goals: To provide a forum for the discussion of matters concerning the quality and accessibility of education within geography; to provide a means of expressing a consensus of student opinion to deparhnental faculty through representation at deparkrnental meetings and on departrnental committees; to undertake anangements for such activities as are for the benefit of students and are seen to be within the field of interest of students in geography; to act as a liaison through the UVSS and the Course Union Council with other student groups on campus", "url": "https://www.facebook.com/SOGSUVic/" diff --git a/resources/north-america/united_states/ym-University-of-Wyoming.json b/resources/north-america/united_states/ym-University-of-Wyoming.json index c483ed2a2..7a8ae9d1a 100644 --- a/resources/north-america/united_states/ym-University-of-Wyoming.json +++ b/resources/north-america/united_states/ym-University-of-Wyoming.json @@ -3,7 +3,7 @@ "name": "Gamma Theta Upsilon/Geography Club", "description": "YouthMappers chapter at University of Wyoming", "id": "ym-University-of-Wyoming", - "featureId": "University-of-Wyoming", + "featureId": "university-of-wyoming", "contacts": [{"name": "Organizer", "email": "gtu-geography@uwyo.edu"}], "countryCodes": ["us"], "url": "http://www.uwyo.edu/geography/geographyclub/" diff --git a/resources/north-america/united_states/ym-Vassar-College.json b/resources/north-america/united_states/ym-Vassar-College.json index bcc8b60fa..f825e43d3 100644 --- a/resources/north-america/united_states/ym-Vassar-College.json +++ b/resources/north-america/united_states/ym-Vassar-College.json @@ -3,7 +3,7 @@ "name": "Hudson Valley Mappers", "description": "YouthMappers chapter at Vassar College", "id": "ym-Vassar-College", - "featureId": "Vassar-College", + "featureId": "vassar-college", "contacts": [{"name": "Organizer", "email": "geo@vassar.edu"}], "extendedDescription": "Our mission is to provide a multi-disciplinary platform for peers, educators, and community organizations to engage in local mapping projects with a focus on strengthening our local ecosystems, our built environment, and the health of our community. We also seek to contribute geospatial support for global humanitarian aid and development efforts.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-Villanova-University.json b/resources/north-america/united_states/ym-Villanova-University.json index 8e265c91a..287825f53 100644 --- a/resources/north-america/united_states/ym-Villanova-University.json +++ b/resources/north-america/united_states/ym-Villanova-University.json @@ -3,7 +3,7 @@ "name": "The Villanova Globeplotters", "description": "YouthMappers chapter at Villanova University", "id": "ym-Villanova-University", - "featureId": "Villanova-University", + "featureId": "villanova-university", "contacts": [{"name": "Organizer", "email": "villanova.globeplotters@gmail.com"}], "extendedDescription": "The Villanova Globeplotters is built on Villanova’s Augustinian principle of selfless-service to the global community. Mixed with relaxed social interaction, we strive to provide geospatial outreach to those in need regardless of participating students’ race, academic major, student group association, or college career level.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-West-Virginia-University.json b/resources/north-america/united_states/ym-West-Virginia-University.json index f54abc2b6..1be5553ae 100644 --- a/resources/north-america/united_states/ym-West-Virginia-University.json +++ b/resources/north-america/united_states/ym-West-Virginia-University.json @@ -3,7 +3,7 @@ "name": "Maptime Morgantown", "description": "YouthMappers chapter at West Virginia University", "id": "ym-West-Virginia-University", - "featureId": "West-Virginia-University", + "featureId": "west-virginia-university", "contacts": [{"name": "Organizer", "email": "maptimemorgantown@gmail.com"}], "extendedDescription": "Working as a collaborative team, this co-founding chapter focuses on providing an open learning environment for those interested in working on projects that intersect international development, emergency response, and geographic information science.\nThey connect beginners and experts by providing technical training and experience in building meaningful and useful geographic infrastructure data, while connecting to sister cities around the world.", "countryCodes": ["us"], diff --git a/resources/north-america/united_states/ym-Western-Michigan-University.json b/resources/north-america/united_states/ym-Western-Michigan-University.json index b5b72208d..f1002061d 100644 --- a/resources/north-america/united_states/ym-Western-Michigan-University.json +++ b/resources/north-america/united_states/ym-Western-Michigan-University.json @@ -3,7 +3,7 @@ "name": "Geography Club", "description": "YouthMappers chapter at Western Michigan University", "id": "ym-Western-Michigan-University", - "featureId": "Western-Michigan-University", + "featureId": "western-michigan-university", "contacts": [{"name": "Organizer", "email": "wmu.geog.club@gmail.com"}], "countryCodes": ["us"], "url": "http://www.facebook.com/groups/WMUGeographyClub/" diff --git a/resources/south-america/brazil/DF-telegram.json b/resources/south-america/brazil/DF-telegram.json index c2da503ab..c1efce783 100644 --- a/resources/south-america/brazil/DF-telegram.json +++ b/resources/south-america/brazil/DF-telegram.json @@ -1,6 +1,6 @@ { "id": "DF-telegram", - "featureId": "df_br", + "featureId": "df", "type": "telegram", "name": "OpenStreetMap Brasília Telegram Group", "countryCodes": ["br"], diff --git a/resources/south-america/brazil/RS-telegram.json b/resources/south-america/brazil/RS-telegram.json index 1e5a76784..e51910d90 100644 --- a/resources/south-america/brazil/RS-telegram.json +++ b/resources/south-america/brazil/RS-telegram.json @@ -1,6 +1,6 @@ { "id": "RS-telegram", - "featureId": "rs_br", + "featureId": "rs", "type": "telegram", "name": "OpenStreetMap Rio Grande do Sul Telegram Group", "countryCodes": ["br"], diff --git a/resources/south-america/colombia/ym-Universidad-Distrital-Francisco-Jose-de-Caldas.json b/resources/south-america/colombia/ym-Universidad-Distrital-Francisco-Jose-de-Caldas.json index 2d16c5d80..db988e99f 100644 --- a/resources/south-america/colombia/ym-Universidad-Distrital-Francisco-Jose-de-Caldas.json +++ b/resources/south-america/colombia/ym-Universidad-Distrital-Francisco-Jose-de-Caldas.json @@ -3,7 +3,7 @@ "name": "YouthMappers at Bogota", "description": "YouthMappers chapter at Universidad Distrital Francisco Jose de Caldas", "id": "ym-Universidad-Distrital-Francisco-Jose-de-Caldas", - "featureId": "Universidad-Distrital-Francisco-Jose-de-Caldas", + "featureId": "universidad-distrital-francisco-jose-de-caldas", "contacts": [{"name": "Organizer", "email": "lrocha@selper.org.co"}], "extendedDescription": "The Universidad Distrital Francisco José de Caldas is a public, coeducational, research university based in Bogotá, Colombia with a population of 26,140 students.", "countryCodes": ["co"], diff --git a/resources/south-america/colombia/ym-Universidad-Nacional-de-Colombia.json b/resources/south-america/colombia/ym-Universidad-Nacional-de-Colombia.json index c168becba..8d3cb2812 100644 --- a/resources/south-america/colombia/ym-Universidad-Nacional-de-Colombia.json +++ b/resources/south-america/colombia/ym-Universidad-Nacional-de-Colombia.json @@ -3,7 +3,7 @@ "name": "Grupo UN", "description": "YouthMappers chapter at Universidad Nacional de Colombia", "id": "ym-Universidad-Nacional-de-Colombia", - "featureId": "Universidad-Nacional-de-Colombia", + "featureId": "universidad-nacional-de-colombia", "contacts": [{"name": "Organizer", "email": "raknudsono@unal.edu.co"}], "extendedDescription": "Students are uniting to map and network with university students across the country of Colombia and across the globe.  Geographic specialties include affiliation with microbiology and health disciplines.", "countryCodes": ["co"], diff --git a/resources/south-america/colombia/ym-Universidad-de-Antioquia.json b/resources/south-america/colombia/ym-Universidad-de-Antioquia.json index 42e11cb5d..729ff3ce7 100644 --- a/resources/south-america/colombia/ym-Universidad-de-Antioquia.json +++ b/resources/south-america/colombia/ym-Universidad-de-Antioquia.json @@ -3,7 +3,7 @@ "name": "Geomatica UDEA", "description": "YouthMappers chapter at Universidad de Antioquia", "id": "ym-Universidad-de-Antioquia", - "featureId": "Universidad-de-Antioquia", + "featureId": "universidad-de-antioquia", "contacts": [{"name": "Organizer", "email": "geomatica.ing.udea@gmail.com"}], "extendedDescription": "We are a group interested in geospatial data, voluntary cartography, and participating in mapping with others in our country and within the YouthMappers network.", "countryCodes": ["co"], diff --git a/resources/south-america/colombia/ym-Universidad-de-La-Guajira.json b/resources/south-america/colombia/ym-Universidad-de-La-Guajira.json index 1bacf5a1a..df1b74e1f 100644 --- a/resources/south-america/colombia/ym-Universidad-de-La-Guajira.json +++ b/resources/south-america/colombia/ym-Universidad-de-La-Guajira.json @@ -3,7 +3,7 @@ "name": "Grupo Mesh", "description": "YouthMappers chapter at Universidad de La Guajira", "id": "ym-Universidad-de-La-Guajira", - "featureId": "Universidad-de-La-Guajira", + "featureId": "universidad-de-la-guajira", "contacts": [{"name": "Organizer", "email": "zoviedo@uniguajira.edu.co"}], "extendedDescription": "Grupo Mesh is a student organization at the Universidad de la Guajira in Colombia, including students from the program of Environmental Engineering who learn cartography and open mapping.", "countryCodes": ["co"], diff --git a/resources/south-america/colombia/ym-Universidad-de-Los-Andes.json b/resources/south-america/colombia/ym-Universidad-de-Los-Andes.json index 67593f330..d0ac5bd57 100644 --- a/resources/south-america/colombia/ym-Universidad-de-Los-Andes.json +++ b/resources/south-america/colombia/ym-Universidad-de-Los-Andes.json @@ -3,7 +3,7 @@ "name": "Cartografos Uniandes", "description": "YouthMappers chapter at Universidad de Los Andes", "id": "ym-Universidad-de-Los-Andes", - "featureId": "Universidad-de-Los-Andes", + "featureId": "universidad-de-los-andes", "contacts": [{"name": "Organizer", "email": "geografia@uniandes.edu.co"}], "extendedDescription": "We are a circle of student participation that seeks to use mapping and spatial reasoning as a means to create bonds of cooperation and integration between the university and society by addressing different spatial, social, political , economic and cultural dynamics.", "countryCodes": ["co"], diff --git a/resources/south-america/colombia/ym-Universidad-de-San-Buenaventura.json b/resources/south-america/colombia/ym-Universidad-de-San-Buenaventura.json index 4ef35327c..1ed762e97 100644 --- a/resources/south-america/colombia/ym-Universidad-de-San-Buenaventura.json +++ b/resources/south-america/colombia/ym-Universidad-de-San-Buenaventura.json @@ -3,7 +3,7 @@ "name": "YouthMappers San Buenaventura", "description": "YouthMappers chapter at Universidad de San Buenaventura", "id": "ym-Universidad-de-San-Buenaventura", - "featureId": "Universidad-de-San-Buenaventura", + "featureId": "universidad-de-san-buenaventura", "contacts": [{"name": "Organizer", "email": "ingenieria.sistemas@usbmed.edu.co"}], "extendedDescription": "We are pleased to join YouthMappers mapping for a better world and community.", "countryCodes": ["co"], From b9045f51a7adee049f99d0575c38c8fb88900f45 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 14 Nov 2019 00:57:44 -0500 Subject: [PATCH 08/35] Swap `featureId` for `includeLocations`, remove `featureId` Also sort all the files so the keys and array values are consistent --- build.js | 50 ++++++++++++------- features/africa/ghana/ghana.geojson | 2 +- features/africa/kenya/kenya.geojson | 2 +- features/africa/kenya/nairobi.geojson | 2 +- features/asia/afghanistan/afghanistan.geojson | 4 +- features/asia/iran/iran.geojson | 2 +- features/europe/germany/de-hamburg.geojson | 2 +- features/europe/spain/galicia.geojson | 2 +- features/middle-east/israel/israel.geojson | 2 +- .../saudi_arabia/saudi_arabia.geojson | 2 +- features/oceania/oceania_full.geojson | 2 +- features/south-america/brazil/bahia.geojson | 2 +- features/south-america/brazil/df.geojson | 2 +- features/south-america/brazil/rs.geojson | 2 +- resources/africa/botswana/bw-facebook.json | 2 +- resources/africa/botswana/bw-twitter.json | 2 +- ...-de-lUniversit-Felix-Houphouet-Boigny.json | 12 +++-- ...-Gambia-YMCA-University-of-the-Gambia.json | 10 ++-- .../africa/ghana/cape-coast-youthmappers.json | 4 +- resources/africa/ghana/osm-gh-facebook.json | 4 +- resources/africa/ghana/osm-gh-twitter.json | 4 +- resources/africa/ghana/talk-gh.json | 4 +- ...-University-of-Science-and-Technology.json | 10 ++-- .../ghana/ym-University-of-Cape-Coast.json | 10 ++-- ...rsity-of-Energy-and-Natural-Resources.json | 10 ++-- .../africa/ghana/ym-University-of-Ghana.json | 10 ++-- ...ym-University-of-Mines-and-Technology.json | 10 ++-- .../ym-General-Lansana-Conte-University.json | 10 ++-- ...te-of-Science-and-Veterinary-Medicine.json | 10 ++-- .../africa/guinea/ym-Universit-de-NZrkor.json | 10 ++-- resources/africa/kenya/map-kibera.json | 6 +-- resources/africa/kenya/osm-kenya.json | 6 +-- ...edan-Kimathi-University-of-Technology.json | 10 ++-- ...versity-of-Agriculture-and-Technology.json | 10 ++-- .../africa/kenya/ym-Karatina-University.json | 10 ++-- .../africa/kenya/ym-Kenyatta-University.json | 10 ++-- resources/africa/kenya/ym-Moi-University.json | 10 ++-- .../ym-Technical-University-of-Kenya.json | 10 ++-- .../kenya/ym-University-of-Nairobi.json | 10 ++-- ...frican-Methodist-Episcopal-University.json | 10 ++-- .../liberia/ym-Cuttington-University.json | 10 ++-- ...-Grand-Gedeh-County-Community-College.json | 10 ++-- .../ym-Nimba-County-Community-College.json | 10 ++-- .../liberia/ym-Stella-Maris-Polytechnic.json | 10 ++-- ...ym-University-of-Liberia-YouthMappers.json | 10 ++-- .../africa/madagascar/osm-mg-facebook.json | 6 +-- resources/africa/madagascar/talk-mg.json | 4 +- .../malawi/ym-University-of-Malawi.json | 10 ++-- ...ences-Sociale-et-de-Gestion-de-Bamako.json | 10 ++-- .../ym-Universidade-Eduardo-Mondlane.json | 10 ++-- ...-University-of-Science-and-Technology.json | 10 ++-- .../nigeria/ym-Abia-State-University.json | 10 ++-- .../nigeria/ym-Ahmadu-Bello-University.json | 10 ++-- .../nigeria/ym-Federal-School-of-Surveys.json | 10 ++-- ...ederal-University-of-Technology-Akure.json | 10 ++-- ...gnatius-Ajuru-University-of-Education.json | 10 ++-- ...ym-University-of-Nigeria-Enugu-Campus.json | 10 ++-- .../ym-University-of-Nigeria-Nsukka.json | 10 ++-- .../ym-University-of-Port-Harcourt.json | 10 ++-- resources/africa/osm-africa-telegram.json | 2 +- ...d-Enseignement-Superieur-de-Ruhengeri.json | 10 ++-- .../ym-University-of-Rwanda-Huye-Campus.json | 10 ++-- ...Institut-Suprieur-de-Management-Kolda.json | 10 ++-- .../senegal/ym-Universit-Gaston-Berger.json | 10 ++-- .../sierra_leone/ym-Fourah-Bay-College.json | 10 ++-- .../ym-Njala-University-Freetown-Campus.json | 10 ++-- .../ym-Njala-University-Njala-Campus.json | 10 ++-- .../ym-University-of-Pretoria.json | 10 ++-- .../africa/tanzania/ym-Ardhi-University.json | 10 ++-- .../ym-Institute-of-Finance-Management.json | 10 ++-- ...-of-Rural-Development-Planning-Mwanza.json | 10 ++-- ...stitute-of-Rural-Development-Planning.json | 10 ++-- .../ym-Open-University-of-Tanzania.json | 10 ++-- .../ym-Sokoine-University-of-Agriculture.json | 10 ++-- .../ym-University-of-Dar-es-Salaam.json | 10 ++-- .../africa/uganda/ym-Busitema-University.json | 10 ++-- .../africa/uganda/ym-Gulu-University.json | 10 ++-- .../africa/uganda/ym-Kumi-University.json | 10 ++-- .../africa/uganda/ym-Makerere-University.json | 10 ++-- ...-University-of-Science-and-Technology.json | 10 ++-- ...t.-Augustine-International-University.json | 10 ++-- ...nda-Christian-University-Mbale-Campus.json | 10 ++-- .../ym-Uganda-Pentecostal-University.json | 10 ++-- ....-Mawaggali-Trades-Training-Institute.json | 10 ++-- .../zambia/ym-The-University-of-Zambia.json | 10 ++-- .../zimbabwe/ym-University-of-Zimbabwe.json | 10 ++-- .../afghanistan/osm-afghanistan-facebook.json | 6 +-- .../bangladesh/osm-bangladesh-facebook.json | 6 +-- .../ym-Asian-University-for-Women.json | 10 ++-- .../asia/bangladesh/ym-Dhaka-College.json | 10 ++-- .../asia/bangladesh/ym-Dhaka-University.json | 10 ++-- .../bangladesh/ym-Eastern-University.json | 10 ++-- .../ym-Jahangirnagar-University.json | 10 ++-- .../asia/bangladesh/ym-Khulna-University.json | 10 ++-- ...-University-of-Engineering-Technology.json | 10 ++-- .../asia/bhutan/ym-Sherubtse-College.json | 10 ++-- .../india/kerala/osm-kerala-facebook.json | 2 +- .../india/kerala/osm-kerala-telegram.json | 2 +- .../asia/india/kerala/osm-kerala-wiki.json | 2 +- resources/asia/india/osm-india-facebook.json | 2 +- resources/asia/india/osm-india-forum.json | 2 +- resources/asia/india/osm-india-github.json | 2 +- .../asia/india/osm-india-mailing-list.json | 2 +- resources/asia/india/osm-india-telegram.json | 2 +- resources/asia/india/osm-india-twitter.json | 2 +- resources/asia/india/osm-india-website.json | 4 +- resources/asia/india/osm-india-wiki.json | 2 +- resources/asia/india/osm-india-youtube.json | 2 +- .../asia/india/osm-puducherry-facebook.json | 2 +- .../india/osm-puducherry-mailing-list.json | 2 +- .../asia/india/osm-puducherry-matrix.json | 2 +- .../asia/india/ym-Gujarat-University.json | 10 ++-- resources/asia/indonesia/indonesia.json | 2 +- .../ym-Universitas-Negeri-Makassar.json | 10 ++-- .../ym-University-Muhammadiyah-Surakarta.json | 10 ++-- resources/asia/iran/osm-iran-aparat.json | 2 +- resources/asia/iran/osm-iran-forum.json | 2 +- resources/asia/iran/osm-iran-telegram.json | 2 +- resources/asia/japan/OSM-Japan-facebook.json | 4 +- .../asia/japan/OSM-Japan-mailinglist.json | 4 +- resources/asia/japan/OSM-Japan-telegram.json | 4 +- resources/asia/japan/OSM-Japan-twitter.json | 4 +- resources/asia/japan/OSM-Japan-website.json | 4 +- .../asia/korea/OSM-Korea-mailinglist.json | 6 +-- resources/asia/korea/OSM-Korea-telegram.json | 4 +- resources/asia/malaysia/OSM-MY-facebook.json | 4 +- resources/asia/malaysia/OSM-MY-forum.json | 4 +- resources/asia/malaysia/OSM-MY-matrix.json | 6 +-- resources/asia/mongolia/mongolia.json | 2 +- .../asia/myanmar/osm-myanmar-facebook.json | 2 +- resources/asia/nepal/osm-nepal-facebook.json | 2 +- ...nstitute-of-Crisis-Management-Studies.json | 10 ++-- .../asia/nepal/ym-Kathmandu-University.json | 10 ++-- .../asia/nepal/ym-Tribhuvan-University.json | 10 ++-- resources/asia/osm-asia-mailing-list.json | 2 +- resources/asia/osm-asia-telegram.json | 2 +- .../asia/philippines/OSM-PH-facebook.json | 2 +- .../asia/philippines/OSM-PH-mailinglist.json | 2 +- resources/asia/philippines/OSM-PH-slack.json | 4 +- .../asia/philippines/OSM-PH-telegram.json | 4 +- ...rn-University-Institute-of-Technology.json | 10 ++-- ...-the-Philippines-Resilience-Institute.json | 10 ++-- resources/asia/russia/OSM-RU-forum.json | 2 +- resources/asia/russia/OSM-RU-telegram.json | 2 +- .../sri_lanka/OSM-sri-lanka-facebook.json | 2 +- resources/asia/taiwan/OSM-TW-facebook.json | 4 +- resources/asia/taiwan/OSM-TW-mailinglist.json | 6 +-- resources/asia/taiwan/OSM-TW-telegram.json | 4 +- .../asia/thailand/OSM-TH-CNX-meetup.json | 2 +- resources/asia/thailand/OSM-TH-facebook.json | 2 +- resources/asia/thailand/OSM-TH-forum.json | 2 +- resources/europe/albania/al-forum.json | 4 +- .../europe/albania/al-maptime-tirana.json | 4 +- resources/europe/albania/al-telegram.json | 4 +- resources/europe/austria/at-forum.json | 6 +-- resources/europe/austria/at-mailinglist.json | 4 +- resources/europe/austria/at-twitter.json | 4 +- resources/europe/austria/graz-meetup.json | 2 +- resources/europe/austria/graz-twitter.json | 2 +- resources/europe/austria/osm-at.json | 2 +- resources/europe/belarus/byosm.json | 4 +- resources/europe/belgium/be-chapter.json | 6 +-- resources/europe/belgium/be-facebook.json | 9 ++-- resources/europe/belgium/be-forum.json | 4 +- resources/europe/belgium/be-irc.json | 6 +-- resources/europe/belgium/be-mailinglist.json | 6 +-- resources/europe/belgium/be-matrix.json | 4 +- resources/europe/belgium/be-meetup.json | 4 +- resources/europe/belgium/be-twitter.json | 6 +-- .../bosnia_herzegovina/OSM-BiH-telegram.json | 4 +- resources/europe/croatia/hr-facebook.json | 4 +- resources/europe/croatia/hr-irc.json | 4 +- resources/europe/croatia/hr-mailinglist.json | 4 +- .../czech_republic/czech-community.json | 6 +-- .../europe/czech_republic/osmcz-facebook.json | 6 +-- .../europe/czech_republic/osmcz-telegram.json | 6 +-- .../europe/czech_republic/osmcz-twitter.json | 6 +-- .../czech_republic/talk-cz-mailinglist.json | 6 +-- resources/europe/denmark/dk-forum.json | 2 +- resources/europe/denmark/dk-irc.json | 4 +- resources/europe/denmark/dk-mailinglist.json | 4 +- resources/europe/finland/fi-forum.json | 2 +- resources/europe/finland/fi-irc.json | 4 +- resources/europe/finland/fi-mailinglist.json | 4 +- resources/europe/france/fr-chapter.json | 4 +- resources/europe/france/fr-facebook.json | 4 +- resources/europe/france/fr-forum.json | 2 +- resources/europe/france/fr-irc.json | 4 +- resources/europe/france/fr-mailinglist.json | 4 +- resources/europe/france/fr-telegram.json | 4 +- resources/europe/france/fr-twitter.json | 4 +- .../europe/germany/de-berlin-mailinglist.json | 4 +- .../europe/germany/de-berlin-meetup.json | 4 +- .../europe/germany/de-berlin-telegram.json | 4 +- .../europe/germany/de-berlin-twitter.json | 4 +- resources/europe/germany/de-forum.json | 2 +- .../europe/germany/de-hamburg-telegram.json | 4 +- resources/europe/germany/de-irc.json | 4 +- resources/europe/germany/de-mailinglist.json | 4 +- .../de-ostwestfalen-lippe-mailinglist.json | 4 +- resources/europe/germany/de-telegram.json | 4 +- resources/europe/germany/osm-de.json | 2 +- .../germany/ym-Heidelberg-University.json | 10 ++-- resources/europe/hungary/hu-facebook.json | 4 +- resources/europe/hungary/hu-forum.json | 2 +- resources/europe/hungary/hu-meetup.json | 2 +- resources/europe/iceland/is-chapter.json | 6 +-- resources/europe/iceland/is-facebook.json | 4 +- resources/europe/iceland/is-mailinglist.json | 4 +- resources/europe/iceland/is-twitter.json | 4 +- resources/europe/ireland/ireland-chapter.json | 4 +- .../europe/ireland/ireland-facebook.json | 4 +- resources/europe/ireland/ireland-irc.json | 4 +- .../europe/ireland/ireland-mailinglist.json | 4 +- .../europe/ireland/ireland-telegram.json | 2 +- resources/europe/ireland/ireland-twitter.json | 4 +- resources/europe/italy/it-chapter.json | 4 +- resources/europe/italy/it-facebook.json | 4 +- resources/europe/italy/it-irc.json | 4 +- resources/europe/italy/it-mailinglist.json | 4 +- resources/europe/italy/it-telegram.json | 2 +- resources/europe/italy/it-twitter.json | 4 +- resources/europe/italy/roma-meetup.json | 4 +- resources/europe/italy/south-tyrol.json | 4 +- .../italy/talk-it-lazio_mailinglist.json | 4 +- resources/europe/italy/trentino.json | 2 +- .../italy/ym-Politecnico-di-Milano.json | 10 ++-- resources/europe/kosovo/kosovo-telegram.json | 4 +- .../europe/luxembourg/lu-mailinglist.json | 6 +-- .../ym-Universit-Mohammed-V-Rabat.json | 10 ++-- resources/europe/netherlands/nl-forum.json | 2 +- resources/europe/netherlands/nl-telegram.json | 2 +- resources/europe/norway/no-forum.json | 2 +- resources/europe/norway/no-irc.json | 6 +-- resources/europe/norway/no-mailinglist.json | 6 +-- resources/europe/norway/no-telegram.json | 2 +- .../europe/poland/OSM-PL-facebook-group.json | 2 +- resources/europe/poland/OSM-PL-forum.json | 4 +- resources/europe/portugal/pt-mailinglist.json | 4 +- resources/europe/portugal/pt-telegram.json | 4 +- resources/europe/slovenia/si-forum.json | 4 +- resources/europe/slovenia/si-mailinglist.json | 4 +- resources/europe/slovenia/si-twitter.json | 6 +-- .../europe/spain/OSM-ES-mailinglist.json | 2 +- resources/europe/spain/OSM-ES-telegram.json | 2 +- resources/europe/spain/galicia-telegram.json | 4 +- resources/europe/spain/galicia-twitter.json | 4 +- resources/europe/spain/galicia-wiki.json | 2 +- .../ym-Universidad-Autonoma-de-Madrid.json | 10 ++-- .../ym-Universidad-Politcnica-de-Madrid.json | 10 ++-- resources/europe/sweden/osm-se.json | 2 +- resources/europe/sweden/se-facebook.json | 4 +- resources/europe/sweden/se-forum.json | 2 +- resources/europe/sweden/se-irc.json | 4 +- resources/europe/sweden/se-mailinglist.json | 4 +- resources/europe/sweden/se-twitter.json | 4 +- resources/europe/switzerland/ch-irc.json | 6 +-- .../europe/switzerland/ch-mailinglist.json | 4 +- resources/europe/switzerland/ch-twitter.json | 4 +- resources/europe/switzerland/osm-ch.json | 2 +- .../ym-Istanbul-Technical-University.json | 10 ++-- resources/europe/ukraine/ua-facebook.json | 2 +- resources/europe/ukraine/ua-forum.json | 4 +- resources/europe/ukraine/ua-github.json | 4 +- resources/europe/ukraine/ua-slack.json | 4 +- resources/europe/ukraine/ua-telegram.json | 7 ++- resources/europe/ukraine/ua-twitter.json | 2 +- resources/europe/ukraine/ua-website.json | 2 +- .../united_kingdom/scotland-twitter.json | 4 +- .../uk-eastmidlands-meetup.json | 4 +- resources/europe/united_kingdom/uk-irc.json | 6 +-- .../united_kingdom/uk-localchapter.json | 4 +- .../united_kingdom/uk-london-twitter.json | 4 +- .../europe/united_kingdom/uk-mailinglist.json | 4 +- .../europe/united_kingdom/uk-mappamercia.json | 2 +- .../europe/united_kingdom/uk-twitter.json | 4 +- .../ym-Queen-Mary-University-of-London.json | 8 +-- .../ym-University-of-Exeter.json | 8 +-- .../ym-University-of-Warwick.json | 8 +-- resources/middle-east/israel/il-telegram.json | 4 +- .../jordan/ym-Yarmouk-University.json | 10 ++-- .../middle-east/saudi_arabia/sa-telegram.json | 4 +- .../ym-Sacred-Heart-Junior-College.json | 10 ++-- .../north-america/canada/OSM-CA-Slack.json | 4 +- .../canada/OSM-Vancouver-meetup.json | 4 +- .../ym-Universidad-de-Costa-Rica.json | 10 ++-- .../north-america/cuba/OSM-CU-telegram.json | 2 +- ...versidad-Nacional-Autnoma-de-Honduras.json | 10 ++-- ...ersity-of-the-West-Indies-Mona-Campus.json | 10 ++-- .../north-america/nicaragua/ni-facebook.json | 4 +- .../nicaragua/ni-mailinglist.json | 4 +- .../north-america/nicaragua/ni-telegram.json | 2 +- .../north-america/nicaragua/ni-twitter.json | 4 +- resources/north-america/nicaragua/osm-ni.json | 2 +- ...ym-Universidad-Nacional-de-Ingenieria.json | 10 ++-- .../panama/ym-University-of-Panama.json | 10 ++-- ...niversidad-de-Puerto-Rico-Rio-Piedras.json | 10 ++-- .../Bay-Area-OpenStreetMappers.json | 4 +- .../Central-Pennsylvania-OSM.json | 4 +- .../Code-for-San-Jose-Slack.json | 4 +- .../united_states/Dallas-Fort-Worth-OSM.json | 4 +- .../united_states/GeoPhilly.json | 4 +- .../united_states/MapMinnesota.json | 4 +- .../united_states/Mapping-DC-meetup.json | 4 +- .../united_states/Maptime-ME.json | 4 +- .../Massachusetts-mailinglist.json | 4 +- .../united_states/OSM-Boston.json | 4 +- .../united_states/OSM-Central-Salish-Sea.json | 4 +- .../united_states/OSM-Chattanooga.json | 4 +- .../united_states/OSM-Colorado.json | 4 +- .../united_states/OSM-Portland-forum.json | 4 +- .../united_states/OSM-Portland.json | 4 +- .../united_states/OSM-Seattle.json | 4 +- .../united_states/OSM-SoCal.json | 4 +- .../united_states/OSM-SouthBay.json | 4 +- .../united_states/OSM-Tampa-Bay.json | 4 +- .../united_states/OSM-US-Slack.json | 4 +- .../north-america/united_states/OSM-US.json | 4 +- .../north-america/united_states/OSM-Utah.json | 4 +- .../united_states/OSM-Wyoming.json | 4 +- .../united_states/OpenCleveland-meetup.json | 4 +- .../united_states/PHXGeo-meetup.json | 4 +- .../united_states/PHXGeo-twitter.json | 4 +- .../united_states/Western-Slope-facebook.json | 4 +- .../united_states/Western-Slope-meetup.json | 4 +- .../united_states/maptimehrva-twitter.json | 4 +- .../ym-Ball-State-University.json | 10 ++-- ...California-University-of-Pennsylvania.json | 10 ++-- .../ym-Central-Washington-University.json | 10 ++-- .../united_states/ym-Clemson-University.json | 10 ++-- .../ym-College-of-William-and-Mary.json | 10 ++-- .../united_states/ym-Cornell-University.json | 10 ++-- .../ym-George-Mason-University.json | 10 ++-- ...ym-Indiana-University-of-Pennsylvania.json | 10 ++-- .../ym-Jacksonville-State-University.json | 10 ++-- .../ym-Kansas-State-University.json | 10 ++-- .../united_states/ym-McGill-University.json | 10 ++-- .../united_states/ym-Miami-University.json | 10 ++-- .../ym-Monroe-Community-College.json | 10 ++-- .../united_states/ym-Montgomery-College.json | 10 ++-- .../united_states/ym-New-York-University.json | 10 ++-- .../ym-Ohio-Wesleyan-University.json | 10 ++-- .../ym-Oklahoma-State-University.json | 10 ++-- .../united_states/ym-SUNY-at-Fredonia.json | 10 ++-- ...-State-University-of-New-York-Geneseo.json | 10 ++-- .../ym-Texas-Tech-University.json | 10 ++-- .../united_states/ym-The-Citadel.json | 10 ++-- .../ym-The-George-Washington-University.json | 10 ++-- .../ym-The-Johns-Hopkins-University-SAIS.json | 10 ++-- .../ym-The-Pennsylvania-State-University.json | 10 ++-- .../united_states/ym-UW-Madison.json | 10 ++-- .../ym-University-of-California-Davis.json | 10 ++-- .../ym-University-of-Central-Florida.json | 10 ++-- .../ym-University-of-Chicago.json | 10 ++-- ...m-University-of-Maryland-College-Park.json | 10 ++-- .../ym-University-of-North-Texas.json | 10 ++-- .../ym-University-of-Northern-Colorado.json | 10 ++-- .../ym-University-of-Oregon.json | 10 ++-- .../ym-University-of-Redlands.json | 10 ++-- .../ym-University-of-South-Carolina.json | 10 ++-- .../ym-University-of-Southern-California.json | 10 ++-- .../ym-University-of-Vermont.json | 10 ++-- .../ym-University-of-Victoria.json | 8 +-- .../ym-University-of-Wyoming.json | 10 ++-- .../united_states/ym-Vassar-College.json | 10 ++-- .../ym-Villanova-University.json | 10 ++-- .../ym-West-Virginia-University.json | 10 ++-- .../ym-Western-Michigan-University.json | 10 ++-- resources/oceania/Maptime-Oceania-Slack.json | 4 +- .../oceania/australia/geogeeks_perth.json | 5 +- resources/oceania/australia/talk-au.json | 2 +- resources/oceania/new_zealand/talk-nz.json | 2 +- .../argentina/OSM-AR-facebook.json | 4 +- .../south-america/argentina/OSM-AR-forum.json | 4 +- .../south-america/argentina/OSM-AR-irc.json | 4 +- .../argentina/OSM-AR-mailinglist.json | 4 +- .../argentina/OSM-AR-telegram.json | 4 +- .../argentina/OSM-AR-twitter.json | 4 +- .../bolivia/OSM-BO-mailinglist.json | 4 +- .../south-america/brazil/Bahia-telegram.json | 4 +- .../south-america/brazil/DF-telegram.json | 4 +- .../south-america/brazil/OSM-br-discord.json | 4 +- .../brazil/OSM-br-mailinglist.json | 4 +- .../south-america/brazil/OSM-br-telegram.json | 4 +- .../south-america/brazil/OSM-br-twitter.json | 4 +- .../south-america/brazil/RS-telegram.json | 4 +- .../south-america/chile/OSM-CL-facebook.json | 4 +- .../chile/OSM-CL-mailinglist.json | 4 +- .../south-america/chile/OSM-CL-telegram.json | 4 +- .../south-america/chile/OSM-CL-twitter.json | 4 +- .../colombia/Maptime-Bogota.json | 4 +- .../colombia/OSM-CO-facebook.json | 4 +- .../colombia/OSM-CO-mailinglist.json | 4 +- .../colombia/OSM-CO-telegram.json | 2 +- .../colombia/OSM-CO-twitter.json | 4 +- resources/south-america/colombia/OSM-CO.json | 2 +- ...ad-Distrital-Francisco-Jose-de-Caldas.json | 10 ++-- .../ym-Universidad-Nacional-de-Colombia.json | 10 ++-- .../colombia/ym-Universidad-de-Antioquia.json | 10 ++-- .../ym-Universidad-de-La-Guajira.json | 10 ++-- .../colombia/ym-Universidad-de-Los-Andes.json | 10 ++-- .../ym-Universidad-de-San-Buenaventura.json | 10 ++-- .../ecuador/OSM-EC-telegram.json | 4 +- .../paraguay/OSM-PY-telegram.json | 4 +- .../south-america/peru/OSM-PE-facebook.json | 4 +- .../peru/OSM-PE-mailinglist.json | 4 +- .../south-america/peru/OSM-PE-matrix.json | 4 +- .../south-america/peru/OSM-PE-telegram.json | 4 +- .../south-america/peru/OSM-PE-twitter.json | 4 +- resources/south-america/peru/OSM-PE.json | 4 +- resources/south-america/uruguay/uy-forum.json | 2 +- resources/south-america/uruguay/uy-irc.json | 4 +- .../south-america/uruguay/uy-mailinglist.json | 4 +- .../south-america/venezuela/ve-forum.json | 2 +- .../venezuela/ve-mailinglist.json | 4 +- .../south-america/venezuela/ve-telegram.json | 4 +- resources/world/OSMF.json | 2 +- schema/resource.json | 5 -- 418 files changed, 1232 insertions(+), 1224 deletions(-) diff --git a/build.js b/build.js index 4e92b08c1..0f73ee47d 100644 --- a/build.js +++ b/build.js @@ -4,7 +4,7 @@ const fs = require('fs'); const glob = require('glob'); const path = require('path'); -const CC = require('country-coder'); +const CountryCoder = require('country-coder'); const Validator = require('jsonschema').Validator; const shell = require('shelljs'); const prettyStringify = require('json-stringify-pretty-compact'); @@ -34,11 +34,11 @@ function buildAll() { let tstrings = {}; // translation strings const features = generateFeatures(); const resources = generateResources(tstrings, features); - const combined = generateCombined(features, resources); + // const combined = generateCombined(features, resources); // Save individual data files - fs.writeFileSync('dist/combined.geojson', prettyStringify(combined) ); - fs.writeFileSync('dist/combined.min.geojson', JSON.stringify(combined) ); + // fs.writeFileSync('dist/combined.geojson', prettyStringify(combined) ); + // fs.writeFileSync('dist/combined.min.geojson', JSON.stringify(combined) ); fs.writeFileSync('dist/features.json', prettyStringify({ features: features }, { maxLength: 9999 })); fs.writeFileSync('dist/features.min.json', JSON.stringify({ features: features }) ); fs.writeFileSync('dist/resources.json', prettyStringify({ resources: resources }, { maxLength: 9999 })); @@ -83,6 +83,14 @@ function generateFeatures() { const id = path.basename(file, '.geojson').toLowerCase(); feature.id = id; + // sort keys + let obj = {}; + if (feature.type) { obj.type = feature.type; } + if (feature.id) { obj.id = feature.id; } + if (feature.properties) { obj.properties = feature.properties; } + if (feature.geometry) { obj.geometry = feature.geometry; } + feature = obj; + validateFile(file, feature, featureSchema); prettifyFile(file, feature, contents); @@ -108,6 +116,7 @@ function generateResources(tstrings, features) { let resources = {}; let files = {}; process.stdout.write('Resources:'); + glob.sync(__dirname + '/resources/**/*.json').forEach(file => { let contents = fs.readFileSync(file, 'utf8'); @@ -120,6 +129,24 @@ function generateResources(tstrings, features) { process.exit(1); } + // sort keys + let obj = {}; + if (resource.id) { obj.id = resource.id; } + if (resource.type) { obj.type = resource.type; } + if (resource.includeLocations) { obj.includeLocations = resource.includeLocations; } + if (resource.excludeLocations) { obj.excludeLocations = resource.excludeLocations; } + if (resource.countryCodes) { obj.countryCodes = resource.countryCodes.sort(); } + if (resource.languageCodes) { obj.languageCodes = resource.languageCodes.sort(); } + if (resource.name) { obj.name = resource.name; } + if (resource.description) { obj.description = resource.description; } + if (resource.extendedDescription) { obj.extendedDescription = resource.extendedDescription } + if (resource.url) { obj.url = resource.url; } + if (resource.signupUrl) { obj.signupUrl = resource.signupUrl; } + if (resource.contacts) { obj.contacts = resource.contacts; } + if (resource.order) { obj.order = resource.order; } + if (resource.events) { obj.events = resource.events; } + resource = obj; + validateFile(file, resource, resourceSchema); prettifyFile(file, resource, contents); @@ -131,19 +158,6 @@ function generateResources(tstrings, features) { process.exit(1); } - let featureId = resource.featureId; - if (featureId && !features[featureId]) { - console.error(colors.red('Error - Unknown feature id: ') + colors.yellow(featureId)); - console.error(' ' + colors.yellow(file)); - process.exit(1); - } - - if (!featureId && !/\/resources\/world/.test(file)) { - console.error(colors.red('Error - feature id is required for non-worldwide resource:')); - console.error(' ' + colors.yellow(file)); - process.exit(1); - } - if (resource.includeLocations) { validateLocations(resource.includeLocations, file, features); } @@ -232,7 +246,7 @@ function validateLocations(locations, file, features) { } } else { // a country-coder string? - let ccmatch = CC.feature(location); + let ccmatch = CountryCoder.feature(location); if (ccmatch) { console.log(' Country Coder: ' + colors.yellow(ccmatch.properties.nameEn)); } else { diff --git a/features/africa/ghana/ghana.geojson b/features/africa/ghana/ghana.geojson index c3ab44702..64cffac0a 100644 --- a/features/africa/ghana/ghana.geojson +++ b/features/africa/ghana/ghana.geojson @@ -1,7 +1,7 @@ { "type": "Feature", - "properties": {"area": 297118.3}, "id": "ghana", + "properties": {"area": 297118.3}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/africa/kenya/kenya.geojson b/features/africa/kenya/kenya.geojson index 5ac28671e..c81a5dd37 100644 --- a/features/africa/kenya/kenya.geojson +++ b/features/africa/kenya/kenya.geojson @@ -1,7 +1,7 @@ { "type": "Feature", - "properties": {"area": 612152.39}, "id": "kenya", + "properties": {"area": 612152.39}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/africa/kenya/nairobi.geojson b/features/africa/kenya/nairobi.geojson index dbac6119c..ba4871056 100644 --- a/features/africa/kenya/nairobi.geojson +++ b/features/africa/kenya/nairobi.geojson @@ -1,7 +1,7 @@ { "type": "Feature", - "properties": {"area": 687.96}, "id": "nairobi", + "properties": {"area": 687.96}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/asia/afghanistan/afghanistan.geojson b/features/asia/afghanistan/afghanistan.geojson index 58fdbfd84..585d47ebd 100644 --- a/features/asia/afghanistan/afghanistan.geojson +++ b/features/asia/afghanistan/afghanistan.geojson @@ -1,6 +1,7 @@ { "type": "Feature", "id": "afghanistan", + "properties": {"name": "Afghanistan", "area": 653958.06}, "geometry": { "type": "Polygon", "coordinates": [ @@ -76,6 +77,5 @@ [66.51861, 37.36278] ] ] - }, - "properties": {"name": "Afghanistan", "area": 653958.06} + } } \ No newline at end of file diff --git a/features/asia/iran/iran.geojson b/features/asia/iran/iran.geojson index b35858b01..e4f39887b 100644 --- a/features/asia/iran/iran.geojson +++ b/features/asia/iran/iran.geojson @@ -1,7 +1,7 @@ { "type": "Feature", - "properties": {"area": 1812060.29}, "id": "iran", + "properties": {"area": 1812060.29}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/europe/germany/de-hamburg.geojson b/features/europe/germany/de-hamburg.geojson index 16906fd43..7e7595acd 100644 --- a/features/europe/germany/de-hamburg.geojson +++ b/features/europe/germany/de-hamburg.geojson @@ -1,7 +1,7 @@ { "type": "Feature", - "properties": {"area": 2944.94}, "id": "de-hamburg", + "properties": {"area": 2944.94}, "geometry": { "type": "Polygon", "coordinates": [[[9.6, 53.8], [10.4, 53.8], [10.4, 53.3], [9.6, 53.3], [9.6, 53.8]]] diff --git a/features/europe/spain/galicia.geojson b/features/europe/spain/galicia.geojson index 029a4f221..1d4b71089 100644 --- a/features/europe/spain/galicia.geojson +++ b/features/europe/spain/galicia.geojson @@ -1,7 +1,7 @@ { "type": "Feature", - "properties": {"area": 37013.86}, "id": "galicia", + "properties": {"area": 37013.86}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/middle-east/israel/israel.geojson b/features/middle-east/israel/israel.geojson index 8a01c158d..3149cb8eb 100644 --- a/features/middle-east/israel/israel.geojson +++ b/features/middle-east/israel/israel.geojson @@ -1,7 +1,7 @@ { "type": "Feature", - "properties": {"area": 35079.74}, "id": "israel", + "properties": {"area": 35079.74}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/middle-east/saudi_arabia/saudi_arabia.geojson b/features/middle-east/saudi_arabia/saudi_arabia.geojson index 9202bc16d..f2c248ea0 100644 --- a/features/middle-east/saudi_arabia/saudi_arabia.geojson +++ b/features/middle-east/saudi_arabia/saudi_arabia.geojson @@ -1,7 +1,7 @@ { "type": "Feature", - "properties": {"area": 2139114.31}, "id": "saudi_arabia", + "properties": {"area": 2139114.31}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/oceania/oceania_full.geojson b/features/oceania/oceania_full.geojson index 0d00ccd51..b5b3fff17 100644 --- a/features/oceania/oceania_full.geojson +++ b/features/oceania/oceania_full.geojson @@ -1,7 +1,7 @@ { "type": "Feature", - "properties": {"area": 52750511.11}, "id": "oceania_full", + "properties": {"area": 52750511.11}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/south-america/brazil/bahia.geojson b/features/south-america/brazil/bahia.geojson index f059ccaa8..dcf9cc900 100644 --- a/features/south-america/brazil/bahia.geojson +++ b/features/south-america/brazil/bahia.geojson @@ -1,6 +1,6 @@ { - "id": "bahia", "type": "Feature", + "id": "bahia", "properties": {"area": 640271.37}, "geometry": { "type": "Polygon", diff --git a/features/south-america/brazil/df.geojson b/features/south-america/brazil/df.geojson index 269a27699..3de9ebce1 100644 --- a/features/south-america/brazil/df.geojson +++ b/features/south-america/brazil/df.geojson @@ -1,6 +1,6 @@ { - "id": "df", "type": "Feature", + "id": "df", "properties": {"area": 5794.12}, "geometry": { "type": "Polygon", diff --git a/features/south-america/brazil/rs.geojson b/features/south-america/brazil/rs.geojson index a62ac7591..6a6cec0e1 100644 --- a/features/south-america/brazil/rs.geojson +++ b/features/south-america/brazil/rs.geojson @@ -1,6 +1,6 @@ { - "id": "rs", "type": "Feature", + "id": "rs", "properties": {"area": 325696.77}, "geometry": { "type": "Polygon", diff --git a/resources/africa/botswana/bw-facebook.json b/resources/africa/botswana/bw-facebook.json index bec6f5d52..fabc8b2ac 100644 --- a/resources/africa/botswana/bw-facebook.json +++ b/resources/africa/botswana/bw-facebook.json @@ -1,7 +1,7 @@ { "id": "bw-facebook", "type": "facebook", - "featureId": "botswana", + "includeLocations": ["botswana.geojson"], "countryCodes": ["bw"], "languageCodes": ["en", "tn"], "name": "Mapping Botswana on Facebook", diff --git a/resources/africa/botswana/bw-twitter.json b/resources/africa/botswana/bw-twitter.json index 652330901..8b09b9d84 100644 --- a/resources/africa/botswana/bw-twitter.json +++ b/resources/africa/botswana/bw-twitter.json @@ -1,7 +1,7 @@ { "id": "bw-twitter", "type": "twitter", - "featureId": "botswana", + "includeLocations": ["botswana.geojson"], "countryCodes": ["bw"], "languageCodes": ["en", "tn"], "name": "Mapping Botswana on Twitter", diff --git a/resources/africa/cote_d'_ivoire/ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.json b/resources/africa/cote_d'_ivoire/ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.json index 51cc8249f..3c9b83d32 100644 --- a/resources/africa/cote_d'_ivoire/ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.json +++ b/resources/africa/cote_d'_ivoire/ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.json @@ -1,11 +1,13 @@ { + "id": "ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny", "type": "youthmappers", + "includeLocations": [ + "centre-universitaire-de-recherche-et-dapplication-en-tldtection-curat-de-luniversit-felix-houphouet-boigny.geojson" + ], + "countryCodes": ["ci"], "name": "YouthMappers CURAT", "description": "YouthMappers chapter at Centre Universitaire de Recherche et d'Application en Télédétection (CURAT) de l'Université Felix Houphouet Boigny", - "id": "ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny", - "featureId": "centre-universitaire-de-recherche-et-dapplication-en-tldtection-curat-de-luniversit-felix-houphouet-boigny", - "contacts": [{"name": "Organizer", "email": "gpcome@gmail.com"}], "extendedDescription": "Our chapter aim is to promote the use of collaborative free mapping and the use of openstreetmap data in the field of research and their application in the implementation of tools for decision-making. Help students produce their own data of their research.", - "countryCodes": ["ci"], - "url": "mailto:gpcome@gmail.com" + "url": "mailto:gpcome@gmail.com", + "contacts": [{"name": "Organizer", "email": "gpcome@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/gambia/ym-The-Gambia-YMCA-University-of-the-Gambia.json b/resources/africa/gambia/ym-The-Gambia-YMCA-University-of-the-Gambia.json index bb8513e8a..22be0d303 100644 --- a/resources/africa/gambia/ym-The-Gambia-YMCA-University-of-the-Gambia.json +++ b/resources/africa/gambia/ym-The-Gambia-YMCA-University-of-the-Gambia.json @@ -1,11 +1,11 @@ { + "id": "ym-The-Gambia-YMCA-University-of-the-Gambia", "type": "youthmappers", + "includeLocations": ["the-gambia-ymca-university-of-the-gambia.geojson"], + "countryCodes": ["gm"], "name": "Connected YouthMappers", "description": "YouthMappers chapter at The Gambia YMCA / University of the Gambia", - "id": "ym-The-Gambia-YMCA-University-of-the-Gambia", - "featureId": "the-gambia-ymca-university-of-the-gambia", - "contacts": [{"name": "Organizer", "email": "connectedyouthmappers@gmail.com"}], "extendedDescription": "Connected YouthMappers is comprised of dedicated young Gambians who aspire to change and aid national development.", - "countryCodes": ["gm"], - "url": "mailto:connectedyouthmappers@gmail.com" + "url": "mailto:connectedyouthmappers@gmail.com", + "contacts": [{"name": "Organizer", "email": "connectedyouthmappers@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/ghana/cape-coast-youthmappers.json b/resources/africa/ghana/cape-coast-youthmappers.json index 42e1efe3d..534ffc34c 100644 --- a/resources/africa/ghana/cape-coast-youthmappers.json +++ b/resources/africa/ghana/cape-coast-youthmappers.json @@ -1,10 +1,10 @@ { "id": "cape-coast-youthmappers", - "featureId": "cape_coast_gh", "type": "twitter", - "name": "University of Cape Coast YouthMappers", + "includeLocations": ["cape_coast_gh.geojson"], "countryCodes": ["gh"], "languageCodes": ["en"], + "name": "University of Cape Coast YouthMappers", "description": "Follow us on Twitter: {url}", "extendedDescription": "This is the official handle for the Youth Mappers chapter of the University of Cape Coast, Ghana. we love maps, open data and helping the vulnerable.", "url": "https://twitter.com/YouthmappersUCC", diff --git a/resources/africa/ghana/osm-gh-facebook.json b/resources/africa/ghana/osm-gh-facebook.json index f25fc4575..1443c6bc8 100644 --- a/resources/africa/ghana/osm-gh-facebook.json +++ b/resources/africa/ghana/osm-gh-facebook.json @@ -1,10 +1,10 @@ { "id": "osm-gh-facebook", - "featureId": "ghana", "type": "facebook", - "name": "OpenStreetMap Ghana on Facebook", + "includeLocations": ["ghana.geojson"], "countryCodes": ["gh"], "languageCodes": ["en"], + "name": "OpenStreetMap Ghana on Facebook", "description": "Facebook group for people interested in OpenStreetMap.", "extendedDescription": "Mappers in Ghana community, promoting OpenStreetMap and Humanitarian OpenStreetMap Team (HOT) projects in Ghana. Join us.", "url": "https://www.facebook.com/OSMGhana/", diff --git a/resources/africa/ghana/osm-gh-twitter.json b/resources/africa/ghana/osm-gh-twitter.json index c3a3a195c..fbe2a81e8 100644 --- a/resources/africa/ghana/osm-gh-twitter.json +++ b/resources/africa/ghana/osm-gh-twitter.json @@ -1,10 +1,10 @@ { "id": "osm-gh-twitter", - "featureId": "ghana", "type": "twitter", - "name": "OpenStreetMap Ghana on Twitter", + "includeLocations": ["ghana.geojson"], "countryCodes": ["gh"], "languageCodes": ["en"], + "name": "OpenStreetMap Ghana on Twitter", "description": "Follow us on Twitter: {url}", "url": "https://twitter.com/osmghana", "contacts": [{"name": "Enock Seth Nyamador", "email": "kwadzo459@gmail.com"}] diff --git a/resources/africa/ghana/talk-gh.json b/resources/africa/ghana/talk-gh.json index 014767aa7..2d67998c0 100644 --- a/resources/africa/ghana/talk-gh.json +++ b/resources/africa/ghana/talk-gh.json @@ -1,10 +1,10 @@ { "id": "talk-gh", - "featureId": "ghana", "type": "mailinglist", - "name": "Talk-gh Mailing List", + "includeLocations": ["ghana.geojson"], "countryCodes": ["gh"], "languageCodes": ["en"], + "name": "Talk-gh Mailing List", "description": "Talk-gh is the official mailing list for Ghana OSM community.", "url": "https://lists.openstreetmap.org/listinfo/talk-gh", "contacts": [{"name": "Enock Seth Nyamador", "email": "kwadzo459@gmail.com"}], diff --git a/resources/africa/ghana/ym-Kwame-Nkrumah-University-of-Science-and-Technology.json b/resources/africa/ghana/ym-Kwame-Nkrumah-University-of-Science-and-Technology.json index 21d6f3323..889cdcffc 100644 --- a/resources/africa/ghana/ym-Kwame-Nkrumah-University-of-Science-and-Technology.json +++ b/resources/africa/ghana/ym-Kwame-Nkrumah-University-of-Science-and-Technology.json @@ -1,10 +1,10 @@ { + "id": "ym-Kwame-Nkrumah-University-of-Science-and-Technology", "type": "youthmappers", + "includeLocations": ["kwame-nkrumah-university-of-science-and-technology.geojson"], + "countryCodes": ["gh"], "name": "Kwame Nkrumah University of Science and Technology YouthMappers", "description": "YouthMappers chapter at Kwame Nkrumah University of Science and Technology", - "id": "ym-Kwame-Nkrumah-University-of-Science-and-Technology", - "featureId": "kwame-nkrumah-university-of-science-and-technology", - "contacts": [{"name": "Organizer", "email": "knustyouthmappers@outlook.com"}], - "countryCodes": ["gh"], - "url": "https://www.facebook.com/KNUSTMappers/" + "url": "https://www.facebook.com/KNUSTMappers/", + "contacts": [{"name": "Organizer", "email": "knustyouthmappers@outlook.com"}] } \ No newline at end of file diff --git a/resources/africa/ghana/ym-University-of-Cape-Coast.json b/resources/africa/ghana/ym-University-of-Cape-Coast.json index e66cc575b..63e769628 100644 --- a/resources/africa/ghana/ym-University-of-Cape-Coast.json +++ b/resources/africa/ghana/ym-University-of-Cape-Coast.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Cape-Coast", "type": "youthmappers", + "includeLocations": ["university-of-cape-coast.geojson"], + "countryCodes": ["gh"], "name": "UCC Geographical Society", "description": "YouthMappers chapter at University of Cape Coast", - "id": "ym-University-of-Cape-Coast", - "featureId": "university-of-cape-coast", - "contacts": [{"name": "Organizer", "email": "geosoc_ucc@yahoo.com"}], "extendedDescription": "We are a society that encompasses all students who are reading and read geography in the Department of Geography and Regional Planning at the University of Cape Coast. Our main aim is to promote interest in the discipline inside and outside of the classroom. Our motto is “We comprehend the Earth and its inhabitants.”", - "countryCodes": ["gh"], - "url": "https://www.facebook.com/Geographical-Society-Ucc-105157196204838/info/?tab=page_info" + "url": "https://www.facebook.com/Geographical-Society-Ucc-105157196204838/info/?tab=page_info", + "contacts": [{"name": "Organizer", "email": "geosoc_ucc@yahoo.com"}] } \ No newline at end of file diff --git a/resources/africa/ghana/ym-University-of-Energy-and-Natural-Resources.json b/resources/africa/ghana/ym-University-of-Energy-and-Natural-Resources.json index a915036dc..93712afbe 100644 --- a/resources/africa/ghana/ym-University-of-Energy-and-Natural-Resources.json +++ b/resources/africa/ghana/ym-University-of-Energy-and-Natural-Resources.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Energy-and-Natural-Resources", "type": "youthmappers", + "includeLocations": ["university-of-energy-and-natural-resources.geojson"], + "countryCodes": ["gh"], "name": "Eco-Club", "description": "YouthMappers chapter at University of Energy and Natural Resources", - "id": "ym-University-of-Energy-and-Natural-Resources", - "featureId": "university-of-energy-and-natural-resources", - "contacts": [{"name": "Organizer", "email": "james.agyei-ohemeng@uenr.edu.gh"}], "extendedDescription": "To provide a sound education to all citizens about the deteriorating environment and provide utmost use of recreation of the environment for human survival.", - "countryCodes": ["gh"], - "url": "mailto:james.agyei-ohemeng@uenr.edu.gh" + "url": "mailto:james.agyei-ohemeng@uenr.edu.gh", + "contacts": [{"name": "Organizer", "email": "james.agyei-ohemeng@uenr.edu.gh"}] } \ No newline at end of file diff --git a/resources/africa/ghana/ym-University-of-Ghana.json b/resources/africa/ghana/ym-University-of-Ghana.json index e7471bae5..444fe373a 100644 --- a/resources/africa/ghana/ym-University-of-Ghana.json +++ b/resources/africa/ghana/ym-University-of-Ghana.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Ghana", "type": "youthmappers", + "includeLocations": ["university-of-ghana.geojson"], + "countryCodes": ["gh"], "name": "University of Ghana YouthMappers", "description": "YouthMappers chapter at University of Ghana", - "id": "ym-University-of-Ghana", - "featureId": "university-of-ghana", - "contacts": [{"name": "Organizer", "email": "mawulikaf@gmail.com"}], "extendedDescription": "UG YouthMappers consists of both graduate and undergraduate students possessing knowledge and skills in GIS and Remote Sensing. The club is composed of an energetic team that is poised to address social issues and mitigate environmental problems through mapping. Our fundamental principles are capacity building, empowerment and teamwork.", - "countryCodes": ["gh"], - "url": "https://twitter.com/UGYouthMappers" + "url": "https://twitter.com/UGYouthMappers", + "contacts": [{"name": "Organizer", "email": "mawulikaf@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/ghana/ym-University-of-Mines-and-Technology.json b/resources/africa/ghana/ym-University-of-Mines-and-Technology.json index 861a26bf1..f636897b2 100644 --- a/resources/africa/ghana/ym-University-of-Mines-and-Technology.json +++ b/resources/africa/ghana/ym-University-of-Mines-and-Technology.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Mines-and-Technology", "type": "youthmappers", + "includeLocations": ["university-of-mines-and-technology.geojson"], + "countryCodes": ["gh"], "name": "UMaT YouthMappers", "description": "YouthMappers chapter at University of Mines and Technology", - "id": "ym-University-of-Mines-and-Technology", - "featureId": "university-of-mines-and-technology", - "contacts": [{"name": "Organizer", "email": "kwadzo459@gmail.com"}], "extendedDescription": "UMaT YouthMappers is a group of volunteer students who seek to grant students the opportunity to improve skills in the field of mapping & creating open geographic data and analyses that address locally defined development challenges worldwide.", - "countryCodes": ["gh"], - "url": "http://umatyouthmappers.wordpress.com/" + "url": "http://umatyouthmappers.wordpress.com/", + "contacts": [{"name": "Organizer", "email": "kwadzo459@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/guinea/ym-General-Lansana-Conte-University.json b/resources/africa/guinea/ym-General-Lansana-Conte-University.json index 3ddc786d6..81e367e98 100644 --- a/resources/africa/guinea/ym-General-Lansana-Conte-University.json +++ b/resources/africa/guinea/ym-General-Lansana-Conte-University.json @@ -1,11 +1,11 @@ { + "id": "ym-General-Lansana-Conte-University", "type": "youthmappers", + "includeLocations": ["general-lansana-conte-university.geojson"], + "countryCodes": ["gn"], "name": "YouthMappers General Lansana Conte University", "description": "YouthMappers chapter at General Lansana Conte University", - "id": "ym-General-Lansana-Conte-University", - "featureId": "general-lansana-conte-university", - "contacts": [{"name": "Organizer", "email": "condefa3@gmail.com"}], "extendedDescription": "The YouthMappers of the University General Lansana Conté is a non profit community willing to contribute to Map Guinea and others part of the world. We are promoting the use of GIS and Open data to build decision support tools. We also work to build capacities among the students and local communities.", - "countryCodes": ["gn"], - "url": "www.uglc.org" + "url": "www.uglc.org", + "contacts": [{"name": "Organizer", "email": "condefa3@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/guinea/ym-Institute-of-Science-and-Veterinary-Medicine.json b/resources/africa/guinea/ym-Institute-of-Science-and-Veterinary-Medicine.json index abedfaa82..ab6fb63df 100644 --- a/resources/africa/guinea/ym-Institute-of-Science-and-Veterinary-Medicine.json +++ b/resources/africa/guinea/ym-Institute-of-Science-and-Veterinary-Medicine.json @@ -1,11 +1,11 @@ { + "id": "ym-Institute-of-Science-and-Veterinary-Medicine", "type": "youthmappers", + "includeLocations": ["institute-of-science-and-veterinary-medicine.geojson"], + "countryCodes": ["gn"], "name": "YouthMappers ISSMV Dalaba", "description": "YouthMappers chapter at Institute of Science and Veterinary Medicine", - "id": "ym-Institute-of-Science-and-Veterinary-Medicine", - "featureId": "institute-of-science-and-veterinary-medicine", - "contacts": [{"name": "Organizer", "email": "bvloua45@gmail.com"}], "extendedDescription": "YouthMappers ISSMV Dabala is a non profit organisation working to promote humanitarian mapping and the use of open sources and open data to build decision making tools in Guinea.", - "countryCodes": ["gn"], - "url": "mailto:bvloua45@gmail.com" + "url": "mailto:bvloua45@gmail.com", + "contacts": [{"name": "Organizer", "email": "bvloua45@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/guinea/ym-Universit-de-NZrkor.json b/resources/africa/guinea/ym-Universit-de-NZrkor.json index 6038a8b32..f6282ca89 100644 --- a/resources/africa/guinea/ym-Universit-de-NZrkor.json +++ b/resources/africa/guinea/ym-Universit-de-NZrkor.json @@ -1,11 +1,11 @@ { + "id": "ym-Universit-de-NZrkor", "type": "youthmappers", + "includeLocations": ["universit-de-nzrkor.geojson"], + "countryCodes": ["gn"], "name": "Youthmappers à N'Zérékoré", "description": "YouthMappers chapter at Université de N'Zérékoré", - "id": "ym-Universit-de-NZrkor", - "featureId": "universit-de-nzrkor", - "contacts": [{"name": "Organizer", "email": "donpaul1974@gmail.com"}], "extendedDescription": "YouthMappers est un groupe qui permet de faire la cartographie des communautés enclavées et à la prise des décisions en cas de catastrophes ou épidémies. Elle permet aussi la production et l'utilisation des données en accès gratuit.", - "countryCodes": ["gn"], - "url": "mailto:donpaul1974@gmail.com" + "url": "mailto:donpaul1974@gmail.com", + "contacts": [{"name": "Organizer", "email": "donpaul1974@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/kenya/map-kibera.json b/resources/africa/kenya/map-kibera.json index 8b2066eaf..82ab1865b 100644 --- a/resources/africa/kenya/map-kibera.json +++ b/resources/africa/kenya/map-kibera.json @@ -1,13 +1,13 @@ { "id": "map-kibera", - "featureId": "nairobi", "type": "group", - "name": "Map Kibera Trust", + "includeLocations": ["nairobi.geojson"], "countryCodes": ["ke"], "languageCodes": ["en"], + "name": "Map Kibera Trust", "description": "Map Kibera is a registered organization working in Kenya", - "url": "https://mapkibera.org/", "extendedDescription": "Map Kibera Trust’s mission is to increase influence and representation of marginalized communities through the creative use of digital tools for action.", + "url": "https://mapkibera.org/", "contacts": [{"name": "Map Kibera", "email": "contact@mapkibera.org"}], "order": 4 } \ No newline at end of file diff --git a/resources/africa/kenya/osm-kenya.json b/resources/africa/kenya/osm-kenya.json index 9a4d74b42..ae58ebfa2 100644 --- a/resources/africa/kenya/osm-kenya.json +++ b/resources/africa/kenya/osm-kenya.json @@ -1,13 +1,13 @@ { "id": "osm-kenya", - "featureId": "kenya", "type": "twitter", - "name": "OSM Kenya", + "includeLocations": ["kenya.geojson"], "countryCodes": ["ke"], "languageCodes": ["en"], + "name": "OSM Kenya", "description": "OSM Kenya is a community of OSM contributors and users", - "url": "https://twitter.com/OSMKenya", "extendedDescription": "OSM is a local community for individuals interested in OpenStreetMap including organizations, developers, and YouthMappers chapters in the country.", + "url": "https://twitter.com/OSMKenya", "contacts": [{"name": "OSM Kenya", "email": "osmkenya@gmail.com"}], "order": 4 } \ No newline at end of file diff --git a/resources/africa/kenya/ym-Dedan-Kimathi-University-of-Technology.json b/resources/africa/kenya/ym-Dedan-Kimathi-University-of-Technology.json index d0b14c594..7e3195886 100644 --- a/resources/africa/kenya/ym-Dedan-Kimathi-University-of-Technology.json +++ b/resources/africa/kenya/ym-Dedan-Kimathi-University-of-Technology.json @@ -1,11 +1,11 @@ { + "id": "ym-Dedan-Kimathi-University-of-Technology", "type": "youthmappers", + "includeLocations": ["dedan-kimathi-university-of-technology.geojson"], + "countryCodes": ["ke"], "name": "GDEV", "description": "YouthMappers chapter at Dedan Kimathi University of Technology", - "id": "ym-Dedan-Kimathi-University-of-Technology", - "featureId": "dedan-kimathi-university-of-technology", - "contacts": [{"name": "Organizer", "email": "gdevkenya@gmail.com"}], "extendedDescription": "GDEV is a group of enthusiastic GIS group at DeKUT that aims at helping students share, engage and learn from each other in matters geospatial", - "countryCodes": ["ke"], - "url": "https://plus.google.com/u/0/communities/102367719061492681269/stream/e376a295-1246-4e19-9f66-fa6077719f32" + "url": "https://plus.google.com/u/0/communities/102367719061492681269/stream/e376a295-1246-4e19-9f66-fa6077719f32", + "contacts": [{"name": "Organizer", "email": "gdevkenya@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/kenya/ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology.json b/resources/africa/kenya/ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology.json index c01d68e68..28a226c0d 100644 --- a/resources/africa/kenya/ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology.json +++ b/resources/africa/kenya/ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology.json @@ -1,11 +1,11 @@ { + "id": "ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology", "type": "youthmappers", + "includeLocations": ["jomo-kenyatta-university-of-agriculture-and-technology.geojson"], + "countryCodes": ["ke"], "name": "Association of Geomatics Engineering Students", "description": "YouthMappers chapter at Jomo Kenyatta University of Agriculture and Technology", - "id": "ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology", - "featureId": "jomo-kenyatta-university-of-agriculture-and-technology", - "contacts": [{"name": "Organizer", "email": "laurahmugeha36@gmail.com"}], "extendedDescription": "The Association of Geomatics Engineering Students (AGES), aims at promoting GIS products and services as well as training students on the use of the same. It not only promotes socialization between the students and practicing professionals, but also provides a platform for exchanging new ideas for holding new GIS and surveying events and training at the university.", - "countryCodes": ["ke"], - "url": "mailto:laurahmugeha36@gmail.com" + "url": "mailto:laurahmugeha36@gmail.com", + "contacts": [{"name": "Organizer", "email": "laurahmugeha36@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/kenya/ym-Karatina-University.json b/resources/africa/kenya/ym-Karatina-University.json index 63dabdb0e..7fa0437ce 100644 --- a/resources/africa/kenya/ym-Karatina-University.json +++ b/resources/africa/kenya/ym-Karatina-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Karatina-University", "type": "youthmappers", + "includeLocations": ["karatina-university.geojson"], + "countryCodes": ["ke"], "name": "Nature Club Karatina University", "description": "YouthMappers chapter at Karatina University", - "id": "ym-Karatina-University", - "featureId": "karatina-university", - "contacts": [{"name": "Organizer", "email": "karunatureclub@gmail.com"}], "extendedDescription": "This chapter aims to bring together all GIS enthusiasts.They include environment experts, wildlife experts, aquatic and tourism officers, just to mention a few. Its main aim is to provide a platform where students can learn from each other and, in the process, understand how to integrate the GIS skills in their various career paths as well as provide solutions to various environmental related challenges.", - "countryCodes": ["ke"], - "url": "https://twitter.com/karunature" + "url": "https://twitter.com/karunature", + "contacts": [{"name": "Organizer", "email": "karunatureclub@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/kenya/ym-Kenyatta-University.json b/resources/africa/kenya/ym-Kenyatta-University.json index c830725b0..581f9a298 100644 --- a/resources/africa/kenya/ym-Kenyatta-University.json +++ b/resources/africa/kenya/ym-Kenyatta-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Kenyatta-University", "type": "youthmappers", + "includeLocations": ["kenyatta-university.geojson"], + "countryCodes": ["ke"], "name": "Kenyatta University GIS Club", "description": "YouthMappers chapter at Kenyatta University", - "id": "ym-Kenyatta-University", - "featureId": "kenyatta-university", - "contacts": [{"name": "Organizer", "email": "jamesmagige24@gmail.com"}], "extendedDescription": "Kenyatta University GIS Club (KUGISC) was founded on 28th October 2016, with more than 200 students and staff from all faculty within campus as members. We are committed to empower members with spatial knowledge, skills and expertise required in understanding the Earth. We help in mapping resources within the university by incorporating geospatial data in their projects as well as fieldwork data collection.", - "countryCodes": ["ke"], - "url": "mailto:jamesmagige24@gmail.com" + "url": "mailto:jamesmagige24@gmail.com", + "contacts": [{"name": "Organizer", "email": "jamesmagige24@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/kenya/ym-Moi-University.json b/resources/africa/kenya/ym-Moi-University.json index 78e8042e2..754ee4214 100644 --- a/resources/africa/kenya/ym-Moi-University.json +++ b/resources/africa/kenya/ym-Moi-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Moi-University", "type": "youthmappers", + "includeLocations": ["moi-university.geojson"], + "countryCodes": ["ke"], "name": "Geography Students Association", "description": "YouthMappers chapter at Moi University", - "id": "ym-Moi-University", - "featureId": "moi-university", - "contacts": [{"name": "Organizer", "email": "geosamu44@gmail.com"}], "extendedDescription": "The Geography Students Association at Moi University (GEOSAMU) explores, discovers and aims at developing the entire world through the young Geo-Spatial analysts.  GEOSAMU is part of the Department of Geography.", - "countryCodes": ["ke"], - "url": "mailto:geosamu44@gmail.com?subject=YouthMappers%20at%20Moi%20University" + "url": "mailto:geosamu44@gmail.com?subject=YouthMappers%20at%20Moi%20University", + "contacts": [{"name": "Organizer", "email": "geosamu44@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/kenya/ym-Technical-University-of-Kenya.json b/resources/africa/kenya/ym-Technical-University-of-Kenya.json index b7c7e4ada..7b9b63837 100644 --- a/resources/africa/kenya/ym-Technical-University-of-Kenya.json +++ b/resources/africa/kenya/ym-Technical-University-of-Kenya.json @@ -1,11 +1,11 @@ { + "id": "ym-Technical-University-of-Kenya", "type": "youthmappers", + "includeLocations": ["technical-university-of-kenya.geojson"], + "countryCodes": ["ke"], "name": "Geospatial Science Student Association", "description": "YouthMappers chapter at Technical University of Kenya", - "id": "ym-Technical-University-of-Kenya", - "featureId": "technical-university-of-kenya", - "contacts": [{"name": "Organizer", "email": "youthmappers.tuk@gmail.com"}], "extendedDescription": "It's a geographical information based group with very passionate students in the relevant fields of study. We do training to members on emerging trends in the market and keep up with technological advancements", - "countryCodes": ["ke"], - "url": "mailto:youthmappers.tuk@gmail.com" + "url": "mailto:youthmappers.tuk@gmail.com", + "contacts": [{"name": "Organizer", "email": "youthmappers.tuk@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/kenya/ym-University-of-Nairobi.json b/resources/africa/kenya/ym-University-of-Nairobi.json index 0c95c24f3..620f02f29 100644 --- a/resources/africa/kenya/ym-University-of-Nairobi.json +++ b/resources/africa/kenya/ym-University-of-Nairobi.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Nairobi", "type": "youthmappers", + "includeLocations": ["university-of-nairobi.geojson"], + "countryCodes": ["ke"], "name": "Geospatial Engineering Students Association", "description": "YouthMappers chapter at University of Nairobi", - "id": "ym-University-of-Nairobi", - "featureId": "university-of-nairobi", - "contacts": [{"name": "Organizer", "email": "contact@mapkibera.org"}], "extendedDescription": "UN students are working with the local OSM community, Map Kibera, and GrouthTruth to learn about open mapping and contribute data for needs in their urban communities.", - "countryCodes": ["ke"], - "url": "www.geospatial.uonbi.ac.ke" + "url": "www.geospatial.uonbi.ac.ke", + "contacts": [{"name": "Organizer", "email": "contact@mapkibera.org"}] } \ No newline at end of file diff --git a/resources/africa/liberia/ym-African-Methodist-Episcopal-University.json b/resources/africa/liberia/ym-African-Methodist-Episcopal-University.json index e7a1a0386..974669dd9 100644 --- a/resources/africa/liberia/ym-African-Methodist-Episcopal-University.json +++ b/resources/africa/liberia/ym-African-Methodist-Episcopal-University.json @@ -1,10 +1,10 @@ { + "id": "ym-African-Methodist-Episcopal-University", "type": "youthmappers", + "includeLocations": ["african-methodist-episcopal-university.geojson"], + "countryCodes": ["lr"], "name": "YouthMappers-AMEU", "description": "YouthMappers chapter at African Methodist Episcopal University", - "id": "ym-African-Methodist-Episcopal-University", - "featureId": "african-methodist-episcopal-university", - "contacts": [{"name": "Organizer", "email": "youthmapper.ameu@gmail.com"}], - "countryCodes": ["lr"], - "url": "mailto:youthmapper.ameu@gmail.com" + "url": "mailto:youthmapper.ameu@gmail.com", + "contacts": [{"name": "Organizer", "email": "youthmapper.ameu@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/liberia/ym-Cuttington-University.json b/resources/africa/liberia/ym-Cuttington-University.json index 4aff21267..0e7882859 100644 --- a/resources/africa/liberia/ym-Cuttington-University.json +++ b/resources/africa/liberia/ym-Cuttington-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Cuttington-University", "type": "youthmappers", + "includeLocations": ["cuttington-university.geojson"], + "countryCodes": ["lr"], "name": "Cuttington University YouthMappers", "description": "YouthMappers chapter at Cuttington University", - "id": "ym-Cuttington-University", - "featureId": "cuttington-university", - "contacts": [{"name": "Organizer", "email": "youthmappers.cu@gmail.com"}], "extendedDescription": "The YouthMappers at Cuttington University, Suakoko, and Bong County comprised of Students from three different departments; namely, the Department of Natural Resources Management “DONRM”, Department of Environmental Sciences, and the Department of Natural Sciences. Since the establishment of the Chapter in February 2017, the overall membership is 20 students, with each department containing 5 students.", - "countryCodes": ["lr"], - "url": "mailto:youthmappers.cu@gmail.com" + "url": "mailto:youthmappers.cu@gmail.com", + "contacts": [{"name": "Organizer", "email": "youthmappers.cu@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/liberia/ym-Grand-Gedeh-County-Community-College.json b/resources/africa/liberia/ym-Grand-Gedeh-County-Community-College.json index 63874a91d..e9054ca4b 100644 --- a/resources/africa/liberia/ym-Grand-Gedeh-County-Community-College.json +++ b/resources/africa/liberia/ym-Grand-Gedeh-County-Community-College.json @@ -1,11 +1,11 @@ { + "id": "ym-Grand-Gedeh-County-Community-College", "type": "youthmappers", + "includeLocations": ["grand-gedeh-county-community-college.geojson"], + "countryCodes": ["lr"], "name": "YouthMappers at Grand Gedeh County Community College", "description": "YouthMappers chapter at Grand Gedeh County Community College", - "id": "ym-Grand-Gedeh-County-Community-College", - "featureId": "grand-gedeh-county-community-college", - "contacts": [{"name": "Organizer", "email": "yimodaxzibitallison@gmail.com"}], "extendedDescription": "The Youth Mappers of GGCCC sole intent is to put places in and around Liberia that are not on the map. We gather youths from the college within the Grand Gedeh Community College to make it their duties to unite and bring these places to the spot light geographically.", - "countryCodes": ["lr"], - "url": "mailto:yimodaxzibitallison@gmail.com" + "url": "mailto:yimodaxzibitallison@gmail.com", + "contacts": [{"name": "Organizer", "email": "yimodaxzibitallison@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/liberia/ym-Nimba-County-Community-College.json b/resources/africa/liberia/ym-Nimba-County-Community-College.json index 7fcb2e05e..661349365 100644 --- a/resources/africa/liberia/ym-Nimba-County-Community-College.json +++ b/resources/africa/liberia/ym-Nimba-County-Community-College.json @@ -1,10 +1,10 @@ { + "id": "ym-Nimba-County-Community-College", "type": "youthmappers", + "includeLocations": ["nimba-county-community-college.geojson"], + "countryCodes": ["lr"], "name": "Nimba County Community College Youth Mappers", "description": "YouthMappers chapter at Nimba County Community College", - "id": "ym-Nimba-County-Community-College", - "featureId": "nimba-county-community-college", - "contacts": [{"name": "Organizer", "email": "ncccyouthmappers@yahoo.com"}], - "countryCodes": ["lr"], - "url": "mailto:ncccyouthmappers@yahoo.com" + "url": "mailto:ncccyouthmappers@yahoo.com", + "contacts": [{"name": "Organizer", "email": "ncccyouthmappers@yahoo.com"}] } \ No newline at end of file diff --git a/resources/africa/liberia/ym-Stella-Maris-Polytechnic.json b/resources/africa/liberia/ym-Stella-Maris-Polytechnic.json index ce1569a74..deb0fc826 100644 --- a/resources/africa/liberia/ym-Stella-Maris-Polytechnic.json +++ b/resources/africa/liberia/ym-Stella-Maris-Polytechnic.json @@ -1,10 +1,10 @@ { + "id": "ym-Stella-Maris-Polytechnic", "type": "youthmappers", + "includeLocations": ["stella-maris-polytechnic.geojson"], + "countryCodes": ["lr"], "name": "YouthMappers-SMP", "description": "YouthMappers chapter at Stella Maris Polytechnic", - "id": "ym-Stella-Maris-Polytechnic", - "featureId": "stella-maris-polytechnic", - "contacts": [{"name": "Organizer", "email": "youthmappers.smp@gmail.com"}], - "countryCodes": ["lr"], - "url": "mailto:youthmappers.smp@gmail.com" + "url": "mailto:youthmappers.smp@gmail.com", + "contacts": [{"name": "Organizer", "email": "youthmappers.smp@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/liberia/ym-University-of-Liberia-YouthMappers.json b/resources/africa/liberia/ym-University-of-Liberia-YouthMappers.json index 172c1d0c3..8710bbc3c 100644 --- a/resources/africa/liberia/ym-University-of-Liberia-YouthMappers.json +++ b/resources/africa/liberia/ym-University-of-Liberia-YouthMappers.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Liberia-YouthMappers", "type": "youthmappers", + "includeLocations": ["university-of-liberia-youthmappers.geojson"], + "countryCodes": ["lr"], "name": "University of Liberia YouthMappers", "description": "YouthMappers chapter at University of Liberia YouthMappers", - "id": "ym-University-of-Liberia-YouthMappers", - "featureId": "university-of-liberia-youthmappers", - "contacts": [{"name": "Organizer", "email": "ulym2017@gmail.com"}], "extendedDescription": "The University of Liberia YouthMappers is a chapter organization of the Global YouthMappers. We are a nonprofit student mapping organization focus on mapping for Liberia’s development and the World at large. The purpose of this organization shall be to utilize technology and geospatial knowledge as means of creating and developing maps; collecting and analyzing data that will address local and worldwide challenges. Our aim is to support and create opportunity for students to develop interest and skills in the fields of mapping. We envision a united student community that are collaborative, active and are willing to work with the University of Liberia YouthMappers in order to better the lives of others.", - "countryCodes": ["lr"], - "url": "mailto:ulym2017@gmail.com" + "url": "mailto:ulym2017@gmail.com", + "contacts": [{"name": "Organizer", "email": "ulym2017@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/madagascar/osm-mg-facebook.json b/resources/africa/madagascar/osm-mg-facebook.json index 723c8b4f5..276187651 100644 --- a/resources/africa/madagascar/osm-mg-facebook.json +++ b/resources/africa/madagascar/osm-mg-facebook.json @@ -1,10 +1,10 @@ { "id": "osm-mg-facebook", - "featureId": "madagascar", "type": "facebook", - "name": "OpenStreetMap Madagascar Facebook Group", + "includeLocations": ["madagascar.geojson"], "countryCodes": ["mg"], - "languageCodes": ["mg", "fr"], + "languageCodes": ["fr", "mg"], + "name": "OpenStreetMap Madagascar Facebook Group", "description": "Malagasy Facebook group for people interested in OpenStreetMap.", "url": "https://www.facebook.com/groups/1601381123461284/", "contacts": [ diff --git a/resources/africa/madagascar/talk-mg.json b/resources/africa/madagascar/talk-mg.json index 926c748e5..abc40ac10 100644 --- a/resources/africa/madagascar/talk-mg.json +++ b/resources/africa/madagascar/talk-mg.json @@ -1,9 +1,9 @@ { "id": "talk-mg", - "featureId": "madagascar", "type": "mailinglist", + "includeLocations": ["madagascar.geojson"], "countryCodes": ["mg"], - "languageCodes": ["mg", "fr"], + "languageCodes": ["fr", "mg"], "name": "Talk-mg Mailing List", "description": "Place for OpenStreetMap contributors, communities and users in Madagascar to share and discuss.", "url": "https://lists.openstreetmap.org/listinfo/talk-mg", diff --git a/resources/africa/malawi/ym-University-of-Malawi.json b/resources/africa/malawi/ym-University-of-Malawi.json index f81ab0e51..4f5c81275 100644 --- a/resources/africa/malawi/ym-University-of-Malawi.json +++ b/resources/africa/malawi/ym-University-of-Malawi.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Malawi", "type": "youthmappers", + "includeLocations": ["university-of-malawi.geojson"], + "countryCodes": ["mw"], "name": "Chanco Malawi YouthMappers", "description": "YouthMappers chapter at University of Malawi", - "id": "ym-University-of-Malawi", - "featureId": "university-of-malawi", - "contacts": [{"name": "Organizer", "email": "zolamanyungwa@gmail.com"}], "extendedDescription": "Chanco Malawi YouthMappers is the student mapping organization for the University of Malawi's Chancellor College. The students in this chapter focus on mapping for Malawi's development and science needs.", - "countryCodes": ["mw"], - "url": "mailto:zolamanyungwa@gmail.com" + "url": "mailto:zolamanyungwa@gmail.com", + "contacts": [{"name": "Organizer", "email": "zolamanyungwa@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/mali/ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.json b/resources/africa/mali/ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.json index fbbfd73fb..9d1890bb6 100644 --- a/resources/africa/mali/ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.json +++ b/resources/africa/mali/ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.json @@ -1,10 +1,10 @@ { + "id": "ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako", "type": "youthmappers", + "includeLocations": ["universit-des-sciences-sociale-et-de-gestion-de-bamako.geojson"], + "countryCodes": ["ml"], "name": "Etudiant au Laboratoire HoPE", "description": "YouthMappers chapter at Université des Sciences Sociale et de Gestion de Bamako", - "id": "ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako", - "featureId": "universit-des-sciences-sociale-et-de-gestion-de-bamako", - "contacts": [{"name": "Organizer", "email": "youthmappersfhg@gmail.com"}], - "countryCodes": ["ml"], - "url": "mailto:youthmappersfhg@gmail.com" + "url": "mailto:youthmappersfhg@gmail.com", + "contacts": [{"name": "Organizer", "email": "youthmappersfhg@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/mozambique/ym-Universidade-Eduardo-Mondlane.json b/resources/africa/mozambique/ym-Universidade-Eduardo-Mondlane.json index b8a3c50f2..9cba33575 100644 --- a/resources/africa/mozambique/ym-Universidade-Eduardo-Mondlane.json +++ b/resources/africa/mozambique/ym-Universidade-Eduardo-Mondlane.json @@ -1,11 +1,11 @@ { + "id": "ym-Universidade-Eduardo-Mondlane", "type": "youthmappers", + "includeLocations": ["universidade-eduardo-mondlane.geojson"], + "countryCodes": ["mz"], "name": "Comunidade YouthMappers Moçambique", "description": "YouthMappers chapter at Universidade Eduardo Mondlane", - "id": "ym-Universidade-Eduardo-Mondlane", - "featureId": "universidade-eduardo-mondlane", - "contacts": [{"name": "Organizer", "email": "moz.youthmappers1@hotmail.com"}], "extendedDescription": "We are a student group that intends to join Mozambican society to create a resilient community of humanitarian mapping. The community intend to map the physical occupation of our Country and create open geographic data, accessible to the public and able to be used in several areas without associated costs.", - "countryCodes": ["mz"], - "url": "www.facebook.com/Moz-YouthMappers" + "url": "www.facebook.com/Moz-YouthMappers", + "contacts": [{"name": "Organizer", "email": "moz.youthmappers1@hotmail.com"}] } \ No newline at end of file diff --git a/resources/africa/namibia/ym-Namibia-University-of-Science-and-Technology.json b/resources/africa/namibia/ym-Namibia-University-of-Science-and-Technology.json index 980d2e86c..3fc5095cf 100644 --- a/resources/africa/namibia/ym-Namibia-University-of-Science-and-Technology.json +++ b/resources/africa/namibia/ym-Namibia-University-of-Science-and-Technology.json @@ -1,10 +1,10 @@ { + "id": "ym-Namibia-University-of-Science-and-Technology", "type": "youthmappers", + "includeLocations": ["namibia-university-of-science-and-technology.geojson"], + "countryCodes": ["na"], "name": "Geoinformation Technology Student Society", "description": "YouthMappers chapter at Namibia University of Science and Technology", - "id": "ym-Namibia-University-of-Science-and-Technology", - "featureId": "namibia-university-of-science-and-technology", - "contacts": [{"name": "Organizer", "email": "patriciasem87@gmail.com"}], - "countryCodes": ["na"], - "url": "mailto:patriciasem87@gmail.com" + "url": "mailto:patriciasem87@gmail.com", + "contacts": [{"name": "Organizer", "email": "patriciasem87@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/nigeria/ym-Abia-State-University.json b/resources/africa/nigeria/ym-Abia-State-University.json index 945a0dc2d..bd6efa4c6 100644 --- a/resources/africa/nigeria/ym-Abia-State-University.json +++ b/resources/africa/nigeria/ym-Abia-State-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Abia-State-University", "type": "youthmappers", + "includeLocations": ["abia-state-university.geojson"], + "countryCodes": ["ng"], "name": "AbsuMappersTeam", "description": "YouthMappers chapter at Abia State University", - "id": "ym-Abia-State-University", - "featureId": "abia-state-university", - "contacts": [{"name": "Organizer", "email": "absumappersteam@gmail.com"}], "extendedDescription": "AbsuMappersTeam is voluntary team of map enthusiast ,using openstreetmap,GIS and other open source geospatial techno;ogy to solve problems.It is a dedicated for disaster response using OpenStreetMap.It is a professional mentoring and empowerment platform for those with passion for GIS and Mapping.It is a community of volunteers for geospatial data creation,field data collection and mapping.The team was co-founded by Victor N.Sunday(the Team mentor) and Professor J.U.Ogbonna ,the team coordinator and faculty Advisor. AbsuMapperTeam is an affiliate of UniiqueMappersTeam-Port Harcourt.The team stands to support sustainable development using geospatial technology", - "countryCodes": ["ng"], - "url": "https://www.facebook.com/Absumappersteam-1709186109157466" + "url": "https://www.facebook.com/Absumappersteam-1709186109157466", + "contacts": [{"name": "Organizer", "email": "absumappersteam@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/nigeria/ym-Ahmadu-Bello-University.json b/resources/africa/nigeria/ym-Ahmadu-Bello-University.json index 74cdb9844..d8887c76f 100644 --- a/resources/africa/nigeria/ym-Ahmadu-Bello-University.json +++ b/resources/africa/nigeria/ym-Ahmadu-Bello-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Ahmadu-Bello-University", "type": "youthmappers", + "includeLocations": ["ahmadu-bello-university.geojson"], + "countryCodes": ["ng"], "name": "ABU Geomappers", "description": "YouthMappers chapter at Ahmadu Bello University", - "id": "ym-Ahmadu-Bello-University", - "featureId": "ahmadu-bello-university", - "contacts": [{"name": "Organizer", "email": "abugeomappers@gmail.com"}], "extendedDescription": "We are a group of Data driven Humanitarian mappers, who are dedicated to rendering humanitarian service in response to disaster and mitigation. We are glad to contribute our expertise and knowledge through mapping, and helping to spread #OpenEvangelism through Training, and collaboration.", - "countryCodes": ["ng"], - "url": "https://web.facebook.com/abugeomappers/" + "url": "https://web.facebook.com/abugeomappers/", + "contacts": [{"name": "Organizer", "email": "abugeomappers@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/nigeria/ym-Federal-School-of-Surveys.json b/resources/africa/nigeria/ym-Federal-School-of-Surveys.json index 6436264a1..345080e8d 100644 --- a/resources/africa/nigeria/ym-Federal-School-of-Surveys.json +++ b/resources/africa/nigeria/ym-Federal-School-of-Surveys.json @@ -1,10 +1,10 @@ { + "id": "ym-Federal-School-of-Surveys", "type": "youthmappers", + "includeLocations": ["federal-school-of-surveys.geojson"], + "countryCodes": ["ng"], "name": "OyoMappersTeam (OMT) Oyo", "description": "YouthMappers chapter at Federal School of Surveys", - "id": "ym-Federal-School-of-Surveys", - "featureId": "federal-school-of-surveys", - "contacts": [{"name": "Organizer", "email": "oyomappersteam@gmail.com"}], - "countryCodes": ["ng"], - "url": "https://web.facebook.com/Oyomappersteam-omt-oyo-1432864713415765/" + "url": "https://web.facebook.com/Oyomappersteam-omt-oyo-1432864713415765/", + "contacts": [{"name": "Organizer", "email": "oyomappersteam@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/nigeria/ym-Federal-University-of-Technology-Akure.json b/resources/africa/nigeria/ym-Federal-University-of-Technology-Akure.json index 3e971e320..cc7c33ca5 100644 --- a/resources/africa/nigeria/ym-Federal-University-of-Technology-Akure.json +++ b/resources/africa/nigeria/ym-Federal-University-of-Technology-Akure.json @@ -1,11 +1,11 @@ { + "id": "ym-Federal-University-of-Technology-Akure", "type": "youthmappers", + "includeLocations": ["federal-university-of-technology-akure.geojson"], + "countryCodes": ["ng"], "name": "YouthMappers Futa Space Club", "description": "YouthMappers chapter at Federal University of Technology, Akure", - "id": "ym-Federal-University-of-Technology-Akure", - "featureId": "federal-university-of-technology-akure", - "contacts": [{"name": "Organizer", "email": "denironyx@gmail.com"}], "extendedDescription": "Our mission is to raise the next generation of Space Leaders. Activities include research and capacity building in Remote Sensing, GIS, Climate Change, Astronomy, Cosmology, Space Engineering, Global Navigation, Robotics and Space Education.", - "countryCodes": ["ng"], - "url": "http://spaceclubfuta.com.ng/" + "url": "http://spaceclubfuta.com.ng/", + "contacts": [{"name": "Organizer", "email": "denironyx@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/nigeria/ym-Ignatius-Ajuru-University-of-Education.json b/resources/africa/nigeria/ym-Ignatius-Ajuru-University-of-Education.json index 007bcf0b6..0cd7d3d59 100644 --- a/resources/africa/nigeria/ym-Ignatius-Ajuru-University-of-Education.json +++ b/resources/africa/nigeria/ym-Ignatius-Ajuru-University-of-Education.json @@ -1,11 +1,11 @@ { + "id": "ym-Ignatius-Ajuru-University-of-Education", "type": "youthmappers", + "includeLocations": ["ignatius-ajuru-university-of-education.geojson"], + "countryCodes": ["ng"], "name": "IgnatiusMappersTeam (IMT)", "description": "YouthMappers chapter at Ignatius Ajuru University of Education", - "id": "ym-Ignatius-Ajuru-University-of-Education", - "featureId": "ignatius-ajuru-university-of-education", - "contacts": [{"name": "Organizer", "email": "ignatiusmappersteam@gmail.com"}], "extendedDescription": "We are a YouthMappers Chapter of Ignatius Ajuru University of Education involved in crowdsourced mapping of our environment and remote mapping of resilient communities.We are a team of volunteers using openstreetmap and other open Geospatial source for mapping.", - "countryCodes": ["ng"], - "url": "https://fb.me/ignatiusmappersteam" + "url": "https://fb.me/ignatiusmappersteam", + "contacts": [{"name": "Organizer", "email": "ignatiusmappersteam@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/nigeria/ym-University-of-Nigeria-Enugu-Campus.json b/resources/africa/nigeria/ym-University-of-Nigeria-Enugu-Campus.json index bb78d49be..0e7f555da 100644 --- a/resources/africa/nigeria/ym-University-of-Nigeria-Enugu-Campus.json +++ b/resources/africa/nigeria/ym-University-of-Nigeria-Enugu-Campus.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Nigeria-Enugu-Campus", "type": "youthmappers", + "includeLocations": ["university-of-nigeria-enugu-campus.geojson"], + "countryCodes": ["ng"], "name": "LionMappersTeam (LMT) Enugu", "description": "YouthMappers chapter at University of Nigeria, Enugu Campus", - "id": "ym-University-of-Nigeria-Enugu-Campus", - "featureId": "university-of-nigeria-enugu-campus", - "contacts": [{"name": "Organizer", "email": "lmtenugucampus@gmail.com"}], "extendedDescription": "The LionMappersTeam(LMT)Enugu Campus is an affiliate of YouthMappers Network, with the sole aim of providing members the opportunity to learn and improve their skills in the field of Geoinformatics and to create open geographic data and analysis that addresses locally defined challenges globally. It is a team of volunteers for Crowdsourced Mapping and Geographic Information provision using Openstreetmap, Citizen Science and other Geospatial Technology for research, training and response to resilient community challenges. We are involved in Web-Cartography, GIS and Remote Sensing Applications and ResearchWe are passionate about Volunteered Geographic Information.Paticipatory GIS and Citizen Science.Our major activities include online crowdsourced-Cartography, Field Mapping ,Training workshops and outreaches to High School as well as Humanitarian/Disaster Response Mapping.", - "countryCodes": ["ng"], - "url": "https://web.facebook.com/Lionmappersteam-enugu-Campus-361221567667528/" + "url": "https://web.facebook.com/Lionmappersteam-enugu-Campus-361221567667528/", + "contacts": [{"name": "Organizer", "email": "lmtenugucampus@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/nigeria/ym-University-of-Nigeria-Nsukka.json b/resources/africa/nigeria/ym-University-of-Nigeria-Nsukka.json index 5776bee41..c3f04ea9b 100644 --- a/resources/africa/nigeria/ym-University-of-Nigeria-Nsukka.json +++ b/resources/africa/nigeria/ym-University-of-Nigeria-Nsukka.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Nigeria-Nsukka", "type": "youthmappers", + "includeLocations": ["university-of-nigeria-nsukka.geojson"], + "countryCodes": ["ng"], "name": "LionMappersTeam (LMT) Nsukka", "description": "YouthMappers chapter at University of Nigeria, Nsukka", - "id": "ym-University-of-Nigeria-Nsukka", - "featureId": "university-of-nigeria-nsukka", - "contacts": [{"name": "Organizer", "email": "lionmappersteam@gmail.com"}], "extendedDescription": "The LionMappersTeam is an affiliate of YouthMappers Network, with the sole aim of providing members the opportunity to learn and improve their skills in the field of mapping science and to create open geographic data and analysis that addresses locally defined challenges globally. It is a team of volunteers for crowdsourced mapping and geographic information provision using Openstreetmap, citizen science and other geospatial technology for research, training and response to resilient community challenges. We are involved in GIS and Remote Sensing Applications and Research.Paticipatory GIS and Citizen Science,field mapping ,training workshops and outreaches to High Schools.", - "countryCodes": ["ng"], - "url": "http://fb.me/LionMappersTeamNsukka;and send messages to our Page at m.me/LionMappersTeamNsukka" + "url": "http://fb.me/LionMappersTeamNsukka;and send messages to our Page at m.me/LionMappersTeamNsukka", + "contacts": [{"name": "Organizer", "email": "lionmappersteam@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/nigeria/ym-University-of-Port-Harcourt.json b/resources/africa/nigeria/ym-University-of-Port-Harcourt.json index 2c93259b2..281828767 100644 --- a/resources/africa/nigeria/ym-University-of-Port-Harcourt.json +++ b/resources/africa/nigeria/ym-University-of-Port-Harcourt.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Port-Harcourt", "type": "youthmappers", + "includeLocations": ["university-of-port-harcourt.geojson"], + "countryCodes": ["ng"], "name": "UniqueMappersTeam (UMT) Port Harcourt", "description": "YouthMappers chapter at University of Port Harcourt", - "id": "ym-University-of-Port-Harcourt", - "featureId": "university-of-port-harcourt", - "contacts": [{"name": "Organizer", "email": "victor.sunday@uniport.edu.ng"}], "extendedDescription": "UniqueMappersTeam(UMT)Port Harcourt is an action group and a team of volunteers for a collaborative online mapping targeted at training and empowering members with trending mapping skills to create open geospatial data and analysis that addresses locally defined challenges for geoinformation and to provide humanitarian mapping services to resilient communities in Niger Delta,Nigeria and elsewhere.We promote Crowdsoucred Mapping and Geographic information volunteering using OpenStreetMap(OSM) platform and other accessible platforms for Rapid Response Mapping,Disaster Mapping,Geo-intelligence Mapping,Map updates and training.Its an affiliate Campus chapter of Humanitarian OpenStreetMap Team(HOT).It is a project-task team of YouthMappers that provide opportunity for members to learn and improve their skills in Geoinformatics so as to explore global opportunities in the field of Mapping and Geoinformation.", - "countryCodes": ["ng"], - "url": "https://web.facebook.com/uniquemappersteamportharcourt/" + "url": "https://web.facebook.com/uniquemappersteamportharcourt/", + "contacts": [{"name": "Organizer", "email": "victor.sunday@uniport.edu.ng"}] } \ No newline at end of file diff --git a/resources/africa/osm-africa-telegram.json b/resources/africa/osm-africa-telegram.json index aa29f8c8e..91c05e997 100644 --- a/resources/africa/osm-africa-telegram.json +++ b/resources/africa/osm-africa-telegram.json @@ -1,7 +1,7 @@ { "id": "osm-africa-telegram", - "featureId": "africa_full", "type": "telegram", + "includeLocations": ["africa_full.geojson"], "name": "OpenStreetMap Africa Telegram", "description": "OpenStreetMap Telegram for Africa", "url": "https://t.me/OSMAfrica", diff --git a/resources/africa/rwanda/ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri.json b/resources/africa/rwanda/ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri.json index 1a6057187..921d2b125 100644 --- a/resources/africa/rwanda/ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri.json +++ b/resources/africa/rwanda/ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri.json @@ -1,11 +1,11 @@ { + "id": "ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri", "type": "youthmappers", + "includeLocations": ["insititue-d-enseignement-superieur-de-ruhengeri.geojson"], + "countryCodes": ["rw"], "name": "YouthMappers at INES Ruhengeri", "description": "YouthMappers chapter at Insititue d' Enseignement Superieur de Ruhengeri", - "id": "ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri", - "featureId": "insititue-d-enseignement-superieur-de-ruhengeri", - "contacts": [{"name": "Organizer", "email": "dufitesaie91@yahoo.com"}], "extendedDescription": "We are students from Land Administration and Management and Land survey Departments from INES-Ruhengeri. We are engaged in mapping activities that create the changes toward sustainable development in our community.", - "countryCodes": ["rw"], - "url": "www.ines.ac.rw" + "url": "www.ines.ac.rw", + "contacts": [{"name": "Organizer", "email": "dufitesaie91@yahoo.com"}] } \ No newline at end of file diff --git a/resources/africa/rwanda/ym-University-of-Rwanda-Huye-Campus.json b/resources/africa/rwanda/ym-University-of-Rwanda-Huye-Campus.json index 9dbb2094f..2b5f1cb43 100644 --- a/resources/africa/rwanda/ym-University-of-Rwanda-Huye-Campus.json +++ b/resources/africa/rwanda/ym-University-of-Rwanda-Huye-Campus.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Rwanda-Huye-Campus", "type": "youthmappers", + "includeLocations": ["university-of-rwanda-huye-campus.geojson"], + "countryCodes": ["rw"], "name": "Rwanda YouthMappers", "description": "YouthMappers chapter at University of Rwanda - Huye Campus", - "id": "ym-University-of-Rwanda-Huye-Campus", - "featureId": "university-of-rwanda-huye-campus", - "contacts": [{"name": "Organizer", "email": "erneruz@gmail.com"}], "extendedDescription": "Based on the commitment and the purpose of promoting mapping, and the information from YouthMappers public talks, we have organized as students in Geography department who are committed in mapping to found a chapter of our Campus. We have supported by our Facilitator Dr. Gaspard Rwanyiziri (Director of CGIS-Rwanda) and various lecturer mentors.", - "countryCodes": ["rw"], - "url": "https://www.facebook.com/Rwanda-YouthMappers" + "url": "https://www.facebook.com/Rwanda-YouthMappers", + "contacts": [{"name": "Organizer", "email": "erneruz@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/senegal/ym-Institut-Suprieur-de-Management-Kolda.json b/resources/africa/senegal/ym-Institut-Suprieur-de-Management-Kolda.json index d246a2d85..33b3d1187 100644 --- a/resources/africa/senegal/ym-Institut-Suprieur-de-Management-Kolda.json +++ b/resources/africa/senegal/ym-Institut-Suprieur-de-Management-Kolda.json @@ -1,11 +1,11 @@ { + "id": "ym-Institut-Suprieur-de-Management-Kolda", "type": "youthmappers", + "includeLocations": ["institut-suprieur-de-management-kolda.geojson"], + "countryCodes": ["sn"], "name": "Les Femmes Leaders de ISM/Kolda", "description": "YouthMappers chapter at Institut Supérieur de Management Kolda", - "id": "ym-Institut-Suprieur-de-Management-Kolda", - "featureId": "institut-suprieur-de-management-kolda", - "contacts": [{"name": "Organizer", "email": "koldaym@gmail.com"}], "extendedDescription": "Les Femmes Leaders de ISM/Kolda is an all-female mapping group in southern Senegal looking to put Kolda and surrounding villages on the map and better understand how to use OSM.", - "countryCodes": ["sn"], - "url": "mailto:koldaym@gmail.com" + "url": "mailto:koldaym@gmail.com", + "contacts": [{"name": "Organizer", "email": "koldaym@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/senegal/ym-Universit-Gaston-Berger.json b/resources/africa/senegal/ym-Universit-Gaston-Berger.json index 8ef3f7a0d..e2dfc9bc1 100644 --- a/resources/africa/senegal/ym-Universit-Gaston-Berger.json +++ b/resources/africa/senegal/ym-Universit-Gaston-Berger.json @@ -1,11 +1,11 @@ { + "id": "ym-Universit-Gaston-Berger", "type": "youthmappers", + "includeLocations": ["universit-gaston-berger.geojson"], + "countryCodes": ["sn"], "name": "YouthMappers at UGB", "description": "YouthMappers chapter at Université Gaston Berger", - "id": "ym-Universit-Gaston-Berger", - "featureId": "universit-gaston-berger", - "contacts": [{"name": "Organizer", "email": "youthmappers.ugb@gmail.com"}], "extendedDescription": "YouthMappers UGB is made up of young students and researchers who are passionate about mapping. Our aim is to improve students' skills in the field of cartography and to participate in the creation of open geographic data that responds to development challenges around the world and particularly in Africa.", - "countryCodes": ["sn"], - "url": "https://web.facebook.com/youthmappersugb/" + "url": "https://web.facebook.com/youthmappersugb/", + "contacts": [{"name": "Organizer", "email": "youthmappers.ugb@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/sierra_leone/ym-Fourah-Bay-College.json b/resources/africa/sierra_leone/ym-Fourah-Bay-College.json index ae34abc0d..aeb7ba810 100644 --- a/resources/africa/sierra_leone/ym-Fourah-Bay-College.json +++ b/resources/africa/sierra_leone/ym-Fourah-Bay-College.json @@ -1,11 +1,11 @@ { + "id": "ym-Fourah-Bay-College", "type": "youthmappers", + "includeLocations": ["fourah-bay-college.geojson"], + "countryCodes": ["sl"], "name": "Student's Geographical Association", "description": "YouthMappers chapter at Fourah Bay College", - "id": "ym-Fourah-Bay-College", - "featureId": "fourah-bay-college", - "contacts": [{"name": "Organizer", "email": "sgayouthmappers@gmail.com"}], "extendedDescription": "The Student's Geographical Association- YouthMappers is an association of Fourah Bay College Students with the common goals of mapping out vulnerable places in Sierra Leone and the world at large for relief and other beneficial purposes,carry out Research and other educative endeavors. The chapter consists of young people with great ideas, development oriented with the capacity to relate with each other, comprehend and implement sustainable developmental projects as a team.", - "countryCodes": ["sl"], - "url": "mailto:sgayouthmappers@gmail.com?subject=YouthMappers%20at%20Fourah%20Bay%20College" + "url": "mailto:sgayouthmappers@gmail.com?subject=YouthMappers%20at%20Fourah%20Bay%20College", + "contacts": [{"name": "Organizer", "email": "sgayouthmappers@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/sierra_leone/ym-Njala-University-Freetown-Campus.json b/resources/africa/sierra_leone/ym-Njala-University-Freetown-Campus.json index 9db1431cd..275db5494 100644 --- a/resources/africa/sierra_leone/ym-Njala-University-Freetown-Campus.json +++ b/resources/africa/sierra_leone/ym-Njala-University-Freetown-Campus.json @@ -1,11 +1,11 @@ { + "id": "ym-Njala-University-Freetown-Campus", "type": "youthmappers", + "includeLocations": ["njala-university-freetown-campus.geojson"], + "countryCodes": ["sl"], "name": "Njala Freetown YouthMappers", "description": "YouthMappers chapter at Njala University, Freetown Campus", - "id": "ym-Njala-University-Freetown-Campus", - "featureId": "njala-university-freetown-campus", - "contacts": [{"name": "Organizer", "email": "njalafreetownmappers@gmail.com"}], "extendedDescription": "We are students of Njala University Freetown Campus, studying Information Technology under the department of Physics and Computer Science. and we are located at Henry Street Freetown, Sierra Leone.", - "countryCodes": ["sl"], - "url": "mailto:Njalafreetownmappers@gmail.com" + "url": "mailto:Njalafreetownmappers@gmail.com", + "contacts": [{"name": "Organizer", "email": "njalafreetownmappers@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/sierra_leone/ym-Njala-University-Njala-Campus.json b/resources/africa/sierra_leone/ym-Njala-University-Njala-Campus.json index cf1642f2b..218caa15d 100644 --- a/resources/africa/sierra_leone/ym-Njala-University-Njala-Campus.json +++ b/resources/africa/sierra_leone/ym-Njala-University-Njala-Campus.json @@ -1,10 +1,10 @@ { + "id": "ym-Njala-University-Njala-Campus", "type": "youthmappers", + "includeLocations": ["njala-university-njala-campus.geojson"], + "countryCodes": ["sl"], "name": "YouthMappers Njala University, Njala Campus", "description": "YouthMappers chapter at Njala University, Njala Campus", - "id": "ym-Njala-University-Njala-Campus", - "featureId": "njala-university-njala-campus", - "contacts": [{"name": "Organizer", "email": "youthmappersnu2017@gmail.com"}], - "countryCodes": ["sl"], - "url": "mailto:youthmappersnu2017@gmail.com" + "url": "mailto:youthmappersnu2017@gmail.com", + "contacts": [{"name": "Organizer", "email": "youthmappersnu2017@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/south_africa/ym-University-of-Pretoria.json b/resources/africa/south_africa/ym-University-of-Pretoria.json index c758ba952..250a272b5 100644 --- a/resources/africa/south_africa/ym-University-of-Pretoria.json +++ b/resources/africa/south_africa/ym-University-of-Pretoria.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Pretoria", "type": "youthmappers", + "includeLocations": ["university-of-pretoria.geojson"], + "countryCodes": ["za"], "name": "Centre for Geoinformation Science", "description": "YouthMappers chapter at University of Pretoria", - "id": "ym-University-of-Pretoria", - "featureId": "university-of-pretoria", - "contacts": [{"name": "Organizer", "email": "cgis-info@kendy.up.ac.za"}], "extendedDescription": "The students who map Pretoria are supported by the University of Pretoria's Centre for Geoinformation Science, a platform from where the excellence of UP individuals and teams involved in geographic information science (GISc) research, education and training, professional development and community engagement is encouraged and strengthened through collaborations, education and training and alliances within South Africa and abroad.", - "countryCodes": ["za"], - "url": "http://www.up.ac.za/cgis" + "url": "http://www.up.ac.za/cgis", + "contacts": [{"name": "Organizer", "email": "cgis-info@kendy.up.ac.za"}] } \ No newline at end of file diff --git a/resources/africa/tanzania/ym-Ardhi-University.json b/resources/africa/tanzania/ym-Ardhi-University.json index 840a56e48..4a1e55c49 100644 --- a/resources/africa/tanzania/ym-Ardhi-University.json +++ b/resources/africa/tanzania/ym-Ardhi-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Ardhi-University", "type": "youthmappers", + "includeLocations": ["ardhi-university.geojson"], + "countryCodes": ["tz"], "name": "ARU Mapper", "description": "YouthMappers chapter at Ardhi University", - "id": "ym-Ardhi-University", - "featureId": "ardhi-university", - "contacts": [{"name": "Organizer", "email": "bayonakennedy@gmail.com"}], "extendedDescription": "As upcoming geospatial data consultants we seek to educate and provide advice to the society on how they can use spatial data not only as a form of location but a tool of decision making and predict different hazardous and climatical changes which may harm them or future genarations.", - "countryCodes": ["tz"], - "url": "mailto:bayonakennedy@gmail.com" + "url": "mailto:bayonakennedy@gmail.com", + "contacts": [{"name": "Organizer", "email": "bayonakennedy@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/tanzania/ym-Institute-of-Finance-Management.json b/resources/africa/tanzania/ym-Institute-of-Finance-Management.json index 21451aa07..ddaeb8994 100644 --- a/resources/africa/tanzania/ym-Institute-of-Finance-Management.json +++ b/resources/africa/tanzania/ym-Institute-of-Finance-Management.json @@ -1,11 +1,11 @@ { + "id": "ym-Institute-of-Finance-Management", "type": "youthmappers", + "includeLocations": ["institute-of-finance-management.geojson"], + "countryCodes": ["tz"], "name": "IFM mappers", "description": "YouthMappers chapter at Institute of Finance Management", - "id": "ym-Institute-of-Finance-Management", - "featureId": "institute-of-finance-management", - "contacts": [{"name": "Organizer", "email": "supermalik95@gmail.com"}], "extendedDescription": "This is a new chapter at out institute and we are looking forward to use our financial education that we are receiving here at the campus and link ig with the environment in order to develop our sustainable environment towards helping the community with the effects of our environment in a financial ways by converting them into numbers. this is widely explained in ecosystem accounting and environmental accounts", - "countryCodes": ["tz"], - "url": "mailto:supermalik95@gmail.com" + "url": "mailto:supermalik95@gmail.com", + "contacts": [{"name": "Organizer", "email": "supermalik95@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning-Mwanza.json b/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning-Mwanza.json index 0352fa63b..c2be9a151 100644 --- a/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning-Mwanza.json +++ b/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning-Mwanza.json @@ -1,10 +1,10 @@ { + "id": "ym-Institute-of-Rural-Development-Planning-Mwanza", "type": "youthmappers", + "includeLocations": ["institute-of-rural-development-planning-mwanza.geojson"], + "countryCodes": ["tz"], "name": "Youth Mappers Chapter at Institute of Rural Development Planning - Lake Zone Centre", "description": "YouthMappers chapter at Institute of Rural Development Planning Mwanza", - "id": "ym-Institute-of-Rural-Development-Planning-Mwanza", - "featureId": "institute-of-rural-development-planning-mwanza", - "contacts": [{"name": "Organizer", "email": "shabanimagawila@gmail.com"}], - "countryCodes": ["tz"], - "url": "www.facebook.com/IYMLZC/" + "url": "www.facebook.com/IYMLZC/", + "contacts": [{"name": "Organizer", "email": "shabanimagawila@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning.json b/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning.json index 1fc82b063..6bc07d484 100644 --- a/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning.json +++ b/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning.json @@ -1,11 +1,11 @@ { + "id": "ym-Institute-of-Rural-Development-Planning", "type": "youthmappers", + "includeLocations": ["institute-of-rural-development-planning.geojson"], + "countryCodes": ["tz"], "name": "Mipango YouthMappers Chapter", "description": "YouthMappers chapter at Institute of Rural Development Planning", - "id": "ym-Institute-of-Rural-Development-Planning", - "featureId": "institute-of-rural-development-planning", - "contacts": [{"name": "Organizer", "email": "msmapperschapter@gmail.com"}], "extendedDescription": "Mipango YouthMappers Chapter was introduced at IRDP on 3rd July, 2017 by Dr.Domitilla Bashemera. The founding members were 300 (190 males and 110 female) Bachelor Degree students, who were registered as members of the Chapter. Gerald Zacharia is the president of the chapter and Juster Lugira is Vice President.", - "countryCodes": ["tz"], - "url": "mailto:msmapperschapter@gmail.com" + "url": "mailto:msmapperschapter@gmail.com", + "contacts": [{"name": "Organizer", "email": "msmapperschapter@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/tanzania/ym-Open-University-of-Tanzania.json b/resources/africa/tanzania/ym-Open-University-of-Tanzania.json index 41d9e03a5..5a23451bf 100644 --- a/resources/africa/tanzania/ym-Open-University-of-Tanzania.json +++ b/resources/africa/tanzania/ym-Open-University-of-Tanzania.json @@ -1,11 +1,11 @@ { + "id": "ym-Open-University-of-Tanzania", "type": "youthmappers", + "includeLocations": ["open-university-of-tanzania.geojson"], + "countryCodes": ["tz"], "name": "Youth Mappers at Open University of Tanzania", "description": "YouthMappers chapter at Open University of Tanzania", - "id": "ym-Open-University-of-Tanzania", - "featureId": "open-university-of-tanzania", - "contacts": [{"name": "Organizer", "email": "youthmapout@gmail.com"}], "extendedDescription": "Youth Mappers at Open University of Tanzania\n\nHad been founded by members and students of Open University of Tanzania in Department of Geography who are mainly need to improve their career and help young community through joint and partnership projects with local community groups such as Mikoko Scout Group (www.msg.or.tz) and start cooperation with international colleges and universities for exchange programs in relation to Geography Studies as some programs prepared by Mikoko Scout Group which will link local university and other universities of the same interest through International Nature & Environmental Youth Camp 2019 (www.campsite.msg.or.tz/nature.html )\n\nOur chapter will soon be recognized as youth network program that will open opportunity for students to study and conduct research studies at a local levels.", - "countryCodes": ["tz"], - "url": "mailto:youthmapout@gmail.com" + "url": "mailto:youthmapout@gmail.com", + "contacts": [{"name": "Organizer", "email": "youthmapout@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/tanzania/ym-Sokoine-University-of-Agriculture.json b/resources/africa/tanzania/ym-Sokoine-University-of-Agriculture.json index 17842be48..0be436937 100644 --- a/resources/africa/tanzania/ym-Sokoine-University-of-Agriculture.json +++ b/resources/africa/tanzania/ym-Sokoine-University-of-Agriculture.json @@ -1,11 +1,11 @@ { + "id": "ym-Sokoine-University-of-Agriculture", "type": "youthmappers", + "includeLocations": ["sokoine-university-of-agriculture.geojson"], + "countryCodes": ["tz"], "name": "SMCoSE YouthMappers", "description": "YouthMappers chapter at Sokoine University of Agriculture", - "id": "ym-Sokoine-University-of-Agriculture", - "featureId": "sokoine-university-of-agriculture", - "contacts": [{"name": "Organizer", "email": "smcoseyouthmappers@gmail.com"}], "extendedDescription": "A Chapter comprising of Environmental sciences and management students and Geography studies under the dept. of Geography and we will be using mapping techniques, based on systems concepts and theories, can be used to facilitate, explore, and capture the different understandings of the relationships, perspectives, and boundaries involved in environmental sustainability to obtain a more complete comprehension of the concept and develop plans for action.", - "countryCodes": ["tz"], - "url": "mailto:SMCoSEyouthmappers@gmail.com" + "url": "mailto:SMCoSEyouthmappers@gmail.com", + "contacts": [{"name": "Organizer", "email": "smcoseyouthmappers@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/tanzania/ym-University-of-Dar-es-Salaam.json b/resources/africa/tanzania/ym-University-of-Dar-es-Salaam.json index fbeb5a81a..b5d2ccba2 100644 --- a/resources/africa/tanzania/ym-University-of-Dar-es-Salaam.json +++ b/resources/africa/tanzania/ym-University-of-Dar-es-Salaam.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Dar-es-Salaam", "type": "youthmappers", + "includeLocations": ["university-of-dar-es-salaam.geojson"], + "countryCodes": ["tz"], "name": "YouthMappers at University of Dar es Salaam", "description": "YouthMappers chapter at University of Dar es Salaam", - "id": "ym-University-of-Dar-es-Salaam", - "featureId": "university-of-dar-es-salaam", - "contacts": [{"name": "Organizer", "email": "godluckur@gmail.com"}], "extendedDescription": "The purpose of the University of Dar es Salaam YouthMappers is to use and promote open source data and GIS technologies to map potential disaster areas, provide resources for emergency management, connect its members with open source and GIS organizations in the city of Dar es Salaam, and serve any upcoming needs of our project partners .", - "countryCodes": ["tz"], - "url": "https://www.facebook.com/UDSMYouthMappers/" + "url": "https://www.facebook.com/UDSMYouthMappers/", + "contacts": [{"name": "Organizer", "email": "godluckur@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/uganda/ym-Busitema-University.json b/resources/africa/uganda/ym-Busitema-University.json index e760e0bfa..20e6dbace 100644 --- a/resources/africa/uganda/ym-Busitema-University.json +++ b/resources/africa/uganda/ym-Busitema-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Busitema-University", "type": "youthmappers", + "includeLocations": ["busitema-university.geojson"], + "countryCodes": ["ug"], "name": "Good Mappers", "description": "YouthMappers chapter at Busitema University", - "id": "ym-Busitema-University", - "featureId": "busitema-university", - "contacts": [{"name": "Organizer", "email": "mulindwasteven82@gmail.com"}], "extendedDescription": "Good mappers is a team of students in Busitema University. Its main objective is to create a community of experienced mappers who can contribute to the world map.", - "countryCodes": ["ug"], - "url": "https://m.facebook.com/HOTBusitemaUniv/" + "url": "https://m.facebook.com/HOTBusitemaUniv/", + "contacts": [{"name": "Organizer", "email": "mulindwasteven82@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/uganda/ym-Gulu-University.json b/resources/africa/uganda/ym-Gulu-University.json index cf6cecd98..978627625 100644 --- a/resources/africa/uganda/ym-Gulu-University.json +++ b/resources/africa/uganda/ym-Gulu-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Gulu-University", "type": "youthmappers", + "includeLocations": ["gulu-university.geojson"], + "countryCodes": ["ug"], "name": "CSGU Mappers", "description": "YouthMappers chapter at Gulu University", - "id": "ym-Gulu-University", - "featureId": "gulu-university", - "contacts": [{"name": "Organizer", "email": "git445@gmail.com"}], "extendedDescription": "The CSGU Mappers are the Computing Society at Gulu University. This chapter is creative, passionate, innovative and ready to map Uganda and the world at large, beyond other people's imagination.", - "countryCodes": ["ug"], - "url": "mailto:git445@gmail.com?subject=YouthMappers%20at%20Gulu%20University" + "url": "mailto:git445@gmail.com?subject=YouthMappers%20at%20Gulu%20University", + "contacts": [{"name": "Organizer", "email": "git445@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/uganda/ym-Kumi-University.json b/resources/africa/uganda/ym-Kumi-University.json index dbe322550..64518849f 100644 --- a/resources/africa/uganda/ym-Kumi-University.json +++ b/resources/africa/uganda/ym-Kumi-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Kumi-University", "type": "youthmappers", + "includeLocations": ["kumi-university.geojson"], + "countryCodes": ["ug"], "name": "Ever Last YouthMappers", "description": "YouthMappers chapter at Kumi University", - "id": "ym-Kumi-University", - "featureId": "kumi-university", - "contacts": [{"name": "Organizer", "email": "kumiuniversityeverlastyouthmap@gmail.com"}], "extendedDescription": "This energetic group of students organizes within the faculty of Science and Information Technology.", - "countryCodes": ["ug"], - "url": "mailto:kumiuniversityeverlastyouthmap@gmail.com?subject=YouthMappers%20at%20Kumi%20University" + "url": "mailto:kumiuniversityeverlastyouthmap@gmail.com?subject=YouthMappers%20at%20Kumi%20University", + "contacts": [{"name": "Organizer", "email": "kumiuniversityeverlastyouthmap@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/uganda/ym-Makerere-University.json b/resources/africa/uganda/ym-Makerere-University.json index b1653d3b2..72bd2941f 100644 --- a/resources/africa/uganda/ym-Makerere-University.json +++ b/resources/africa/uganda/ym-Makerere-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Makerere-University", "type": "youthmappers", + "includeLocations": ["makerere-university.geojson"], + "countryCodes": ["ug"], "name": "Geo YouthMappers", "description": "YouthMappers chapter at Makerere University", - "id": "ym-Makerere-University", - "featureId": "makerere-university", - "contacts": [{"name": "Organizer", "email": "geo-youthmappers@googlegroups.com"}], "extendedDescription": "Geo YouthMappers is a Makerere University based mapping chapter esteemed to apply the spatial conception to the real world.We have collaborated on various mapping events with OSM. Our main aim is the desire to simplify data and make it readily available mostly for disaster preparedness.\"We map the world and change lives.", - "countryCodes": ["ug"], - "url": "https://www.facebook.com/groups/1742657446017065/" + "url": "https://www.facebook.com/groups/1742657446017065/", + "contacts": [{"name": "Organizer", "email": "geo-youthmappers@googlegroups.com"}] } \ No newline at end of file diff --git a/resources/africa/uganda/ym-Mbarara-University-of-Science-and-Technology.json b/resources/africa/uganda/ym-Mbarara-University-of-Science-and-Technology.json index 07413f759..63bea0682 100644 --- a/resources/africa/uganda/ym-Mbarara-University-of-Science-and-Technology.json +++ b/resources/africa/uganda/ym-Mbarara-University-of-Science-and-Technology.json @@ -1,11 +1,11 @@ { + "id": "ym-Mbarara-University-of-Science-and-Technology", "type": "youthmappers", + "includeLocations": ["mbarara-university-of-science-and-technology.geojson"], + "countryCodes": ["ug"], "name": "MUST Street Mappers", "description": "YouthMappers chapter at Mbarara University of Science and Technology", - "id": "ym-Mbarara-University-of-Science-and-Technology", - "featureId": "mbarara-university-of-science-and-technology", - "contacts": [{"name": "Organizer", "email": "muststreetmappers@gmail.com"}], "extendedDescription": "MUST Street Mappers is a Youth Mappers chapter at the Mbarara University of Science and Technology that is based on making our country and the world at large a better place through mapping. We base on collected information to notice patterns and data mine to present relevant and beneficial information to society.", - "countryCodes": ["ug"], - "url": "https://web.facebook.com/muststreetmappers/" + "url": "https://web.facebook.com/muststreetmappers/", + "contacts": [{"name": "Organizer", "email": "muststreetmappers@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/uganda/ym-St.-Augustine-International-University.json b/resources/africa/uganda/ym-St.-Augustine-International-University.json index 93b5791d3..acbd94694 100644 --- a/resources/africa/uganda/ym-St.-Augustine-International-University.json +++ b/resources/africa/uganda/ym-St.-Augustine-International-University.json @@ -1,10 +1,10 @@ { + "id": "ym-St.-Augustine-International-University", "type": "youthmappers", + "includeLocations": ["st.-augustine-international-university.geojson"], + "countryCodes": ["ng"], "name": "YouthMappers at St Augustine International University", "description": "YouthMappers chapter at St. Augustine International University", - "id": "ym-St.-Augustine-International-University", - "featureId": "st.-augustine-international-university", - "contacts": [{"name": "Organizer", "email": "youthmapperssaiu@gmail.com"}], - "countryCodes": ["ng"], - "url": "mailto:youthmapperssaiu@gmail.com" + "url": "mailto:youthmapperssaiu@gmail.com", + "contacts": [{"name": "Organizer", "email": "youthmapperssaiu@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/uganda/ym-Uganda-Christian-University-Mbale-Campus.json b/resources/africa/uganda/ym-Uganda-Christian-University-Mbale-Campus.json index 0706a6edc..f1c1e4013 100644 --- a/resources/africa/uganda/ym-Uganda-Christian-University-Mbale-Campus.json +++ b/resources/africa/uganda/ym-Uganda-Christian-University-Mbale-Campus.json @@ -1,11 +1,11 @@ { + "id": "ym-Uganda-Christian-University-Mbale-Campus", "type": "youthmappers", + "includeLocations": ["uganda-christian-university-mbale-campus.geojson"], + "countryCodes": ["ug"], "name": "Mappers for Life", "description": "YouthMappers chapter at Uganda Christian University Mbale Campus", - "id": "ym-Uganda-Christian-University-Mbale-Campus", - "featureId": "uganda-christian-university-mbale-campus", - "contacts": [{"name": "Organizer", "email": "munhilll@gmail.com"}], "extendedDescription": "We are Team Mappers for life! Please come and join us as we map together!\" This group works from the Department of Information Technology at the UCU.", - "countryCodes": ["ug"], - "url": "mailto:munhilll@gmail.com?subject=YouthMappers%20and%20the%20Uganda%20Christian%20University%20Mappers%20for%20Life" + "url": "mailto:munhilll@gmail.com?subject=YouthMappers%20and%20the%20Uganda%20Christian%20University%20Mappers%20for%20Life", + "contacts": [{"name": "Organizer", "email": "munhilll@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/uganda/ym-Uganda-Pentecostal-University.json b/resources/africa/uganda/ym-Uganda-Pentecostal-University.json index d949eb302..bee0a33f7 100644 --- a/resources/africa/uganda/ym-Uganda-Pentecostal-University.json +++ b/resources/africa/uganda/ym-Uganda-Pentecostal-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Uganda-Pentecostal-University", "type": "youthmappers", + "includeLocations": ["uganda-pentecostal-university.geojson"], + "countryCodes": ["ug"], "name": "HiTech Youth Mappers", "description": "YouthMappers chapter at Uganda Pentecostal University", - "id": "ym-Uganda-Pentecostal-University", - "featureId": "uganda-pentecostal-university", - "contacts": [{"name": "Organizer", "email": "hitechyouthmappers@gmail.com"}], "extendedDescription": "A new Youthmappers Chapter in Western Uganda. Ready to map and provide open data with OpenStreetMap for development purposes.", - "countryCodes": ["ug"], - "url": "mailto:hitechyouthmappers@gmail.com" + "url": "mailto:hitechyouthmappers@gmail.com", + "contacts": [{"name": "Organizer", "email": "hitechyouthmappers@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/zambia/ym-St.-Mawaggali-Trades-Training-Institute.json b/resources/africa/zambia/ym-St.-Mawaggali-Trades-Training-Institute.json index e446330f0..da4e71b8a 100644 --- a/resources/africa/zambia/ym-St.-Mawaggali-Trades-Training-Institute.json +++ b/resources/africa/zambia/ym-St.-Mawaggali-Trades-Training-Institute.json @@ -1,11 +1,11 @@ { + "id": "ym-St.-Mawaggali-Trades-Training-Institute", "type": "youthmappers", + "includeLocations": ["st.-mawaggali-trades-training-institute.geojson"], + "countryCodes": ["zm"], "name": "MawaggaliMappers", "description": "YouthMappers chapter at St. Mawaggali Trades Training Institute", - "id": "ym-St.-Mawaggali-Trades-Training-Institute", - "featureId": "st.-mawaggali-trades-training-institute", - "contacts": [{"name": "Organizer", "email": "mawaggalimappers@gmail.com"}], "extendedDescription": "We are the youthappers chapter at St. Mawaggali trades in choma who are want to contribute the different humantarian tasks to serve lives through mapping.", - "countryCodes": ["zm"], - "url": "mailto:mawaggalimappers@gmail.com" + "url": "mailto:mawaggalimappers@gmail.com", + "contacts": [{"name": "Organizer", "email": "mawaggalimappers@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/zambia/ym-The-University-of-Zambia.json b/resources/africa/zambia/ym-The-University-of-Zambia.json index 949f9a202..81d2cb85f 100644 --- a/resources/africa/zambia/ym-The-University-of-Zambia.json +++ b/resources/africa/zambia/ym-The-University-of-Zambia.json @@ -1,10 +1,10 @@ { + "id": "ym-The-University-of-Zambia", "type": "youthmappers", + "includeLocations": ["the-university-of-zambia.geojson"], + "countryCodes": ["zm"], "name": "YouthMappers Unza", "description": "YouthMappers chapter at The University of Zambia", - "id": "ym-The-University-of-Zambia", - "featureId": "the-university-of-zambia", - "contacts": [{"name": "Organizer", "email": "chombachishala13@gmail.com"}], - "countryCodes": ["zm"], - "url": "https://www.facebook.com/search/posts/?q=youth%20mappers%20unza" + "url": "https://www.facebook.com/search/posts/?q=youth%20mappers%20unza", + "contacts": [{"name": "Organizer", "email": "chombachishala13@gmail.com"}] } \ No newline at end of file diff --git a/resources/africa/zimbabwe/ym-University-of-Zimbabwe.json b/resources/africa/zimbabwe/ym-University-of-Zimbabwe.json index cf95a647b..b0d6b0e27 100644 --- a/resources/africa/zimbabwe/ym-University-of-Zimbabwe.json +++ b/resources/africa/zimbabwe/ym-University-of-Zimbabwe.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Zimbabwe", "type": "youthmappers", + "includeLocations": ["university-of-zimbabwe.geojson"], + "countryCodes": ["zw"], "name": "UZMappers", "description": "YouthMappers chapter at University of Zimbabwe", - "id": "ym-University-of-Zimbabwe", - "featureId": "university-of-zimbabwe", - "contacts": [{"name": "Organizer", "email": "uzmappersteam@gmail.com"}], "extendedDescription": "UzMappersTeam Zimbabwe is a team of Volunteers using OpenStreetMap for Open Data Mapping and Humanitarian Disaster response mapping .The team empowers its members with open source geospatial technology skills.", - "countryCodes": ["zw"], - "url": "https://www.facebook.com/Uzmappersteam-Zimbabwe-246038666256392/" + "url": "https://www.facebook.com/Uzmappersteam-Zimbabwe-246038666256392/", + "contacts": [{"name": "Organizer", "email": "uzmappersteam@gmail.com"}] } \ No newline at end of file diff --git a/resources/asia/afghanistan/osm-afghanistan-facebook.json b/resources/asia/afghanistan/osm-afghanistan-facebook.json index 05d35938a..568b055b8 100644 --- a/resources/asia/afghanistan/osm-afghanistan-facebook.json +++ b/resources/asia/afghanistan/osm-afghanistan-facebook.json @@ -1,12 +1,12 @@ { "id": "osm-afghanistan-facebook", - "featureId": "afghanistan", "type": "facebook", + "includeLocations": ["afghanistan.geojson"], + "countryCodes": ["af"], + "languageCodes": ["en", "fa", "ps"], "name": "OpenStreetMap Afghanistan", "description": "Improve OpenStreetMap in Afghanistan", "url": "https://www.facebook.com/groups/321292812113316/", - "countryCodes": ["af"], - "languageCodes": ["en", "ps", "fa"], "contacts": [{"name": "Walker Kosmidou-Bradley", "email": "walker.t.bradley@gmail.com"}], "order": 3 } \ No newline at end of file diff --git a/resources/asia/bangladesh/osm-bangladesh-facebook.json b/resources/asia/bangladesh/osm-bangladesh-facebook.json index 42609b650..0dd3b7755 100644 --- a/resources/asia/bangladesh/osm-bangladesh-facebook.json +++ b/resources/asia/bangladesh/osm-bangladesh-facebook.json @@ -1,12 +1,13 @@ { "id": "OSM-BGD-facebook", - "featureId": "bangladesh", "type": "facebook", + "includeLocations": ["bangladesh.geojson"], "name": "OpenStreetMap Bangladesh", "description": "Improve OpenStreetMap in Bangladesh", "extendedDescription": "Mapping in Bangladesh? Have questions, want to connect with the community here? Join us at {url}. All are welcome!", "url": "https://www.facebook.com/groups/osmbd/", "contacts": [{"name": "Ahasanul Hoque", "email": "hoque.ahasan@gmail.com"}], + "order": 3, "events": [ { "id": "sotmasia2019", @@ -17,6 +18,5 @@ "when": "2019-11-01", "url": "http://stateofthemap.asia/" } - ], - "order": 3 + ] } \ No newline at end of file diff --git a/resources/asia/bangladesh/ym-Asian-University-for-Women.json b/resources/asia/bangladesh/ym-Asian-University-for-Women.json index 138a9a079..69806809d 100644 --- a/resources/asia/bangladesh/ym-Asian-University-for-Women.json +++ b/resources/asia/bangladesh/ym-Asian-University-for-Women.json @@ -1,11 +1,11 @@ { + "id": "ym-Asian-University-for-Women", "type": "youthmappers", + "includeLocations": ["asian-university-for-women.geojson"], + "countryCodes": ["bd"], "name": "YouthMappers at AUW", "description": "YouthMappers chapter at Asian University for Women", - "id": "ym-Asian-University-for-Women", - "featureId": "asian-university-for-women", - "contacts": [{"name": "Organizer", "email": "harunur.rashid@auw.edu.bd"}], "extendedDescription": "The Asian University for Women seeks to graduate women who will be skilled and innovative professionals, service-oriented leaders in the businesses and communities in which they will work and live, and promoters of intercultural understanding and sustainable human and economic development in Asia and throughout the world.", - "countryCodes": ["bd"], - "url": "http://www.auw.edu.bd/" + "url": "http://www.auw.edu.bd/", + "contacts": [{"name": "Organizer", "email": "harunur.rashid@auw.edu.bd"}] } \ No newline at end of file diff --git a/resources/asia/bangladesh/ym-Dhaka-College.json b/resources/asia/bangladesh/ym-Dhaka-College.json index 071ebd526..23a468e0e 100644 --- a/resources/asia/bangladesh/ym-Dhaka-College.json +++ b/resources/asia/bangladesh/ym-Dhaka-College.json @@ -1,11 +1,11 @@ { + "id": "ym-Dhaka-College", "type": "youthmappers", + "includeLocations": ["dhaka-college.geojson"], + "countryCodes": ["bd"], "name": "YouthMappers Daka College", "description": "YouthMappers chapter at Dhaka College", - "id": "ym-Dhaka-College", - "featureId": "dhaka-college", - "contacts": [{"name": "Organizer", "email": "youthmappersdc@gmail.com"}], "extendedDescription": "YouthMappers DhakaCollege is an approach by students to help mapping vulnerable areas of the world as a part of Humanitarian Action. YouthMappers  gives the opportunity to the students for helping people and using mapping for humanitarian purposes. This open geographic data can be used for educational, navigational and other humanitarian purposes. Happy mapping.", - "countryCodes": ["bd"], - "url": "https://www.facebook.com/groups/321220498214124/" + "url": "https://www.facebook.com/groups/321220498214124/", + "contacts": [{"name": "Organizer", "email": "youthmappersdc@gmail.com"}] } \ No newline at end of file diff --git a/resources/asia/bangladesh/ym-Dhaka-University.json b/resources/asia/bangladesh/ym-Dhaka-University.json index 9065d2e3c..2cad5eb53 100644 --- a/resources/asia/bangladesh/ym-Dhaka-University.json +++ b/resources/asia/bangladesh/ym-Dhaka-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Dhaka-University", "type": "youthmappers", + "includeLocations": ["dhaka-university.geojson"], + "countryCodes": ["bd"], "name": "Openstreetmap YouthMappers", "description": "YouthMappers chapter at Dhaka University", - "id": "ym-Dhaka-University", - "featureId": "dhaka-university", - "contacts": [{"name": "Organizer", "email": "hoque.ahasan@gmail.com"}], "extendedDescription": "It's a great privilege for the students of University of Dhaka to map for humanitarian purposes. Our chapter gives the opportunity to the students for helping people and use mapping for humanitarian purposes.", - "countryCodes": ["bd"], - "url": "https://www.facebook.com/groups/osmDU/1773150346233538/?notif_t=group_activity¬if_id=1472953820177890" + "url": "https://www.facebook.com/groups/osmDU/1773150346233538/?notif_t=group_activity¬if_id=1472953820177890", + "contacts": [{"name": "Organizer", "email": "hoque.ahasan@gmail.com"}] } \ No newline at end of file diff --git a/resources/asia/bangladesh/ym-Eastern-University.json b/resources/asia/bangladesh/ym-Eastern-University.json index 72289c29f..09f15b6f2 100644 --- a/resources/asia/bangladesh/ym-Eastern-University.json +++ b/resources/asia/bangladesh/ym-Eastern-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Eastern-University", "type": "youthmappers", + "includeLocations": ["eastern-university.geojson"], + "countryCodes": ["bd"], "name": "YouthMappers at Eastern University", "description": "YouthMappers chapter at Eastern University", - "id": "ym-Eastern-University", - "featureId": "eastern-university", - "contacts": [{"name": "Organizer", "email": "infolimon@gmail.com"}], "extendedDescription": "YouthMappers at Eastern University, Bangladesh has been formed with a view to assisting people during humanitarian crisis. The students, likewise other mappers of the world, are promised to assist people in using the map for educational, navigational and other humanitarian purposes.", - "countryCodes": ["bd"], - "url": "mailto:infolimon@gmail.com" + "url": "mailto:infolimon@gmail.com", + "contacts": [{"name": "Organizer", "email": "infolimon@gmail.com"}] } \ No newline at end of file diff --git a/resources/asia/bangladesh/ym-Jahangirnagar-University.json b/resources/asia/bangladesh/ym-Jahangirnagar-University.json index 41528e551..761d0ec2e 100644 --- a/resources/asia/bangladesh/ym-Jahangirnagar-University.json +++ b/resources/asia/bangladesh/ym-Jahangirnagar-University.json @@ -1,10 +1,10 @@ { + "id": "ym-Jahangirnagar-University", "type": "youthmappers", + "includeLocations": ["jahangirnagar-university.geojson"], + "countryCodes": ["bd"], "name": "YouthMappers at IRS, Jahangirnagar University", "description": "YouthMappers chapter at Jahangirnagar University", - "id": "ym-Jahangirnagar-University", - "featureId": "jahangirnagar-university", - "contacts": [{"name": "Organizer", "email": "s.t.islam@juniv.edu"}], - "countryCodes": ["bd"], - "url": "mailto:s.t.islam@juniv.edu" + "url": "mailto:s.t.islam@juniv.edu", + "contacts": [{"name": "Organizer", "email": "s.t.islam@juniv.edu"}] } \ No newline at end of file diff --git a/resources/asia/bangladesh/ym-Khulna-University.json b/resources/asia/bangladesh/ym-Khulna-University.json index 36a9d9825..c82d031dc 100644 --- a/resources/asia/bangladesh/ym-Khulna-University.json +++ b/resources/asia/bangladesh/ym-Khulna-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Khulna-University", "type": "youthmappers", + "includeLocations": ["khulna-university.geojson"], + "countryCodes": ["bd"], "name": "Khulna University YouthMappers", "description": "YouthMappers chapter at Khulna University", - "id": "ym-Khulna-University", - "featureId": "khulna-university", - "contacts": [{"name": "Organizer", "email": "hoque.ahasan@gmail.com"}], "extendedDescription": "KU students and faculty from multiple disciplines are experienced at creating open data for OSM to address local challenges of development, including food security and other topics.", - "countryCodes": ["bd"], - "url": "https://www.facebook.com/groups/osmku/" + "url": "https://www.facebook.com/groups/osmku/", + "contacts": [{"name": "Organizer", "email": "hoque.ahasan@gmail.com"}] } \ No newline at end of file diff --git a/resources/asia/bangladesh/ym-Rajshahi-University-of-Engineering-Technology.json b/resources/asia/bangladesh/ym-Rajshahi-University-of-Engineering-Technology.json index 71c1f726b..602eb20d0 100644 --- a/resources/asia/bangladesh/ym-Rajshahi-University-of-Engineering-Technology.json +++ b/resources/asia/bangladesh/ym-Rajshahi-University-of-Engineering-Technology.json @@ -1,11 +1,11 @@ { + "id": "ym-Rajshahi-University-of-Engineering-Technology", "type": "youthmappers", + "includeLocations": ["rajshahi-university-of-engineering-technology.geojson"], + "countryCodes": ["bd"], "name": "YouthMappers at RUET", "description": "YouthMappers chapter at Rajshahi University of Engineering & Technology", - "id": "ym-Rajshahi-University-of-Engineering-Technology", - "featureId": "rajshahi-university-of-engineering-technology", - "contacts": [{"name": "Organizer", "email": "ruetmappers@gmail.com"}], "extendedDescription": "The \"YouthMappers at RUET\" is a humanitarian mapping group of students of Rajshahi University of Engineering & Technology (RUET) to share, develop and practice the knowledge of GIS. This group encourages using open source geospatial data and platform to make solution to reach the most vulnerable group of the world.", - "countryCodes": ["bd"], - "url": "mailto:ruetmappers@gmail.com" + "url": "mailto:ruetmappers@gmail.com", + "contacts": [{"name": "Organizer", "email": "ruetmappers@gmail.com"}] } \ No newline at end of file diff --git a/resources/asia/bhutan/ym-Sherubtse-College.json b/resources/asia/bhutan/ym-Sherubtse-College.json index fea602e99..b11849746 100644 --- a/resources/asia/bhutan/ym-Sherubtse-College.json +++ b/resources/asia/bhutan/ym-Sherubtse-College.json @@ -1,11 +1,11 @@ { + "id": "ym-Sherubtse-College", "type": "youthmappers", + "includeLocations": ["sherubtse-college.geojson"], + "countryCodes": ["bt"], "name": "Geographical Society", "description": "YouthMappers chapter at Sherubtse College", - "id": "ym-Sherubtse-College", - "featureId": "sherubtse-college", - "contacts": [{"name": "Organizer", "email": "gsscbhutan@gmail.com"}], "extendedDescription": "The Geographical Society, in the Department of Geography & Planning, Sherubtse College, Royal University of Bhutan, with support from the Center for Climate Change and Spatial Information, has made several efforts to create awareness and address important issues at the local and national level. We now join hands with the international student-centered YouthMappers network on \"Mapping for Resilience\" and contributing to a global 'Happiness'!", - "countryCodes": ["bt"], - "url": "mailto:gsscbhutan@gmail.com?subject=About%20the%20Royal%20University%20of%20Bhutan%20Geographical%20Society%20and%20Youth%20Mappers" + "url": "mailto:gsscbhutan@gmail.com?subject=About%20the%20Royal%20University%20of%20Bhutan%20Geographical%20Society%20and%20Youth%20Mappers", + "contacts": [{"name": "Organizer", "email": "gsscbhutan@gmail.com"}] } \ No newline at end of file diff --git a/resources/asia/india/kerala/osm-kerala-facebook.json b/resources/asia/india/kerala/osm-kerala-facebook.json index 7e8217e1e..2f4732cee 100644 --- a/resources/asia/india/kerala/osm-kerala-facebook.json +++ b/resources/asia/india/kerala/osm-kerala-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-Kerala-facebook", - "featureId": "india_kerala", "type": "facebook", + "includeLocations": ["india_kerala.geojson"], "name": "OpenStreetMap Kerala - Participatory neighborhood mapping", "description": "Improve OpenStreetMap in Kerala", "extendedDescription": "Mapping in Kerala? Have questions, want to connect with the community here? Join us at {url}. All are welcome!", diff --git a/resources/asia/india/kerala/osm-kerala-telegram.json b/resources/asia/india/kerala/osm-kerala-telegram.json index 7a35ec081..c6beb49c1 100644 --- a/resources/asia/india/kerala/osm-kerala-telegram.json +++ b/resources/asia/india/kerala/osm-kerala-telegram.json @@ -1,7 +1,7 @@ { "id": "osm-kerala-telegram", - "featureId": "india_kerala", "type": "telegram", + "includeLocations": ["india_kerala.geojson"], "name": "OpenStreetMap Kerala Telegram", "description": "We map Kerala together. Join our telegram group. {url}", "url": "https://t.me/osmkerala", diff --git a/resources/asia/india/kerala/osm-kerala-wiki.json b/resources/asia/india/kerala/osm-kerala-wiki.json index 33671b8e5..698c83605 100644 --- a/resources/asia/india/kerala/osm-kerala-wiki.json +++ b/resources/asia/india/kerala/osm-kerala-wiki.json @@ -1,7 +1,7 @@ { "id": "osm-kerala-wiki", - "featureId": "india_kerala", "type": "wiki", + "includeLocations": ["india_kerala.geojson"], "name": "OpenStreetMap Kerala", "description": "Want to know more about Kerala Mapping: {url}", "url": "https://wiki.openstreetmap.org/wiki/Kerala", diff --git a/resources/asia/india/osm-india-facebook.json b/resources/asia/india/osm-india-facebook.json index da1dfedb0..aff17c6e6 100644 --- a/resources/asia/india/osm-india-facebook.json +++ b/resources/asia/india/osm-india-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-India-facebook", - "featureId": "india_full", "type": "facebook", + "includeLocations": ["india_full.geojson"], "name": "OpenStreetMap India - Participatory neighborhood mapping", "description": "Improve OpenStreetMap in India", "extendedDescription": "Mapping in India? Have questions, want to connect with the community here? Join us at {url}. All are welcome!", diff --git a/resources/asia/india/osm-india-forum.json b/resources/asia/india/osm-india-forum.json index fe8a582d7..d78321b81 100644 --- a/resources/asia/india/osm-india-forum.json +++ b/resources/asia/india/osm-india-forum.json @@ -1,7 +1,7 @@ { "id": "osm-india-forum", - "featureId": "india_full", "type": "forum", + "includeLocations": ["india_full.geojson"], "countryCodes": ["in"], "name": "OpenStreetMap India forum", "description": "OpenStreetMap India web forum", diff --git a/resources/asia/india/osm-india-github.json b/resources/asia/india/osm-india-github.json index ed4044e53..d1371c8a1 100644 --- a/resources/asia/india/osm-india-github.json +++ b/resources/asia/india/osm-india-github.json @@ -1,7 +1,7 @@ { "id": "osm-india-github", - "featureId": "india_full", "type": "github", + "includeLocations": ["india_full.geojson"], "name": "OpenStreetMap India GitHub", "description": "Code with us: {url}", "url": "https://github.com/osm-in", diff --git a/resources/asia/india/osm-india-mailing-list.json b/resources/asia/india/osm-india-mailing-list.json index bc31a3354..fd18e3b91 100644 --- a/resources/asia/india/osm-india-mailing-list.json +++ b/resources/asia/india/osm-india-mailing-list.json @@ -1,7 +1,7 @@ { "id": "OSM-india-mailinglist", - "featureId": "india_full", "type": "mailinglist", + "includeLocations": ["india_full.geojson"], "name": "OpenStreetMap India Mailinglist", "description": "Talk-in is the official Mailinglist for Indian Community", "url": "https://lists.openstreetmap.org/listinfo/talk-in", diff --git a/resources/asia/india/osm-india-telegram.json b/resources/asia/india/osm-india-telegram.json index f14135799..81e430a27 100644 --- a/resources/asia/india/osm-india-telegram.json +++ b/resources/asia/india/osm-india-telegram.json @@ -1,7 +1,7 @@ { "id": "osm-india-telegram", - "featureId": "india_full", "type": "telegram", + "includeLocations": ["india_full.geojson"], "name": "OpenStreetMap India Telegram", "description": "Join our family: {url}", "url": "https://t.me/OSMIndia", diff --git a/resources/asia/india/osm-india-twitter.json b/resources/asia/india/osm-india-twitter.json index 35e7063db..00147c554 100644 --- a/resources/asia/india/osm-india-twitter.json +++ b/resources/asia/india/osm-india-twitter.json @@ -1,7 +1,7 @@ { "id": "OSM-india-twitter", - "featureId": "india_full", "type": "twitter", + "includeLocations": ["india_full.geojson"], "name": "OpenStreetMap India Twitter", "description": "We are just a tweet away: {url}", "url": "https://twitter.com/osm_in", diff --git a/resources/asia/india/osm-india-website.json b/resources/asia/india/osm-india-website.json index d7b66c6f8..41e80f3b6 100644 --- a/resources/asia/india/osm-india-website.json +++ b/resources/asia/india/osm-india-website.json @@ -1,9 +1,9 @@ { "id": "osm-india-website", - "featureId": "india_full", "type": "osm", - "name": "OpenStreetMap India", + "includeLocations": ["india_full.geojson"], "countryCodes": ["in"], + "name": "OpenStreetMap India", "description": "Mappers and OpenStreetMap users in India", "url": "https://openstreetmap.in/", "contacts": [{"name": " OpenStreetMap India", "email": "openstreetmapindia@gmail.com"}] diff --git a/resources/asia/india/osm-india-wiki.json b/resources/asia/india/osm-india-wiki.json index 016598071..767162582 100644 --- a/resources/asia/india/osm-india-wiki.json +++ b/resources/asia/india/osm-india-wiki.json @@ -1,7 +1,7 @@ { "id": "osm-india-wiki", - "featureId": "india_full", "type": "wiki", + "includeLocations": ["india_full.geojson"], "name": "OpenStreetMap Wikiproject India", "description": "Everything you need to know about mapping in India: {url}", "url": "https://wiki.openstreetmap.org/wiki/WikiProject_India", diff --git a/resources/asia/india/osm-india-youtube.json b/resources/asia/india/osm-india-youtube.json index 2a002ec87..a42415a76 100644 --- a/resources/asia/india/osm-india-youtube.json +++ b/resources/asia/india/osm-india-youtube.json @@ -1,7 +1,7 @@ { "id": "osm-india-youtube", - "featureId": "india_full", "type": "youtube", + "includeLocations": ["india_full.geojson"], "name": "OpenStreetMap India Youtube", "description": "Subscribe to our channel: {url}", "url": "https://www.youtube.com/channel/UCu5sKaPU04x0RJkgGkoFORw", diff --git a/resources/asia/india/osm-puducherry-facebook.json b/resources/asia/india/osm-puducherry-facebook.json index ac828bfbf..2ed290f81 100644 --- a/resources/asia/india/osm-puducherry-facebook.json +++ b/resources/asia/india/osm-puducherry-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-India-Puducherry-Facebook", - "featureId": "india_puducherry", "type": "facebook", + "includeLocations": ["india_puducherry.geojson"], "name": "Free Software Hardware Movement - Facebook", "description": "FSHM Facebook page to know about community events, activities", "extendedDescription": "FSHM organizes events relating to free software/hardware, technology, activism and OpenStreetMap. Its FB page is the best way to keep in contact with its events.", diff --git a/resources/asia/india/osm-puducherry-mailing-list.json b/resources/asia/india/osm-puducherry-mailing-list.json index 47d329090..87fef5634 100644 --- a/resources/asia/india/osm-puducherry-mailing-list.json +++ b/resources/asia/india/osm-puducherry-mailing-list.json @@ -1,7 +1,7 @@ { "id": "OSM-Puducherry-Mailing-List", - "featureId": "india_puducherry", "type": "mailinglist", + "includeLocations": ["india_puducherry.geojson"], "name": "Free Software Hardware Movement - Mailing List", "description": "FSHM Puducherry mailing list to discuss mapping in Puducherry and other things.", "extendedDescription": "FSHM organizes events relating to free software/hardware, technology, activism and OpenStreetMap.", diff --git a/resources/asia/india/osm-puducherry-matrix.json b/resources/asia/india/osm-puducherry-matrix.json index a668dfad0..abf639d4a 100644 --- a/resources/asia/india/osm-puducherry-matrix.json +++ b/resources/asia/india/osm-puducherry-matrix.json @@ -1,7 +1,7 @@ { "id": "OSM-India-Puducherry-Matrix", - "featureId": "india_puducherry", "type": "matrix", + "includeLocations": ["india_puducherry.geojson"], "name": "Free Software Hardware Movement - Matrix", "description": "FSHM Riot group to discuss, share and update mapping activities, events in and around Puducherry", "extendedDescription": "FSHM community members share their OSM mapping updates / experiences through the Riot.im group, this group is also used to discuss things related to free software / hardware, technology and activism.", diff --git a/resources/asia/india/ym-Gujarat-University.json b/resources/asia/india/ym-Gujarat-University.json index 0a4e4a80d..581af7877 100644 --- a/resources/asia/india/ym-Gujarat-University.json +++ b/resources/asia/india/ym-Gujarat-University.json @@ -1,10 +1,10 @@ { + "id": "ym-Gujarat-University", "type": "youthmappers", + "includeLocations": ["gujarat-university.geojson"], + "countryCodes": ["in"], "name": "CCIM at Ahmedabad", "description": "YouthMappers chapter at Gujarat University", - "id": "ym-Gujarat-University", - "featureId": "gujarat-university", - "contacts": [{"name": "Organizer", "email": "coolmulls@gmail.com"}], - "countryCodes": ["in"], - "url": "mailto:Coolmulls@gmail.com" + "url": "mailto:Coolmulls@gmail.com", + "contacts": [{"name": "Organizer", "email": "coolmulls@gmail.com"}] } \ No newline at end of file diff --git a/resources/asia/indonesia/indonesia.json b/resources/asia/indonesia/indonesia.json index 57a2080be..d917a52f2 100644 --- a/resources/asia/indonesia/indonesia.json +++ b/resources/asia/indonesia/indonesia.json @@ -1,7 +1,7 @@ { "id": "OSM-IDN-facebook", - "featureId": "indonesia", "type": "facebook", + "includeLocations": ["indonesia.geojson"], "name": "OpenStreetMap Indonesia", "description": "Improve OpenStreetMap in Indonesia", "extendedDescription": "Mapping in Indonesia? Have questions, want to connect with the community here? Join us at {Url}. All are welcome!", diff --git a/resources/asia/indonesia/ym-Universitas-Negeri-Makassar.json b/resources/asia/indonesia/ym-Universitas-Negeri-Makassar.json index 5f60f3610..5e2988bac 100644 --- a/resources/asia/indonesia/ym-Universitas-Negeri-Makassar.json +++ b/resources/asia/indonesia/ym-Universitas-Negeri-Makassar.json @@ -1,10 +1,10 @@ { + "id": "ym-Universitas-Negeri-Makassar", "type": "youthmappers", + "includeLocations": ["universitas-negeri-makassar.geojson"], + "countryCodes": ["in"], "name": "Kontur Geografi", "description": "YouthMappers chapter at Universitas Negeri Makassar", - "id": "ym-Universitas-Negeri-Makassar", - "featureId": "universitas-negeri-makassar", - "contacts": [{"name": "Organizer", "email": "konturgeografi@gmail.com"}], - "countryCodes": ["in"], - "url": "https://tentangkontur.blogspot.co.id" + "url": "https://tentangkontur.blogspot.co.id", + "contacts": [{"name": "Organizer", "email": "konturgeografi@gmail.com"}] } \ No newline at end of file diff --git a/resources/asia/indonesia/ym-University-Muhammadiyah-Surakarta.json b/resources/asia/indonesia/ym-University-Muhammadiyah-Surakarta.json index 5a3e43938..c1336cab9 100644 --- a/resources/asia/indonesia/ym-University-Muhammadiyah-Surakarta.json +++ b/resources/asia/indonesia/ym-University-Muhammadiyah-Surakarta.json @@ -1,11 +1,11 @@ { + "id": "ym-University-Muhammadiyah-Surakarta", "type": "youthmappers", + "includeLocations": ["university-muhammadiyah-surakarta.geojson"], + "countryCodes": ["in"], "name": "SpaceTime", "description": "YouthMappers chapter at University Muhammadiyah Surakarta", - "id": "ym-University-Muhammadiyah-Surakarta", - "featureId": "university-muhammadiyah-surakarta", - "contacts": [{"name": "Organizer", "email": "spacetime1717@gmail.com"}], "extendedDescription": "SpaceTime is a community mapping in the Faculty of Geography of Muhammadiyah University of Surakarta. SpaceTime was founded by Bruce Maldy Pratama, Mukhlis Akbar and Irfandi Fauzi. They are active students in the Faculty of Geography University Muhammadiyah Surakarta.", - "countryCodes": ["in"], - "url": "mailto:spacetime1717@gmail.com" + "url": "mailto:spacetime1717@gmail.com", + "contacts": [{"name": "Organizer", "email": "spacetime1717@gmail.com"}] } \ No newline at end of file diff --git a/resources/asia/iran/osm-iran-aparat.json b/resources/asia/iran/osm-iran-aparat.json index c63d94872..963482737 100644 --- a/resources/asia/iran/osm-iran-aparat.json +++ b/resources/asia/iran/osm-iran-aparat.json @@ -1,7 +1,7 @@ { "id": "osm-iran-aparat", - "featureId": "iran", "type": "aparat", + "includeLocations": ["iran.geojson"], "countryCodes": ["ir"], "languageCodes": ["fa"], "name": "OpenStreetMap Iran Aparat", diff --git a/resources/asia/iran/osm-iran-forum.json b/resources/asia/iran/osm-iran-forum.json index aca3819f3..131a1ffda 100644 --- a/resources/asia/iran/osm-iran-forum.json +++ b/resources/asia/iran/osm-iran-forum.json @@ -1,7 +1,7 @@ { "id": "osm-iran-forum", - "featureId": "iran", "type": "forum", + "includeLocations": ["iran.geojson"], "countryCodes": ["ir"], "languageCodes": ["fa"], "name": "OpenStreetMap Iran web forum", diff --git a/resources/asia/iran/osm-iran-telegram.json b/resources/asia/iran/osm-iran-telegram.json index 96dd90ac9..3e408333b 100644 --- a/resources/asia/iran/osm-iran-telegram.json +++ b/resources/asia/iran/osm-iran-telegram.json @@ -1,7 +1,7 @@ { "id": "osm-iran-telegram", - "featureId": "iran", "type": "telegram", + "includeLocations": ["iran.geojson"], "countryCodes": ["ir"], "languageCodes": ["fa"], "name": "OpenStreetMap Iran Telegram", diff --git a/resources/asia/japan/OSM-Japan-facebook.json b/resources/asia/japan/OSM-Japan-facebook.json index 1b337ef5f..14efc63fd 100644 --- a/resources/asia/japan/OSM-Japan-facebook.json +++ b/resources/asia/japan/OSM-Japan-facebook.json @@ -1,10 +1,10 @@ { "id": "OSM-japan-facebook", - "featureId": "japan", "type": "facebook", - "name": "OpenStreetMap Japan Community", + "includeLocations": ["japan.geojson"], "countryCodes": ["jp"], "languageCodes": ["ja"], + "name": "OpenStreetMap Japan Community", "description": "Mappers and OpenStreetMap users in Japan", "url": "https://www.facebook.com/groups/osmjapan/", "contacts": [{"name": "Satoshi IIDA", "email": "nyampire@gmail.com"}], diff --git a/resources/asia/japan/OSM-Japan-mailinglist.json b/resources/asia/japan/OSM-Japan-mailinglist.json index 4625fdb79..309ce7ee9 100644 --- a/resources/asia/japan/OSM-Japan-mailinglist.json +++ b/resources/asia/japan/OSM-Japan-mailinglist.json @@ -1,10 +1,10 @@ { "id": "OSM-japan-mailinglist", - "featureId": "japan", "type": "mailinglist", - "name": "OpenStreetMap Japan Mailinglist", + "includeLocations": ["japan.geojson"], "countryCodes": ["jp"], "languageCodes": ["ja"], + "name": "OpenStreetMap Japan Mailinglist", "description": "Talk-ja is an Official Mailinglist for Japanese Community", "url": "https://lists.openstreetmap.org/listinfo/talk-ja", "contacts": [{"name": "OSMF Japan", "email": "info@osmf.jp"}], diff --git a/resources/asia/japan/OSM-Japan-telegram.json b/resources/asia/japan/OSM-Japan-telegram.json index 3428bcf48..d1dfb8222 100644 --- a/resources/asia/japan/OSM-Japan-telegram.json +++ b/resources/asia/japan/OSM-Japan-telegram.json @@ -1,10 +1,10 @@ { "id": "OSM-Japan-telegram", - "featureId": "japan", "type": "telegram", - "name": "OpenStreetMap Japan Telegram", + "includeLocations": ["japan.geojson"], "countryCodes": ["jp"], "languageCodes": ["ja"], + "name": "OpenStreetMap Japan Telegram", "description": "A Telegram group for the OSM Japan community: {url}", "url": "https://t.me/osmjapan", "contacts": [{"name": "OSMF Japan", "email": "info@osmf.jp"}], diff --git a/resources/asia/japan/OSM-Japan-twitter.json b/resources/asia/japan/OSM-Japan-twitter.json index 8c07df9ae..beadfeb83 100644 --- a/resources/asia/japan/OSM-Japan-twitter.json +++ b/resources/asia/japan/OSM-Japan-twitter.json @@ -1,10 +1,10 @@ { "id": "OSM-japan-twitter", - "featureId": "japan", "type": "twitter", - "name": "OpenStreetMap Japan Twitter", + "includeLocations": ["japan.geojson"], "countryCodes": ["jp"], "languageCodes": ["ja"], + "name": "OpenStreetMap Japan Twitter", "description": "Hashtag on Twitter: {url}", "url": "https://twitter.com/hashtag/osmjp", "contacts": [{"name": "Satoshi IIDA", "email": "nyampire@gmail.com"}] diff --git a/resources/asia/japan/OSM-Japan-website.json b/resources/asia/japan/OSM-Japan-website.json index 96ab28e1a..904ccccde 100644 --- a/resources/asia/japan/OSM-Japan-website.json +++ b/resources/asia/japan/OSM-Japan-website.json @@ -1,10 +1,10 @@ { "id": "OSM-japan-website", - "featureId": "japan", "type": "osm", - "name": "OpenStreetMap Japan", + "includeLocations": ["japan.geojson"], "countryCodes": ["jp"], "languageCodes": ["ja"], + "name": "OpenStreetMap Japan", "description": "Mappers and OpenStreetMap users in Japan", "url": "https://openstreetmap.jp/", "contacts": [{"name": "Satoshi IIDA", "email": "nyampire@gmail.com"}] diff --git a/resources/asia/korea/OSM-Korea-mailinglist.json b/resources/asia/korea/OSM-Korea-mailinglist.json index d09292b24..7e7128cf3 100644 --- a/resources/asia/korea/OSM-Korea-mailinglist.json +++ b/resources/asia/korea/OSM-Korea-mailinglist.json @@ -1,10 +1,10 @@ { "id": "OSM-Korea-mailinglist", - "featureId": "korea", "type": "mailinglist", - "name": "OpenStreetMap Korea Mailinglist", + "includeLocations": ["korea.geojson"], "countryCodes": ["kp", "kr"], - "languageCodes": ["ko", "en"], + "languageCodes": ["en", "ko"], + "name": "OpenStreetMap Korea Mailinglist", "description": "Talk-ko is an Official Mailinglist for the Communities to dicuss matters about Korea", "url": "https://lists.openstreetmap.org/listinfo/talk-ko", "contacts": [{"name": "Talk-ko-owner", "email": "talk-ko-owner@openstreetmap.org"}], diff --git a/resources/asia/korea/OSM-Korea-telegram.json b/resources/asia/korea/OSM-Korea-telegram.json index 8c6c16064..e7c163ca4 100644 --- a/resources/asia/korea/OSM-Korea-telegram.json +++ b/resources/asia/korea/OSM-Korea-telegram.json @@ -1,9 +1,9 @@ { "id": "OSM-Korea-telegram", - "featureId": "korea", "type": "telegram", + "includeLocations": ["korea.geojson"], "countryCodes": ["kp", "kr"], - "languageCodes": ["ko", "en"], + "languageCodes": ["en", "ko"], "name": "OSM Korea Telegram", "description": "Unofficial Group for OpenStreetMap contributors, communities, and users in Korea to share and discuss.", "url": "https://t.me/osmKorea", diff --git a/resources/asia/malaysia/OSM-MY-facebook.json b/resources/asia/malaysia/OSM-MY-facebook.json index 7add776f7..152f05353 100644 --- a/resources/asia/malaysia/OSM-MY-facebook.json +++ b/resources/asia/malaysia/OSM-MY-facebook.json @@ -1,9 +1,9 @@ { "id": "OSM-MY-facebook", - "featureId": "malaysia", "type": "facebook", + "includeLocations": ["malaysia.geojson"], "countryCodes": ["my"], - "languageCodes": ["ms", "en"], + "languageCodes": ["en", "ms"], "name": "OpenStreetMap Malaysia on Facebook", "description": "For chat about anything related to OpenStreetMap!", "url": "https://www.facebook.com/groups/openstreetmapMY/", diff --git a/resources/asia/malaysia/OSM-MY-forum.json b/resources/asia/malaysia/OSM-MY-forum.json index 479efaa04..73faf9591 100644 --- a/resources/asia/malaysia/OSM-MY-forum.json +++ b/resources/asia/malaysia/OSM-MY-forum.json @@ -1,9 +1,9 @@ { "id": "OSM-MY-forum", - "featureId": "malaysia", "type": "forum", + "includeLocations": ["malaysia.geojson"], "countryCodes": ["my"], - "languageCodes": ["ms", "en"], + "languageCodes": ["en", "ms"], "name": "OpenStreetMap Malaysia Forum", "description": "Official OpenStreetMap Malaysia Forum", "url": "https://forum.openstreetmap.org/viewforum.php?id=60", diff --git a/resources/asia/malaysia/OSM-MY-matrix.json b/resources/asia/malaysia/OSM-MY-matrix.json index d175094d0..1c9ca69f1 100644 --- a/resources/asia/malaysia/OSM-MY-matrix.json +++ b/resources/asia/malaysia/OSM-MY-matrix.json @@ -1,12 +1,12 @@ { "id": "OSM-MY-matrix", - "featureId": "malaysia", "type": "matrix", + "includeLocations": ["malaysia.geojson"], "countryCodes": ["my"], - "languageCodes": ["ms", "en"], + "languageCodes": ["en", "ms"], "name": "OpenStreetMap Malaysia Riot channel", "description": "All mappers are welcome! Sign up at {signupUrl}", - "signupUrl": "https://riot.im/app/#/register", "url": "https://riot.im/app/#/room/#OpenstreetmapMalaysia:matrix.org", + "signupUrl": "https://riot.im/app/#/register", "contacts": [{"name": "Ahmad Amsyar", "email": "OfficiallyAhmad@protonmail.ch"}] } \ No newline at end of file diff --git a/resources/asia/mongolia/mongolia.json b/resources/asia/mongolia/mongolia.json index bc875fe7f..6fa9b95e1 100644 --- a/resources/asia/mongolia/mongolia.json +++ b/resources/asia/mongolia/mongolia.json @@ -1,7 +1,7 @@ { "id": "OSM-MNG-facebook", - "featureId": "mongolia", "type": "facebook", + "includeLocations": ["mongolia.geojson"], "name": "OpenStreetMap Mongolia", "description": "Improve OpenStreetMap in Mongolia", "extendedDescription": "Mapping in Mongolia? Have questions, want to connect with the community here? Join us at {Url}. All are welcome!", diff --git a/resources/asia/myanmar/osm-myanmar-facebook.json b/resources/asia/myanmar/osm-myanmar-facebook.json index 98b952482..fb7b5765c 100644 --- a/resources/asia/myanmar/osm-myanmar-facebook.json +++ b/resources/asia/myanmar/osm-myanmar-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-MMR-facebook", - "featureId": "myanmar", "type": "facebook", + "includeLocations": ["myanmar.geojson"], "name": "OpenStreetMap Myanmar", "description": "Improve OpenStreetMap in Myanmar", "extendedDescription": "Mapping in Myanmar? Have questions, want to connect with the community here? Join us at {Url}. All are welcome!", diff --git a/resources/asia/nepal/osm-nepal-facebook.json b/resources/asia/nepal/osm-nepal-facebook.json index ae846aef3..0a84bfa44 100644 --- a/resources/asia/nepal/osm-nepal-facebook.json +++ b/resources/asia/nepal/osm-nepal-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-Nepal-facebook", - "featureId": "nepal", "type": "facebook", + "includeLocations": ["nepal.geojson"], "name": "OpenStreetMap Nepal", "description": "Improve OpenStreetMap in Nepal", "extendedDescription": "Mapping in Nepal? Have questions, want to connect with the community here? Join us at {Url}. All are welcome!", diff --git a/resources/asia/nepal/ym-Institute-of-Crisis-Management-Studies.json b/resources/asia/nepal/ym-Institute-of-Crisis-Management-Studies.json index b4ba966f4..49b45fd36 100644 --- a/resources/asia/nepal/ym-Institute-of-Crisis-Management-Studies.json +++ b/resources/asia/nepal/ym-Institute-of-Crisis-Management-Studies.json @@ -1,11 +1,11 @@ { + "id": "ym-Institute-of-Crisis-Management-Studies", "type": "youthmappers", + "includeLocations": ["institute-of-crisis-management-studies.geojson"], + "countryCodes": ["np"], "name": "Institute of Crisis Management Studies YouthMappers", "description": "YouthMappers chapter at Institute of Crisis Management Studies", - "id": "ym-Institute-of-Crisis-Management-Studies", - "featureId": "institute-of-crisis-management-studies", - "contacts": [{"name": "Organizer", "email": "deepakadhikari@tuicms.edu.np"}], "extendedDescription": "To develop Crisis Mappers to assist during disaster situations.", - "countryCodes": ["np"], - "url": "mailto:deepakadhikari@tuicms.edu.np" + "url": "mailto:deepakadhikari@tuicms.edu.np", + "contacts": [{"name": "Organizer", "email": "deepakadhikari@tuicms.edu.np"}] } \ No newline at end of file diff --git a/resources/asia/nepal/ym-Kathmandu-University.json b/resources/asia/nepal/ym-Kathmandu-University.json index 4ab1a6a37..df323fc42 100644 --- a/resources/asia/nepal/ym-Kathmandu-University.json +++ b/resources/asia/nepal/ym-Kathmandu-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Kathmandu-University", "type": "youthmappers", + "includeLocations": ["kathmandu-university.geojson"], + "countryCodes": ["np"], "name": "Geomatics Engineering Society,GES", "description": "YouthMappers chapter at Kathmandu University", - "id": "ym-Kathmandu-University", - "featureId": "kathmandu-university", - "contacts": [{"name": "Organizer", "email": "ges@ku.edu.np"}], "extendedDescription": "Geomatics Engineering Society (GES) established in 2008 A.D is a departmental club under Department of Civil and Geomatics Engineering (DCGE) at Kathmandu University. GES acts as a platform to develop the skills of students apart from their educational activities by focusing on activities like technical trainings, seminars, talk programs and interaction with experts from related field, sports activities etc.", - "countryCodes": ["np"], - "url": "ku.edu.np/ges" + "url": "ku.edu.np/ges", + "contacts": [{"name": "Organizer", "email": "ges@ku.edu.np"}] } \ No newline at end of file diff --git a/resources/asia/nepal/ym-Tribhuvan-University.json b/resources/asia/nepal/ym-Tribhuvan-University.json index 8476c219d..29c9b9fa2 100644 --- a/resources/asia/nepal/ym-Tribhuvan-University.json +++ b/resources/asia/nepal/ym-Tribhuvan-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Tribhuvan-University", "type": "youthmappers", + "includeLocations": ["tribhuvan-university.geojson"], + "countryCodes": ["np"], "name": "Geomatics Engineering Students Association", "description": "YouthMappers chapter at Tribhuvan University", - "id": "ym-Tribhuvan-University", - "featureId": "tribhuvan-university", - "contacts": [{"name": "Organizer", "email": "gesan.nepal@gmail.com"}], "extendedDescription": "This organization is the student forum of Geomatics Engineering students of Tribhuvan University , Institute of Engineering on the Pashchimanchal campus. Established since the beginning of the degree program, students have been active in mapping and leadership and are thrilled to be a part of the YouthMappers network.", - "countryCodes": ["np"], - "url": "http://gesanwrc.wordpress.com/" + "url": "http://gesanwrc.wordpress.com/", + "contacts": [{"name": "Organizer", "email": "gesan.nepal@gmail.com"}] } \ No newline at end of file diff --git a/resources/asia/osm-asia-mailing-list.json b/resources/asia/osm-asia-mailing-list.json index c9024092c..d5b890b80 100644 --- a/resources/asia/osm-asia-mailing-list.json +++ b/resources/asia/osm-asia-mailing-list.json @@ -1,7 +1,7 @@ { "id": "OSM-Asia-mailinglist", - "featureId": "asia_full", "type": "mailinglist", + "includeLocations": ["asia_full.geojson"], "name": "OpenStreetMap Asia Mailinglist", "description": "Talk-asia is the official Mailinglist for Asian Community", "url": "https://lists.openstreetmap.org/listinfo/talk-asia", diff --git a/resources/asia/osm-asia-telegram.json b/resources/asia/osm-asia-telegram.json index af52bd34e..123c1be8e 100644 --- a/resources/asia/osm-asia-telegram.json +++ b/resources/asia/osm-asia-telegram.json @@ -1,7 +1,7 @@ { "id": "osm-asia-telegram", - "featureId": "asia_full", "type": "telegram", + "includeLocations": ["asia_full.geojson"], "name": "OpenStreetMap Asia Telegram", "description": "Join our family: {url}", "url": "https://t.me/OpenStreetMapAsia", diff --git a/resources/asia/philippines/OSM-PH-facebook.json b/resources/asia/philippines/OSM-PH-facebook.json index 85b14cce3..c0e14f680 100644 --- a/resources/asia/philippines/OSM-PH-facebook.json +++ b/resources/asia/philippines/OSM-PH-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-PH-facebook", - "featureId": "philippines", "type": "facebook", + "includeLocations": ["philippines.geojson"], "countryCodes": ["ph"], "name": "OpenStreetMap PH Facebook", "description": "Welcome to OpenStreetMap Philippines, where we encourage all fellow Filipinos to contribute to the OpenStreetMap project.", diff --git a/resources/asia/philippines/OSM-PH-mailinglist.json b/resources/asia/philippines/OSM-PH-mailinglist.json index 5ec236621..59671976e 100644 --- a/resources/asia/philippines/OSM-PH-mailinglist.json +++ b/resources/asia/philippines/OSM-PH-mailinglist.json @@ -1,7 +1,7 @@ { "id": "OSM-PH-mailinglist", - "featureId": "philippines", "type": "mailinglist", + "includeLocations": ["philippines.geojson"], "countryCodes": ["ph"], "name": "Talk-ph Mailing List", "description": "A mailing list to discuss OpenStreetMap in the Philippines", diff --git a/resources/asia/philippines/OSM-PH-slack.json b/resources/asia/philippines/OSM-PH-slack.json index 35a9f42f2..6460f3acd 100644 --- a/resources/asia/philippines/OSM-PH-slack.json +++ b/resources/asia/philippines/OSM-PH-slack.json @@ -1,12 +1,12 @@ { "id": "OSM-PH-slack", - "featureId": "philippines", "type": "slack", + "includeLocations": ["philippines.geojson"], "countryCodes": ["ph"], "name": "OpenStreetMap PH Slack", "description": "All are welcome! Sign up at {signupUrl}", - "signupUrl": "https://osmph-chat.herokuapp.com/", "url": "https://osmph.slack.com", + "signupUrl": "https://osmph-chat.herokuapp.com/", "contacts": [ {"name": "Maning Sambale", "email": "emmanuel.sambale@gmail.com"}, {"name": "OSM PH Group", "email": "osm.pilipinas@gmail.com"} diff --git a/resources/asia/philippines/OSM-PH-telegram.json b/resources/asia/philippines/OSM-PH-telegram.json index e1f134c83..ec0472e9a 100644 --- a/resources/asia/philippines/OSM-PH-telegram.json +++ b/resources/asia/philippines/OSM-PH-telegram.json @@ -1,9 +1,9 @@ { "id": "OSM-PH-telegram", - "featureId": "philippines", "type": "telegram", + "includeLocations": ["philippines.geojson"], "countryCodes": ["ph"], - "languageCodes": ["tl", "en"], + "languageCodes": ["en", "tl"], "name": "OpenStreetMap PH Telegram", "description": "Un-official, Telegram local community of OpenStreetMap contributors and friends in the Philippines", "url": "https://t.me/osmph", diff --git a/resources/asia/philippines/ym-Far-Eastern-University-Institute-of-Technology.json b/resources/asia/philippines/ym-Far-Eastern-University-Institute-of-Technology.json index 31d21c01d..0c5904e78 100644 --- a/resources/asia/philippines/ym-Far-Eastern-University-Institute-of-Technology.json +++ b/resources/asia/philippines/ym-Far-Eastern-University-Institute-of-Technology.json @@ -1,11 +1,11 @@ { + "id": "ym-Far-Eastern-University-Institute-of-Technology", "type": "youthmappers", + "includeLocations": ["far-eastern-university-institute-of-technology.geojson"], + "countryCodes": ["ph"], "name": "Junior Philippines Computer Society", "description": "YouthMappers chapter at Far Eastern University -Institute of Technology", - "id": "ym-Far-Eastern-University-Institute-of-Technology", - "featureId": "far-eastern-university-institute-of-technology", - "contacts": [{"name": "Organizer", "email": "jpcsfeutech@outlook.com"}], "extendedDescription": "FEU has been recognized as one of the leading universities in the Philippines. Its mission centers on producing graduates who have contributed to the advancement of the country. The university continuously challenges itself to raise the bar of excellence to achieve a top-tier status not only in the Philippines but also in the South East Asian region", - "countryCodes": ["ph"], - "url": "mailto:jpcsfeutech@outlook.com?subject=YouthMappers%20and%20Junior%20Philippines%20Computer%20Society" + "url": "mailto:jpcsfeutech@outlook.com?subject=YouthMappers%20and%20Junior%20Philippines%20Computer%20Society", + "contacts": [{"name": "Organizer", "email": "jpcsfeutech@outlook.com"}] } \ No newline at end of file diff --git a/resources/asia/philippines/ym-University-of-the-Philippines-Resilience-Institute.json b/resources/asia/philippines/ym-University-of-the-Philippines-Resilience-Institute.json index 4aeb64b02..0fd534b98 100644 --- a/resources/asia/philippines/ym-University-of-the-Philippines-Resilience-Institute.json +++ b/resources/asia/philippines/ym-University-of-the-Philippines-Resilience-Institute.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-the-Philippines-Resilience-Institute", "type": "youthmappers", + "includeLocations": ["university-of-the-philippines-resilience-institute.geojson"], + "countryCodes": ["ph"], "name": "YouthMappers UP Resilience Institute", "description": "YouthMappers chapter at University of the Philippines Resilience Institute", - "id": "ym-University-of-the-Philippines-Resilience-Institute", - "featureId": "university-of-the-philippines-resilience-institute", - "contacts": [{"name": "Organizer", "email": "llnguyen@up.edu.ph"}], "extendedDescription": "The UP Resilience Institute was established in 2016 with a mission statement to empower local communities through multidisciplinary research and actions toward resilience. Through UP NOAH Center, and the help of different organizations, we have provided building exposure maps for 17 provinces out of the 82 and uploaded more than 4 million footprints to Open Street Maps.", - "countryCodes": ["ph"], - "url": "https://www.facebook.com/UP-Resillience-Institute-Youth-Mappers-123477508533225" + "url": "https://www.facebook.com/UP-Resillience-Institute-Youth-Mappers-123477508533225", + "contacts": [{"name": "Organizer", "email": "llnguyen@up.edu.ph"}] } \ No newline at end of file diff --git a/resources/asia/russia/OSM-RU-forum.json b/resources/asia/russia/OSM-RU-forum.json index b4b97c1e3..eef495b60 100644 --- a/resources/asia/russia/OSM-RU-forum.json +++ b/resources/asia/russia/OSM-RU-forum.json @@ -1,7 +1,7 @@ { "id": "OSM-RU-forum", "type": "forum", - "featureId": "russia", + "includeLocations": ["russia.geojson"], "countryCodes": ["ru"], "languageCodes": ["ru"], "name": "OpenStreetMap RU forum", diff --git a/resources/asia/russia/OSM-RU-telegram.json b/resources/asia/russia/OSM-RU-telegram.json index 216cae806..798c0d725 100644 --- a/resources/asia/russia/OSM-RU-telegram.json +++ b/resources/asia/russia/OSM-RU-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-RU-telegram", "type": "telegram", - "featureId": "russia", + "includeLocations": ["russia.geojson"], "countryCodes": ["ru"], "languageCodes": ["ru"], "name": "OpenStreetMap RU telegram", diff --git a/resources/asia/sri_lanka/OSM-sri-lanka-facebook.json b/resources/asia/sri_lanka/OSM-sri-lanka-facebook.json index 0f505baee..a6bbf0a03 100644 --- a/resources/asia/sri_lanka/OSM-sri-lanka-facebook.json +++ b/resources/asia/sri_lanka/OSM-sri-lanka-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-sri-lanka-facebook", - "featureId": "sri_lanka", "type": "facebook", + "includeLocations": ["sri_lanka.geojson"], "countryCodes": ["lk"], "name": "OpenStreetMap Sri Lanka", "description": "Improve OpenStreetMap in Sri Lanka", diff --git a/resources/asia/taiwan/OSM-TW-facebook.json b/resources/asia/taiwan/OSM-TW-facebook.json index 2e7e87a8f..6118769ca 100644 --- a/resources/asia/taiwan/OSM-TW-facebook.json +++ b/resources/asia/taiwan/OSM-TW-facebook.json @@ -1,10 +1,10 @@ { "id": "OSM-TW-facebook", - "featureId": "taiwan", "type": "facebook", - "name": "OpenStreetMap Taiwan Community", + "includeLocations": ["taiwan.geojson"], "countryCodes": ["tw"], "languageCodes": ["zh-tw"], + "name": "OpenStreetMap Taiwan Community", "description": "Facebook Group for Mappers and OpenStreetMap users to discuss matters about Taiwan.", "url": "https://www.facebook.com/groups/OpenStreetMap.TW/", "contacts": [{"name": "Nobody 沒有人 (Public mail)", "email": "hiboard@openstreetmap.tw"}], diff --git a/resources/asia/taiwan/OSM-TW-mailinglist.json b/resources/asia/taiwan/OSM-TW-mailinglist.json index 114933af0..e190b5986 100644 --- a/resources/asia/taiwan/OSM-TW-mailinglist.json +++ b/resources/asia/taiwan/OSM-TW-mailinglist.json @@ -1,10 +1,10 @@ { "id": "OSM-TW-mailinglist", - "featureId": "taiwan", "type": "mailinglist", - "name": "OpenStreetMap Taiwan Mailinglist", + "includeLocations": ["taiwan.geojson"], "countryCodes": ["tw"], - "languageCodes": ["zh-tw", "en"], + "languageCodes": ["en", "zh-tw"], + "name": "OpenStreetMap Taiwan Mailinglist", "description": "Talk-tw is an Official Mailinglist for the Communities to dicuss matters about Taiwan", "url": "https://lists.openstreetmap.org/listinfo/talk-tw", "contacts": [{"name": "Nobody 沒有人 (Public email)", "email": "hiboard@openstreetmap.tw"}], diff --git a/resources/asia/taiwan/OSM-TW-telegram.json b/resources/asia/taiwan/OSM-TW-telegram.json index deb400ea4..e7ad46c60 100644 --- a/resources/asia/taiwan/OSM-TW-telegram.json +++ b/resources/asia/taiwan/OSM-TW-telegram.json @@ -1,10 +1,10 @@ { "id": "OSM-TW-telegram", - "featureId": "taiwan", "type": "telegram", - "name": "OpenStreetMap Taiwan Telegram", + "includeLocations": ["taiwan.geojson"], "countryCodes": ["tw"], "languageCodes": ["zh-tw"], + "name": "OpenStreetMap Taiwan Telegram", "description": "A Telegram group for the OSM Taiwan community: {url}", "url": "https://t.me/OSMTaiwan", "contacts": [{"name": "Nobody 沒有人 (Public mail)", "email": "hiboard@openstreetmap.tw"}], diff --git a/resources/asia/thailand/OSM-TH-CNX-meetup.json b/resources/asia/thailand/OSM-TH-CNX-meetup.json index 803316699..8685fc2ed 100644 --- a/resources/asia/thailand/OSM-TH-CNX-meetup.json +++ b/resources/asia/thailand/OSM-TH-CNX-meetup.json @@ -1,7 +1,7 @@ { "id": "OSM-TH-CNX-meetup", - "featureId": "thailand_cnx", "type": "meetup", + "includeLocations": ["thailand_cnx.geojson"], "countryCodes": ["th"], "languageCodes": ["en"], "name": "OSM Meetup Chiang Mai", diff --git a/resources/asia/thailand/OSM-TH-facebook.json b/resources/asia/thailand/OSM-TH-facebook.json index a0f774554..964975b78 100644 --- a/resources/asia/thailand/OSM-TH-facebook.json +++ b/resources/asia/thailand/OSM-TH-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-TH-facebook", - "featureId": "thailand", "type": "facebook", + "includeLocations": ["thailand.geojson"], "countryCodes": ["th"], "languageCodes": ["en", "th"], "name": "OpenStreetMap TH Facebook group", diff --git a/resources/asia/thailand/OSM-TH-forum.json b/resources/asia/thailand/OSM-TH-forum.json index 579267a8b..57ece198b 100644 --- a/resources/asia/thailand/OSM-TH-forum.json +++ b/resources/asia/thailand/OSM-TH-forum.json @@ -1,7 +1,7 @@ { "id": "OSM-TH-forum", - "featureId": "thailand", "type": "forum", + "includeLocations": ["thailand.geojson"], "countryCodes": ["th"], "languageCodes": ["en", "th"], "name": "OpenStreetMap TH forum", diff --git a/resources/europe/albania/al-forum.json b/resources/europe/albania/al-forum.json index 625f6152d..c92c1cdb0 100644 --- a/resources/europe/albania/al-forum.json +++ b/resources/europe/albania/al-forum.json @@ -1,9 +1,9 @@ { "id": "al-forum", - "featureId": "albania", "type": "forum", + "includeLocations": ["albania.geojson"], "countryCodes": ["al"], - "languageCodes": ["sq", "en"], + "languageCodes": ["en", "sq"], "name": "OSM Albania Forum", "description": "OpenStreetMap Albania Forum", "url": "https://forum.openstreetmap.org/viewforum.php?id=91", diff --git a/resources/europe/albania/al-maptime-tirana.json b/resources/europe/albania/al-maptime-tirana.json index 008bfed6e..f4b7f6a6e 100644 --- a/resources/europe/albania/al-maptime-tirana.json +++ b/resources/europe/albania/al-maptime-tirana.json @@ -1,9 +1,9 @@ { "id": "al-maptime-tirana", - "featureId": "al-tirana", "type": "group", + "includeLocations": ["al-tirana.geojson"], "countryCodes": ["al"], - "languageCodes": ["sq", "en"], + "languageCodes": ["en", "sq"], "name": "Maptime Tirana", "description": "Social events organized around mapping - beginners most welcome!", "extendedDescription": "Maptime is an open learning environment for all levels and degrees of knowledge, offering intentional educational support for the beginner. Maptime is simultaneously flexible and structured, creating space for mapping tutorials, workshops, ongoing projects with a shared goal, and independent/collaborative work time.", diff --git a/resources/europe/albania/al-telegram.json b/resources/europe/albania/al-telegram.json index da23028b3..affc4b3b0 100644 --- a/resources/europe/albania/al-telegram.json +++ b/resources/europe/albania/al-telegram.json @@ -1,9 +1,9 @@ { "id": "al-telegram", - "featureId": "albania", "type": "telegram", + "includeLocations": ["albania.geojson"], "countryCodes": ["al"], - "languageCodes": ["sq", "en"], + "languageCodes": ["en", "sq"], "name": "OSM Albania Telegram channel", "description": "OpenStreetMap Albania Telegram channel", "url": "https://telegram.me/OpenStreetMapAL", diff --git a/resources/europe/austria/at-forum.json b/resources/europe/austria/at-forum.json index a9f16f6f0..72a4b94d2 100644 --- a/resources/europe/austria/at-forum.json +++ b/resources/europe/austria/at-forum.json @@ -1,10 +1,10 @@ { "id": "at-forum", - "featureId": "austria", "type": "forum", - "name": "OpenStreetMap Austria Forum", + "includeLocations": ["austria.geojson"], "countryCodes": ["at"], - "languageCodes": ["en", "de"], + "languageCodes": ["de", "en"], + "name": "OpenStreetMap Austria Forum", "description": "The official forum for OpenStreetMap questions in and around Austria", "url": "https://forum.openstreetmap.org/viewforum.php?id=89", "contacts": [{"name": "emga", "email": "emgaosm@gmail.com"}], diff --git a/resources/europe/austria/at-mailinglist.json b/resources/europe/austria/at-mailinglist.json index dd1fe8e6c..43337600f 100644 --- a/resources/europe/austria/at-mailinglist.json +++ b/resources/europe/austria/at-mailinglist.json @@ -1,10 +1,10 @@ { "id": "at-mailinglist", - "featureId": "austria", "type": "mailinglist", - "name": "Talk-at Mailing List", + "includeLocations": ["austria.geojson"], "countryCodes": ["at"], "languageCodes": ["de"], + "name": "Talk-at Mailing List", "description": "Talk-at is the official mailing list for the Austrian OSM community", "url": "https://lists.openstreetmap.org/listinfo/talk-at", "contacts": [{"name": "AT community", "email": "info@openstreetmap.at"}], diff --git a/resources/europe/austria/at-twitter.json b/resources/europe/austria/at-twitter.json index 03552e94e..6122aef52 100644 --- a/resources/europe/austria/at-twitter.json +++ b/resources/europe/austria/at-twitter.json @@ -1,10 +1,10 @@ { "id": "at-twitter", - "featureId": "austria", "type": "twitter", - "name": "OpenStreetMap Austria Twitter", + "includeLocations": ["austria.geojson"], "countryCodes": ["at"], "languageCodes": ["de"], + "name": "OpenStreetMap Austria Twitter", "description": "OpenStreetMap Austria On Twitter: {url}", "url": "https://twitter.com/osm_at", "contacts": [{"name": "AT Community", "email": "info@openstreetmap.at"}] diff --git a/resources/europe/austria/graz-meetup.json b/resources/europe/austria/graz-meetup.json index 170002e79..4377100d6 100644 --- a/resources/europe/austria/graz-meetup.json +++ b/resources/europe/austria/graz-meetup.json @@ -1,7 +1,7 @@ { "id": "osmgraz-meetup", - "featureId": "graz", "type": "meetup", + "includeLocations": ["graz.geojson"], "countryCodes": ["at"], "languageCodes": ["de", "en"], "name": "OSM community meetup Graz", diff --git a/resources/europe/austria/graz-twitter.json b/resources/europe/austria/graz-twitter.json index 10ca5e4c1..85cb382ac 100644 --- a/resources/europe/austria/graz-twitter.json +++ b/resources/europe/austria/graz-twitter.json @@ -1,7 +1,7 @@ { "id": "osmgraz-twitter", - "featureId": "graz", "type": "twitter", + "includeLocations": ["graz.geojson"], "countryCodes": ["at"], "languageCodes": ["de", "en"], "name": "OSM community Graz on twitter", diff --git a/resources/europe/austria/osm-at.json b/resources/europe/austria/osm-at.json index 6b2aac4a3..e888aa6d2 100644 --- a/resources/europe/austria/osm-at.json +++ b/resources/europe/austria/osm-at.json @@ -1,7 +1,7 @@ { "id": "osm-at", - "featureId": "austria", "type": "osm", + "includeLocations": ["austria.geojson"], "countryCodes": ["at"], "languageCodes": ["de"], "name": "OpenStreetMap Austria", diff --git a/resources/europe/belarus/byosm.json b/resources/europe/belarus/byosm.json index 9b4e10312..7b537e3bb 100644 --- a/resources/europe/belarus/byosm.json +++ b/resources/europe/belarus/byosm.json @@ -1,8 +1,8 @@ { "id": "byosm", "type": "telegram", - "featureId": "belarus", - "languageCodes": ["ru", "be", "en"], + "includeLocations": ["belarus.geojson"], + "languageCodes": ["be", "en", "ru"], "name": "OpenStreetMap Belarus", "description": "OpenStreetMap Belarus telegram chat", "url": "https://t.me/byosm", diff --git a/resources/europe/belgium/be-chapter.json b/resources/europe/belgium/be-chapter.json index 157d73197..d58b92837 100644 --- a/resources/europe/belgium/be-chapter.json +++ b/resources/europe/belgium/be-chapter.json @@ -1,10 +1,10 @@ { "id": "be-chapter", - "featureId": "belgium", "type": "osm-lc", - "name": "OpenStreetMap Belgium Local Chapter", + "includeLocations": ["belgium.geojson"], "countryCodes": ["be"], - "languageCodes": ["en", "nl", "fr", "de"], + "languageCodes": ["de", "en", "fr", "nl"], + "name": "OpenStreetMap Belgium Local Chapter", "description": "We help grow and improve OpenStreetMap in Belgium.", "extendedDescription": "If you want to help to improve and grow the mapping community in Belgium, to make even more people crazy about mapping, OpenStreetMap Belgium is the right place for you!", "url": "https://openstreetmap.be/", diff --git a/resources/europe/belgium/be-facebook.json b/resources/europe/belgium/be-facebook.json index 89737f80f..02e47fc95 100644 --- a/resources/europe/belgium/be-facebook.json +++ b/resources/europe/belgium/be-facebook.json @@ -1,12 +1,11 @@ { "id": "be-facebook", - "featureId": "belgium", "type": "facebook", - "name": "OpenStreetMap BE Facebook Community", + "includeLocations": ["belgium.geojson"], "countryCodes": ["be"], - "languageCodes": ["en", "nl", "fr", "de"], + "languageCodes": ["de", "en", "fr", "nl"], + "name": "OpenStreetMap BE Facebook Community", "description": "Mappers and OpenStreetMap on Facebook in Belgium", "url": "https://www.facebook.com/groups/1419016881706058/", - "contacts": [{"name": "BE community", "email": "community@osm.be"}], - "order": 0 + "contacts": [{"name": "BE community", "email": "community@osm.be"}] } \ No newline at end of file diff --git a/resources/europe/belgium/be-forum.json b/resources/europe/belgium/be-forum.json index c15a3ca05..ee84f5693 100644 --- a/resources/europe/belgium/be-forum.json +++ b/resources/europe/belgium/be-forum.json @@ -1,9 +1,9 @@ { "id": "be-forum", "type": "forum", - "featureId": "belgium", + "includeLocations": ["belgium.geojson"], "countryCodes": ["be"], - "languageCodes": ["en", "nl", "fr", "de"], + "languageCodes": ["de", "en", "fr", "nl"], "name": "OpenStreetMap BE forum", "description": "OpenStreetMap Belgium web forum", "url": "https://forum.openstreetmap.org/viewforum.php?id=29", diff --git a/resources/europe/belgium/be-irc.json b/resources/europe/belgium/be-irc.json index a0355298d..c86bde072 100644 --- a/resources/europe/belgium/be-irc.json +++ b/resources/europe/belgium/be-irc.json @@ -1,10 +1,10 @@ { "id": "be-irc", - "featureId": "belgium", "type": "irc", - "name": "OpenStreetMap Belgium IRC", + "includeLocations": ["belgium.geojson"], "countryCodes": ["be"], - "languageCodes": ["en", "nl", "fr", "de"], + "languageCodes": ["de", "en", "fr", "nl"], + "name": "OpenStreetMap Belgium IRC", "description": "Join #osmbe on irc.oftc.net (port 6667)", "extendedDescription": "Join #osmbe on irc.oftc.net (port 6667), it is bridged with the Matrix chat channel", "url": "https://webchat.oftc.net/?channels=osmbe", diff --git a/resources/europe/belgium/be-mailinglist.json b/resources/europe/belgium/be-mailinglist.json index a395b65ad..1c9d8d32a 100644 --- a/resources/europe/belgium/be-mailinglist.json +++ b/resources/europe/belgium/be-mailinglist.json @@ -1,10 +1,10 @@ { "id": "be-mailinglist", - "featureId": "belgium", "type": "mailinglist", - "name": "Talk-be Mailing List", + "includeLocations": ["belgium.geojson"], "countryCodes": ["be"], - "languageCodes": ["en", "nl", "fr", "de"], + "languageCodes": ["de", "en", "fr", "nl"], + "name": "Talk-be Mailing List", "description": "Talk-be is the official mailing list for the Belgian OSM community", "url": "https://lists.openstreetmap.org/listinfo/talk-be", "contacts": [{"name": "BE community", "email": "community@osm.be"}], diff --git a/resources/europe/belgium/be-matrix.json b/resources/europe/belgium/be-matrix.json index f410893c7..290a5e468 100644 --- a/resources/europe/belgium/be-matrix.json +++ b/resources/europe/belgium/be-matrix.json @@ -1,9 +1,9 @@ { "id": "be-matrix", - "featureId": "belgium", "type": "matrix", + "includeLocations": ["belgium.geojson"], "countryCodes": ["be"], - "languageCodes": ["en", "nl", "fr", "de"], + "languageCodes": ["de", "en", "fr", "nl"], "name": "OpenStreetMap BE Matrix channel", "description": "All mappers are welcome!", "extendedDescription": "Most talk is happening at the \"OpenStreetMap Belgium\" channel. You can ask anything there! The other rooms are for specific subjects.", diff --git a/resources/europe/belgium/be-meetup.json b/resources/europe/belgium/be-meetup.json index a13a87487..fcc6932c2 100644 --- a/resources/europe/belgium/be-meetup.json +++ b/resources/europe/belgium/be-meetup.json @@ -1,9 +1,9 @@ { "id": "be-meetup", - "featureId": "belgium", "type": "meetup", + "includeLocations": ["belgium.geojson"], "countryCodes": ["be"], - "languageCodes": ["en", "nl", "fr", "de"], + "languageCodes": ["de", "en", "fr", "nl"], "name": "OpenStreetMap Belgium Meetup", "description": "Real life meetups of everyone who is interested in OpenStreetMap", "extendedDescription": "Physical meetups are great to meet other mappers, ask them questions and to learn a lot. Especially new contributors are very welcome!", diff --git a/resources/europe/belgium/be-twitter.json b/resources/europe/belgium/be-twitter.json index 7a3ae8477..61262b36f 100644 --- a/resources/europe/belgium/be-twitter.json +++ b/resources/europe/belgium/be-twitter.json @@ -1,10 +1,10 @@ { "id": "be-twitter", - "featureId": "belgium", "type": "twitter", - "name": "OpenStreetMap Belgium Twitter", + "includeLocations": ["belgium.geojson"], "countryCodes": ["be"], - "languageCodes": ["en", "nl", "fr", "de"], + "languageCodes": ["de", "en", "fr", "nl"], + "name": "OpenStreetMap Belgium Twitter", "description": "OSM Belgium on Twitter: @osm_be", "url": "https://twitter.com/osm_be", "contacts": [{"name": "BE community", "email": "community@osm.be"}], diff --git a/resources/europe/bosnia_herzegovina/OSM-BiH-telegram.json b/resources/europe/bosnia_herzegovina/OSM-BiH-telegram.json index 97cd0cd57..69f1cb7fc 100644 --- a/resources/europe/bosnia_herzegovina/OSM-BiH-telegram.json +++ b/resources/europe/bosnia_herzegovina/OSM-BiH-telegram.json @@ -1,9 +1,9 @@ { "id": "OSM-BiH-telegram", - "featureId": "bosnia_herzegovina", "type": "telegram", - "name": "OpenStreetMap BiH Telegram", + "includeLocations": ["bosnia_herzegovina.geojson"], "countryCodes": ["ba"], + "name": "OpenStreetMap BiH Telegram", "description": "A Telegram group for the OSM Bosnia and Herzegovina community: {url}", "url": "https://t.me/osmbih", "order": 5 diff --git a/resources/europe/croatia/hr-facebook.json b/resources/europe/croatia/hr-facebook.json index e405b496a..1b8c514ec 100644 --- a/resources/europe/croatia/hr-facebook.json +++ b/resources/europe/croatia/hr-facebook.json @@ -1,10 +1,10 @@ { "id": "hr-facebook", - "featureId": "croatia", "type": "facebook", - "name": "OpenStreetMap Croatia Facebook group", + "includeLocations": ["croatia.geojson"], "countryCodes": ["hr"], "languageCodes": ["hr"], + "name": "OpenStreetMap Croatia Facebook group", "description": "OpenStreetMap Croatia Facebook group", "url": "https://www.facebook.com/groups/541098862671461", "contacts": [{"name": "OpenStreetMap Croatia", "email": "info@osm-hr.org"}], diff --git a/resources/europe/croatia/hr-irc.json b/resources/europe/croatia/hr-irc.json index c3ae642b3..e27e8b90f 100644 --- a/resources/europe/croatia/hr-irc.json +++ b/resources/europe/croatia/hr-irc.json @@ -1,10 +1,10 @@ { "id": "hr-irc", - "featureId": "croatia", "type": "irc", - "name": "OpenStreetMap Croatia on IRC", + "includeLocations": ["croatia.geojson"], "countryCodes": ["hr"], "languageCodes": ["hr"], + "name": "OpenStreetMap Croatia on IRC", "description": "Join #osm-hr on irc.freenode.org (port 6667)", "url": "https://webchat.freenode.net/?url=irc://irc.freenode.net/osm-hr", "contacts": [{"name": "OpenStreetMap Croatia", "email": "info@osm-hr.org"}], diff --git a/resources/europe/croatia/hr-mailinglist.json b/resources/europe/croatia/hr-mailinglist.json index d52b95182..6d19382ca 100644 --- a/resources/europe/croatia/hr-mailinglist.json +++ b/resources/europe/croatia/hr-mailinglist.json @@ -1,10 +1,10 @@ { "id": "hr-mailinglist", - "featureId": "croatia", "type": "mailinglist", - "name": "Talk-hr Mailing List", + "includeLocations": ["croatia.geojson"], "countryCodes": ["hr"], "languageCodes": ["hr"], + "name": "Talk-hr Mailing List", "description": "Talk-hr mailing list", "url": "https://lists.openstreetmap.org/listinfo/talk-hr", "contacts": [{"name": "OpenStreetMap Croatia", "email": "info@osm-hr.org"}], diff --git a/resources/europe/czech_republic/czech-community.json b/resources/europe/czech_republic/czech-community.json index 7d8852ab6..8568b42eb 100644 --- a/resources/europe/czech_republic/czech-community.json +++ b/resources/europe/czech_republic/czech-community.json @@ -1,10 +1,10 @@ { "id": "czech-community", - "featureId": "czechia", "type": "osm", - "name": "Czech OSM community", + "includeLocations": ["czechia.geojson"], "countryCodes": ["cz"], - "languageCodes": ["cs", "sk", "en"], + "languageCodes": ["cs", "en", "sk"], + "name": "Czech OSM community", "description": "Map portal, website and contacts on OSM members in Czechia", "url": "https://openstreetmap.cz/komunita", "contacts": [{"name": "osmcz", "email": "dev@openstreetmap.cz"}] diff --git a/resources/europe/czech_republic/osmcz-facebook.json b/resources/europe/czech_republic/osmcz-facebook.json index 356ba85a8..ff63d7e3d 100644 --- a/resources/europe/czech_republic/osmcz-facebook.json +++ b/resources/europe/czech_republic/osmcz-facebook.json @@ -1,10 +1,10 @@ { "id": "osmcz-facebook", - "featureId": "czechia", "type": "facebook", - "name": "OpenStreetMap CZ on Facebook", + "includeLocations": ["czechia.geojson"], "countryCodes": ["cz"], - "languageCodes": ["cs", "sk", "en"], + "languageCodes": ["cs", "en", "sk"], + "name": "OpenStreetMap CZ on Facebook", "description": "Follow Czech community on Facebook - including translated WeeklyOSM!", "url": "https://www.facebook.com/osmcz", "contacts": [{"name": "osmcz", "email": "dev@openstreetmap.cz"}], diff --git a/resources/europe/czech_republic/osmcz-telegram.json b/resources/europe/czech_republic/osmcz-telegram.json index dec690216..02400cddb 100644 --- a/resources/europe/czech_republic/osmcz-telegram.json +++ b/resources/europe/czech_republic/osmcz-telegram.json @@ -1,10 +1,10 @@ { "id": "OSM-CZ-telegram", - "featureId": "czechia", "type": "telegram", - "name": "OpenStreetMap CZ Telegram", + "includeLocations": ["czechia.geojson"], "countryCodes": ["cz"], - "languageCodes": ["cs", "sk", "en"], + "languageCodes": ["cs", "en", "sk"], + "name": "OpenStreetMap CZ Telegram", "description": "A Telegram group for the OSM Czech community: {url}", "url": "https://t.me/OSM_cz", "order": 5 diff --git a/resources/europe/czech_republic/osmcz-twitter.json b/resources/europe/czech_republic/osmcz-twitter.json index eb7ed1eca..ef4b492f2 100644 --- a/resources/europe/czech_republic/osmcz-twitter.json +++ b/resources/europe/czech_republic/osmcz-twitter.json @@ -1,10 +1,10 @@ { "id": "osmcz-twitter", - "featureId": "czechia", "type": "twitter", - "name": "Czech twitter @osmcz", + "includeLocations": ["czechia.geojson"], "countryCodes": ["cz"], - "languageCodes": ["cs", "sk", "en"], + "languageCodes": ["cs", "en", "sk"], + "name": "Czech twitter @osmcz", "description": "Follow czech community on Twitter - including translated WeeklyOSM!", "url": "https://twitter.com/osmcz", "contacts": [{"name": "osmcz", "email": "dev@openstreetmap.cz"}] diff --git a/resources/europe/czech_republic/talk-cz-mailinglist.json b/resources/europe/czech_republic/talk-cz-mailinglist.json index 21bd0af1c..17e933545 100644 --- a/resources/europe/czech_republic/talk-cz-mailinglist.json +++ b/resources/europe/czech_republic/talk-cz-mailinglist.json @@ -1,10 +1,10 @@ { "id": "talk-cz-mailinglist", - "featureId": "czechia", "type": "mailinglist", - "name": "Czech mailing list (talk-cz)", + "includeLocations": ["czechia.geojson"], "countryCodes": ["cz"], - "languageCodes": ["cs", "sk", "en"], + "languageCodes": ["cs", "en", "sk"], + "name": "Czech mailing list (talk-cz)", "description": "Talk-cz is the official mailing list for Czech community", "url": "https://openstreetmap.cz/talkcz", "contacts": [{"name": "osmcz", "email": "dev@openstreetmap.cz"}], diff --git a/resources/europe/denmark/dk-forum.json b/resources/europe/denmark/dk-forum.json index 0123db7a1..bc24755e8 100644 --- a/resources/europe/denmark/dk-forum.json +++ b/resources/europe/denmark/dk-forum.json @@ -1,7 +1,7 @@ { "id": "dk-forum", "type": "forum", - "featureId": "denmark", + "includeLocations": ["denmark.geojson"], "countryCodes": ["dk"], "languageCodes": ["da"], "name": "OpenStreetMap Denmark Web Forum", diff --git a/resources/europe/denmark/dk-irc.json b/resources/europe/denmark/dk-irc.json index b50a3e900..e5375a777 100644 --- a/resources/europe/denmark/dk-irc.json +++ b/resources/europe/denmark/dk-irc.json @@ -1,10 +1,10 @@ { "id": "dk-irc", - "featureId": "denmark", "type": "irc", - "name": "OpenStreetMap Denmark IRC", + "includeLocations": ["denmark.geojson"], "countryCodes": ["dk"], "languageCodes": ["da"], + "name": "OpenStreetMap Denmark IRC", "description": "Join #osm-dk on irc.oftc.net (port 6667)", "url": "https://webchat.oftc.net/?channels=osm-dk", "contacts": [{"name": "Talk-dk-owner", "email": "talk-dk-owner@openstreetmap.org"}], diff --git a/resources/europe/denmark/dk-mailinglist.json b/resources/europe/denmark/dk-mailinglist.json index 94610a874..b43e95d1b 100644 --- a/resources/europe/denmark/dk-mailinglist.json +++ b/resources/europe/denmark/dk-mailinglist.json @@ -1,10 +1,10 @@ { "id": "dk-mailinglist", - "featureId": "denmark", "type": "mailinglist", - "name": "Talk-dk Mailing List", + "includeLocations": ["denmark.geojson"], "countryCodes": ["dk"], "languageCodes": ["da"], + "name": "Talk-dk Mailing List", "description": "A mailing list to discuss OpenStreetMap in Denmark", "url": "https://lists.openstreetmap.org/listinfo/talk-dk", "contacts": [{"name": "Talk-dk-owner", "email": "talk-dk-owner@openstreetmap.org"}], diff --git a/resources/europe/finland/fi-forum.json b/resources/europe/finland/fi-forum.json index 8dd33a5db..d5f1586b6 100644 --- a/resources/europe/finland/fi-forum.json +++ b/resources/europe/finland/fi-forum.json @@ -1,7 +1,7 @@ { "id": "fi-forum", - "featureId": "finland", "type": "forum", + "includeLocations": ["finland.geojson"], "countryCodes": ["fi"], "languageCodes": ["fi"], "name": "OpenStreetMap FI forum", diff --git a/resources/europe/finland/fi-irc.json b/resources/europe/finland/fi-irc.json index 76578cde8..24b8c9702 100644 --- a/resources/europe/finland/fi-irc.json +++ b/resources/europe/finland/fi-irc.json @@ -1,10 +1,10 @@ { "id": "fi-irc", - "featureId": "finland", "type": "irc", - "name": "OpenStreetMap Finland IRC", + "includeLocations": ["finland.geojson"], "countryCodes": ["fi"], "languageCodes": ["fi"], + "name": "OpenStreetMap Finland IRC", "description": "Join #osm-fi on irc.oftc.net (port 6667)", "url": "https://webchat.oftc.net/?channels=osm-fi", "contacts": [{"name": "Talk-fi administrator", "email": "talk-fi-owner@openstreetmap.org"}], diff --git a/resources/europe/finland/fi-mailinglist.json b/resources/europe/finland/fi-mailinglist.json index e00be43b6..0bd62cbdc 100644 --- a/resources/europe/finland/fi-mailinglist.json +++ b/resources/europe/finland/fi-mailinglist.json @@ -1,10 +1,10 @@ { "id": "fi-mailinglist", - "featureId": "finland", "type": "mailinglist", - "name": "Talk-fi Mailing List", + "includeLocations": ["finland.geojson"], "countryCodes": ["fi"], "languageCodes": ["fi"], + "name": "Talk-fi Mailing List", "description": "Talk-fi is the official mailing list for the Finnish OSM community", "url": "https://lists.openstreetmap.org/listinfo/talk-fi", "contacts": [{"name": "Talk-fi administrator", "email": "talk-fi-owner@openstreetmap.org"}], diff --git a/resources/europe/france/fr-chapter.json b/resources/europe/france/fr-chapter.json index f8d156a4f..9f8cd4d3f 100644 --- a/resources/europe/france/fr-chapter.json +++ b/resources/europe/france/fr-chapter.json @@ -1,10 +1,10 @@ { "id": "fr-chapter", - "featureId": "france", "type": "osm-lc", - "name": "OpenStreetMap France Local Chapter", + "includeLocations": ["france.geojson"], "countryCodes": ["fr"], "languageCodes": ["fr"], + "name": "OpenStreetMap France Local Chapter", "description": "We help grow and improve OpenStreetMap in France.", "url": "https://www.openstreetmap.fr/", "contacts": [{"name": "OpenStreetMap France", "email": "contact@openstreetmap.fr"}], diff --git a/resources/europe/france/fr-facebook.json b/resources/europe/france/fr-facebook.json index 2e85ddacc..29e43c01c 100644 --- a/resources/europe/france/fr-facebook.json +++ b/resources/europe/france/fr-facebook.json @@ -1,10 +1,10 @@ { "id": "fr-facebook", - "featureId": "france", "type": "facebook", - "name": "OpenStreetMap France Facebook page", + "includeLocations": ["france.geojson"], "countryCodes": ["fr"], "languageCodes": ["fr"], + "name": "OpenStreetMap France Facebook page", "description": "OpenStreetMap France Facebook page", "url": "https://www.facebook.com/osmfr", "contacts": [{"name": "OpenStreetMap France", "email": "contact@openstreetmap.fr"}], diff --git a/resources/europe/france/fr-forum.json b/resources/europe/france/fr-forum.json index 17aef97f1..a47acbfb3 100644 --- a/resources/europe/france/fr-forum.json +++ b/resources/europe/france/fr-forum.json @@ -1,7 +1,7 @@ { "id": "fr-forum", "type": "forum", - "featureId": "france", + "includeLocations": ["france.geojson"], "countryCodes": ["fr"], "languageCodes": ["fr"], "name": "OpenStreetMap France web forum", diff --git a/resources/europe/france/fr-irc.json b/resources/europe/france/fr-irc.json index c9da3a768..98340f599 100644 --- a/resources/europe/france/fr-irc.json +++ b/resources/europe/france/fr-irc.json @@ -1,10 +1,10 @@ { "id": "fr-irc", - "featureId": "france", "type": "irc", - "name": "OpenStreetMap France on IRC", + "includeLocations": ["france.geojson"], "countryCodes": ["fr"], "languageCodes": ["fr"], + "name": "OpenStreetMap France on IRC", "description": "Join #osm-fr on irc.oftc.net (port 6667)", "url": "https://webchat.oftc.net/?channels=osm-fr", "contacts": [{"name": "OpenStreetMap France", "email": "contact@openstreetmap.fr"}], diff --git a/resources/europe/france/fr-mailinglist.json b/resources/europe/france/fr-mailinglist.json index ca7fb49ae..64a289bc6 100644 --- a/resources/europe/france/fr-mailinglist.json +++ b/resources/europe/france/fr-mailinglist.json @@ -1,10 +1,10 @@ { "id": "fr-mailinglist", - "featureId": "france", "type": "mailinglist", - "name": "Talk-fr Mailing List", + "includeLocations": ["france.geojson"], "countryCodes": ["fr"], "languageCodes": ["fr"], + "name": "Talk-fr Mailing List", "description": "Talk-fr mailing list", "url": "https://lists.openstreetmap.org/listinfo/talk-fr", "contacts": [{"name": "OpenStreetMap France", "email": "contact@openstreetmap.fr"}], diff --git a/resources/europe/france/fr-telegram.json b/resources/europe/france/fr-telegram.json index dcf4354e9..a2cec1b8a 100644 --- a/resources/europe/france/fr-telegram.json +++ b/resources/europe/france/fr-telegram.json @@ -1,9 +1,9 @@ { "id": "fr-telegram", - "featureId": "france", "type": "telegram", - "name": "OpenStreetMap France on Telegram", + "includeLocations": ["france.geojson"], "countryCodes": ["fr"], + "name": "OpenStreetMap France on Telegram", "description": "A Telegram group for the OSM France community: {url}", "url": "https://t.me/osmfr", "contacts": [{"name": "OpenStreetMap France", "email": "contact@openstreetmap.fr"}], diff --git a/resources/europe/france/fr-twitter.json b/resources/europe/france/fr-twitter.json index 96d8a0390..ba6246ab3 100644 --- a/resources/europe/france/fr-twitter.json +++ b/resources/europe/france/fr-twitter.json @@ -1,10 +1,10 @@ { "id": "fr-twitter", - "featureId": "france", "type": "twitter", - "name": "OpenStreetMap France on Twitter", + "includeLocations": ["france.geojson"], "countryCodes": ["fr"], "languageCodes": ["fr"], + "name": "OpenStreetMap France on Twitter", "description": "OpenStreetMap France on Twitter: {url}", "url": "https://twitter.com/osm_fr", "contacts": [{"name": "OpenStreetMap France", "email": "contact@openstreetmap.fr"}] diff --git a/resources/europe/germany/de-berlin-mailinglist.json b/resources/europe/germany/de-berlin-mailinglist.json index d69be5343..c512b21c4 100644 --- a/resources/europe/germany/de-berlin-mailinglist.json +++ b/resources/europe/germany/de-berlin-mailinglist.json @@ -1,10 +1,10 @@ { "id": "de-berlin-mailinglist", - "featureId": "de-berlin-brandenburg", "type": "mailinglist", - "name": "Berlin Mailing List", + "includeLocations": ["de-berlin-brandenburg.geojson"], "countryCodes": ["de"], "languageCodes": ["de"], + "name": "Berlin Mailing List", "description": "This is the mailing list for the Berlin OSM community", "url": "https://lists.openstreetmap.de/listinfo/berlin", "contacts": [{"name": "FOSSGIS e.V.", "email": "info@fossgis.de"}], diff --git a/resources/europe/germany/de-berlin-meetup.json b/resources/europe/germany/de-berlin-meetup.json index f5c987961..a238903c5 100644 --- a/resources/europe/germany/de-berlin-meetup.json +++ b/resources/europe/germany/de-berlin-meetup.json @@ -1,10 +1,10 @@ { "id": "de-berlin-meetup", - "featureId": "de-berlin-brandenburg", "type": "meetup", - "name": "OpenStreetMap Berlin-Brandenburg Meetup", + "includeLocations": ["de-berlin-brandenburg.geojson"], "countryCodes": ["de"], "languageCodes": ["de"], + "name": "OpenStreetMap Berlin-Brandenburg Meetup", "description": "Mappers and OpenStreetMap users in the Berlin area", "url": "https://www.meetup.com/OSM-Berlin-Brandenburg/", "contacts": [{"name": "Christopher Lorenz", "email": "osm@lorenz.lu"}], diff --git a/resources/europe/germany/de-berlin-telegram.json b/resources/europe/germany/de-berlin-telegram.json index dee48ca00..0c4f5f565 100644 --- a/resources/europe/germany/de-berlin-telegram.json +++ b/resources/europe/germany/de-berlin-telegram.json @@ -1,10 +1,10 @@ { "id": "de-berlin-telegram", - "featureId": "de-berlin-brandenburg", "type": "telegram", - "name": "@osmberlin on Telegram", + "includeLocations": ["de-berlin-brandenburg.geojson"], "countryCodes": ["de"], "languageCodes": ["de"], + "name": "@osmberlin on Telegram", "description": "OpenStreetMap Berlin Telegram chat", "url": "https://t.me/osmberlin", "contacts": [{"name": "Christopher Lorenz", "email": "osm@lorenz.lu"}] diff --git a/resources/europe/germany/de-berlin-twitter.json b/resources/europe/germany/de-berlin-twitter.json index 899867755..bdfbd253f 100644 --- a/resources/europe/germany/de-berlin-twitter.json +++ b/resources/europe/germany/de-berlin-twitter.json @@ -1,10 +1,10 @@ { "id": "de-berlin-twitter", - "featureId": "de-berlin-brandenburg", "type": "twitter", - "name": "OpenStreetMap Berlin Twitter", + "includeLocations": ["de-berlin-brandenburg.geojson"], "countryCodes": ["de"], "languageCodes": ["de"], + "name": "OpenStreetMap Berlin Twitter", "description": "Follow us on Twitter: {url}", "url": "https://twitter.com/osmberlin", "contacts": [{"name": "Christopher Lorenz", "email": "osm@lorenz.lu"}] diff --git a/resources/europe/germany/de-forum.json b/resources/europe/germany/de-forum.json index 26e459819..fd2dfad0e 100644 --- a/resources/europe/germany/de-forum.json +++ b/resources/europe/germany/de-forum.json @@ -1,7 +1,7 @@ { "id": "de-forum", - "featureId": "germany", "type": "forum", + "includeLocations": ["germany.geojson"], "countryCodes": ["de"], "languageCodes": ["de"], "name": "OpenStreetMap DE forum", diff --git a/resources/europe/germany/de-hamburg-telegram.json b/resources/europe/germany/de-hamburg-telegram.json index a2e451f9e..4f82ccf59 100644 --- a/resources/europe/germany/de-hamburg-telegram.json +++ b/resources/europe/germany/de-hamburg-telegram.json @@ -1,10 +1,10 @@ { "id": "de-hamburg-telegram", - "featureId": "de-hamburg", "type": "telegram", - "name": "OSM Hamburg on Telegram", + "includeLocations": ["de-hamburg.geojson"], "countryCodes": ["de"], "languageCodes": ["de"], + "name": "OSM Hamburg on Telegram", "description": "OpenStreetMap Hamburg Telegram chat: {url}", "url": "https://t.me/osm_de_hh" } \ No newline at end of file diff --git a/resources/europe/germany/de-irc.json b/resources/europe/germany/de-irc.json index 1748c4c92..00700e9d8 100644 --- a/resources/europe/germany/de-irc.json +++ b/resources/europe/germany/de-irc.json @@ -1,10 +1,10 @@ { "id": "de-irc", - "featureId": "germany", "type": "irc", - "name": "OpenStreetMap Germany IRC", + "includeLocations": ["germany.geojson"], "countryCodes": ["de"], "languageCodes": ["de"], + "name": "OpenStreetMap Germany IRC", "description": "Join #osm-de on irc.oftc.net (port 6667)", "url": "https://webchat.oftc.net/?channels=osm-de", "contacts": [{"name": "FOSSGIS e.V.", "email": "info@fossgis.de"}], diff --git a/resources/europe/germany/de-mailinglist.json b/resources/europe/germany/de-mailinglist.json index 7de88fce1..f82546516 100644 --- a/resources/europe/germany/de-mailinglist.json +++ b/resources/europe/germany/de-mailinglist.json @@ -1,10 +1,10 @@ { "id": "de-mailinglist", - "featureId": "germany", "type": "mailinglist", - "name": "Talk-de Mailing List", + "includeLocations": ["germany.geojson"], "countryCodes": ["de"], "languageCodes": ["de"], + "name": "Talk-de Mailing List", "description": "Talk-de is the official mailing list for the German OSM community", "url": "https://lists.openstreetmap.org/listinfo/talk-de", "contacts": [{"name": "FOSSGIS e.V.", "email": "info@fossgis.de"}], diff --git a/resources/europe/germany/de-ostwestfalen-lippe-mailinglist.json b/resources/europe/germany/de-ostwestfalen-lippe-mailinglist.json index f766e5e7c..b81ba6993 100644 --- a/resources/europe/germany/de-ostwestfalen-lippe-mailinglist.json +++ b/resources/europe/germany/de-ostwestfalen-lippe-mailinglist.json @@ -1,10 +1,10 @@ { "id": "de-ostwestfalen-lippe-mailinglist", - "featureId": "de-ostwestfalen-lippe", "type": "mailinglist", - "name": "OWL Mailing List", + "includeLocations": ["de-ostwestfalen-lippe.geojson"], "countryCodes": ["de"], "languageCodes": ["de"], + "name": "OWL Mailing List", "description": "This is the mailing list for the Ostwestfalen-Lippe OSM community", "url": "https://gt.owl.de/mailman/listinfo/osm", "contacts": [{"name": "Florian Lohoff", "email": "osm-owner@gt.owl.de"}], diff --git a/resources/europe/germany/de-telegram.json b/resources/europe/germany/de-telegram.json index 26983641c..4401c45f7 100644 --- a/resources/europe/germany/de-telegram.json +++ b/resources/europe/germany/de-telegram.json @@ -1,10 +1,10 @@ { "id": "de-telegram", - "featureId": "germany", "type": "telegram", - "name": "OpenStreetMap Germany Telegram", + "includeLocations": ["germany.geojson"], "countryCodes": ["de"], "languageCodes": ["de"], + "name": "OpenStreetMap Germany Telegram", "description": "Join the OpenStreetMap Germany Telegram supergroup at {url}", "url": "https://t.me/OSM_de", "contacts": [{"name": "Max N", "email": "abonnements@revolwear.com"}] diff --git a/resources/europe/germany/osm-de.json b/resources/europe/germany/osm-de.json index ac66efac6..aef8074c2 100644 --- a/resources/europe/germany/osm-de.json +++ b/resources/europe/germany/osm-de.json @@ -1,7 +1,7 @@ { "id": "osm-de", - "featureId": "germany", "type": "osm-lc", + "includeLocations": ["germany.geojson"], "countryCodes": ["de"], "languageCodes": ["de"], "name": "OpenStreetMap Germany", diff --git a/resources/europe/germany/ym-Heidelberg-University.json b/resources/europe/germany/ym-Heidelberg-University.json index 71df7d585..d51e9891d 100644 --- a/resources/europe/germany/ym-Heidelberg-University.json +++ b/resources/europe/germany/ym-Heidelberg-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Heidelberg-University", "type": "youthmappers", + "includeLocations": ["heidelberg-university.geojson"], + "countryCodes": ["de"], "name": "disastermappers heidelberg", "description": "YouthMappers chapter at Heidelberg University", - "id": "ym-Heidelberg-University", - "featureId": "heidelberg-university", - "contacts": [{"name": "Organizer", "email": "disastermappers@posteo.de"}], "extendedDescription": "Disastermappers Heidelberg was founded in 2014 as a student initiative to build a platform for exchange between students, researchers and humanitarian actors. Disastermappers are a member of Missing Maps and are organizing mapathons, workshops and webinars in Heidelberg and beyond and support HOT and Missing Maps through research and applications.", - "countryCodes": ["de"], - "url": "https://disastermappers.wordpress.com/" + "url": "https://disastermappers.wordpress.com/", + "contacts": [{"name": "Organizer", "email": "disastermappers@posteo.de"}] } \ No newline at end of file diff --git a/resources/europe/hungary/hu-facebook.json b/resources/europe/hungary/hu-facebook.json index 3c96f519f..427e5b6c6 100644 --- a/resources/europe/hungary/hu-facebook.json +++ b/resources/europe/hungary/hu-facebook.json @@ -1,10 +1,10 @@ { "id": "hu-facebook", - "featureId": "hungary", "type": "facebook", - "name": "OpenStreetMap HU on Facebook", + "includeLocations": ["hungary.geojson"], "countryCodes": ["hu"], "languageCodes": ["hu"], + "name": "OpenStreetMap HU on Facebook", "description": "Mappers and OpenStreetMap Facebook in Hungary", "url": "https://www.facebook.com/groups/osm.hu/", "contacts": [{"name": "Ferenc Veres", "email": "info@openstreetmap.hu"}], diff --git a/resources/europe/hungary/hu-forum.json b/resources/europe/hungary/hu-forum.json index 1bef77b82..e8872431b 100644 --- a/resources/europe/hungary/hu-forum.json +++ b/resources/europe/hungary/hu-forum.json @@ -1,7 +1,7 @@ { "id": "hu-forum", - "featureId": "hungary", "type": "forum", + "includeLocations": ["hungary.geojson"], "countryCodes": ["hu"], "languageCodes": ["hu"], "name": "OpenStreetMap HU forum", diff --git a/resources/europe/hungary/hu-meetup.json b/resources/europe/hungary/hu-meetup.json index ffabba3d1..32d2b06b7 100644 --- a/resources/europe/hungary/hu-meetup.json +++ b/resources/europe/hungary/hu-meetup.json @@ -1,7 +1,7 @@ { "id": "hu-meetup", - "featureId": "hungary", "type": "meetup", + "includeLocations": ["hungary.geojson"], "countryCodes": ["hu"], "languageCodes": ["hu"], "name": "OpenStreetMap Hungary Meetup", diff --git a/resources/europe/iceland/is-chapter.json b/resources/europe/iceland/is-chapter.json index b1950dfe1..462517903 100644 --- a/resources/europe/iceland/is-chapter.json +++ b/resources/europe/iceland/is-chapter.json @@ -1,10 +1,10 @@ { "id": "is-chapter", - "featureId": "iceland", "type": "osm-lc", - "name": "OpenStreetMap Iceland Local Chapter", + "includeLocations": ["iceland.geojson"], "countryCodes": ["is"], - "languageCodes": ["is", "en"], + "languageCodes": ["en", "is"], + "name": "OpenStreetMap Iceland Local Chapter", "description": "We help grow and improve OpenStreetMap in Iceland.", "url": "https://www.hlidskjalf.is/", "contacts": [{"name": "Talk-is-owner", "email": "talk-is-owner@openstreetmap.org"}], diff --git a/resources/europe/iceland/is-facebook.json b/resources/europe/iceland/is-facebook.json index 7ad708475..d41e775c5 100644 --- a/resources/europe/iceland/is-facebook.json +++ b/resources/europe/iceland/is-facebook.json @@ -1,9 +1,9 @@ { "id": "is-facebook", "type": "facebook", - "featureId": "iceland", + "includeLocations": ["iceland.geojson"], "countryCodes": ["is"], - "languageCodes": ["is", "en"], + "languageCodes": ["en", "is"], "name": "OSM Iceland on Facebook", "description": "Page of OpenStreetMap in Iceland", "url": "https://www.facebook.com/osmiceland/", diff --git a/resources/europe/iceland/is-mailinglist.json b/resources/europe/iceland/is-mailinglist.json index af3540c31..8c726b4cc 100644 --- a/resources/europe/iceland/is-mailinglist.json +++ b/resources/europe/iceland/is-mailinglist.json @@ -1,9 +1,9 @@ { "id": "is-mailinglist", "type": "mailinglist", - "featureId": "iceland", + "includeLocations": ["iceland.geojson"], "countryCodes": ["is"], - "languageCodes": ["is", "en"], + "languageCodes": ["en", "is"], "name": "Talk-is Mailing List", "description": "Talk-is is the official mailing list for the Icelandic OSM community", "url": "https://lists.openstreetmap.org/listinfo/talk-is", diff --git a/resources/europe/iceland/is-twitter.json b/resources/europe/iceland/is-twitter.json index 9a7025049..d5bf35ac5 100644 --- a/resources/europe/iceland/is-twitter.json +++ b/resources/europe/iceland/is-twitter.json @@ -1,9 +1,9 @@ { "id": "is-twitter", "type": "twitter", - "featureId": "iceland", + "includeLocations": ["iceland.geojson"], "countryCodes": ["is"], - "languageCodes": ["is", "en"], + "languageCodes": ["en", "is"], "name": "OSM Iceland on Twitter", "description": "Twitter of OpenStreetMap in Iceland", "url": "https://twitter.com/openstreetmapis", diff --git a/resources/europe/ireland/ireland-chapter.json b/resources/europe/ireland/ireland-chapter.json index 07d055509..a0c4d8165 100644 --- a/resources/europe/ireland/ireland-chapter.json +++ b/resources/europe/ireland/ireland-chapter.json @@ -1,10 +1,10 @@ { "id": "ireland-chapter", - "featureId": "ireland", "type": "osm-lc", - "name": "OpenStreetMap Ireland Local Chapter", + "includeLocations": ["ireland.geojson"], "countryCodes": ["gb", "ie"], "languageCodes": ["en"], + "name": "OpenStreetMap Ireland Local Chapter", "description": "We help grow and improve OpenStreetMap in Ireland.", "extendedDescription": "OpenStreetMap Ireland provides an advocate voice for the OpenStreetMap project on the island of Ireland, in addition to interacting with other open initiatives.", "url": "https://www.openstreetmap.ie/", diff --git a/resources/europe/ireland/ireland-facebook.json b/resources/europe/ireland/ireland-facebook.json index 732214edc..7f1e19319 100644 --- a/resources/europe/ireland/ireland-facebook.json +++ b/resources/europe/ireland/ireland-facebook.json @@ -1,10 +1,10 @@ { "id": "ireland-facebook", - "featureId": "ireland", "type": "facebook", - "name": "OpenStreetMap Ireland Facebook group", + "includeLocations": ["ireland.geojson"], "countryCodes": ["gb", "ie"], "languageCodes": ["en"], + "name": "OpenStreetMap Ireland Facebook group", "description": "OpenStreetMap Ireland Facebook page", "url": "https://www.facebook.com/groups/OpenStreetMapIreland", "order": 3 diff --git a/resources/europe/ireland/ireland-irc.json b/resources/europe/ireland/ireland-irc.json index 76a6295fe..17183f353 100644 --- a/resources/europe/ireland/ireland-irc.json +++ b/resources/europe/ireland/ireland-irc.json @@ -1,10 +1,10 @@ { "id": "ireland-irc", - "featureId": "ireland", "type": "irc", - "name": "OpenStreetMap Ireland IRC", + "includeLocations": ["ireland.geojson"], "countryCodes": ["gb", "ie"], "languageCodes": ["en"], + "name": "OpenStreetMap Ireland IRC", "description": "Join #osm-ie on irc.oftc.net (port 6667)", "extendedDescription": "Join #osm-ie on irc.oftc.net (port 6667), please be patient and wait for a few minutes if you ask a question", "url": "https://webchat.oftc.net/?channels=osm-ie", diff --git a/resources/europe/ireland/ireland-mailinglist.json b/resources/europe/ireland/ireland-mailinglist.json index 4795efffb..bc1eff463 100644 --- a/resources/europe/ireland/ireland-mailinglist.json +++ b/resources/europe/ireland/ireland-mailinglist.json @@ -1,10 +1,10 @@ { "id": "ireland-mailinglist", - "featureId": "ireland", "type": "mailinglist", - "name": "Talk-ie Mailing List", + "includeLocations": ["ireland.geojson"], "countryCodes": ["gb", "ie"], "languageCodes": ["en"], + "name": "Talk-ie Mailing List", "description": "Talk-ie is the mailing list for the Irish OSM community", "url": "https://lists.openstreetmap.org/listinfo/talk-ie", "order": 2 diff --git a/resources/europe/ireland/ireland-telegram.json b/resources/europe/ireland/ireland-telegram.json index 0ab8af9a0..47d24de9f 100644 --- a/resources/europe/ireland/ireland-telegram.json +++ b/resources/europe/ireland/ireland-telegram.json @@ -1,7 +1,7 @@ { "id": "ireland-telegram", "type": "telegram", - "featureId": "ireland", + "includeLocations": ["ireland.geojson"], "countryCodes": ["gb", "ie"], "languageCodes": ["en"], "name": "OSM Ireland on Telegram", diff --git a/resources/europe/ireland/ireland-twitter.json b/resources/europe/ireland/ireland-twitter.json index 12033aa15..f1d9bca66 100644 --- a/resources/europe/ireland/ireland-twitter.json +++ b/resources/europe/ireland/ireland-twitter.json @@ -1,10 +1,10 @@ { "id": "ireland-twitter", - "featureId": "ireland", "type": "twitter", - "name": "OpenStreetMap IE on Twitter", + "includeLocations": ["ireland.geojson"], "countryCodes": ["gb", "ie"], "languageCodes": ["en"], + "name": "OpenStreetMap IE on Twitter", "description": "OpenStreetMap IE on Twitter: {url}", "url": "https://twitter.com/osm_ie", "order": 5 diff --git a/resources/europe/italy/it-chapter.json b/resources/europe/italy/it-chapter.json index b6fdff9ea..37ccb6d72 100644 --- a/resources/europe/italy/it-chapter.json +++ b/resources/europe/italy/it-chapter.json @@ -1,10 +1,10 @@ { "id": "it-chapter", - "featureId": "italy", "type": "osm-lc", - "name": "OpenStreetMap Italy Local Chapter", + "includeLocations": ["italy.geojson"], "countryCodes": ["it"], "languageCodes": ["it"], + "name": "OpenStreetMap Italy Local Chapter", "description": "We help grow and improve OpenStreetMap in Italy.", "url": "https://www.wikimedia.it/", "contacts": [ diff --git a/resources/europe/italy/it-facebook.json b/resources/europe/italy/it-facebook.json index c7b817a26..c3c51c494 100644 --- a/resources/europe/italy/it-facebook.json +++ b/resources/europe/italy/it-facebook.json @@ -1,10 +1,10 @@ { "id": "it-facebook", - "featureId": "italy", "type": "facebook", - "name": "OpenStreetMap Italy Facebook", + "includeLocations": ["italy.geojson"], "countryCodes": ["it"], "languageCodes": ["it"], + "name": "OpenStreetMap Italy Facebook", "description": "Join the OpenStreetMap Italy community on Facebook", "url": "https://www.facebook.com/OpenStreetMap.Italia/", "contacts": [ diff --git a/resources/europe/italy/it-irc.json b/resources/europe/italy/it-irc.json index 1c3376b50..1063b2306 100644 --- a/resources/europe/italy/it-irc.json +++ b/resources/europe/italy/it-irc.json @@ -1,10 +1,10 @@ { "id": "it-irc", - "featureId": "italy", "type": "irc", - "name": "OpenStreetMap Italy IRC", + "includeLocations": ["italy.geojson"], "countryCodes": ["it"], "languageCodes": ["it"], + "name": "OpenStreetMap Italy IRC", "description": "Join #osm-it on irc.oftc.net (port 6667)", "url": "https://webchat.oftc.net/?channels=osm-it", "contacts": [ diff --git a/resources/europe/italy/it-mailinglist.json b/resources/europe/italy/it-mailinglist.json index 517c4d35e..92eae848f 100644 --- a/resources/europe/italy/it-mailinglist.json +++ b/resources/europe/italy/it-mailinglist.json @@ -1,10 +1,10 @@ { "id": "it-mailinglist", - "featureId": "italy", "type": "mailinglist", - "name": "Talk-it Mailing List", + "includeLocations": ["italy.geojson"], "countryCodes": ["it"], "languageCodes": ["it"], + "name": "Talk-it Mailing List", "description": "Talk-it is the official mailing list for the Italian OSM community", "url": "https://lists.openstreetmap.org/listinfo/talk-it", "contacts": [ diff --git a/resources/europe/italy/it-telegram.json b/resources/europe/italy/it-telegram.json index 3adeb9bff..e05012aa6 100644 --- a/resources/europe/italy/it-telegram.json +++ b/resources/europe/italy/it-telegram.json @@ -1,7 +1,7 @@ { "id": "it-telegram", "type": "telegram", - "featureId": "italy", + "includeLocations": ["italy.geojson"], "countryCodes": ["it"], "languageCodes": ["it"], "name": "@OpenStreetMapItalia on Telegram", diff --git a/resources/europe/italy/it-twitter.json b/resources/europe/italy/it-twitter.json index f56aabcbf..92093abb2 100644 --- a/resources/europe/italy/it-twitter.json +++ b/resources/europe/italy/it-twitter.json @@ -1,10 +1,10 @@ { "id": "it-twitter", - "featureId": "italy", "type": "twitter", - "name": "OpenStreetMap Italy Twitter", + "includeLocations": ["italy.geojson"], "countryCodes": ["it"], "languageCodes": ["it"], + "name": "OpenStreetMap Italy Twitter", "description": "Follow us on Twitter at {url}", "url": "https://twitter.com/OpenStreetMapIt", "contacts": [ diff --git a/resources/europe/italy/roma-meetup.json b/resources/europe/italy/roma-meetup.json index e53663fbb..dba168c23 100644 --- a/resources/europe/italy/roma-meetup.json +++ b/resources/europe/italy/roma-meetup.json @@ -1,10 +1,10 @@ { "id": "OSM-Rome-meetup", - "featureId": "roma-capitale", "type": "group", - "name": "Incontro Mappatori Romani", + "includeLocations": ["roma-capitale.geojson"], "countryCodes": ["it"], "languageCodes": ["it"], + "name": "Incontro Mappatori Romani", "description": "Improve OpenStreetMap in the Rome area", "extendedDescription": "We aim to be a resource for people to discuss and share knowledge on utilizing free geographic data sets especially OpenStreetMap, and Open geo-spatial software that manages, edits, and displays geographic data, and advocate for its use in Lazio.", "url": "https://wiki.openstreetmap.org/wiki/Rome/Incontro", diff --git a/resources/europe/italy/south-tyrol.json b/resources/europe/italy/south-tyrol.json index bd0eeb423..9fc139be4 100644 --- a/resources/europe/italy/south-tyrol.json +++ b/resources/europe/italy/south-tyrol.json @@ -1,9 +1,9 @@ { "id": "South-Tyrol-Mailing-List", - "featureId": "south-tyrol", "type": "mailinglist", + "includeLocations": ["south-tyrol.geojson"], "countryCodes": ["it"], - "languageCodes": ["de", "it", "lld", "en"], + "languageCodes": ["de", "en", "it", "lld"], "name": "OpenStreetMap mailing list for South Tyrol", "description": "OpenStreetMap Italy regional talk list for South Tyrol", "url": "https://lists.openstreetmap.org/listinfo/talk-it-southtyrol", diff --git a/resources/europe/italy/talk-it-lazio_mailinglist.json b/resources/europe/italy/talk-it-lazio_mailinglist.json index 9c30224ba..35c887a51 100644 --- a/resources/europe/italy/talk-it-lazio_mailinglist.json +++ b/resources/europe/italy/talk-it-lazio_mailinglist.json @@ -1,14 +1,14 @@ { "id": "talk-it-lazio", - "featureId": "lazio", "type": "mailinglist", + "includeLocations": ["lazio.geojson"], "countryCodes": ["it"], "languageCodes": ["it"], "name": "OpenStreetMap IT Lazio", "description": "All are welcome! Sign up at {signupUrl}", "extendedDescription": "Mailinglist for Rome and Lazio area.", - "signupUrl": "https://lists.openstreetmap.org/listinfo/talk-it-lazio", "url": "https://lists.openstreetmap.org/listinfo/talk-it-lazio", + "signupUrl": "https://lists.openstreetmap.org/listinfo/talk-it-lazio", "contacts": [{"name": "Martin Koppenhoefer", "email": "dieterdreist@gmail.com"}], "order": -3 } \ No newline at end of file diff --git a/resources/europe/italy/trentino.json b/resources/europe/italy/trentino.json index 3f6b58bd5..98b8187af 100644 --- a/resources/europe/italy/trentino.json +++ b/resources/europe/italy/trentino.json @@ -1,7 +1,7 @@ { "id": "Trentino-Mailing-List", - "featureId": "trentino", "type": "mailinglist", + "includeLocations": ["trentino.geojson"], "countryCodes": ["it"], "languageCodes": ["it"], "name": "OpenStreetMap mailing list for Trentino", diff --git a/resources/europe/italy/ym-Politecnico-di-Milano.json b/resources/europe/italy/ym-Politecnico-di-Milano.json index af6517371..859edd524 100644 --- a/resources/europe/italy/ym-Politecnico-di-Milano.json +++ b/resources/europe/italy/ym-Politecnico-di-Milano.json @@ -1,11 +1,11 @@ { + "id": "ym-Politecnico-di-Milano", "type": "youthmappers", + "includeLocations": ["politecnico-di-milano.geojson"], + "countryCodes": ["it"], "name": "PoliMappers", "description": "YouthMappers chapter at Politecnico di Milano", - "id": "ym-Politecnico-di-Milano", - "featureId": "politecnico-di-milano", - "contacts": [{"name": "Organizer", "email": "polimappers@gmail.com"}], "extendedDescription": "PoliMappers is a volunteer students’ association based at Politecnico di Milano. The mission of the group is to train and motivate the next generation of volunteer mappers and to do mapping using free and open source software within the university as well as primary and secondary schools.", - "countryCodes": ["it"], - "url": "https://polimappers.github.io/" + "url": "https://polimappers.github.io/", + "contacts": [{"name": "Organizer", "email": "polimappers@gmail.com"}] } \ No newline at end of file diff --git a/resources/europe/kosovo/kosovo-telegram.json b/resources/europe/kosovo/kosovo-telegram.json index 071c0b8b7..6b0bb18fd 100644 --- a/resources/europe/kosovo/kosovo-telegram.json +++ b/resources/europe/kosovo/kosovo-telegram.json @@ -1,9 +1,9 @@ { "id": "kosovo-telegram", "type": "telegram", - "featureId": "kosovo", + "includeLocations": ["kosovo.geojson"], "countryCodes": ["xk"], - "languageCodes": ["sq", "sr", "en"], + "languageCodes": ["en", "sq", "sr"], "name": "OpenStreetMap Kosovo on Telegram", "description": "Semi-official all-Kosovo Telegram public group. We welcome all mappers from anywhere in any language.", "url": "https://t.me/osmkosovo", diff --git a/resources/europe/luxembourg/lu-mailinglist.json b/resources/europe/luxembourg/lu-mailinglist.json index 528fb5b41..522575ec8 100644 --- a/resources/europe/luxembourg/lu-mailinglist.json +++ b/resources/europe/luxembourg/lu-mailinglist.json @@ -1,10 +1,10 @@ { "id": "lu-mailinglist", - "featureId": "luxembourg", "type": "mailinglist", - "name": "Talk-lu Mailing List", + "includeLocations": ["luxembourg.geojson"], "countryCodes": ["lu"], - "languageCodes": ["lb", "en", "de", "fr"], + "languageCodes": ["de", "en", "fr", "lb"], + "name": "Talk-lu Mailing List", "description": "Official mailing list for the Luxembourgish OSM community", "url": "https://lists.openstreetmap.org/listinfo/talk-lu", "contacts": [{"name": "David Morais Ferreira", "email": "contact@openstreetmap.lu"}], diff --git a/resources/europe/morocco/ym-Universit-Mohammed-V-Rabat.json b/resources/europe/morocco/ym-Universit-Mohammed-V-Rabat.json index 9375e3283..7bcccfa87 100644 --- a/resources/europe/morocco/ym-Universit-Mohammed-V-Rabat.json +++ b/resources/europe/morocco/ym-Universit-Mohammed-V-Rabat.json @@ -1,11 +1,11 @@ { + "id": "ym-Universit-Mohammed-V-Rabat", "type": "youthmappers", + "includeLocations": ["universit-mohammed-v-rabat.geojson"], + "countryCodes": ["ma"], "name": "Brahmapoutre at Rabat", "description": "YouthMappers chapter at Université Mohammed V Rabat", - "id": "ym-Universit-Mohammed-V-Rabat", - "featureId": "universit-mohammed-v-rabat", - "contacts": [{"name": "Organizer", "email": "khmichasma@gmail.com"}], "extendedDescription": "This chapter sees participation in the YouthMappers program as an oppourtunity to share our knowlege create new working relationships with other chapters in different countries", - "countryCodes": ["ma"], - "url": "mailto:khmichasma@gmail.com" + "url": "mailto:khmichasma@gmail.com", + "contacts": [{"name": "Organizer", "email": "khmichasma@gmail.com"}] } \ No newline at end of file diff --git a/resources/europe/netherlands/nl-forum.json b/resources/europe/netherlands/nl-forum.json index b5ac95cd6..319b66ef5 100644 --- a/resources/europe/netherlands/nl-forum.json +++ b/resources/europe/netherlands/nl-forum.json @@ -1,7 +1,7 @@ { "id": "nl-forum", "type": "forum", - "featureId": "netherlands", + "includeLocations": ["netherlands.geojson"], "countryCodes": ["nl"], "languageCodes": ["nl"], "name": "Netherlands OpenStreetMap forum", diff --git a/resources/europe/netherlands/nl-telegram.json b/resources/europe/netherlands/nl-telegram.json index dcf74f962..bf0281bb6 100644 --- a/resources/europe/netherlands/nl-telegram.json +++ b/resources/europe/netherlands/nl-telegram.json @@ -1,7 +1,7 @@ { "id": "nl-telegram", "type": "telegram", - "featureId": "netherlands", + "includeLocations": ["netherlands.geojson"], "countryCodes": ["nl"], "languageCodes": ["nl"], "name": "Netherlands OpenStreetMap Telegram", diff --git a/resources/europe/norway/no-forum.json b/resources/europe/norway/no-forum.json index 412e22bc9..c32a2f51b 100644 --- a/resources/europe/norway/no-forum.json +++ b/resources/europe/norway/no-forum.json @@ -1,7 +1,7 @@ { "id": "no-forum", "type": "forum", - "featureId": "norway", + "includeLocations": ["norway.geojson"], "countryCodes": ["no"], "languageCodes": ["no"], "name": "OpenStreetMap Norway Web Forum", diff --git a/resources/europe/norway/no-irc.json b/resources/europe/norway/no-irc.json index 92bf92c1d..de37c3365 100644 --- a/resources/europe/norway/no-irc.json +++ b/resources/europe/norway/no-irc.json @@ -1,12 +1,12 @@ { "id": "no-irc", - "featureId": "norway", "type": "irc", - "name": "OpenStreetMap Norway on IRC", + "includeLocations": ["norway.geojson"], "countryCodes": ["no"], "languageCodes": ["no"], + "name": "OpenStreetMap Norway on IRC", "description": "Chat room for mappers and OpenStreetMap users, developers and enthusiasts in Norway", - "contacts": [{"name": "OpenStreetMap Norway", "email": "kart@nuug.no"}], "url": "https://webchat.oftc.net/?channels=osm-no", + "contacts": [{"name": "OpenStreetMap Norway", "email": "kart@nuug.no"}], "order": -4 } \ No newline at end of file diff --git a/resources/europe/norway/no-mailinglist.json b/resources/europe/norway/no-mailinglist.json index 581c2d9bf..5a3ceb819 100644 --- a/resources/europe/norway/no-mailinglist.json +++ b/resources/europe/norway/no-mailinglist.json @@ -1,12 +1,12 @@ { "id": "no-mailinglist", - "featureId": "norway", "type": "mailinglist", - "name": "OpenStreetMap Norway mailing list", + "includeLocations": ["norway.geojson"], "countryCodes": ["no"], "languageCodes": ["no"], + "name": "OpenStreetMap Norway mailing list", "description": "Mailing list for mappers and OpenStreetMap users, developers and enthusiasts in Norway", - "contacts": [{"name": "OpenStreetMap Norway", "email": "kart@nuug.no"}], "url": "https://lists.nuug.no/mailman/listinfo/kart", + "contacts": [{"name": "OpenStreetMap Norway", "email": "kart@nuug.no"}], "order": -3 } \ No newline at end of file diff --git a/resources/europe/norway/no-telegram.json b/resources/europe/norway/no-telegram.json index e44d4c562..c8b915df8 100644 --- a/resources/europe/norway/no-telegram.json +++ b/resources/europe/norway/no-telegram.json @@ -1,7 +1,7 @@ { "id": "no-telegram", "type": "telegram", - "featureId": "norway", + "includeLocations": ["norway.geojson"], "countryCodes": ["no"], "languageCodes": ["no"], "name": "@OSM_no on Telegram", diff --git a/resources/europe/poland/OSM-PL-facebook-group.json b/resources/europe/poland/OSM-PL-facebook-group.json index c429372ae..e506744e3 100644 --- a/resources/europe/poland/OSM-PL-facebook-group.json +++ b/resources/europe/poland/OSM-PL-facebook-group.json @@ -1,7 +1,7 @@ { "id": "OSM-PL-facebook-group", "type": "facebook", - "featureId": "poland", + "includeLocations": ["poland.geojson"], "countryCodes": ["pl"], "languageCodes": ["pl"], "name": "OpenStreetMap Poland Facebook group", diff --git a/resources/europe/poland/OSM-PL-forum.json b/resources/europe/poland/OSM-PL-forum.json index 4c8eb046b..2034c45c9 100644 --- a/resources/europe/poland/OSM-PL-forum.json +++ b/resources/europe/poland/OSM-PL-forum.json @@ -1,9 +1,9 @@ { "id": "OSM-PL-forum", "type": "forum", - "featureId": "poland", + "includeLocations": ["poland.geojson"], "countryCodes": ["pl"], - "languageCodes": ["pl", "en"], + "languageCodes": ["en", "pl"], "name": "OpenStreetMap Poland Forum", "description": "Forum of Polish OpenStreetMap community", "url": "https://forum.openstreetmap.org/viewforum.php?id=23", diff --git a/resources/europe/portugal/pt-mailinglist.json b/resources/europe/portugal/pt-mailinglist.json index 01aa7e9d2..3970d022b 100644 --- a/resources/europe/portugal/pt-mailinglist.json +++ b/resources/europe/portugal/pt-mailinglist.json @@ -1,10 +1,10 @@ { "id": "pt-mailinglist", - "featureId": "portugal", "type": "mailinglist", - "name": "Talk-pt Mailing List", + "includeLocations": ["portugal.geojson"], "countryCodes": ["pt"], "languageCodes": ["pt"], + "name": "Talk-pt Mailing List", "description": "Talk-pt is the official mailing list for the Portuguese OSM community", "url": "https://lists.openstreetmap.org/listinfo/talk-pt", "contacts": [{"name": "Nuno Caldeira", "email": "hello@iamnunocaldeira.com"}], diff --git a/resources/europe/portugal/pt-telegram.json b/resources/europe/portugal/pt-telegram.json index e3b3cc155..1afb5c3eb 100644 --- a/resources/europe/portugal/pt-telegram.json +++ b/resources/europe/portugal/pt-telegram.json @@ -1,10 +1,10 @@ { "id": "pt-telegram", - "featureId": "portugal", "type": "telegram", - "name": "OpenStreetMap Portugal on Telegram", + "includeLocations": ["portugal.geojson"], "countryCodes": ["pt"], "languageCodes": ["pt"], + "name": "OpenStreetMap Portugal on Telegram", "description": "Telegram Group of the Portuguese OpenStreetMap community {url}", "url": "https://t.me/OSMPortugal", "contacts": [{"name": "Nuno Caldeira", "email": "hello@iamnunocaldeira.com"}] diff --git a/resources/europe/slovenia/si-forum.json b/resources/europe/slovenia/si-forum.json index aac027ebb..5d285d9d0 100644 --- a/resources/europe/slovenia/si-forum.json +++ b/resources/europe/slovenia/si-forum.json @@ -1,9 +1,9 @@ { "id": "si-forum", "type": "forum", - "featureId": "slovenia", + "includeLocations": ["slovenia.geojson"], "countryCodes": ["si"], - "languageCodes": ["sl", "en"], + "languageCodes": ["en", "sl"], "name": "OpenStreetMap Slovenia Forum", "description": "Forum of OpenStreetMap community in Slovenia", "url": "https://forum.openstreetmap.org/viewforum.php?id=58", diff --git a/resources/europe/slovenia/si-mailinglist.json b/resources/europe/slovenia/si-mailinglist.json index 06f8ad6ad..5265ec407 100644 --- a/resources/europe/slovenia/si-mailinglist.json +++ b/resources/europe/slovenia/si-mailinglist.json @@ -1,9 +1,9 @@ { "id": "si-mailinglist", "type": "mailinglist", - "featureId": "slovenia", + "includeLocations": ["slovenia.geojson"], "countryCodes": ["si"], - "languageCodes": ["sl", "en"], + "languageCodes": ["en", "sl"], "name": "OpenStreetMap Slovenia mailing list", "description": "Mailing list of OpenStreetMap community in Slovenia", "url": "https://lists.openstreetmap.org/listinfo/talk-si", diff --git a/resources/europe/slovenia/si-twitter.json b/resources/europe/slovenia/si-twitter.json index c5c08ba8c..fd53b1eb3 100644 --- a/resources/europe/slovenia/si-twitter.json +++ b/resources/europe/slovenia/si-twitter.json @@ -1,10 +1,10 @@ { "id": "si-twitter", - "featureId": "slovenia", "type": "twitter", - "name": "OpenStreetMap Slovenia Twitter", + "includeLocations": ["slovenia.geojson"], "countryCodes": ["si"], - "languageCodes": ["sl", "en"], + "languageCodes": ["en", "sl"], + "name": "OpenStreetMap Slovenia Twitter", "description": "Follow OpenStreetMap Slovenia On Twitter: {url}", "url": "https://twitter.com/OpenStreetMapSi", "contacts": [{"name": "OpenStreetMap Slovenia", "email": "talk-si@openstreetmap.org"}] diff --git a/resources/europe/spain/OSM-ES-mailinglist.json b/resources/europe/spain/OSM-ES-mailinglist.json index 6e5a43c50..c253c9d96 100644 --- a/resources/europe/spain/OSM-ES-mailinglist.json +++ b/resources/europe/spain/OSM-ES-mailinglist.json @@ -1,7 +1,7 @@ { "id": "OSM-ES-mailinglist", "type": "mailinglist", - "featureId": "spain", + "includeLocations": ["spain.geojson"], "languageCodes": ["es"], "name": "Talk-es mailing list", "description": "A mailing list to discuss OpenStreetMap in Spain", diff --git a/resources/europe/spain/OSM-ES-telegram.json b/resources/europe/spain/OSM-ES-telegram.json index 804f087c9..e0f3f283c 100644 --- a/resources/europe/spain/OSM-ES-telegram.json +++ b/resources/europe/spain/OSM-ES-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-ES-telegram", "type": "telegram", - "featureId": "spain", + "includeLocations": ["spain.geojson"], "languageCodes": ["es"], "name": "@OSMes on Telegram", "description": "OpenStreetMap Spain Telegram chat", diff --git a/resources/europe/spain/galicia-telegram.json b/resources/europe/spain/galicia-telegram.json index 39608fe0e..eb0b3dfa9 100644 --- a/resources/europe/spain/galicia-telegram.json +++ b/resources/europe/spain/galicia-telegram.json @@ -1,8 +1,8 @@ { "id": "Galicia-Telegram", - "featureId": "galicia", "type": "telegram", - "languageCodes": ["gl", "es"], + "includeLocations": ["galicia.geojson"], + "languageCodes": ["es", "gl"], "name": "OpenStreetMap Galicia Telegram", "description": "OpenStreetMap Telegram for Galicia", "url": "https://t.me/joinchat/AAHZsRBs-mY3hrquk2kpig" diff --git a/resources/europe/spain/galicia-twitter.json b/resources/europe/spain/galicia-twitter.json index a0b4dd66c..37f0e52fa 100644 --- a/resources/europe/spain/galicia-twitter.json +++ b/resources/europe/spain/galicia-twitter.json @@ -1,8 +1,8 @@ { "id": "Galicia-Twitter", - "featureId": "galicia", "type": "twitter", - "languageCodes": ["gl", "es"], + "includeLocations": ["galicia.geojson"], + "languageCodes": ["es", "gl"], "name": "OpenStreetMap Galicia Twitter", "description": "Follow us on Twitter at {url}", "url": "https://twitter.com/osmgalicia" diff --git a/resources/europe/spain/galicia-wiki.json b/resources/europe/spain/galicia-wiki.json index 4157ce491..3b7593c58 100644 --- a/resources/europe/spain/galicia-wiki.json +++ b/resources/europe/spain/galicia-wiki.json @@ -1,7 +1,7 @@ { "id": "galicia-wiki", - "featureId": "galicia", "type": "wiki", + "includeLocations": ["galicia.geojson"], "name": "OpenStreetMap Wikiproject Galicia", "description": "Everything you need to know about mapping in Galicia: {url}", "url": "https://wiki.openstreetmap.org/wiki/Gl:P%C3%A1xina_principal" diff --git a/resources/europe/spain/ym-Universidad-Autonoma-de-Madrid.json b/resources/europe/spain/ym-Universidad-Autonoma-de-Madrid.json index a5893f92e..dc49998c6 100644 --- a/resources/europe/spain/ym-Universidad-Autonoma-de-Madrid.json +++ b/resources/europe/spain/ym-Universidad-Autonoma-de-Madrid.json @@ -1,10 +1,10 @@ { + "id": "ym-Universidad-Autonoma-de-Madrid", "type": "youthmappers", + "includeLocations": ["universidad-autonoma-de-madrid.geojson"], + "countryCodes": ["es"], "name": "YouthMappers at UAM", "description": "YouthMappers chapter at Universidad Autonoma de Madrid", - "id": "ym-Universidad-Autonoma-de-Madrid", - "featureId": "universidad-autonoma-de-madrid", - "contacts": [{"name": "Organizer", "email": "youthmappersatuam@gmail.com"}], - "countryCodes": ["es"], - "url": "mailto:youthmappersatuam@gmail.com" + "url": "mailto:youthmappersatuam@gmail.com", + "contacts": [{"name": "Organizer", "email": "youthmappersatuam@gmail.com"}] } \ No newline at end of file diff --git a/resources/europe/spain/ym-Universidad-Politcnica-de-Madrid.json b/resources/europe/spain/ym-Universidad-Politcnica-de-Madrid.json index db8b1896f..10f3aa873 100644 --- a/resources/europe/spain/ym-Universidad-Politcnica-de-Madrid.json +++ b/resources/europe/spain/ym-Universidad-Politcnica-de-Madrid.json @@ -1,11 +1,11 @@ { + "id": "ym-Universidad-Politcnica-de-Madrid", "type": "youthmappers", + "includeLocations": ["universidad-politcnica-de-madrid.geojson"], + "countryCodes": ["es"], "name": "Mapeo Humanitario", "description": "YouthMappers chapter at Universidad Politécnica de Madrid", - "id": "ym-Universidad-Politcnica-de-Madrid", - "featureId": "universidad-politcnica-de-madrid", - "contacts": [{"name": "Organizer", "email": "lab.topografia@gmail.com"}], "extendedDescription": "Geo-volunteering group formed at Moncloa Campus on November 2017. Around 20 members from three Universities (Complutense, CEU and UPM). Undergraduate students, MSc and PhD students collaborate together with organizations (MSF, Acción contra el Hambre,...) supported by trainers from Geoinquietos. Official recognition by UPM as Educative Innovation Project (Code IE1718.0411)", - "countryCodes": ["es"], - "url": "https://blogs.upm.es/mapeo-humanitario/" + "url": "https://blogs.upm.es/mapeo-humanitario/", + "contacts": [{"name": "Organizer", "email": "lab.topografia@gmail.com"}] } \ No newline at end of file diff --git a/resources/europe/sweden/osm-se.json b/resources/europe/sweden/osm-se.json index 1909e231f..d5a62df61 100644 --- a/resources/europe/sweden/osm-se.json +++ b/resources/europe/sweden/osm-se.json @@ -1,7 +1,7 @@ { "id": "osm-se", - "featureId": "sweden", "type": "osm", + "includeLocations": ["sweden.geojson"], "countryCodes": ["se"], "languageCodes": ["sv"], "name": "OpenStreetMap.se", diff --git a/resources/europe/sweden/se-facebook.json b/resources/europe/sweden/se-facebook.json index 17aff07c0..cf8e37c23 100644 --- a/resources/europe/sweden/se-facebook.json +++ b/resources/europe/sweden/se-facebook.json @@ -1,10 +1,10 @@ { "id": "se-facebook", - "featureId": "sweden", "type": "facebook", - "name": "OpenStreetMap Sweden Facebook", + "includeLocations": ["sweden.geojson"], "countryCodes": ["se"], "languageCodes": ["sv"], + "name": "OpenStreetMap Sweden Facebook", "description": "OpenStreetMap Sweden on Facebook", "url": "https://www.facebook.com/groups/osmsweden/", "contacts": [{"name": "Talk-se-owner", "email": "talk-se-owner@openstreetmap.org"}], diff --git a/resources/europe/sweden/se-forum.json b/resources/europe/sweden/se-forum.json index e36664428..21b0570e3 100644 --- a/resources/europe/sweden/se-forum.json +++ b/resources/europe/sweden/se-forum.json @@ -1,7 +1,7 @@ { "id": "se-forum", "type": "forum", - "featureId": "sweden", + "includeLocations": ["sweden.geojson"], "countryCodes": ["se"], "languageCodes": ["sv"], "name": "OpenStreetMap Sweden Web Forum", diff --git a/resources/europe/sweden/se-irc.json b/resources/europe/sweden/se-irc.json index 603bf0822..1cdacce81 100644 --- a/resources/europe/sweden/se-irc.json +++ b/resources/europe/sweden/se-irc.json @@ -1,10 +1,10 @@ { "id": "se-irc", - "featureId": "sweden", "type": "irc", - "name": "OpenStreetMap Sweden IRC", + "includeLocations": ["sweden.geojson"], "countryCodes": ["se"], "languageCodes": ["sv"], + "name": "OpenStreetMap Sweden IRC", "description": "Join #osm.se on irc.oftc.net (port 6667)", "url": "https://webchat.oftc.net/?channels=osm.se", "contacts": [{"name": "Talk-se-owner", "email": "talk-se-owner@openstreetmap.org"}], diff --git a/resources/europe/sweden/se-mailinglist.json b/resources/europe/sweden/se-mailinglist.json index 9c24104d7..963319491 100644 --- a/resources/europe/sweden/se-mailinglist.json +++ b/resources/europe/sweden/se-mailinglist.json @@ -1,10 +1,10 @@ { "id": "se-mailinglist", - "featureId": "sweden", "type": "mailinglist", - "name": "Talk-se Mailing List", + "includeLocations": ["sweden.geojson"], "countryCodes": ["se"], "languageCodes": ["sv"], + "name": "Talk-se Mailing List", "description": "A mailing list to discuss OpenStreetMap in Sweden", "url": "https://lists.openstreetmap.org/listinfo/talk-se", "contacts": [{"name": "Talk-se-owner", "email": "talk-se-owner@openstreetmap.org"}], diff --git a/resources/europe/sweden/se-twitter.json b/resources/europe/sweden/se-twitter.json index 99a92818d..5d934698a 100644 --- a/resources/europe/sweden/se-twitter.json +++ b/resources/europe/sweden/se-twitter.json @@ -1,10 +1,10 @@ { "id": "se-twitter", - "featureId": "sweden", "type": "twitter", - "name": "OpenStreetMap Sweden on Twitter", + "includeLocations": ["sweden.geojson"], "countryCodes": ["se"], "languageCodes": ["sv"], + "name": "OpenStreetMap Sweden on Twitter", "description": "Follow us on Twitter: {url}", "url": "https://twitter.com/openstreetmapse", "contacts": [{"name": "Talk-se-owner", "email": "talk-se-owner@openstreetmap.org"}] diff --git a/resources/europe/switzerland/ch-irc.json b/resources/europe/switzerland/ch-irc.json index 2987af9c2..06c04d052 100644 --- a/resources/europe/switzerland/ch-irc.json +++ b/resources/europe/switzerland/ch-irc.json @@ -1,10 +1,10 @@ { "id": "ch-irc", - "featureId": "switzerland", "type": "irc", - "name": "OpenStreetMap Switzerland IRC", + "includeLocations": ["switzerland.geojson"], "countryCodes": ["ch"], - "languageCodes": ["de", "fr", "en", "it"], + "languageCodes": ["de", "en", "fr", "it"], + "name": "OpenStreetMap Switzerland IRC", "description": "Join #osm-ch on irc.oftc.net (port 6667)", "url": "https://webchat.oftc.net/?channels=osm-ch", "contacts": [{"name": "Swiss OpenStreetMap Association", "email": "board@sosm.ch"}], diff --git a/resources/europe/switzerland/ch-mailinglist.json b/resources/europe/switzerland/ch-mailinglist.json index c4f4ef0d1..d96876c8e 100644 --- a/resources/europe/switzerland/ch-mailinglist.json +++ b/resources/europe/switzerland/ch-mailinglist.json @@ -1,9 +1,9 @@ { "id": "ch-mailinglist", - "featureId": "switzerland", "type": "mailinglist", - "name": "Openstreetmap Schweiz/Suisse/Svizzera/Svizra Mailing List", + "includeLocations": ["switzerland.geojson"], "countryCodes": ["ch"], + "name": "Openstreetmap Schweiz/Suisse/Svizzera/Svizra Mailing List", "description": "Mailing list for Switzerland", "url": "http://lists.openstreetmap.ch/mailman/listinfo/talk-ch", "order": 1 diff --git a/resources/europe/switzerland/ch-twitter.json b/resources/europe/switzerland/ch-twitter.json index f634d3c44..06a695d61 100644 --- a/resources/europe/switzerland/ch-twitter.json +++ b/resources/europe/switzerland/ch-twitter.json @@ -1,10 +1,10 @@ { "id": "ch-twitter", - "featureId": "switzerland", "type": "twitter", - "name": "OpenStreetMap Switzerland Twitter", + "includeLocations": ["switzerland.geojson"], "countryCodes": ["ch"], "languageCodes": ["de", "en", "fr", "it"], + "name": "OpenStreetMap Switzerland Twitter", "description": "Follow us on Twitter: {url}", "url": "https://twitter.com/SwissOSM", "contacts": [{"name": "Swiss OpenStreetMap Association", "email": "board@sosm.ch"}] diff --git a/resources/europe/switzerland/osm-ch.json b/resources/europe/switzerland/osm-ch.json index 8616d7a5b..e1e5acfd4 100644 --- a/resources/europe/switzerland/osm-ch.json +++ b/resources/europe/switzerland/osm-ch.json @@ -1,7 +1,7 @@ { "id": "osm-ch", - "featureId": "switzerland", "type": "osm-lc", + "includeLocations": ["switzerland.geojson"], "countryCodes": ["ch"], "languageCodes": ["de", "en", "fr", "it"], "name": "OpenStreetMap Switzerland", diff --git a/resources/europe/turkey/ym-Istanbul-Technical-University.json b/resources/europe/turkey/ym-Istanbul-Technical-University.json index f0c1d8ce9..95c94b1a5 100644 --- a/resources/europe/turkey/ym-Istanbul-Technical-University.json +++ b/resources/europe/turkey/ym-Istanbul-Technical-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Istanbul-Technical-University", "type": "youthmappers", + "includeLocations": ["istanbul-technical-university.geojson"], + "countryCodes": ["tr"], "name": "YouthMappers ITU", "description": "YouthMappers chapter at Istanbul Technical University", - "id": "ym-Istanbul-Technical-University", - "featureId": "istanbul-technical-university", - "contacts": [{"name": "Organizer", "email": "youthmappersitu@gmail.com"}], "extendedDescription": "YouthMappers ITU is an interdisciplinary and collaborative student community to promote humanitarian mapping for vulnerable settlements and aims to develop and share strategic and innovative spatial information for the future cities by using geographical information systems and open data.", - "countryCodes": ["tr"], - "url": "https://www.facebook.com/YouthMappers-ITU-226489641442744/?modal=admin_todo_tour" + "url": "https://www.facebook.com/YouthMappers-ITU-226489641442744/?modal=admin_todo_tour", + "contacts": [{"name": "Organizer", "email": "youthmappersitu@gmail.com"}] } \ No newline at end of file diff --git a/resources/europe/ukraine/ua-facebook.json b/resources/europe/ukraine/ua-facebook.json index 54c907aed..59b08929e 100644 --- a/resources/europe/ukraine/ua-facebook.json +++ b/resources/europe/ukraine/ua-facebook.json @@ -1,7 +1,7 @@ { "id": "ua-facebook", - "featureId": "ukraine", "type": "facebook", + "includeLocations": ["ukraine.geojson"], "countryCodes": ["ua"], "languageCodes": ["uk"], "name": "OpenStreetMap Ukraine Facebook group", diff --git a/resources/europe/ukraine/ua-forum.json b/resources/europe/ukraine/ua-forum.json index 88ddc0f03..48c2adf5a 100644 --- a/resources/europe/ukraine/ua-forum.json +++ b/resources/europe/ukraine/ua-forum.json @@ -1,9 +1,9 @@ { "id": "ua-forum", - "featureId": "ukraine", "type": "forum", + "includeLocations": ["ukraine.geojson"], "countryCodes": ["ua"], - "languageCodes": ["uk", "ru", "en"], + "languageCodes": ["en", "ru", "uk"], "name": "OpenStreetMap Ukraine Forum", "description": "Forum of OpenStreetMap community in Ukraine", "url": "https://forum.openstreetmap.org/viewforum.php?id=40", diff --git a/resources/europe/ukraine/ua-github.json b/resources/europe/ukraine/ua-github.json index 87627f180..e0fdbc68d 100644 --- a/resources/europe/ukraine/ua-github.json +++ b/resources/europe/ukraine/ua-github.json @@ -1,9 +1,9 @@ { "id": "ua-github", - "featureId": "ukraine", "type": "github", + "includeLocations": ["ukraine.geojson"], "countryCodes": ["ua"], - "languageCodes": ["uk", "en"], + "languageCodes": ["en", "uk"], "name": "OpenStreetMap Ukraine on GitHub", "description": "OpenStreetMap Ukraine GitHub", "url": "https://github.com/osm-ua/", diff --git a/resources/europe/ukraine/ua-slack.json b/resources/europe/ukraine/ua-slack.json index 1dbcec8d7..e6c99f3cb 100644 --- a/resources/europe/ukraine/ua-slack.json +++ b/resources/europe/ukraine/ua-slack.json @@ -1,9 +1,9 @@ { "id": "ua-slack", - "featureId": "ukraine", "type": "slack", + "includeLocations": ["ukraine.geojson"], "countryCodes": ["ua"], - "languageCodes": ["uk", "en", "ru"], + "languageCodes": ["en", "ru", "uk"], "name": "OpenStreetMap Ukraine Slack", "description": "Join the OpenStreetMap Ukraine community on Slack", "url": "https://osmukraine.slack.com/", diff --git a/resources/europe/ukraine/ua-telegram.json b/resources/europe/ukraine/ua-telegram.json index 6e9306895..de616d0df 100644 --- a/resources/europe/ukraine/ua-telegram.json +++ b/resources/europe/ukraine/ua-telegram.json @@ -1,12 +1,11 @@ { "id": "ua-telegram", - "featureId": "ukraine", "type": "telegram", + "includeLocations": ["ukraine.geojson"], "countryCodes": ["ua"], - "languageCodes": ["uk", "ru", "en"], + "languageCodes": ["en", "ru", "uk"], "name": "@osmUA on Telegram", "description": "OpenStreetMap Ukraine Telegram chat", "url": "https://t.me/osmUA", - "contacts": [{"name": "Andrii Holovin", "email": "andygol@ua.fm"}], - "order": 0 + "contacts": [{"name": "Andrii Holovin", "email": "andygol@ua.fm"}] } \ No newline at end of file diff --git a/resources/europe/ukraine/ua-twitter.json b/resources/europe/ukraine/ua-twitter.json index b9fcf3bb9..0df0184e1 100644 --- a/resources/europe/ukraine/ua-twitter.json +++ b/resources/europe/ukraine/ua-twitter.json @@ -1,7 +1,7 @@ { "id": "ua-twitter", - "featureId": "ukraine", "type": "twitter", + "includeLocations": ["ukraine.geojson"], "countryCodes": ["ua"], "languageCodes": ["uk"], "name": "OpenStreetMap UA Twitter", diff --git a/resources/europe/ukraine/ua-website.json b/resources/europe/ukraine/ua-website.json index dede721f5..c1b896103 100644 --- a/resources/europe/ukraine/ua-website.json +++ b/resources/europe/ukraine/ua-website.json @@ -1,7 +1,7 @@ { "id": "ua-osm", - "featureId": "ukraine", "type": "osm", + "includeLocations": ["ukraine.geojson"], "countryCodes": ["ua"], "languageCodes": ["uk"], "name": "OpenStreetMap Website Ukraine", diff --git a/resources/europe/united_kingdom/scotland-twitter.json b/resources/europe/united_kingdom/scotland-twitter.json index a5037a3cf..66a429137 100644 --- a/resources/europe/united_kingdom/scotland-twitter.json +++ b/resources/europe/united_kingdom/scotland-twitter.json @@ -1,10 +1,10 @@ { "id": "scotland-twitter", - "featureId": "scotland", "type": "twitter", - "name": "OpenStreetMap Alba on Twitter", + "includeLocations": ["scotland.geojson"], "countryCodes": ["gb"], "languageCodes": ["en"], + "name": "OpenStreetMap Alba on Twitter", "description": "OpenStreetMap Alba on Twitter: {url}", "url": "https://twitter.com/OSMScotland", "order": 4 diff --git a/resources/europe/united_kingdom/uk-eastmidlands-meetup.json b/resources/europe/united_kingdom/uk-eastmidlands-meetup.json index 5a177551a..396954099 100644 --- a/resources/europe/united_kingdom/uk-eastmidlands-meetup.json +++ b/resources/europe/united_kingdom/uk-eastmidlands-meetup.json @@ -1,10 +1,10 @@ { "id": "Nottingham-OSM-pub-meetup", - "featureId": "east_midlands", "type": "group", - "name": "East Midlands (Nottingham) Monthly pub meet-up", + "includeLocations": ["east_midlands.geojson"], "countryCodes": ["gb"], "languageCodes": ["en"], + "name": "East Midlands (Nottingham) Monthly pub meet-up", "description": "Social gathering for East Midlands mappers and users", "extendedDescription": "A group have been meeting since March 2011, initially in Nottingham, and, more recently in Derby, and from time to time elsewhere in the East Midlands. These are social gatherings, but are an excellent place to come and ask specific questions about OSM either in the area or in general. In the summer months we usually do some light mapping for an hour in the vicinity of our meeting place. The group as a whole has a special interest in mapping public rights of way and from time to time has mapping meetings for this purpose.", "url": "https://wiki.openstreetmap.org/wiki/Nottingham/Pub-meetup", diff --git a/resources/europe/united_kingdom/uk-irc.json b/resources/europe/united_kingdom/uk-irc.json index a787b7897..1e876d193 100644 --- a/resources/europe/united_kingdom/uk-irc.json +++ b/resources/europe/united_kingdom/uk-irc.json @@ -1,10 +1,10 @@ { "id": "gb-irc", - "featureId": "united_kingdom", "type": "irc", - "name": "OpenStreetMap United Kingdom IRC", + "includeLocations": ["united_kingdom.geojson"], "countryCodes": ["gb"], - "languageCodes": ["en", "cy"], + "languageCodes": ["cy", "en"], + "name": "OpenStreetMap United Kingdom IRC", "description": "Join #osm-gb on irc.oftc.net (port 6667)", "extendedDescription": "Join #osm-gb on irc.oftc.net (port 6667), please be patient and wait for a few minutes if you ask a question", "url": "https://webchat.oftc.net/?channels=osm-gb", diff --git a/resources/europe/united_kingdom/uk-localchapter.json b/resources/europe/united_kingdom/uk-localchapter.json index b9fac2634..8011e92fb 100644 --- a/resources/europe/united_kingdom/uk-localchapter.json +++ b/resources/europe/united_kingdom/uk-localchapter.json @@ -1,14 +1,14 @@ { "id": "uk-localchapter", - "featureId": "united_kingdom", "type": "osm-lc", + "includeLocations": ["united_kingdom.geojson"], "countryCodes": ["gb"], "languageCodes": ["en"], "name": "OpenStreetMap UK", "description": "The official Local Chapter for the UK (including Northern Ireland).", "extendedDescription": "We support OpenStreetMap by holding events, providing community resources, building partnerships, and by spreading the word. Join OpenStreetMap UK here: {signupUrl}", - "signupUrl": "https://osmuk.org/become-member/", "url": "https://osmuk.org/", + "signupUrl": "https://osmuk.org/become-member/", "contacts": [{"name": "OpenStreetMap UK", "email": "board@osmuk.org"}], "order": 3 } \ No newline at end of file diff --git a/resources/europe/united_kingdom/uk-london-twitter.json b/resources/europe/united_kingdom/uk-london-twitter.json index 8f164119f..f59578db1 100644 --- a/resources/europe/united_kingdom/uk-london-twitter.json +++ b/resources/europe/united_kingdom/uk-london-twitter.json @@ -1,10 +1,10 @@ { "id": "uk-london-twitter", - "featureId": "london", "type": "twitter", - "name": "OpenStreetMap London on Twitter", + "includeLocations": ["london.geojson"], "countryCodes": ["gb"], "languageCodes": ["en"], + "name": "OpenStreetMap London on Twitter", "description": "OpenStreetMap London on Twitter: {url}", "url": "https://twitter.com/OSMLondon", "contacts": [{"name": "Harry Wood", "email": "mail@harrywood.co.uk"}], diff --git a/resources/europe/united_kingdom/uk-mailinglist.json b/resources/europe/united_kingdom/uk-mailinglist.json index 23f18265b..942a13474 100644 --- a/resources/europe/united_kingdom/uk-mailinglist.json +++ b/resources/europe/united_kingdom/uk-mailinglist.json @@ -1,10 +1,10 @@ { "id": "gb-mailinglist", - "featureId": "united_kingdom", "type": "mailinglist", - "name": "Talk-gb Mailing List", + "includeLocations": ["united_kingdom.geojson"], "countryCodes": ["gb"], "languageCodes": ["en"], + "name": "Talk-gb Mailing List", "description": "Talk-gb is the main communication forum list for the UK (including Northern Ireland) OSM community", "url": "https://lists.openstreetmap.org/listinfo/talk-gb", "contacts": [{"name": "UK mailing list", "email": "talk-gb-owner@lists.openstreetmap.org"}], diff --git a/resources/europe/united_kingdom/uk-mappamercia.json b/resources/europe/united_kingdom/uk-mappamercia.json index 6e50468ad..edb87c325 100644 --- a/resources/europe/united_kingdom/uk-mappamercia.json +++ b/resources/europe/united_kingdom/uk-mappamercia.json @@ -1,7 +1,7 @@ { "id": "mappa-mercia-group", - "featureId": "england-west-midlands", "type": "group", + "includeLocations": ["england-west-midlands.geojson"], "countryCodes": ["gb"], "languageCodes": ["en"], "name": "Mappa Mercia local group", diff --git a/resources/europe/united_kingdom/uk-twitter.json b/resources/europe/united_kingdom/uk-twitter.json index fbae33137..f7c684461 100644 --- a/resources/europe/united_kingdom/uk-twitter.json +++ b/resources/europe/united_kingdom/uk-twitter.json @@ -1,10 +1,10 @@ { "id": "uk-twitter", - "featureId": "united_kingdom", "type": "twitter", - "name": "OpenStreetMap UK on Twitter", + "includeLocations": ["united_kingdom.geojson"], "countryCodes": ["gb"], "languageCodes": ["en"], + "name": "OpenStreetMap UK on Twitter", "description": "OpenStreetMap UK on Twitter: {url}", "url": "https://twitter.com/osmuk", "contacts": [{"name": "OpenStreetMap UK", "email": "board@osmuk.org"}], diff --git a/resources/europe/united_kingdom/ym-Queen-Mary-University-of-London.json b/resources/europe/united_kingdom/ym-Queen-Mary-University-of-London.json index b9277e85f..df44bcdd9 100644 --- a/resources/europe/united_kingdom/ym-Queen-Mary-University-of-London.json +++ b/resources/europe/united_kingdom/ym-Queen-Mary-University-of-London.json @@ -1,11 +1,11 @@ { "id": "ym-Queen-Mary-University-of-London", "type": "youthmappers", + "includeLocations": ["queen-mary-university-of-london.geojson"], + "countryCodes": ["uk"], "name": "Queen Mary YouthMappers", "description": "YouthMappers chapter at Queen Mary University of London", - "featureId": "queen-mary-university-of-london", - "contacts": [{"name": "Organizer", "email": "youthmappers@qmul.ac.uk"}], "extendedDescription": "This chapter will be part of the activities of the Queen Mary Geography Society.", - "countryCodes": ["uk"], - "url": "https://www.facebook.com/groups/qmulgeographysociety/" + "url": "https://www.facebook.com/groups/qmulgeographysociety/", + "contacts": [{"name": "Organizer", "email": "youthmappers@qmul.ac.uk"}] } \ No newline at end of file diff --git a/resources/europe/united_kingdom/ym-University-of-Exeter.json b/resources/europe/united_kingdom/ym-University-of-Exeter.json index 0ad06fa9e..ce6ad291d 100644 --- a/resources/europe/united_kingdom/ym-University-of-Exeter.json +++ b/resources/europe/united_kingdom/ym-University-of-Exeter.json @@ -1,11 +1,11 @@ { "id": "ym-University-of-Exeter", "type": "youthmappers", + "includeLocations": ["university-of-exeter.geojson"], + "countryCodes": ["uk"], "name": "University of Exeter British Red Cross Missing Maps", "description": "YouthMappers chapter at University of Exeter", - "featureId": "university-of-exeter", - "contacts": [{"name": "Organizer", "email": "uniofexemissingmaps@gmail.com"}], "extendedDescription": "We are a team of enthusiastic Geographers with comprehensive knowledge of GIS. We are passionate about supporting the British Red Cross Society with various humanitarian aid efforts. We are also important teachers of the significance of mapping remotely sensed data and how this helps on the ground. Our mapathons have themed academic focuses that highlight the different GIS research in our geography department, while also functioning as employability awareness events which we use to invite speakers in to talk about their GIS/British Red Cross careers.", - "countryCodes": ["uk"], - "url": "https://www.facebook.com/EUMissingMaps/" + "url": "https://www.facebook.com/EUMissingMaps/", + "contacts": [{"name": "Organizer", "email": "uniofexemissingmaps@gmail.com"}] } \ No newline at end of file diff --git a/resources/europe/united_kingdom/ym-University-of-Warwick.json b/resources/europe/united_kingdom/ym-University-of-Warwick.json index 6ede3e508..5bdde2449 100644 --- a/resources/europe/united_kingdom/ym-University-of-Warwick.json +++ b/resources/europe/united_kingdom/ym-University-of-Warwick.json @@ -1,11 +1,11 @@ { "id": "ym-University-of-Warwick", "type": "youthmappers", + "includeLocations": ["university-of-warwick.geojson"], + "countryCodes": ["uk"], "name": "University of Warwick Resilience Mapping Society", "description": "YouthMappers chapter at University of Warwick", - "featureId": "university-of-warwick", - "contacts": [{"name": "Organizer", "email": "p.ulbrich@warwick.ac.uk"}], "extendedDescription": "We are a group of enthusiastic mappers based at Warwick University. Our aim is to get people excited about humanitarian mapping and help them understand the impact this activity has on the field. We are closely aligned with Missing Maps and Doctors Without Borders UK and focus on HOT tasks in our mapping activities and workshops. Our mapathons are listed on the Missing Maps page whenever they are scheduled.", - "countryCodes": ["uk"], - "url": "mailto:p.ulbrich@warwick.ac.uk" + "url": "mailto:p.ulbrich@warwick.ac.uk", + "contacts": [{"name": "Organizer", "email": "p.ulbrich@warwick.ac.uk"}] } \ No newline at end of file diff --git a/resources/middle-east/israel/il-telegram.json b/resources/middle-east/israel/il-telegram.json index b6625b727..d17d3fa66 100644 --- a/resources/middle-east/israel/il-telegram.json +++ b/resources/middle-east/israel/il-telegram.json @@ -1,9 +1,9 @@ { "id": "il-telegram", - "featureId": "israel", "type": "telegram", - "name": "OSM Israel on Telegram", + "includeLocations": ["israel.geojson"], "countryCodes": ["il"], + "name": "OSM Israel on Telegram", "description": "A Telegram group for the OpenStreetMap community in Israel: {url}", "url": "https://t.me/OSM_Israel", "order": 5 diff --git a/resources/middle-east/jordan/ym-Yarmouk-University.json b/resources/middle-east/jordan/ym-Yarmouk-University.json index 3fe4c0caa..47370cca5 100644 --- a/resources/middle-east/jordan/ym-Yarmouk-University.json +++ b/resources/middle-east/jordan/ym-Yarmouk-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Yarmouk-University", "type": "youthmappers", + "includeLocations": ["yarmouk-university.geojson"], + "countryCodes": ["jo"], "name": "YouthMappers at YU", "description": "YouthMappers chapter at Yarmouk University", - "id": "ym-Yarmouk-University", - "featureId": "yarmouk-university", - "contacts": [{"name": "Organizer", "email": "rnjawarneh@yu.edu.jo"}], "extendedDescription": "YouthMappers chapter at YU is the first mapping group in the Middle East and North Africa region where refugees, drought, and poverty are rising crises and in urgent need for humanitarian mapping activities to mitigate the consequences of such crises. YU Mappers are encouraged to use open data to address challenges in MENA region to bring relief and development to target areas within the region.", - "countryCodes": ["jo"], - "url": "mailto:rnjawarneh@yu.edu.jo" + "url": "mailto:rnjawarneh@yu.edu.jo", + "contacts": [{"name": "Organizer", "email": "rnjawarneh@yu.edu.jo"}] } \ No newline at end of file diff --git a/resources/middle-east/saudi_arabia/sa-telegram.json b/resources/middle-east/saudi_arabia/sa-telegram.json index 14fbbebed..275bcf6b5 100644 --- a/resources/middle-east/saudi_arabia/sa-telegram.json +++ b/resources/middle-east/saudi_arabia/sa-telegram.json @@ -1,9 +1,9 @@ { "id": "sa-telegram", - "featureId": "saudi_arabia", "type": "telegram", - "name": "OSM Saudi Arabia on Telegram", + "includeLocations": ["saudi_arabia.geojson"], "countryCodes": ["sa"], + "name": "OSM Saudi Arabia on Telegram", "description": "A Telegram group for the OpenStreetMap community in Saudi Arabia: {url}", "url": "https://t.me/OSMSaudi", "order": 5 diff --git a/resources/north-america/belize/ym-Sacred-Heart-Junior-College.json b/resources/north-america/belize/ym-Sacred-Heart-Junior-College.json index b9c1bd8f8..22e39e183 100644 --- a/resources/north-america/belize/ym-Sacred-Heart-Junior-College.json +++ b/resources/north-america/belize/ym-Sacred-Heart-Junior-College.json @@ -1,10 +1,10 @@ { + "id": "ym-Sacred-Heart-Junior-College", "type": "youthmappers", + "includeLocations": ["sacred-heart-junior-college.geojson"], + "countryCodes": ["bz"], "name": "Youth Mappers at Sacred Heart Junior College", "description": "YouthMappers chapter at Sacred Heart Junior College", - "id": "ym-Sacred-Heart-Junior-College", - "featureId": "sacred-heart-junior-college", - "contacts": [{"name": "Organizer", "email": "jtzib18@gmail.com"}], - "countryCodes": ["bz"], - "url": "mailto:jtzib18@gmail.com" + "url": "mailto:jtzib18@gmail.com", + "contacts": [{"name": "Organizer", "email": "jtzib18@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/canada/OSM-CA-Slack.json b/resources/north-america/canada/OSM-CA-Slack.json index 80b355f6b..6444b42ba 100644 --- a/resources/north-america/canada/OSM-CA-Slack.json +++ b/resources/north-america/canada/OSM-CA-Slack.json @@ -1,13 +1,13 @@ { "id": "OSM-CA-Slack", - "featureId": "canada_full", "type": "slack", + "includeLocations": ["canada_full.geojson"], "countryCodes": ["ca"], "languageCodes": ["en", "fr"], "name": "OSM-CA Slack", "description": "All are welcome! Sign up at {signupUrl}.", - "signupUrl": "https://slackinviteosmcanada.herokuapp.com/", "url": "https://osm-ca.slack.com/", + "signupUrl": "https://slackinviteosmcanada.herokuapp.com/", "contacts": [{"name": "Denis Carriere", "email": "carriere.denis@gmail.com"}], "order": 4 } \ No newline at end of file diff --git a/resources/north-america/canada/OSM-Vancouver-meetup.json b/resources/north-america/canada/OSM-Vancouver-meetup.json index 2ea461df3..8a4c1951e 100644 --- a/resources/north-america/canada/OSM-Vancouver-meetup.json +++ b/resources/north-america/canada/OSM-Vancouver-meetup.json @@ -1,10 +1,10 @@ { "id": "OSM-Vancouver-meetup", - "featureId": "vancouver_metro", "type": "meetup", - "name": "OpenStreetMap Vancouver", + "includeLocations": ["vancouver_metro.geojson"], "countryCodes": ["ca"], "languageCodes": ["en"], + "name": "OpenStreetMap Vancouver", "description": "Mappers and OpenStreetMap users in the Vancouver, BC area", "url": "https://www.meetup.com/OpenStreetMap-Vancouver/", "contacts": [ diff --git a/resources/north-america/costa_rica/ym-Universidad-de-Costa-Rica.json b/resources/north-america/costa_rica/ym-Universidad-de-Costa-Rica.json index e67805e34..83d177b4b 100644 --- a/resources/north-america/costa_rica/ym-Universidad-de-Costa-Rica.json +++ b/resources/north-america/costa_rica/ym-Universidad-de-Costa-Rica.json @@ -1,11 +1,11 @@ { + "id": "ym-Universidad-de-Costa-Rica", "type": "youthmappers", + "includeLocations": ["universidad-de-costa-rica.geojson"], + "countryCodes": ["cr"], "name": "YouthMappers de Universidad de Costa Rica", "description": "YouthMappers chapter at Universidad de Costa Rica", - "id": "ym-Universidad-de-Costa-Rica", - "featureId": "universidad-de-costa-rica", - "contacts": [{"name": "Organizer", "email": "youthmappersucr@gmail.com"}], "extendedDescription": "YouthMappers de Universidad de Costa Rica nace en función de acción social para y por miembros de comunidades distintas según temáticas de involucramiento, interacción y representación de variables dentro de un espacio geográfico definido (un territorio) Gracias a las herramientas de OpenStreetMaps tenemos la viabilidad de poder obtener, validar y compartir la información generada para comprobación y uso destinadas a las comunidades o el interesado en tales temáticas objetivas.", - "countryCodes": ["cr"], - "url": "https://www.facebook.com/ucr.asege/" + "url": "https://www.facebook.com/ucr.asege/", + "contacts": [{"name": "Organizer", "email": "youthmappersucr@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/cuba/OSM-CU-telegram.json b/resources/north-america/cuba/OSM-CU-telegram.json index 46c8311ca..02188e603 100644 --- a/resources/north-america/cuba/OSM-CU-telegram.json +++ b/resources/north-america/cuba/OSM-CU-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-CU-telegram", "type": "telegram", - "featureId": "cuba", + "includeLocations": ["cuba.geojson"], "countryCodes": ["cu"], "languageCodes": ["es"], "name": "OSM Cuba on Telegram", diff --git a/resources/north-america/honduras/ym-Universidad-Nacional-Autnoma-de-Honduras.json b/resources/north-america/honduras/ym-Universidad-Nacional-Autnoma-de-Honduras.json index ce3dfeaa6..334d73fb9 100644 --- a/resources/north-america/honduras/ym-Universidad-Nacional-Autnoma-de-Honduras.json +++ b/resources/north-america/honduras/ym-Universidad-Nacional-Autnoma-de-Honduras.json @@ -1,10 +1,10 @@ { + "id": "ym-Universidad-Nacional-Autnoma-de-Honduras", "type": "youthmappers", + "includeLocations": ["universidad-nacional-autnoma-de-honduras.geojson"], + "countryCodes": ["hn"], "name": "PumaGis Hn", "description": "YouthMappers chapter at Universidad Nacional Autónoma de Honduras", - "id": "ym-Universidad-Nacional-Autnoma-de-Honduras", - "featureId": "universidad-nacional-autnoma-de-honduras", - "contacts": [{"name": "Organizer", "email": "pumagishn@gmail.com"}], - "countryCodes": ["hn"], - "url": "mailto:pumagishn@gmail.com" + "url": "mailto:pumagishn@gmail.com", + "contacts": [{"name": "Organizer", "email": "pumagishn@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/jamaica/ym-University-of-the-West-Indies-Mona-Campus.json b/resources/north-america/jamaica/ym-University-of-the-West-Indies-Mona-Campus.json index 742c955ac..12e166265 100644 --- a/resources/north-america/jamaica/ym-University-of-the-West-Indies-Mona-Campus.json +++ b/resources/north-america/jamaica/ym-University-of-the-West-Indies-Mona-Campus.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-the-West-Indies-Mona-Campus", "type": "youthmappers", + "includeLocations": ["university-of-the-west-indies-mona-campus.geojson"], + "countryCodes": ["jm"], "name": "Libraries Outreach - ODL", "description": "YouthMappers chapter at University of the West Indies, Mona Campus", - "id": "ym-University-of-the-West-Indies-Mona-Campus", - "featureId": "university-of-the-west-indies-mona-campus", - "contacts": [{"name": "Organizer", "email": "benjamin.branch@uwimona.edu.jm"}], "extendedDescription": "The UWI, Mona Campus Library engages in public, outreach and special projects. This will allow our library the means to be a catalyst for spatial literacy and advocate for spatial data sharing and access to Jamaican and Caribbean interests. We have disaster relief and communication needs and extensive earth science and geo-hazards needs to better serve our campus and community. Specifically, we hace a Science Library to showcase such to all faculty and students.", - "countryCodes": ["jm"], - "url": "mailto:benjamin.branch@uwimona.edu.jm" + "url": "mailto:benjamin.branch@uwimona.edu.jm", + "contacts": [{"name": "Organizer", "email": "benjamin.branch@uwimona.edu.jm"}] } \ No newline at end of file diff --git a/resources/north-america/nicaragua/ni-facebook.json b/resources/north-america/nicaragua/ni-facebook.json index 39f74b3b3..62f038634 100644 --- a/resources/north-america/nicaragua/ni-facebook.json +++ b/resources/north-america/nicaragua/ni-facebook.json @@ -1,10 +1,10 @@ { "id": "ni-facebook", - "featureId": "nicaragua", "type": "facebook", - "name": "OpenStreetMap NI Community", + "includeLocations": ["nicaragua.geojson"], "countryCodes": ["ni"], "languageCodes": ["es"], + "name": "OpenStreetMap NI Community", "description": "Mappers and OpenStreetMap on Facebook in Nicaragua", "url": "https://www.facebook.com/mapanica/", "contacts": [{"name": "NI Community", "email": "talk-ni-owner@openstreetmap.org"}], diff --git a/resources/north-america/nicaragua/ni-mailinglist.json b/resources/north-america/nicaragua/ni-mailinglist.json index 156373aa2..67e023840 100644 --- a/resources/north-america/nicaragua/ni-mailinglist.json +++ b/resources/north-america/nicaragua/ni-mailinglist.json @@ -1,10 +1,10 @@ { "id": "ni-mailinglist", - "featureId": "nicaragua", "type": "mailinglist", - "name": "Talk-ni Mailing List", + "includeLocations": ["nicaragua.geojson"], "countryCodes": ["ni"], "languageCodes": ["es"], + "name": "Talk-ni Mailing List", "description": "Talk-ni is the official mailing list for the Nicaraguan OSM community", "url": "https://lists.openstreetmap.org/listinfo/talk-ni", "contacts": [{"name": "NI Community", "email": "talk-ni-owner@openstreetmap.org"}], diff --git a/resources/north-america/nicaragua/ni-telegram.json b/resources/north-america/nicaragua/ni-telegram.json index 34e64ebd9..b3969896e 100644 --- a/resources/north-america/nicaragua/ni-telegram.json +++ b/resources/north-america/nicaragua/ni-telegram.json @@ -1,7 +1,7 @@ { "id": "ni-telegram", "type": "telegram", - "featureId": "nicaragua", + "includeLocations": ["nicaragua.geojson"], "countryCodes": ["ni"], "languageCodes": ["es"], "name": "OSM Nicaragua on Telegram", diff --git a/resources/north-america/nicaragua/ni-twitter.json b/resources/north-america/nicaragua/ni-twitter.json index 33b75d644..e680fdaea 100644 --- a/resources/north-america/nicaragua/ni-twitter.json +++ b/resources/north-america/nicaragua/ni-twitter.json @@ -1,10 +1,10 @@ { "id": "ni-twitter", - "featureId": "nicaragua", "type": "twitter", - "name": "OpenStreetMap Nicaragua Twitter", + "includeLocations": ["nicaragua.geojson"], "countryCodes": ["ni"], "languageCodes": ["es"], + "name": "OpenStreetMap Nicaragua Twitter", "description": "OSM Nicaragua on Twitter: @osm_ni", "url": "https://twitter.com/osm_ni", "contacts": [{"name": "NI Community", "email": "talk-ni-owner@openstreetmap.org"}] diff --git a/resources/north-america/nicaragua/osm-ni.json b/resources/north-america/nicaragua/osm-ni.json index 02fe3c24b..0c454bc5f 100644 --- a/resources/north-america/nicaragua/osm-ni.json +++ b/resources/north-america/nicaragua/osm-ni.json @@ -1,7 +1,7 @@ { "id": "osm-ni", - "featureId": "nicaragua", "type": "group", + "includeLocations": ["nicaragua.geojson"], "countryCodes": ["ni"], "languageCodes": ["es"], "name": "MapaNica.net", diff --git a/resources/north-america/nicaragua/ym-Universidad-Nacional-de-Ingenieria.json b/resources/north-america/nicaragua/ym-Universidad-Nacional-de-Ingenieria.json index fb826a4e2..274734a34 100644 --- a/resources/north-america/nicaragua/ym-Universidad-Nacional-de-Ingenieria.json +++ b/resources/north-america/nicaragua/ym-Universidad-Nacional-de-Ingenieria.json @@ -1,11 +1,11 @@ { + "id": "ym-Universidad-Nacional-de-Ingenieria", "type": "youthmappers", + "includeLocations": ["universidad-nacional-de-ingenieria.geojson"], + "countryCodes": ["ni"], "name": "Yeka Street MGA", "description": "YouthMappers chapter at Universidad Nacional de Ingenieria", - "id": "ym-Universidad-Nacional-de-Ingenieria", - "featureId": "universidad-nacional-de-ingenieria", - "contacts": [{"name": "Organizer", "email": "yeka.street.mga@gmail.com"}], "extendedDescription": "YEKA STREET is a work team constituted by students from Universidad Nacional de Ingenieria at Managua, Nicaragua. With the principal purpose of apply our knowledge and skills using many tools and apps to map areas in our cities and contribute to the development community projects and disasters relieve plans. We want to lead the way adding more students from all careers and universities in our country to join us at this cause, increasing in this way the life level and reducing the population vulnerability.", - "countryCodes": ["ni"], - "url": "https://www.facebook.com/yekastreetmga/" + "url": "https://www.facebook.com/yekastreetmga/", + "contacts": [{"name": "Organizer", "email": "yeka.street.mga@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/panama/ym-University-of-Panama.json b/resources/north-america/panama/ym-University-of-Panama.json index ddab3cb7d..5656638e8 100644 --- a/resources/north-america/panama/ym-University-of-Panama.json +++ b/resources/north-america/panama/ym-University-of-Panama.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Panama", "type": "youthmappers", + "includeLocations": ["university-of-panama.geojson"], + "countryCodes": ["pa"], "name": "YouthMappers UP", "description": "YouthMappers chapter at University of Panama", - "id": "ym-University-of-Panama", - "featureId": "university-of-panama", - "contacts": [{"name": "Organizer", "email": "youthmappers.up@gmail.com"}], "extendedDescription": "Student mappers in Panama work with open spatial data to help identify, define, address, and create meaning about locally defined development challenges. They collaborate with students from other countries on community mapping topics from ecotourism to food security, from biodiversity to indigenous issues, promoting a humanistic vision through scientific perspectives.", - "countryCodes": ["pa"], - "url": "mailto:Youthmappers.up@gmail.com" + "url": "mailto:Youthmappers.up@gmail.com", + "contacts": [{"name": "Organizer", "email": "youthmappers.up@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/puerto_rico/ym-Universidad-de-Puerto-Rico-Rio-Piedras.json b/resources/north-america/puerto_rico/ym-Universidad-de-Puerto-Rico-Rio-Piedras.json index d6eab01e8..2d3369270 100644 --- a/resources/north-america/puerto_rico/ym-Universidad-de-Puerto-Rico-Rio-Piedras.json +++ b/resources/north-america/puerto_rico/ym-Universidad-de-Puerto-Rico-Rio-Piedras.json @@ -1,10 +1,10 @@ { + "id": "ym-Universidad-de-Puerto-Rico-Rio-Piedras", "type": "youthmappers", + "includeLocations": ["universidad-de-puerto-rico-rio-piedras.geojson"], + "countryCodes": ["pa"], "name": "UPR YouthMappers", "description": "YouthMappers chapter at Universidad de Puerto Rico - Rio Piedras", - "id": "ym-Universidad-de-Puerto-Rico-Rio-Piedras", - "featureId": "universidad-de-puerto-rico-rio-piedras", - "contacts": [{"name": "Organizer", "email": "carlosguilbe@gmail.com"}], - "countryCodes": ["pa"], - "url": "mailto:carlosguilbe@gmail.com" + "url": "mailto:carlosguilbe@gmail.com", + "contacts": [{"name": "Organizer", "email": "carlosguilbe@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/Bay-Area-OpenStreetMappers.json b/resources/north-america/united_states/Bay-Area-OpenStreetMappers.json index 4759ccf1f..34500f74f 100644 --- a/resources/north-america/united_states/Bay-Area-OpenStreetMappers.json +++ b/resources/north-america/united_states/Bay-Area-OpenStreetMappers.json @@ -1,10 +1,10 @@ { "id": "Bay-Area-OpenStreetMappers", - "featureId": "sf_bay_area", "type": "meetup", - "name": "Bay Area OpenStreetMappers", + "includeLocations": ["sf_bay_area.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "Bay Area OpenStreetMappers", "description": "Improve OpenStreetMap in the Bay Area", "extendedDescription": "This group is about growing the OpenStreetMap community here in the Bay Area. Our events are open to everyone, from open source enthusiasts, cyclists, GIS professionals, geocachers, and beyond. Anyone and everyone who is interested in maps, map making and free map data is welcome to join our group as well as attend our events.", "url": "https://www.meetup.com/Bay-Area-OpenStreetMappers/", diff --git a/resources/north-america/united_states/Central-Pennsylvania-OSM.json b/resources/north-america/united_states/Central-Pennsylvania-OSM.json index a0ed872a9..437b619f0 100644 --- a/resources/north-america/united_states/Central-Pennsylvania-OSM.json +++ b/resources/north-america/united_states/Central-Pennsylvania-OSM.json @@ -1,10 +1,10 @@ { "id": "Central-Pennsylvania-OSM", - "featureId": "central_pa", "type": "facebook", - "name": "Central Pennsylvania OSM", + "includeLocations": ["central_pa.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "Central Pennsylvania OSM", "description": "Online mapping community based out of State College, PA", "url": "https://www.facebook.com/CentralPennsylvaniaOSM", "contacts": [{"name": "Sterling Quinn", "email": "sdq107@psu.edu"}], diff --git a/resources/north-america/united_states/Code-for-San-Jose-Slack.json b/resources/north-america/united_states/Code-for-San-Jose-Slack.json index 98f3d8c09..38972db4e 100644 --- a/resources/north-america/united_states/Code-for-San-Jose-Slack.json +++ b/resources/north-america/united_states/Code-for-San-Jose-Slack.json @@ -1,13 +1,13 @@ { "id": "Code-for-San-Jose-Slack", - "featureId": "south_sf_bay_area", "type": "slack", + "includeLocations": ["south_sf_bay_area.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], "name": "Code for San Jose Slack", "description": "All are welcome! Sign up at {signupUrl}, then join the #osm channel.", - "signupUrl": "https://slackin-c4sj.herokuapp.com/", "url": "https://codeforsanjose.slack.com/", + "signupUrl": "https://slackin-c4sj.herokuapp.com/", "contacts": [{"name": "OSM Bay Area mailing list", "email": "talk-us-sfbay@openstreetmap.org"}], "order": 4 } \ No newline at end of file diff --git a/resources/north-america/united_states/Dallas-Fort-Worth-OSM.json b/resources/north-america/united_states/Dallas-Fort-Worth-OSM.json index f6cbf4bd6..46345efc6 100644 --- a/resources/north-america/united_states/Dallas-Fort-Worth-OSM.json +++ b/resources/north-america/united_states/Dallas-Fort-Worth-OSM.json @@ -1,10 +1,10 @@ { "id": "Dallas-Fort-Worth-OSM", - "featureId": "dfw_metro", "type": "osm", - "name": "Dallas-Fort Worth OSM", + "includeLocations": ["dfw_metro.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "Dallas-Fort Worth OSM", "description": "The OpenStreetMap user group for Dallas-Fort Worth", "extendedDescription": "Dallas, Fort Worth, and all the cities in between are abounding with creative and tech-savvy people. The vision for this usergroup is to find new ways to use the amazing resource of OSM.", "url": "http://dfwosm.org/", diff --git a/resources/north-america/united_states/GeoPhilly.json b/resources/north-america/united_states/GeoPhilly.json index 4327642e7..3cba01eb6 100644 --- a/resources/north-america/united_states/GeoPhilly.json +++ b/resources/north-america/united_states/GeoPhilly.json @@ -1,10 +1,10 @@ { "id": "GeoPhilly", - "featureId": "philly_metro", "type": "meetup", - "name": "GeoPhilly", + "includeLocations": ["philly_metro.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "GeoPhilly", "description": "Meetup for map enthusiasts in the Philadelphia area", "extendedDescription": "GeoPhilly unites developers, geographers, data geeks, open source enthusiasts, civic hackers and map addicts in our shared love of maps and the stories they tell. If you use maps as part of your work or just want to learn more, this is the meetup for you! Our events aim to be open, friendly, educational and social and range from happy hours to lightning talks or even workshops. Come create a diverse, inspiring geospatial community in the Philadelphia with us!", "url": "https://www.meetup.com/GeoPhilly/", diff --git a/resources/north-america/united_states/MapMinnesota.json b/resources/north-america/united_states/MapMinnesota.json index 62089b6ae..77254830d 100644 --- a/resources/north-america/united_states/MapMinnesota.json +++ b/resources/north-america/united_states/MapMinnesota.json @@ -1,10 +1,10 @@ { "id": "MapMinnesota", - "featureId": "minneapolis_st_paul_metro", "type": "meetup", - "name": "MapMinnesota", + "includeLocations": ["minneapolis_st_paul_metro.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "MapMinnesota", "description": "Mappers and OpenStreetMap enthusiasts in the Twin Cities area", "extendedDescription": "Connecting OpenStreetMap enthusiasts in Minnesota and the Twin Cities!", "url": "https://www.meetup.com/Map-Minnesota/", diff --git a/resources/north-america/united_states/Mapping-DC-meetup.json b/resources/north-america/united_states/Mapping-DC-meetup.json index ce721db07..8d16752a9 100644 --- a/resources/north-america/united_states/Mapping-DC-meetup.json +++ b/resources/north-america/united_states/Mapping-DC-meetup.json @@ -1,10 +1,10 @@ { "id": "Mapping-DC-meetup", - "featureId": "dc_metro", "type": "meetup", - "name": "Mapping DC", + "includeLocations": ["dc_metro.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "Mapping DC", "description": "Improve OpenStreetMap in the DC area", "extendedDescription": "We are a group of volunteer mappers who aim to improve the OpenStreetMap in the DC area. We also aim to teach others about the OSM ecosystem, data analytics, cartography, and GIS. We gather every other month at meetups to focus on one area of our city.", "url": "https://mappingdc.org/", diff --git a/resources/north-america/united_states/Maptime-ME.json b/resources/north-america/united_states/Maptime-ME.json index 6ff8c626b..9d1508854 100644 --- a/resources/north-america/united_states/Maptime-ME.json +++ b/resources/north-america/united_states/Maptime-ME.json @@ -1,10 +1,10 @@ { "id": "Maptime-ME-meetup", - "featureId": "portland_me", "type": "meetup", - "name": "MaptimeME", + "includeLocations": ["portland_me.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "MaptimeME", "description": "Mappers and OpenStreetMap users, around Portland, ME", "extendedDescription": "Maptime is, rather literally, time for mapmaking. Our mission is to open the doors of cartographic possibility to anyone interested by creating a time and space for collaborative learning, exploration, and map creation using mapping tools and technologies.", "url": "https://www.meetup.com/MaptimeME/", diff --git a/resources/north-america/united_states/Massachusetts-mailinglist.json b/resources/north-america/united_states/Massachusetts-mailinglist.json index 19f4e4d60..9459cb5a3 100644 --- a/resources/north-america/united_states/Massachusetts-mailinglist.json +++ b/resources/north-america/united_states/Massachusetts-mailinglist.json @@ -1,10 +1,10 @@ { "id": "us-ma-mailinglist", - "featureId": "massachusetts", "type": "mailinglist", - "name": "Talk-us-massachusetts Mailing List", + "includeLocations": ["massachusetts.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "Talk-us-massachusetts Mailing List", "description": "Email mailing list for the Massachusetts OSM community", "url": "https://lists.openstreetmap.org/listinfo/talk-us-massachusetts", "contacts": [{"name": "Alan Bragg", "email": "alan.ruth.bragg@gmail.com"}], diff --git a/resources/north-america/united_states/OSM-Boston.json b/resources/north-america/united_states/OSM-Boston.json index fc9c5d941..4efb3fb93 100644 --- a/resources/north-america/united_states/OSM-Boston.json +++ b/resources/north-america/united_states/OSM-Boston.json @@ -1,10 +1,10 @@ { "id": "OSM-Boston", - "featureId": "boston_metro", "type": "meetup", - "name": "OpenStreetMap Boston", + "includeLocations": ["boston_metro.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "OpenStreetMap Boston", "description": "Mappers and OpenStreetMap users in the Boston area", "extendedDescription": "OpenStreetMap is the free and open, wiki-style map of the world, with hundreds of thousands of contributions every day from people like you. Editing the map is simple, and fun! Join us both indoors and outdoors in our effort to create the best map of the Boston area and the rest of the world!", "url": "https://www.meetup.com/OpenStreetMap-Boston/", diff --git a/resources/north-america/united_states/OSM-Central-Salish-Sea.json b/resources/north-america/united_states/OSM-Central-Salish-Sea.json index bfe4bfa7d..be1fc83c3 100644 --- a/resources/north-america/united_states/OSM-Central-Salish-Sea.json +++ b/resources/north-america/united_states/OSM-Central-Salish-Sea.json @@ -1,10 +1,10 @@ { "id": "OSM-Central-Salish-Sea", - "featureId": "mt_vernon_wa", "type": "meetup", - "name": "OpenStreetMap Central Salish Sea", + "includeLocations": ["mt_vernon_wa.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "OpenStreetMap Central Salish Sea", "description": "Mappers and OpenStreetMap users around Mount Vernon, WA", "extendedDescription": "OpenStreetMap is an map of the world made by people like you. It's a map that you build, that's given away for free like wikipedia. Check out osm.org for more. We meet all the time to talk maps, make maps and have fun!", "url": "https://www.meetup.com/OpenStreetMap-Central-Salish-Sea/", diff --git a/resources/north-america/united_states/OSM-Chattanooga.json b/resources/north-america/united_states/OSM-Chattanooga.json index 0f4b7ebae..9496f8fc6 100644 --- a/resources/north-america/united_states/OSM-Chattanooga.json +++ b/resources/north-america/united_states/OSM-Chattanooga.json @@ -1,10 +1,10 @@ { "id": "OSM-Chattanooga", - "featureId": "chattanooga", "type": "facebook", - "name": "OSM Chattanooga", + "includeLocations": ["chattanooga.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "OSM Chattanooga", "description": "The OpenStreetMap user group for Chattanooga", "url": "https://www.facebook.com/groups/123483951073256", "contacts": [ diff --git a/resources/north-america/united_states/OSM-Colorado.json b/resources/north-america/united_states/OSM-Colorado.json index 673b00d9c..d5bdc4890 100644 --- a/resources/north-america/united_states/OSM-Colorado.json +++ b/resources/north-america/united_states/OSM-Colorado.json @@ -1,10 +1,10 @@ { "id": "OSM-Colorado", - "featureId": "colorado", "type": "meetup", - "name": "OpenStreetMap Colorado", + "includeLocations": ["colorado.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "OpenStreetMap Colorado", "description": "Mappers and OpenStreetMap users in the state of Colorado, USA", "extendedDescription": "OpenStreetMap (OSM) Colorado is a local collaboration of people interested in contributing their efforts to create free maps. We encourage all of our mappers to organize or suggest mapping events throughout the state. Meetup activities can be simple social mixers, OSM basic to advanced training, or community mapping parties.", "url": "https://www.meetup.com/OSM-Colorado/", diff --git a/resources/north-america/united_states/OSM-Portland-forum.json b/resources/north-america/united_states/OSM-Portland-forum.json index 4ff1752b9..b757f4d15 100644 --- a/resources/north-america/united_states/OSM-Portland-forum.json +++ b/resources/north-america/united_states/OSM-Portland-forum.json @@ -1,10 +1,10 @@ { "id": "OSM-Portland-forum", - "featureId": "portland_or", "type": "forum", - "name": "OpenStreetMap PDX Google Group", + "includeLocations": ["portland_or.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "OpenStreetMap PDX Google Group", "description": "Forum and mailing list for OpenStreetMap users in the Portland area", "extendedDescription": "This group is to facilitate improvements to OpenStreetMap in the Portland, Oregon area to support applications such as the Open Trip Planner.", "url": "https://groups.google.com/group/osm-pdx", diff --git a/resources/north-america/united_states/OSM-Portland.json b/resources/north-america/united_states/OSM-Portland.json index 70d004a71..e795fbd23 100644 --- a/resources/north-america/united_states/OSM-Portland.json +++ b/resources/north-america/united_states/OSM-Portland.json @@ -1,10 +1,10 @@ { "id": "OSM-Portland", - "featureId": "portland_or", "type": "meetup", - "name": "OpenStreetMap Portland", + "includeLocations": ["portland_or.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "OpenStreetMap Portland", "description": "Mappers and OpenStreetMap users in the Portland area", "extendedDescription": "OpenStreetMap (OSM) is a map of the world made by people like you. It's a map that you build, that's given away for free like wikipedia. Check out osm.org for more, and come join us at a meetup to talk maps, contribute to OSM, and have fun!", "url": "https://www.meetup.com/OpenStreetMap-Portland/", diff --git a/resources/north-america/united_states/OSM-Seattle.json b/resources/north-america/united_states/OSM-Seattle.json index 37f7e0560..5cc6a00f6 100644 --- a/resources/north-america/united_states/OSM-Seattle.json +++ b/resources/north-america/united_states/OSM-Seattle.json @@ -1,10 +1,10 @@ { "id": "OSM-Seattle", - "featureId": "seattle", "type": "meetup", - "name": "OpenStreetMap Seattle", + "includeLocations": ["seattle.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "OpenStreetMap Seattle", "description": "Mappers and OpenStreetMap users in the Seattle area", "url": "https://www.meetup.com/OpenStreetMap-Seattle/", "contacts": [ diff --git a/resources/north-america/united_states/OSM-SoCal.json b/resources/north-america/united_states/OSM-SoCal.json index c55b335e3..80dd29ac6 100644 --- a/resources/north-america/united_states/OSM-SoCal.json +++ b/resources/north-america/united_states/OSM-SoCal.json @@ -1,10 +1,10 @@ { "id": "OSM-SoCal", - "featureId": "la_metro", "type": "meetup", - "name": "OpenStreetMap Southern California", + "includeLocations": ["la_metro.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "OpenStreetMap Southern California", "description": "Let's have some fun, contribute something to Los Angeles, and learn about mapping!", "extendedDescription": "OpenStreetMap (OSM) Southern California is for anyone interested in mapping to get together to work with OpenStreetMap. OpenStreetMap, the Wikipedia of maps, is a free open-source map of the world being created by more than 1,000,000 volunteers around the globe. Everyone is welcome. If you don't know OpenStreetMap, we'll teach you. If you have an idea for a mapping project or even a field trip that the group can do, great!", "url": "https://www.meetup.com/OSM-Southern-California/", diff --git a/resources/north-america/united_states/OSM-SouthBay.json b/resources/north-america/united_states/OSM-SouthBay.json index 53ec88fa4..5078e83be 100644 --- a/resources/north-america/united_states/OSM-SouthBay.json +++ b/resources/north-america/united_states/OSM-SouthBay.json @@ -1,10 +1,10 @@ { "id": "OSM-South-Bay", - "featureId": "south_sf_bay_area", "type": "meetup", - "name": "OSM South Bay", + "includeLocations": ["south_sf_bay_area.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "OSM South Bay", "description": "Map Nights hosted by Code for San Jose", "extendedDescription": "Code for San Jose, the local Code for America brigade, hosts monthly Map Nights on Thursday nights in downtown San José. Meet fellow South Bay mappers, help out with local mapping projects, and hear about other civic tech projects. Programming and GIS skills are not required.", "url": "https://www.meetup.com/Code-for-San-Jose/", diff --git a/resources/north-america/united_states/OSM-Tampa-Bay.json b/resources/north-america/united_states/OSM-Tampa-Bay.json index 3d2fb8e1c..66e87123c 100644 --- a/resources/north-america/united_states/OSM-Tampa-Bay.json +++ b/resources/north-america/united_states/OSM-Tampa-Bay.json @@ -1,10 +1,10 @@ { "id": "OSM-Tampa-Bay", - "featureId": "tampa_bay", "type": "meetup", - "name": "OpenStreetMap Tampa Bay", + "includeLocations": ["tampa_bay.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "OpenStreetMap Tampa Bay", "description": "Mappers and OpenStreetMap users in the Tampa Bay area", "extendedDescription": "OSM Tampa Bay group for local residents to get together and build out the definitive map of Tampa Bay with OpenStreetMap, the free and editable map of the world. If you're into maps, data, open source, GPS, hiking, cycling, et cetera, you'll love working with OpenStreetMap -- so join in! We'll get together and map and talk about new topics once-a-month or so.", "url": "https://www.meetup.com/osmtampabay/", diff --git a/resources/north-america/united_states/OSM-US-Slack.json b/resources/north-america/united_states/OSM-US-Slack.json index 2501df942..5ee81a730 100644 --- a/resources/north-america/united_states/OSM-US-Slack.json +++ b/resources/north-america/united_states/OSM-US-Slack.json @@ -1,13 +1,13 @@ { "id": "OSM-US-Slack", - "featureId": "usa_full", "type": "slack", + "includeLocations": ["usa_full.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], "name": "OpenStreetMap US Slack", "description": "All are welcome! Sign up at {signupUrl}", - "signupUrl": "https://slack.openstreetmap.us/", "url": "https://osmus.slack.com", + "signupUrl": "https://slack.openstreetmap.us/", "contacts": [ {"name": "Ian Dees", "email": "ian@openstreetmap.us"}, {"name": "Clifford Snow", "email": "clifford@snowandsnow.us"} diff --git a/resources/north-america/united_states/OSM-US.json b/resources/north-america/united_states/OSM-US.json index ed19eddd1..ed371d357 100644 --- a/resources/north-america/united_states/OSM-US.json +++ b/resources/north-america/united_states/OSM-US.json @@ -1,14 +1,14 @@ { "id": "OSM-US", - "featureId": "usa_full", "type": "group", + "includeLocations": ["usa_full.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], "name": "OpenStreetMap US", "description": "We help grow and improve OpenStreetMap in the United States.", "extendedDescription": "We support OpenStreetMap by holding annual conferences, providing community resources, building partnerships, and by spreading the word. Join OpenStreetMap US here: {signupUrl}", - "signupUrl": "https://www.openstreetmap.us/join", "url": "https://www.openstreetmap.us/", + "signupUrl": "https://www.openstreetmap.us/join", "contacts": [ {"name": "Ian Dees", "email": "ian@openstreetmap.us"}, {"name": "Bryan Housel", "email": "bryan@openstreetmap.us"} diff --git a/resources/north-america/united_states/OSM-Utah.json b/resources/north-america/united_states/OSM-Utah.json index 7691d5891..af71bfef7 100644 --- a/resources/north-america/united_states/OSM-Utah.json +++ b/resources/north-america/united_states/OSM-Utah.json @@ -1,10 +1,10 @@ { "id": "OSM-Utah", - "featureId": "salt_lake_city", "type": "meetup", - "name": "OpenStreetMap Utah", + "includeLocations": ["salt_lake_city.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "OpenStreetMap Utah", "description": "Mappers and OpenStreetMap users in the Salt Lake City area", "extendedDescription": "Activities may include things like Learn To Map workshops, mapping parties and outdoor data collection. The events will take place in the SLC area, at least initially. We are looking for seasoned mappers as well as people new to OSM. Join and let's do some mapping!", "url": "https://www.meetup.com/OpenStreetMap-Utah/", diff --git a/resources/north-america/united_states/OSM-Wyoming.json b/resources/north-america/united_states/OSM-Wyoming.json index d3f2f418c..5d2b5faff 100644 --- a/resources/north-america/united_states/OSM-Wyoming.json +++ b/resources/north-america/united_states/OSM-Wyoming.json @@ -1,10 +1,10 @@ { "id": "OSM-Wyoming", - "featureId": "wyoming", "type": "meetup", - "name": "OpenStreetMap Wyoming", + "includeLocations": ["wyoming.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "OpenStreetMap Wyoming", "description": "Mappers and OpenStreetMap users in the state of Wyoming", "extendedDescription": "OpenStreetMap (OSM) Wyoming is a local collaboration of people interested in contributing their efforts to create free maps. We encourage all of our mappers to organize or suggest mapping events throughout the state. Meetup activities can be simple social mixers, OSM basic to advanced training, or community mapping parties.", "url": "https://www.meetup.com/OSM-Wyoming/", diff --git a/resources/north-america/united_states/OpenCleveland-meetup.json b/resources/north-america/united_states/OpenCleveland-meetup.json index db5b7e22b..dfe20bd8f 100644 --- a/resources/north-america/united_states/OpenCleveland-meetup.json +++ b/resources/north-america/united_states/OpenCleveland-meetup.json @@ -1,10 +1,10 @@ { "id": "OpenCleveland-meetup", - "featureId": "cleveland", "type": "meetup", - "name": "Open Cleveland", + "includeLocations": ["cleveland.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "Open Cleveland", "description": "Improve OpenStreetMap in the Cleveland area", "extendedDescription": "Open Geo Cleveland aims to be a resource for people to discuss and share knowledge on utilizing free geographic data sets especially OpenStreetMap, and Open geo-spatial software that manages, edits, and displays geographic data, and advocate for its use in Northeast Ohio. We're also a maptime chapter =)", "url": "https://www.meetup.com/open-cleveland/", diff --git a/resources/north-america/united_states/PHXGeo-meetup.json b/resources/north-america/united_states/PHXGeo-meetup.json index 760a8b479..07eabf126 100644 --- a/resources/north-america/united_states/PHXGeo-meetup.json +++ b/resources/north-america/united_states/PHXGeo-meetup.json @@ -1,10 +1,10 @@ { "id": "PHXGeo-meetup", - "featureId": "phoenix", "type": "meetup", - "name": "PHXGeo Meetup", + "includeLocations": ["phoenix.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "PHXGeo Meetup", "description": "Mappers and OpenStreetMap users in the Phoenix, AZ area", "extendedDescription": "This is a meetup group for those in the Phoenix area who like maps, GIS, OpenStreetMap, cartography and anything in between.", "url": "https://www.meetup.com/PHXGeo/", diff --git a/resources/north-america/united_states/PHXGeo-twitter.json b/resources/north-america/united_states/PHXGeo-twitter.json index 8397354c7..dcd4bcdab 100644 --- a/resources/north-america/united_states/PHXGeo-twitter.json +++ b/resources/north-america/united_states/PHXGeo-twitter.json @@ -1,10 +1,10 @@ { "id": "PHXGeo-twitter", - "featureId": "phoenix", "type": "twitter", - "name": "PHXGeo Twitter", + "includeLocations": ["phoenix.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "PHXGeo Twitter", "description": "Follow us on Twitter at {url}", "url": "https://twitter.com/phxgeo", "contacts": [{"name": "Ryan Arp", "email": "ryan@arpconsultinggroup.com"}] diff --git a/resources/north-america/united_states/Western-Slope-facebook.json b/resources/north-america/united_states/Western-Slope-facebook.json index ac542844e..0d7f5250c 100644 --- a/resources/north-america/united_states/Western-Slope-facebook.json +++ b/resources/north-america/united_states/Western-Slope-facebook.json @@ -1,10 +1,10 @@ { "id": "Western-Slope-facebook", - "featureId": "grand_junction_co", "type": "facebook", - "name": "Western Slope OSM Facebook", + "includeLocations": ["grand_junction_co.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "Western Slope OSM Facebook", "description": "Mappers and OpenStreetMap users around Grand Junction, CO", "url": "https://www.facebook.com/wsosm/", "contacts": [{"name": "Aaron Young", "email": "aaron@kaartgroup.com"}], diff --git a/resources/north-america/united_states/Western-Slope-meetup.json b/resources/north-america/united_states/Western-Slope-meetup.json index aa66abbe1..40337d3d1 100644 --- a/resources/north-america/united_states/Western-Slope-meetup.json +++ b/resources/north-america/united_states/Western-Slope-meetup.json @@ -1,10 +1,10 @@ { "id": "Western-Slope-meetup", - "featureId": "grand_junction_co", "type": "meetup", - "name": "Western Slope OSM Meetup", + "includeLocations": ["grand_junction_co.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "Western Slope OSM Meetup", "description": "Mappers and OpenStreetMap users around Grand Junction, CO", "extendedDescription": "The goal of this group is to introduce OpenStreetMap to the community, develop a community of mappers, create the most amazing geodata possible using whatever method we can and finally strategize in order to get this data out into our community. Imagine accurate trail signage! Imagine further development of bike paths! Imagine anything you want, that's the joy of OpenStreetMap!", "url": "https://www.meetup.com/Western-Slope-OpenStreetMap/", diff --git a/resources/north-america/united_states/maptimehrva-twitter.json b/resources/north-america/united_states/maptimehrva-twitter.json index dbff4f8c0..ca53cc49f 100644 --- a/resources/north-america/united_states/maptimehrva-twitter.json +++ b/resources/north-america/united_states/maptimehrva-twitter.json @@ -1,10 +1,10 @@ { "id": "MaptimeHRVA-twitter", - "featureId": "hrva", "type": "twitter", - "name": "MaptimeHRVA Twitter", + "includeLocations": ["hrva.geojson"], "countryCodes": ["us"], "languageCodes": ["en"], + "name": "MaptimeHRVA Twitter", "description": "Follow us on Twitter at {url}", "url": "https://twitter.com/maptimehrva", "contacts": [{"name": "Jonah Adkins", "email": "jonahadkins@gmail.com"}] diff --git a/resources/north-america/united_states/ym-Ball-State-University.json b/resources/north-america/united_states/ym-Ball-State-University.json index 4d05aefba..b636ab147 100644 --- a/resources/north-america/united_states/ym-Ball-State-University.json +++ b/resources/north-america/united_states/ym-Ball-State-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Ball-State-University", "type": "youthmappers", + "includeLocations": ["ball-state-university.geojson"], + "countryCodes": ["us"], "name": "Gamma Theta Upsilon- Iota Omega Chapter", "description": "YouthMappers chapter at Ball State University", - "id": "ym-Ball-State-University", - "featureId": "ball-state-university", - "contacts": [{"name": "Organizer", "email": "gtu@bsu.edu"}], "extendedDescription": "Our chapter is a very active one. We primarily focus on community events, fundraising, and field trips. We are currently looking to develop more mapping-related activities to draw in other students from campus who may be interested in contributing.", - "countryCodes": ["us"], - "url": "https://www.facebook.com/BallState.GammaThetaUpsilon/" + "url": "https://www.facebook.com/BallState.GammaThetaUpsilon/", + "contacts": [{"name": "Organizer", "email": "gtu@bsu.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-California-University-of-Pennsylvania.json b/resources/north-america/united_states/ym-California-University-of-Pennsylvania.json index b4c84876c..3517cd60a 100644 --- a/resources/north-america/united_states/ym-California-University-of-Pennsylvania.json +++ b/resources/north-america/united_states/ym-California-University-of-Pennsylvania.json @@ -1,11 +1,11 @@ { + "id": "ym-California-University-of-Pennsylvania", "type": "youthmappers", + "includeLocations": ["california-university-of-pennsylvania.geojson"], + "countryCodes": ["us"], "name": "CalU PA GIS Club", "description": "YouthMappers chapter at California University of Pennsylvania", - "id": "ym-California-University-of-Pennsylvania", - "featureId": "california-university-of-pennsylvania", - "contacts": [{"name": "Organizer", "email": "mueller@calu.edu"}], "extendedDescription": "GIS Students at Cal U learn to apply spatial theory to the real world. The university degree program focuses on geography as well as utilizing GIS in emergency management.", - "countryCodes": ["us"], - "url": "https://www.facebook.com/CalUGisClub/" + "url": "https://www.facebook.com/CalUGisClub/", + "contacts": [{"name": "Organizer", "email": "mueller@calu.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-Central-Washington-University.json b/resources/north-america/united_states/ym-Central-Washington-University.json index ad275ff0c..fc70d3dbc 100644 --- a/resources/north-america/united_states/ym-Central-Washington-University.json +++ b/resources/north-america/united_states/ym-Central-Washington-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Central-Washington-University", "type": "youthmappers", + "includeLocations": ["central-washington-university.geojson"], + "countryCodes": ["us"], "name": "Geography Club", "description": "YouthMappers chapter at Central Washington University", - "id": "ym-Central-Washington-University", - "featureId": "central-washington-university", - "contacts": [{"name": "Organizer", "email": "valkoc@cwu.edu"}], "extendedDescription": "Our goal teaming up with Youthmappers is to bring relief to areas that are in need of humanitarian mapping. By doing so, we are serving our fellow brothers and sisters around the world as well as furthering our own cartography skills.", - "countryCodes": ["us"], - "url": "https://www.cwu.edu/geography/geography-club" + "url": "https://www.cwu.edu/geography/geography-club", + "contacts": [{"name": "Organizer", "email": "valkoc@cwu.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-Clemson-University.json b/resources/north-america/united_states/ym-Clemson-University.json index 8c13a861a..ebf503fe9 100644 --- a/resources/north-america/united_states/ym-Clemson-University.json +++ b/resources/north-america/united_states/ym-Clemson-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Clemson-University", "type": "youthmappers", + "includeLocations": ["clemson-university.geojson"], + "countryCodes": ["us"], "name": "Clemson Mappers", "description": "YouthMappers chapter at Clemson University", - "id": "ym-Clemson-University", - "featureId": "clemson-university", - "contacts": [{"name": "Organizer", "email": "clemsonmappers@gmail.com"}], "extendedDescription": "Students in Clemson are supported by the Center for Geospatial Technologies, a community of interdisciplinary geospatial science practitioners supporting research, teaching, and outreach activities using technologies that enable the collection, analysis, and application of geospatial data. Students integrate geospatial technologies within their scholarly activities across all disciplines and build connections throughout the world.", - "countryCodes": ["us"], - "url": "http://www.clemsongis.org/#!clemson-mappers/i9w6t" + "url": "http://www.clemsongis.org/#!clemson-mappers/i9w6t", + "contacts": [{"name": "Organizer", "email": "clemsonmappers@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-College-of-William-and-Mary.json b/resources/north-america/united_states/ym-College-of-William-and-Mary.json index 450017340..fc4e75e3a 100644 --- a/resources/north-america/united_states/ym-College-of-William-and-Mary.json +++ b/resources/north-america/united_states/ym-College-of-William-and-Mary.json @@ -1,11 +1,11 @@ { + "id": "ym-College-of-William-and-Mary", "type": "youthmappers", + "includeLocations": ["college-of-william-and-mary.geojson"], + "countryCodes": ["us"], "name": "All over the map!", "description": "YouthMappers chapter at College of William and Mary", - "id": "ym-College-of-William-and-Mary", - "featureId": "college-of-william-and-mary", - "contacts": [{"name": "Organizer", "email": "lnseitz@email.wm.edu"}], "extendedDescription": "The students who are all over the map are supported by the Center for Geospatial Analysis, a group integrating GIS across the curriculum and providing student and faculty with hardware, software, and expertise.  Students of all backgrounds utilize GIS across campus, including environmental science and policy, geology, history, business, sociology, biology, anthropology, public policy, and marine sciences.", - "countryCodes": ["us"], - "url": "mailto:lnseitz@email.wm.edu" + "url": "mailto:lnseitz@email.wm.edu", + "contacts": [{"name": "Organizer", "email": "lnseitz@email.wm.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-Cornell-University.json b/resources/north-america/united_states/ym-Cornell-University.json index eab8fb963..1f00fde0a 100644 --- a/resources/north-america/united_states/ym-Cornell-University.json +++ b/resources/north-america/united_states/ym-Cornell-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Cornell-University", "type": "youthmappers", + "includeLocations": ["cornell-university.geojson"], + "countryCodes": ["us"], "name": "Mapping Society", "description": "YouthMappers chapter at Cornell University", - "id": "ym-Cornell-University", - "featureId": "cornell-university", - "contacts": [{"name": "Organizer", "email": "mappingsocietycornell@gmail.com"}], "extendedDescription": "Cornell students and faculty use open data and open source software to address challenges at local, national, and global scales. In doing so, we advance our academic and personal goals of developing our own skills around GIS and spatial literacy.", - "countryCodes": ["us"], - "url": "mailto:mappingsocietycornell@gmail.com?subject=Youth%20Mappers%20and%20Mapping%20Society%20at%20Cornell%20University" + "url": "mailto:mappingsocietycornell@gmail.com?subject=Youth%20Mappers%20and%20Mapping%20Society%20at%20Cornell%20University", + "contacts": [{"name": "Organizer", "email": "mappingsocietycornell@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-George-Mason-University.json b/resources/north-america/united_states/ym-George-Mason-University.json index 5b6c1f400..b152678e3 100644 --- a/resources/north-america/united_states/ym-George-Mason-University.json +++ b/resources/north-america/united_states/ym-George-Mason-University.json @@ -1,11 +1,11 @@ { + "id": "ym-George-Mason-University", "type": "youthmappers", + "includeLocations": ["george-mason-university.geojson"], + "countryCodes": ["us"], "name": "Mason Mappers", "description": "YouthMappers chapter at George Mason University", - "id": "ym-George-Mason-University", - "featureId": "george-mason-university", - "contacts": [{"name": "Organizer", "email": "masonmappers@gmail.com"}], "extendedDescription": "Mason Mappers Student Society is a humanitarian mapping student organization in the George Mason University GGS Department, and its goal is to promote education and knowledge in geo-technologies, geo-info science, to foster good global stewardship and engage in professional development while building a positive, interactive geo-community, as well as shaping students into leaders of tomorrow.", - "countryCodes": ["us"], - "url": "Facebook.com/MasonMappers" + "url": "Facebook.com/MasonMappers", + "contacts": [{"name": "Organizer", "email": "masonmappers@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-Indiana-University-of-Pennsylvania.json b/resources/north-america/united_states/ym-Indiana-University-of-Pennsylvania.json index 6c7d82b77..cb54342d9 100644 --- a/resources/north-america/united_states/ym-Indiana-University-of-Pennsylvania.json +++ b/resources/north-america/united_states/ym-Indiana-University-of-Pennsylvania.json @@ -1,10 +1,10 @@ { + "id": "ym-Indiana-University-of-Pennsylvania", "type": "youthmappers", + "includeLocations": ["indiana-university-of-pennsylvania.geojson"], + "countryCodes": ["us"], "name": "Geospatial Science Club", "description": "YouthMappers chapter at Indiana University of Pennsylvania", - "id": "ym-Indiana-University-of-Pennsylvania", - "featureId": "indiana-university-of-pennsylvania", - "contacts": [{"name": "Organizer", "email": "rhoch@iup.edu"}], - "countryCodes": ["us"], - "url": "mailto:rhoch@iup.edu" + "url": "mailto:rhoch@iup.edu", + "contacts": [{"name": "Organizer", "email": "rhoch@iup.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-Jacksonville-State-University.json b/resources/north-america/united_states/ym-Jacksonville-State-University.json index d103c2429..61b5db2fe 100644 --- a/resources/north-america/united_states/ym-Jacksonville-State-University.json +++ b/resources/north-america/united_states/ym-Jacksonville-State-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Jacksonville-State-University", "type": "youthmappers", + "includeLocations": ["jacksonville-state-university.geojson"], + "countryCodes": ["us"], "name": "JSU Disaster Mapping Team", "description": "YouthMappers chapter at Jacksonville State University", - "id": "ym-Jacksonville-State-University", - "featureId": "jacksonville-state-university", - "contacts": [{"name": "Organizer", "email": "ltatum@stu.jsu.edu"}], "extendedDescription": "The JSU Disaster Mapping Team is a program at Jacksonville State University dedicated to assisting disaster response in times of emergencies. This includes tornadoes, severe thunderstorms, floods, etc. The team is intended to be a valuable asset to surrounding counties and a conduit for the JSU Geoscience Department students to apply what they have learned in an academic setting to support emergency services. Our goal is to streamline disaster response and recovery operations while utilizing student skill sets", - "countryCodes": ["us"], - "url": "mailto:ltatum@stu.jsu.edu" + "url": "mailto:ltatum@stu.jsu.edu", + "contacts": [{"name": "Organizer", "email": "ltatum@stu.jsu.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-Kansas-State-University.json b/resources/north-america/united_states/ym-Kansas-State-University.json index 9c2280447..d41856a04 100644 --- a/resources/north-america/united_states/ym-Kansas-State-University.json +++ b/resources/north-america/united_states/ym-Kansas-State-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Kansas-State-University", "type": "youthmappers", + "includeLocations": ["kansas-state-university.geojson"], + "countryCodes": ["us"], "name": "Gamma Theta Upsilon: Beta Psi Chapter", "description": "YouthMappers chapter at Kansas State University", - "id": "ym-Kansas-State-University", - "featureId": "kansas-state-university", - "contacts": [{"name": "Organizer", "email": "tblarsen@ksu.edu"}], "extendedDescription": "We are the Kansas State University Chapter of Gamma Theta Upsilon, an international geography honor society with affiliation to YouthMappers. We have been active with mapping for OSM and conducted a mapathon called \"Map for Nepal,\" in which we used OpenStreetMap to digitize unmapped areas of Nepal after the earthquake in 2015.", - "countryCodes": ["us"], - "url": "https://www.facebook.com/kstate.gtu?fref=ts" + "url": "https://www.facebook.com/kstate.gtu?fref=ts", + "contacts": [{"name": "Organizer", "email": "tblarsen@ksu.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-McGill-University.json b/resources/north-america/united_states/ym-McGill-University.json index 5b6212f09..9ed2ab638 100644 --- a/resources/north-america/united_states/ym-McGill-University.json +++ b/resources/north-america/united_states/ym-McGill-University.json @@ -1,11 +1,11 @@ { + "id": "ym-McGill-University", "type": "youthmappers", + "includeLocations": ["mcgill-university.geojson"], + "countryCodes": ["ca"], "name": "Open Mapping Group McGill: A Member of the McGill Undergraduate Geography Society", "description": "YouthMappers chapter at McGill University", - "id": "ym-McGill-University", - "featureId": "mcgill-university", - "contacts": [{"name": "Organizer", "email": "omg.mcgill@gmail.com"}], "extendedDescription": "The Open Mapping Group McGill: A Member of McGill Undergraduate Geography Society (OMG McGill) aims to connect students with open geospatial data and technologies to enhance resilience, community-building, and learning through mapping–on campus, in Montreal, in Canada, and abroad.", - "countryCodes": ["ca"], - "url": "mailto:omg.mcgill@gmail.com" + "url": "mailto:omg.mcgill@gmail.com", + "contacts": [{"name": "Organizer", "email": "omg.mcgill@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-Miami-University.json b/resources/north-america/united_states/ym-Miami-University.json index 68cad6599..3ce7850c3 100644 --- a/resources/north-america/united_states/ym-Miami-University.json +++ b/resources/north-america/united_states/ym-Miami-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Miami-University", "type": "youthmappers", + "includeLocations": ["miami-university.geojson"], + "countryCodes": ["us"], "name": "Geography and Planning Society", "description": "YouthMappers chapter at Miami University", - "id": "ym-Miami-University", - "featureId": "miami-university", - "contacts": [{"name": "Organizer", "email": "gpsmiamioh@gmail.com"}], "extendedDescription": "GPS at Miami University aims to create a close-knit community of planners and geographers who want to have fun, learn more about careers and higher education in their field, network, and work alongside professionals for real experience.", - "countryCodes": ["us"], - "url": "mailto:GPSMiamiOH@gmail.com" + "url": "mailto:GPSMiamiOH@gmail.com", + "contacts": [{"name": "Organizer", "email": "gpsmiamioh@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-Monroe-Community-College.json b/resources/north-america/united_states/ym-Monroe-Community-College.json index edc70018e..78f819710 100644 --- a/resources/north-america/united_states/ym-Monroe-Community-College.json +++ b/resources/north-america/united_states/ym-Monroe-Community-College.json @@ -1,10 +1,10 @@ { + "id": "ym-Monroe-Community-College", "type": "youthmappers", + "includeLocations": ["monroe-community-college.geojson"], + "countryCodes": ["us"], "name": "MCC Mapping Corps", "description": "YouthMappers chapter at Monroe Community College", - "id": "ym-Monroe-Community-College", - "featureId": "monroe-community-college", - "contacts": [{"name": "Organizer", "email": "gist@monroecc.edu"}], - "countryCodes": ["us"], - "url": "mailto:GIST@monroecc.edu" + "url": "mailto:GIST@monroecc.edu", + "contacts": [{"name": "Organizer", "email": "gist@monroecc.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-Montgomery-College.json b/resources/north-america/united_states/ym-Montgomery-College.json index f88184620..652f19e46 100644 --- a/resources/north-america/united_states/ym-Montgomery-College.json +++ b/resources/north-america/united_states/ym-Montgomery-College.json @@ -1,11 +1,11 @@ { + "id": "ym-Montgomery-College", "type": "youthmappers", + "includeLocations": ["montgomery-college.geojson"], + "countryCodes": ["us"], "name": "GeoMC", "description": "YouthMappers chapter at Montgomery College", - "id": "ym-Montgomery-College", - "featureId": "montgomery-college", - "contacts": [{"name": "Organizer", "email": "stephanie.calderon@montgomerycollege.edu"}], "extendedDescription": "GeoMC’s mission is to provide students with hands-on experience in applying geospatial tools, collecting data, and project management. Most of our students come with a background in GIS and are geography majors. Our chapter’s members come from diverse backgrounds and we all work together to make a positive impact in the world live in.", - "countryCodes": ["us"], - "url": "mailto:stephanie.calderon@montgomerycollege.edu" + "url": "mailto:stephanie.calderon@montgomerycollege.edu", + "contacts": [{"name": "Organizer", "email": "stephanie.calderon@montgomerycollege.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-New-York-University.json b/resources/north-america/united_states/ym-New-York-University.json index b5b616286..4b8809c5a 100644 --- a/resources/north-america/united_states/ym-New-York-University.json +++ b/resources/north-america/united_states/ym-New-York-University.json @@ -1,11 +1,11 @@ { + "id": "ym-New-York-University", "type": "youthmappers", + "includeLocations": ["new-york-university.geojson"], + "countryCodes": ["us"], "name": "NYU mHealth Initiative Mapping Corps", "description": "YouthMappers chapter at New York University", - "id": "ym-New-York-University", - "featureId": "new-york-university", - "contacts": [{"name": "Organizer", "email": "mhealth@nyu.edu"}], "extendedDescription": "The NYU mobile health or “mHealth” research initiative focuses on development of systems that link people - usually via their phones - to the places that they live and traverse, and thus supports novel research on the way phones and maps can be leveraged to understand behavioral decision making and ultimately health outcomes.", - "countryCodes": ["us"], - "url": "http://www.nyumhealth.org/" + "url": "http://www.nyumhealth.org/", + "contacts": [{"name": "Organizer", "email": "mhealth@nyu.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-Ohio-Wesleyan-University.json b/resources/north-america/united_states/ym-Ohio-Wesleyan-University.json index 21005032f..87936850e 100644 --- a/resources/north-america/united_states/ym-Ohio-Wesleyan-University.json +++ b/resources/north-america/united_states/ym-Ohio-Wesleyan-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Ohio-Wesleyan-University", "type": "youthmappers", + "includeLocations": ["ohio-wesleyan-university.geojson"], + "countryCodes": ["us"], "name": "Environment and Wildlife Club", "description": "YouthMappers chapter at Ohio Wesleyan University", - "id": "ym-Ohio-Wesleyan-University", - "featureId": "ohio-wesleyan-university", - "contacts": [{"name": "Organizer", "email": "envirowild@owu.edu"}], "extendedDescription": "Environment and Wildlife Club looks at environmental issues on campus, in Delaware, and even nationally! We create campus and community projects, explore and enjoy the outdoors, volunteer, and try to promote environmentalism in every aspect of our lives.", - "countryCodes": ["us"], - "url": "mailto:envirowild@owu.edu" + "url": "mailto:envirowild@owu.edu", + "contacts": [{"name": "Organizer", "email": "envirowild@owu.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-Oklahoma-State-University.json b/resources/north-america/united_states/ym-Oklahoma-State-University.json index 29a8f18b4..d8699b114 100644 --- a/resources/north-america/united_states/ym-Oklahoma-State-University.json +++ b/resources/north-america/united_states/ym-Oklahoma-State-University.json @@ -1,10 +1,10 @@ { + "id": "ym-Oklahoma-State-University", "type": "youthmappers", + "includeLocations": ["oklahoma-state-university.geojson"], + "countryCodes": ["us"], "name": "Geography Club", "description": "YouthMappers chapter at Oklahoma State University", - "id": "ym-Oklahoma-State-University", - "featureId": "oklahoma-state-university", - "contacts": [{"name": "Organizer", "email": "hhayden@okstate.edu"}], - "countryCodes": ["us"], - "url": "mailto:hhayden@okstate.edu" + "url": "mailto:hhayden@okstate.edu", + "contacts": [{"name": "Organizer", "email": "hhayden@okstate.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-SUNY-at-Fredonia.json b/resources/north-america/united_states/ym-SUNY-at-Fredonia.json index e400ea49f..4dadf0e32 100644 --- a/resources/north-america/united_states/ym-SUNY-at-Fredonia.json +++ b/resources/north-america/united_states/ym-SUNY-at-Fredonia.json @@ -1,11 +1,11 @@ { + "id": "ym-SUNY-at-Fredonia", "type": "youthmappers", + "includeLocations": ["suny-at-fredonia.geojson"], + "countryCodes": ["us"], "name": "Geoventurers", "description": "YouthMappers chapter at SUNY at Fredonia", - "id": "ym-SUNY-at-Fredonia", - "featureId": "suny-at-fredonia", - "contacts": [{"name": "Organizer", "email": "amw30@geneseo.edu"}], "extendedDescription": "GeoVenturers is a group of students joining together across a number of majors on our campus that see geospatial technologies as a tool to serve others and to bring people together. Mentoring for the group brings in science education from the department of curriculum and instruction. We hope that we can bring our skills to play in helping make people's lives better.", - "countryCodes": ["us"], - "url": "mailto:amw30@geneseo.edu?subject=GeoVenturers%20and%20the%20YouthMappers%20network" + "url": "mailto:amw30@geneseo.edu?subject=GeoVenturers%20and%20the%20YouthMappers%20network", + "contacts": [{"name": "Organizer", "email": "amw30@geneseo.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-State-University-of-New-York-Geneseo.json b/resources/north-america/united_states/ym-State-University-of-New-York-Geneseo.json index d04c75aaa..efacc0e99 100644 --- a/resources/north-america/united_states/ym-State-University-of-New-York-Geneseo.json +++ b/resources/north-america/united_states/ym-State-University-of-New-York-Geneseo.json @@ -1,11 +1,11 @@ { + "id": "ym-State-University-of-New-York-Geneseo", "type": "youthmappers", + "includeLocations": ["state-university-of-new-york-geneseo.geojson"], + "countryCodes": ["us"], "name": "SUNY Geneseo GIS Association", "description": "YouthMappers chapter at State University of New York Geneseo", - "id": "ym-State-University-of-New-York-Geneseo", - "featureId": "state-university-of-new-york-geneseo", - "contacts": [{"name": "Organizer", "email": "bb18@geneseo.edu"}], "extendedDescription": "We spread awareness, support, education, volunteerism, and career advancement opportunities in geographic information systems, across disciplines and departments, in the context of SUNY Geneseo, the local community, and global community.", - "countryCodes": ["us"], - "url": "http://www.facebook.com/GeneseoGIS" + "url": "http://www.facebook.com/GeneseoGIS", + "contacts": [{"name": "Organizer", "email": "bb18@geneseo.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-Texas-Tech-University.json b/resources/north-america/united_states/ym-Texas-Tech-University.json index 4010baf83..70538f19d 100644 --- a/resources/north-america/united_states/ym-Texas-Tech-University.json +++ b/resources/north-america/united_states/ym-Texas-Tech-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Texas-Tech-University", "type": "youthmappers", + "includeLocations": ["texas-tech-university.geojson"], + "countryCodes": ["us"], "name": "YouthMappers at TTU", "description": "YouthMappers chapter at Texas Tech University", - "id": "ym-Texas-Tech-University", - "featureId": "texas-tech-university", - "contacts": [{"name": "Organizer", "email": "emily.glaeser@ttu.edu"}], "extendedDescription": "As one of the co-founding chapters of the network, the TTU YouthMappers are enthusiastic to serve as interdisciplinary leaders to help create open geographic data and analyses that address locally defined development challenges worldwide. The chapter strives to exchange and collaborate with other chapters around the globe while also offering themselves as a local resource and service to Texas Tech student organizations in ways that add value to their respecitive campus activities through mapping.", - "countryCodes": ["us"], - "url": "https://www.facebook.com/youthmapperstexastech/" + "url": "https://www.facebook.com/youthmapperstexastech/", + "contacts": [{"name": "Organizer", "email": "emily.glaeser@ttu.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-The-Citadel.json b/resources/north-america/united_states/ym-The-Citadel.json index 91c1cb573..b31e5a22a 100644 --- a/resources/north-america/united_states/ym-The-Citadel.json +++ b/resources/north-america/united_states/ym-The-Citadel.json @@ -1,11 +1,11 @@ { + "id": "ym-The-Citadel", "type": "youthmappers", + "includeLocations": ["the-citadel.geojson"], + "countryCodes": ["us"], "name": "YouthMappers at The Citadel", "description": "YouthMappers chapter at The Citadel", - "id": "ym-The-Citadel", - "featureId": "the-citadel", - "contacts": [{"name": "Organizer", "email": "cstokes5@citadel.edu"}], "extendedDescription": "This chapter is also a Rotaract Club, which is an affiliate of Rotary International. Multiple members, as well as leadership have expressed an interest in YouthMappers and we would like to affiliate our Citadel Rotaract Club with YouthMappers.", - "countryCodes": ["us"], - "url": "Mailto:cstokes5@citadel.edu" + "url": "Mailto:cstokes5@citadel.edu", + "contacts": [{"name": "Organizer", "email": "cstokes5@citadel.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-The-George-Washington-University.json b/resources/north-america/united_states/ym-The-George-Washington-University.json index a1399c114..cc3f006a4 100644 --- a/resources/north-america/united_states/ym-The-George-Washington-University.json +++ b/resources/north-america/united_states/ym-The-George-Washington-University.json @@ -1,11 +1,11 @@ { + "id": "ym-The-George-Washington-University", "type": "youthmappers", + "includeLocations": ["the-george-washington-university.geojson"], + "countryCodes": ["us"], "name": "Humanitarian Mapping Society", "description": "YouthMappers chapter at The George Washington University", - "id": "ym-The-George-Washington-University", - "featureId": "the-george-washington-university", - "contacts": [{"name": "Organizer", "email": "hms.gwu@gmail.com"}], "extendedDescription": "Models of leadership and engagement, HMS seeks to render aid and better the world through humanitarian Geographic Information Systems (GIS) projects. This co-founding affiliated chapter on the campus of GWU has a plethora of experience to share, and frequently partners directly with USAID, the American Red Cross, and the US Department of State in their DC area to expand student-led efforts and serve the global community.", - "countryCodes": ["us"], - "url": "https://www.facebook.com/GWHMS/" + "url": "https://www.facebook.com/GWHMS/", + "contacts": [{"name": "Organizer", "email": "hms.gwu@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-The-Johns-Hopkins-University-SAIS.json b/resources/north-america/united_states/ym-The-Johns-Hopkins-University-SAIS.json index 931ea43be..4b6f373d2 100644 --- a/resources/north-america/united_states/ym-The-Johns-Hopkins-University-SAIS.json +++ b/resources/north-america/united_states/ym-The-Johns-Hopkins-University-SAIS.json @@ -1,11 +1,11 @@ { + "id": "ym-The-Johns-Hopkins-University-SAIS", "type": "youthmappers", + "includeLocations": ["the-johns-hopkins-university-sais.geojson"], + "countryCodes": ["us"], "name": "SAIS YouthMappers", "description": "YouthMappers chapter at The Johns Hopkins University, SAIS", - "id": "ym-The-Johns-Hopkins-University-SAIS", - "featureId": "the-johns-hopkins-university-sais", - "contacts": [{"name": "Organizer", "email": "saisyouthmappers@gmail.com"}], "extendedDescription": "The mission of SAIS Youth Mappers is to provide students at the Johns Hopkins University SAIS with the opportunity to become highly skilled humanitarian mappers. As a group within the South Asia Club, its primary focus is on supporting humanitarian mapping projects in the Indo-Pacific Region.", - "countryCodes": ["us"], - "url": "mailto:saisyouthmappers@gmail.com" + "url": "mailto:saisyouthmappers@gmail.com", + "contacts": [{"name": "Organizer", "email": "saisyouthmappers@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-The-Pennsylvania-State-University.json b/resources/north-america/united_states/ym-The-Pennsylvania-State-University.json index 015147da3..e7cca1f1f 100644 --- a/resources/north-america/united_states/ym-The-Pennsylvania-State-University.json +++ b/resources/north-america/united_states/ym-The-Pennsylvania-State-University.json @@ -1,11 +1,11 @@ { + "id": "ym-The-Pennsylvania-State-University", "type": "youthmappers", + "includeLocations": ["the-pennsylvania-state-university.geojson"], + "countryCodes": ["us"], "name": "Penn State GIS Coalition", "description": "YouthMappers chapter at The Pennsylvania State University", - "id": "ym-The-Pennsylvania-State-University", - "featureId": "the-pennsylvania-state-university", - "contacts": [{"name": "Organizer", "email": "advising@geog.psu.edu"}], "extendedDescription": "The Penn State Geospatial Information Science (GIS) Coalition is an organization that offers students majoring, minoring, or sharing an interest in GIS opportunities to develop supplementary knowledge and skills necessary to succeed in the professional GIS industry.", - "countryCodes": ["us"], - "url": "mailto:advising@geog.psu.edu" + "url": "mailto:advising@geog.psu.edu", + "contacts": [{"name": "Organizer", "email": "advising@geog.psu.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-UW-Madison.json b/resources/north-america/united_states/ym-UW-Madison.json index b1f73ccc3..0a6934289 100644 --- a/resources/north-america/united_states/ym-UW-Madison.json +++ b/resources/north-america/united_states/ym-UW-Madison.json @@ -1,11 +1,11 @@ { + "id": "ym-UW-Madison", "type": "youthmappers", + "includeLocations": ["uw-madison.geojson"], + "countryCodes": ["us"], "name": "BadgerMaps", "description": "YouthMappers chapter at UW-Madison", - "id": "ym-UW-Madison", - "featureId": "uw-madison", - "contacts": [{"name": "Organizer", "email": "uwbadgermaps@gmail.com"}], "extendedDescription": "BadgerMaps is the UW campus chapter of Youthmappers, an organization dedicated to humanitarian and community mapping services. We connect our volunteer network with opportunities to create GIS data for projects that need it.", - "countryCodes": ["us"], - "url": "https://www.facebook.com/UW-BadgerMaps-197746270811951/" + "url": "https://www.facebook.com/UW-BadgerMaps-197746270811951/", + "contacts": [{"name": "Organizer", "email": "uwbadgermaps@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-University-of-California-Davis.json b/resources/north-america/united_states/ym-University-of-California-Davis.json index 509e0acbd..8e4891468 100644 --- a/resources/north-america/united_states/ym-University-of-California-Davis.json +++ b/resources/north-america/united_states/ym-University-of-California-Davis.json @@ -1,10 +1,10 @@ { + "id": "ym-University-of-California-Davis", "type": "youthmappers", + "includeLocations": ["university-of-california-davis.geojson"], + "countryCodes": ["us"], "name": "Mapping Club", "description": "YouthMappers chapter at University of California, Davis", - "id": "ym-University-of-California-Davis", - "featureId": "university-of-california-davis", - "contacts": [{"name": "Organizer", "email": "ucdmappingclub@ucdavis.edu"}], - "countryCodes": ["us"], - "url": "mailto:ucdmappingclub@ucdavis.edu?subject=YouthMappers%20and%20UC%20Davis%20Mapping%20Club" + "url": "mailto:ucdmappingclub@ucdavis.edu?subject=YouthMappers%20and%20UC%20Davis%20Mapping%20Club", + "contacts": [{"name": "Organizer", "email": "ucdmappingclub@ucdavis.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-University-of-Central-Florida.json b/resources/north-america/united_states/ym-University-of-Central-Florida.json index 6d6ba0d66..87fecbe91 100644 --- a/resources/north-america/united_states/ym-University-of-Central-Florida.json +++ b/resources/north-america/united_states/ym-University-of-Central-Florida.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Central-Florida", "type": "youthmappers", + "includeLocations": ["university-of-central-florida.geojson"], + "countryCodes": ["us"], "name": "Geospatial Information Society", "description": "YouthMappers chapter at University of Central Florida", - "id": "ym-University-of-Central-Florida", - "featureId": "university-of-central-florida", - "contacts": [{"name": "Organizer", "email": "rsouth@knights.ucf.edu"}], "extendedDescription": "Our mission is to foster a social and educational environment for all majors who are interested in the discussion and application of GIS. Group and community events throughout the academic year organize students to volunteer to help local and regional communities by using community-based GIS projects and educating local middle and high school students on the use and application of GIS.", - "countryCodes": ["us"], - "url": "mailto:rsouth@knights.ucf.edu" + "url": "mailto:rsouth@knights.ucf.edu", + "contacts": [{"name": "Organizer", "email": "rsouth@knights.ucf.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-University-of-Chicago.json b/resources/north-america/united_states/ym-University-of-Chicago.json index 531640447..d6af7630b 100644 --- a/resources/north-america/united_states/ym-University-of-Chicago.json +++ b/resources/north-america/united_states/ym-University-of-Chicago.json @@ -1,10 +1,10 @@ { + "id": "ym-University-of-Chicago", "type": "youthmappers", + "includeLocations": ["university-of-chicago.geojson"], + "countryCodes": ["us"], "name": "Tobler Society", "description": "YouthMappers chapter at University of Chicago", - "id": "ym-University-of-Chicago", - "featureId": "university-of-chicago", - "contacts": [{"name": "Organizer", "email": "toblersociety@uchicago.edu"}], - "countryCodes": ["us"], - "url": "mailto:toblersociety@uchicago.edu" + "url": "mailto:toblersociety@uchicago.edu", + "contacts": [{"name": "Organizer", "email": "toblersociety@uchicago.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-University-of-Maryland-College-Park.json b/resources/north-america/united_states/ym-University-of-Maryland-College-Park.json index fcd1d0007..19eea7c40 100644 --- a/resources/north-america/united_states/ym-University-of-Maryland-College-Park.json +++ b/resources/north-america/united_states/ym-University-of-Maryland-College-Park.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Maryland-College-Park", "type": "youthmappers", + "includeLocations": ["university-of-maryland-college-park.geojson"], + "countryCodes": ["us"], "name": "Geography Club", "description": "YouthMappers chapter at University of Maryland - College Park", - "id": "ym-University-of-Maryland-College-Park", - "featureId": "university-of-maryland-college-park", - "contacts": [{"name": "Organizer", "email": "geogclubumd@gmail.com"}], "extendedDescription": "The mission of the Geography Club at the University of Maryland College Park is to engage and encourage students to explore geographic interests within the campus and the community.", - "countryCodes": ["us"], - "url": "https://www.facebook.com/UMDGeographyClub/?fref=ts" + "url": "https://www.facebook.com/UMDGeographyClub/?fref=ts", + "contacts": [{"name": "Organizer", "email": "geogclubumd@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-University-of-North-Texas.json b/resources/north-america/united_states/ym-University-of-North-Texas.json index 9fa624baf..bfd9cf9d7 100644 --- a/resources/north-america/united_states/ym-University-of-North-Texas.json +++ b/resources/north-america/united_states/ym-University-of-North-Texas.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-North-Texas", "type": "youthmappers", + "includeLocations": ["university-of-north-texas.geojson"], + "countryCodes": ["us"], "name": "UNT Geography Club", "description": "YouthMappers chapter at University of North Texas", - "id": "ym-University-of-North-Texas", - "featureId": "university-of-north-texas", - "contacts": [{"name": "Organizer", "email": "reeseramsey@my.unt.edu"}], "extendedDescription": "The Geography Club is a student organization at University of North Texas that welcomes all students who are interested in geography. The objective of the Geography Club is to promote interest in Geography, the Major and the Geography Department along with fellowship among students and faculty. The club also seeks to represent student needs and wants in regard to the study of geography and to provide a forum for the presentation of innovative ideas to the benefit of the University community.", - "countryCodes": ["us"], - "url": "Mailto:reeseramsey@my.unt.edu" + "url": "Mailto:reeseramsey@my.unt.edu", + "contacts": [{"name": "Organizer", "email": "reeseramsey@my.unt.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-University-of-Northern-Colorado.json b/resources/north-america/united_states/ym-University-of-Northern-Colorado.json index 135214574..97ad8b04a 100644 --- a/resources/north-america/united_states/ym-University-of-Northern-Colorado.json +++ b/resources/north-america/united_states/ym-University-of-Northern-Colorado.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Northern-Colorado", "type": "youthmappers", + "includeLocations": ["university-of-northern-colorado.geojson"], + "countryCodes": ["us"], "name": "UNCO Geography and GIS Club", "description": "YouthMappers chapter at University of Northern Colorado", - "id": "ym-University-of-Northern-Colorado", - "featureId": "university-of-northern-colorado", - "contacts": [{"name": "Organizer", "email": "uncogeoggisclub@gmail.com"}], "extendedDescription": "Official Geography and GIS Club chapter affiliated with the University of Northern Colorado where our aim is to learn, share and connect with those around us. #MakingSenseOfTheWorld", - "countryCodes": ["us"], - "url": "www.facebook.com/groups/476365076071166/" + "url": "www.facebook.com/groups/476365076071166/", + "contacts": [{"name": "Organizer", "email": "uncogeoggisclub@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-University-of-Oregon.json b/resources/north-america/united_states/ym-University-of-Oregon.json index d070e110d..e6b014ffb 100644 --- a/resources/north-america/united_states/ym-University-of-Oregon.json +++ b/resources/north-america/united_states/ym-University-of-Oregon.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Oregon", "type": "youthmappers", + "includeLocations": ["university-of-oregon.geojson"], + "countryCodes": ["us"], "name": "Map by Northwest", "description": "YouthMappers chapter at University of Oregon", - "id": "ym-University-of-Oregon", - "featureId": "university-of-oregon", - "contacts": [{"name": "Organizer", "email": "cbone@uoregon.edu"}], "extendedDescription": "Map By Northwest aims to engage undergraduate students at the University of Oregon in mapping projects to assist in humanitarian causes and for conducting geographic research. We welcome students from all disciplines to join us in our mapping adventures.", - "countryCodes": ["us"], - "url": "http://blogs.uoregon.edu/mxnw/" + "url": "http://blogs.uoregon.edu/mxnw/", + "contacts": [{"name": "Organizer", "email": "cbone@uoregon.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-University-of-Redlands.json b/resources/north-america/united_states/ym-University-of-Redlands.json index d9d4e5aeb..a2579aaf3 100644 --- a/resources/north-america/united_states/ym-University-of-Redlands.json +++ b/resources/north-america/united_states/ym-University-of-Redlands.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Redlands", "type": "youthmappers", + "includeLocations": ["university-of-redlands.geojson"], + "countryCodes": ["us"], "name": "URSpatial Geo-Thinkers", "description": "YouthMappers chapter at University of Redlands", - "id": "ym-University-of-Redlands", - "featureId": "university-of-redlands", - "contacts": [{"name": "Organizer", "email": "nathan_strout@redlands.edu"}], "extendedDescription": "To build upon the members' GIS skills and knowledge of the tools and methods through applied social engagement as well as to educate the campus community about the power of mapping and spatial analysis through community service events.", - "countryCodes": ["us"], - "url": "mailto:nathan_strout@redlands.edu" + "url": "mailto:nathan_strout@redlands.edu", + "contacts": [{"name": "Organizer", "email": "nathan_strout@redlands.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-University-of-South-Carolina.json b/resources/north-america/united_states/ym-University-of-South-Carolina.json index 3410f8d3c..edd216804 100644 --- a/resources/north-america/united_states/ym-University-of-South-Carolina.json +++ b/resources/north-america/united_states/ym-University-of-South-Carolina.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-South-Carolina", "type": "youthmappers", + "includeLocations": ["university-of-south-carolina.geojson"], + "countryCodes": ["us"], "name": "Geography Graduate Student Association", "description": "YouthMappers chapter at University of South Carolina", - "id": "ym-University-of-South-Carolina", - "featureId": "university-of-south-carolina", - "contacts": [{"name": "Organizer", "email": "carolina_ggsa@gmail.com"}], "extendedDescription": "The GGSA is a fully student-run organization, designed to serve as an advocate and resource for all geography graduate students by filling the role of liaison between the department and students. Our goal is to further professional, academic, and personal development of graduate students interested in the field of geography and its sub disciplines.", - "countryCodes": ["us"], - "url": "https://carolinaggsa.wordpress.com/" + "url": "https://carolinaggsa.wordpress.com/", + "contacts": [{"name": "Organizer", "email": "carolina_ggsa@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-University-of-Southern-California.json b/resources/north-america/united_states/ym-University-of-Southern-California.json index 0b05e9f75..b0655673e 100644 --- a/resources/north-america/united_states/ym-University-of-Southern-California.json +++ b/resources/north-america/united_states/ym-University-of-Southern-California.json @@ -1,11 +1,11 @@ { + "id": "ym-University-of-Southern-California", "type": "youthmappers", + "includeLocations": ["university-of-southern-california.geojson"], + "countryCodes": ["us"], "name": "SC Mappers", "description": "YouthMappers chapter at University of Southern California", - "id": "ym-University-of-Southern-California", - "featureId": "university-of-southern-california", - "contacts": [{"name": "Organizer", "email": "scmappers@gmail.com"}], "extendedDescription": "We see the world differently: we view it through a spatial lens. With the power of spatial thinking, we connect place and space to help address global challenges. Collaborate with us!", - "countryCodes": ["us"], - "url": "mailto:scmappers@gmail.com?subject=YouthMappers%20at%20USC" + "url": "mailto:scmappers@gmail.com?subject=YouthMappers%20at%20USC", + "contacts": [{"name": "Organizer", "email": "scmappers@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-University-of-Vermont.json b/resources/north-america/united_states/ym-University-of-Vermont.json index 5495dc94f..6ff816422 100644 --- a/resources/north-america/united_states/ym-University-of-Vermont.json +++ b/resources/north-america/united_states/ym-University-of-Vermont.json @@ -1,10 +1,10 @@ { + "id": "ym-University-of-Vermont", "type": "youthmappers", + "includeLocations": ["university-of-vermont.geojson"], + "countryCodes": ["us"], "name": "University of Vermont Humanitarian Mapping Club", "description": "YouthMappers chapter at University of Vermont", - "id": "ym-University-of-Vermont", - "featureId": "university-of-vermont", - "contacts": [{"name": "Organizer", "email": "uvm.hmc@gmail.com"}], - "countryCodes": ["us"], - "url": "https://www.facebook.com/UVMHMC" + "url": "https://www.facebook.com/UVMHMC", + "contacts": [{"name": "Organizer", "email": "uvm.hmc@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-University-of-Victoria.json b/resources/north-america/united_states/ym-University-of-Victoria.json index 47a103912..cb9d2c035 100644 --- a/resources/north-america/united_states/ym-University-of-Victoria.json +++ b/resources/north-america/united_states/ym-University-of-Victoria.json @@ -1,10 +1,10 @@ { + "id": "ym-University-of-Victoria", "type": "youthmappers", + "includeLocations": ["university-of-victoria.geojson"], "name": "Society of Geography Students", "description": "YouthMappers chapter at University of Victoria", - "id": "ym-University-of-Victoria", - "featureId": "university-of-victoria", - "contacts": [{"name": "Organizer", "email": "sogsmappers@gmail.com"}], "extendedDescription": "SOGS seeks to promote and represent social and academic interests within the Department of Geography. This is expressed by four key goals: To provide a forum for the discussion of matters concerning the quality and accessibility of education within geography; to provide a means of expressing a consensus of student opinion to deparhnental faculty through representation at deparkrnental meetings and on departrnental committees; to undertake anangements for such activities as are for the benefit of students and are seen to be within the field of interest of students in geography; to act as a liaison through the UVSS and the Course Union Council with other student groups on campus", - "url": "https://www.facebook.com/SOGSUVic/" + "url": "https://www.facebook.com/SOGSUVic/", + "contacts": [{"name": "Organizer", "email": "sogsmappers@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-University-of-Wyoming.json b/resources/north-america/united_states/ym-University-of-Wyoming.json index 7a8ae9d1a..adda3f0f6 100644 --- a/resources/north-america/united_states/ym-University-of-Wyoming.json +++ b/resources/north-america/united_states/ym-University-of-Wyoming.json @@ -1,10 +1,10 @@ { + "id": "ym-University-of-Wyoming", "type": "youthmappers", + "includeLocations": ["university-of-wyoming.geojson"], + "countryCodes": ["us"], "name": "Gamma Theta Upsilon/Geography Club", "description": "YouthMappers chapter at University of Wyoming", - "id": "ym-University-of-Wyoming", - "featureId": "university-of-wyoming", - "contacts": [{"name": "Organizer", "email": "gtu-geography@uwyo.edu"}], - "countryCodes": ["us"], - "url": "http://www.uwyo.edu/geography/geographyclub/" + "url": "http://www.uwyo.edu/geography/geographyclub/", + "contacts": [{"name": "Organizer", "email": "gtu-geography@uwyo.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-Vassar-College.json b/resources/north-america/united_states/ym-Vassar-College.json index f825e43d3..3d82fcc0d 100644 --- a/resources/north-america/united_states/ym-Vassar-College.json +++ b/resources/north-america/united_states/ym-Vassar-College.json @@ -1,11 +1,11 @@ { + "id": "ym-Vassar-College", "type": "youthmappers", + "includeLocations": ["vassar-college.geojson"], + "countryCodes": ["us"], "name": "Hudson Valley Mappers", "description": "YouthMappers chapter at Vassar College", - "id": "ym-Vassar-College", - "featureId": "vassar-college", - "contacts": [{"name": "Organizer", "email": "geo@vassar.edu"}], "extendedDescription": "Our mission is to provide a multi-disciplinary platform for peers, educators, and community organizations to engage in local mapping projects with a focus on strengthening our local ecosystems, our built environment, and the health of our community. We also seek to contribute geospatial support for global humanitarian aid and development efforts.", - "countryCodes": ["us"], - "url": "http://pages.vassar.edu/gis/vassar-youthmappers/" + "url": "http://pages.vassar.edu/gis/vassar-youthmappers/", + "contacts": [{"name": "Organizer", "email": "geo@vassar.edu"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-Villanova-University.json b/resources/north-america/united_states/ym-Villanova-University.json index 287825f53..0f7fc8ef7 100644 --- a/resources/north-america/united_states/ym-Villanova-University.json +++ b/resources/north-america/united_states/ym-Villanova-University.json @@ -1,11 +1,11 @@ { + "id": "ym-Villanova-University", "type": "youthmappers", + "includeLocations": ["villanova-university.geojson"], + "countryCodes": ["us"], "name": "The Villanova Globeplotters", "description": "YouthMappers chapter at Villanova University", - "id": "ym-Villanova-University", - "featureId": "villanova-university", - "contacts": [{"name": "Organizer", "email": "villanova.globeplotters@gmail.com"}], "extendedDescription": "The Villanova Globeplotters is built on Villanova’s Augustinian principle of selfless-service to the global community. Mixed with relaxed social interaction, we strive to provide geospatial outreach to those in need regardless of participating students’ race, academic major, student group association, or college career level.", - "countryCodes": ["us"], - "url": "mailto:villanova.globeplotters@gmail.com" + "url": "mailto:villanova.globeplotters@gmail.com", + "contacts": [{"name": "Organizer", "email": "villanova.globeplotters@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-West-Virginia-University.json b/resources/north-america/united_states/ym-West-Virginia-University.json index 1be5553ae..cc2f87de3 100644 --- a/resources/north-america/united_states/ym-West-Virginia-University.json +++ b/resources/north-america/united_states/ym-West-Virginia-University.json @@ -1,11 +1,11 @@ { + "id": "ym-West-Virginia-University", "type": "youthmappers", + "includeLocations": ["west-virginia-university.geojson"], + "countryCodes": ["us"], "name": "Maptime Morgantown", "description": "YouthMappers chapter at West Virginia University", - "id": "ym-West-Virginia-University", - "featureId": "west-virginia-university", - "contacts": [{"name": "Organizer", "email": "maptimemorgantown@gmail.com"}], "extendedDescription": "Working as a collaborative team, this co-founding chapter focuses on providing an open learning environment for those interested in working on projects that intersect international development, emergency response, and geographic information science.\nThey connect beginners and experts by providing technical training and experience in building meaningful and useful geographic infrastructure data, while connecting to sister cities around the world.", - "countryCodes": ["us"], - "url": "mailto:MaptimeMorgantown@gmail.com?subject=Maptime%20Morgantown%20from%20YouthMappers%20website" + "url": "mailto:MaptimeMorgantown@gmail.com?subject=Maptime%20Morgantown%20from%20YouthMappers%20website", + "contacts": [{"name": "Organizer", "email": "maptimemorgantown@gmail.com"}] } \ No newline at end of file diff --git a/resources/north-america/united_states/ym-Western-Michigan-University.json b/resources/north-america/united_states/ym-Western-Michigan-University.json index f1002061d..478b31aeb 100644 --- a/resources/north-america/united_states/ym-Western-Michigan-University.json +++ b/resources/north-america/united_states/ym-Western-Michigan-University.json @@ -1,10 +1,10 @@ { + "id": "ym-Western-Michigan-University", "type": "youthmappers", + "includeLocations": ["western-michigan-university.geojson"], + "countryCodes": ["us"], "name": "Geography Club", "description": "YouthMappers chapter at Western Michigan University", - "id": "ym-Western-Michigan-University", - "featureId": "western-michigan-university", - "contacts": [{"name": "Organizer", "email": "wmu.geog.club@gmail.com"}], - "countryCodes": ["us"], - "url": "http://www.facebook.com/groups/WMUGeographyClub/" + "url": "http://www.facebook.com/groups/WMUGeographyClub/", + "contacts": [{"name": "Organizer", "email": "wmu.geog.club@gmail.com"}] } \ No newline at end of file diff --git a/resources/oceania/Maptime-Oceania-Slack.json b/resources/oceania/Maptime-Oceania-Slack.json index 050007716..bf3ebf4ee 100644 --- a/resources/oceania/Maptime-Oceania-Slack.json +++ b/resources/oceania/Maptime-Oceania-Slack.json @@ -1,13 +1,13 @@ { "id": "Maptime-Oceania-Slack", - "featureId": "oceania_full", "type": "slack", + "includeLocations": ["oceania_full.geojson"], "countryCodes": ["au", "nz"], "languageCodes": ["en"], "name": "Maptime Oceania Slack", "description": "Sign up at {signupUrl}", - "signupUrl": "https://bit.ly/maptimeau", "url": "https://maptimeoceania.slack.com", + "signupUrl": "https://bit.ly/maptimeau", "contacts": [ {"name": "David Dean", "email": "ddean@ieee.org"}, {"name": "Philip Mallis", "email": "philip.mallis@unimelb.edu.au"}, diff --git a/resources/oceania/australia/geogeeks_perth.json b/resources/oceania/australia/geogeeks_perth.json index 7c14137d0..916b154f8 100644 --- a/resources/oceania/australia/geogeeks_perth.json +++ b/resources/oceania/australia/geogeeks_perth.json @@ -1,12 +1,11 @@ { "id": "geogeeks_perth_meetup", - "featureId": "western_australia", "type": "group", + "includeLocations": ["western_australia.geojson"], "countryCodes": ["au"], "languageCodes": ["en"], "name": "GeoGeeks Perth Meetup", "description": "Perth-based meetup group for people interested in mapping, geospatial data, and open source. We'll be working on anything that involves a sense of place.", "url": "https://geogeeks.org", - "contacts": [{"name": "GeoGeeks Perth", "email": "geogeeks.perth@gmail.com"}], - "order": 0 + "contacts": [{"name": "GeoGeeks Perth", "email": "geogeeks.perth@gmail.com"}] } \ No newline at end of file diff --git a/resources/oceania/australia/talk-au.json b/resources/oceania/australia/talk-au.json index 988f21d74..0f0c0bbc1 100644 --- a/resources/oceania/australia/talk-au.json +++ b/resources/oceania/australia/talk-au.json @@ -1,7 +1,7 @@ { "id": "talk-au", - "featureId": "australia_full", "type": "mailinglist", + "includeLocations": ["australia_full.geojson"], "countryCodes": ["au"], "languageCodes": ["en"], "name": "Talk-au Mailing List", diff --git a/resources/oceania/new_zealand/talk-nz.json b/resources/oceania/new_zealand/talk-nz.json index 0264581a3..ddedcf1ba 100644 --- a/resources/oceania/new_zealand/talk-nz.json +++ b/resources/oceania/new_zealand/talk-nz.json @@ -1,7 +1,7 @@ { "id": "talk-nz", - "featureId": "new_zealand_full", "type": "mailinglist", + "includeLocations": ["new_zealand_full.geojson"], "countryCodes": ["nz"], "languageCodes": ["en"], "name": "Talk-nz Mailing List", diff --git a/resources/south-america/argentina/OSM-AR-facebook.json b/resources/south-america/argentina/OSM-AR-facebook.json index 20adb1503..c06d03df8 100644 --- a/resources/south-america/argentina/OSM-AR-facebook.json +++ b/resources/south-america/argentina/OSM-AR-facebook.json @@ -1,10 +1,10 @@ { "id": "OSM-AR-facebook", - "featureId": "argentina", "type": "facebook", - "name": "OpenStreetMap Argentina Facebook", + "includeLocations": ["argentina.geojson"], "countryCodes": ["ar"], "languageCodes": ["es"], + "name": "OpenStreetMap Argentina Facebook", "description": "Join the OpenStreetMap Argentina community on Facebook", "extendedDescription": "News from the local community", "url": "https://www.facebook.com/OpenStreetMapArgentina/", diff --git a/resources/south-america/argentina/OSM-AR-forum.json b/resources/south-america/argentina/OSM-AR-forum.json index 64b9ab30e..df3b94687 100644 --- a/resources/south-america/argentina/OSM-AR-forum.json +++ b/resources/south-america/argentina/OSM-AR-forum.json @@ -1,10 +1,10 @@ { "id": "OSM-AR-forum", - "featureId": "argentina", "type": "forum", - "name": "OpenStreetMap Argentina web forum", + "includeLocations": ["argentina.geojson"], "countryCodes": ["ar"], "languageCodes": ["es"], + "name": "OpenStreetMap Argentina web forum", "description": "Join the OpenStreetMap Argentina web forum", "extendedDescription": "Ideal for long or important discussions. Slow response time.", "url": "https://forum.openstreetmap.org/viewforum.php?id=49", diff --git a/resources/south-america/argentina/OSM-AR-irc.json b/resources/south-america/argentina/OSM-AR-irc.json index 390608278..df20dbc1f 100644 --- a/resources/south-america/argentina/OSM-AR-irc.json +++ b/resources/south-america/argentina/OSM-AR-irc.json @@ -1,10 +1,10 @@ { "id": "OSM-AR-irc", - "featureId": "argentina", "type": "irc", - "name": "OpenStreetMap Argentina IRC", + "includeLocations": ["argentina.geojson"], "countryCodes": ["ar"], "languageCodes": ["es"], + "name": "OpenStreetMap Argentina IRC", "description": "Join #osm-ar on irc.oftc.net (port 6667)", "extendedDescription": "You may find the most geeky user in the community.", "url": "https://webchat.oftc.net/?channels=osm-ar", diff --git a/resources/south-america/argentina/OSM-AR-mailinglist.json b/resources/south-america/argentina/OSM-AR-mailinglist.json index 42a135fa0..ecd23e2c1 100644 --- a/resources/south-america/argentina/OSM-AR-mailinglist.json +++ b/resources/south-america/argentina/OSM-AR-mailinglist.json @@ -1,10 +1,10 @@ { "id": "OSM-AR-mailinglist", - "featureId": "argentina", "type": "mailinglist", - "name": "Talk-ar Mailing List", + "includeLocations": ["argentina.geojson"], "countryCodes": ["ar"], "languageCodes": ["es"], + "name": "Talk-ar Mailing List", "description": "Historic mailing list. Almost unused today.", "url": "https://lists.openstreetmap.org/pipermail/talk-ar/", "contacts": [{"name": "OpenStreetMap Argentina", "email": "openstreetmap.org.ar@gmail.com"}], diff --git a/resources/south-america/argentina/OSM-AR-telegram.json b/resources/south-america/argentina/OSM-AR-telegram.json index 89d173ba2..967255894 100644 --- a/resources/south-america/argentina/OSM-AR-telegram.json +++ b/resources/south-america/argentina/OSM-AR-telegram.json @@ -1,10 +1,10 @@ { "id": "OSM-AR-telegram", - "featureId": "argentina", "type": "telegram", - "name": "OpenStreetMap Argentina Telegram", + "includeLocations": ["argentina.geojson"], "countryCodes": ["ar"], "languageCodes": ["es"], + "name": "OpenStreetMap Argentina Telegram", "description": "Join the OpenStreetMap Argentina community on Telegram", "extendedDescription": "The most active channel in the community, ideal for chatting and getting answers to your questions instantly. Everyone is welcome!", "url": "https://telegram.me/osm_ar", diff --git a/resources/south-america/argentina/OSM-AR-twitter.json b/resources/south-america/argentina/OSM-AR-twitter.json index cf9a06884..f60838248 100644 --- a/resources/south-america/argentina/OSM-AR-twitter.json +++ b/resources/south-america/argentina/OSM-AR-twitter.json @@ -1,10 +1,10 @@ { "id": "OSM-AR-twitter", - "featureId": "argentina", "type": "twitter", - "name": "OpenStreetMap Argentina Twitter", + "includeLocations": ["argentina.geojson"], "countryCodes": ["ar"], "languageCodes": ["es"], + "name": "OpenStreetMap Argentina Twitter", "description": "Follow us on Twitter at {url}", "extendedDescription": "News from the local community and OpenStreetMap in general.", "url": "https://twitter.com/OpenStreetMapAr", diff --git a/resources/south-america/bolivia/OSM-BO-mailinglist.json b/resources/south-america/bolivia/OSM-BO-mailinglist.json index f9deae274..933fbeec9 100644 --- a/resources/south-america/bolivia/OSM-BO-mailinglist.json +++ b/resources/south-america/bolivia/OSM-BO-mailinglist.json @@ -1,10 +1,10 @@ { "id": "OSM-BO-mailinglist", - "featureId": "bolivia", "type": "mailinglist", - "name": "Talk-bo Mailing List", + "includeLocations": ["bolivia.geojson"], "countryCodes": ["bo"], "languageCodes": ["es"], + "name": "Talk-bo Mailing List", "description": "Talk-bo is the official mailing list for the Bolivian OpenStreetMap community", "extendedDescription": "Mapping in Bolivia? Have questions, want to connect with the community here? Join us at {url}. All are welcome!", "url": "https://lists.openstreetmap.org/pipermail/talk-bo/", diff --git a/resources/south-america/brazil/Bahia-telegram.json b/resources/south-america/brazil/Bahia-telegram.json index 5f8456f74..c3551dd02 100644 --- a/resources/south-america/brazil/Bahia-telegram.json +++ b/resources/south-america/brazil/Bahia-telegram.json @@ -1,10 +1,10 @@ { "id": "Bahia-telegram", - "featureId": "bahia", "type": "telegram", - "name": "OpenStreetMap Bahia Telegram Group", + "includeLocations": ["bahia.geojson"], "countryCodes": ["br"], "languageCodes": ["pt"], + "name": "OpenStreetMap Bahia Telegram Group", "description": "Join the OpenStreetMap Bahia community on Telegram", "extendedDescription": "Join the community to learn more about OpenStreetMap, ask questions or participate in our meetings. Everyone is welcome!", "url": "https://t.me/OSMBA", diff --git a/resources/south-america/brazil/DF-telegram.json b/resources/south-america/brazil/DF-telegram.json index c1efce783..a1bfafaf6 100644 --- a/resources/south-america/brazil/DF-telegram.json +++ b/resources/south-america/brazil/DF-telegram.json @@ -1,10 +1,10 @@ { "id": "DF-telegram", - "featureId": "df", "type": "telegram", - "name": "OpenStreetMap Brasília Telegram Group", + "includeLocations": ["df.geojson"], "countryCodes": ["br"], "languageCodes": ["pt"], + "name": "OpenStreetMap Brasília Telegram Group", "description": "Join the OpenStreetMap Brasília community on Telegram", "extendedDescription": "Join the community to learn more about OpenStreetMap, ask questions or participate in our meetings. Everyone is welcome!", "url": "https://t.me/osmbsb", diff --git a/resources/south-america/brazil/OSM-br-discord.json b/resources/south-america/brazil/OSM-br-discord.json index 6702ff92c..032ba4e04 100644 --- a/resources/south-america/brazil/OSM-br-discord.json +++ b/resources/south-america/brazil/OSM-br-discord.json @@ -1,10 +1,10 @@ { "id": "OSM-br-discord", - "featureId": "brazil", "type": "discord", - "name": "OpenStreetMap Brasil Discord", + "includeLocations": ["brazil.geojson"], "countryCodes": ["br"], "languageCodes": ["pt"], + "name": "OpenStreetMap Brasil Discord", "description": "Join the OpenStreetMap Brasil community on Discord", "url": "https://discord.gg/bQn4aCm", "contacts": [{"name": "Eduardo Addad de Oliveira", "email": "duduaddad@gmail.com"}] diff --git a/resources/south-america/brazil/OSM-br-mailinglist.json b/resources/south-america/brazil/OSM-br-mailinglist.json index b8b25a188..239663072 100644 --- a/resources/south-america/brazil/OSM-br-mailinglist.json +++ b/resources/south-america/brazil/OSM-br-mailinglist.json @@ -1,10 +1,10 @@ { "id": "OSM-br-mailinglist", - "featureId": "brazil", "type": "mailinglist", - "name": "Talk-br Mailing List", + "includeLocations": ["brazil.geojson"], "countryCodes": ["br"], "languageCodes": ["pt"], + "name": "Talk-br Mailing List", "description": "A mailing list to discuss OpenStreetMap in Brazil", "url": "https://lists.openstreetmap.org/pipermail/talk-br/", "contacts": [{"name": "Arlindo Pereira", "email": "nighto@gmail.com"}], diff --git a/resources/south-america/brazil/OSM-br-telegram.json b/resources/south-america/brazil/OSM-br-telegram.json index b46a6ebd3..fa1fcc9d8 100644 --- a/resources/south-america/brazil/OSM-br-telegram.json +++ b/resources/south-america/brazil/OSM-br-telegram.json @@ -1,10 +1,10 @@ { "id": "OSM-br-telegram", - "featureId": "brazil", "type": "telegram", - "name": "OpenStreetMap Brasil Telegram", + "includeLocations": ["brazil.geojson"], "countryCodes": ["br"], "languageCodes": ["pt"], + "name": "OpenStreetMap Brasil Telegram", "description": "Join the OpenStreetMap Brasil community on Telegram", "extendedDescription": "Join the community to learn more about OpenStreetMap, ask questions or participate in our meetings. Everyone is welcome!", "url": "https://t.me/OSMBrasil_Comunidade", diff --git a/resources/south-america/brazil/OSM-br-twitter.json b/resources/south-america/brazil/OSM-br-twitter.json index 638e38ac8..44b3e6b58 100644 --- a/resources/south-america/brazil/OSM-br-twitter.json +++ b/resources/south-america/brazil/OSM-br-twitter.json @@ -1,10 +1,10 @@ { "id": "OSM-br-twitter", - "featureId": "brazil", "type": "twitter", - "name": "OpenStreetMap Brasil Twitter", + "includeLocations": ["brazil.geojson"], "countryCodes": ["br"], "languageCodes": ["pt"], + "name": "OpenStreetMap Brasil Twitter", "description": "Follow us on Twitter at {url}", "url": "https://twitter.com/OpenStreetMapBR", "contacts": [{"name": "Wille Marcel", "email": "wille@wille.blog.br"}] diff --git a/resources/south-america/brazil/RS-telegram.json b/resources/south-america/brazil/RS-telegram.json index e51910d90..26431cac4 100644 --- a/resources/south-america/brazil/RS-telegram.json +++ b/resources/south-america/brazil/RS-telegram.json @@ -1,10 +1,10 @@ { "id": "RS-telegram", - "featureId": "rs", "type": "telegram", - "name": "OpenStreetMap Rio Grande do Sul Telegram Group", + "includeLocations": ["rs.geojson"], "countryCodes": ["br"], "languageCodes": ["pt"], + "name": "OpenStreetMap Rio Grande do Sul Telegram Group", "description": "Join the OpenStreetMap Rio Grande do Sul community on Telegram", "extendedDescription": "Join the community to learn more about OpenStreetMap, ask questions or participate in our meetings. Everyone is welcome!", "url": "https://t.me/osmrs", diff --git a/resources/south-america/chile/OSM-CL-facebook.json b/resources/south-america/chile/OSM-CL-facebook.json index d34e5ac3d..840fb1a78 100644 --- a/resources/south-america/chile/OSM-CL-facebook.json +++ b/resources/south-america/chile/OSM-CL-facebook.json @@ -1,10 +1,10 @@ { "id": "OSM-CL-facebook", - "featureId": "chile", "type": "facebook", - "name": "OpenStreetMap Chile Facebook", + "includeLocations": ["chile.geojson"], "countryCodes": ["cl"], "languageCodes": ["es"], + "name": "OpenStreetMap Chile Facebook", "description": "Join the OpenStreetMap Chile community on Facebook", "extendedDescription": "Join the community to learn more about OpenStreetMap, ask questions or participate in our meetings. Everyone is welcome!", "url": "https://www.facebook.com/OpenStreetMap-Chile-145127198882915/", diff --git a/resources/south-america/chile/OSM-CL-mailinglist.json b/resources/south-america/chile/OSM-CL-mailinglist.json index b79f1a28e..08c6d5740 100644 --- a/resources/south-america/chile/OSM-CL-mailinglist.json +++ b/resources/south-america/chile/OSM-CL-mailinglist.json @@ -1,10 +1,10 @@ { "id": "OSM-CL-mailinglist", - "featureId": "chile", "type": "mailinglist", - "name": "Talk-cl Mailing List", + "includeLocations": ["chile.geojson"], "countryCodes": ["cl"], "languageCodes": ["es"], + "name": "Talk-cl Mailing List", "description": "A mailing list to discuss OpenStreetMap in Chile", "url": "https://lists.openstreetmap.org/pipermail/talk-cl/", "contacts": [{"name": "Julio Costa", "email": "julio.costa@openstreetmap.cl"}], diff --git a/resources/south-america/chile/OSM-CL-telegram.json b/resources/south-america/chile/OSM-CL-telegram.json index 82cf7b426..5c84af824 100644 --- a/resources/south-america/chile/OSM-CL-telegram.json +++ b/resources/south-america/chile/OSM-CL-telegram.json @@ -1,10 +1,10 @@ { "id": "OSM-CL-telegram", - "featureId": "chile", "type": "telegram", - "name": "OpenStreetMap Chile Telegram", + "includeLocations": ["chile.geojson"], "countryCodes": ["cl"], "languageCodes": ["es"], + "name": "OpenStreetMap Chile Telegram", "description": "Join the OpenStreetMap Chile community on Telegram", "extendedDescription": "Join the community to learn more about OpenStreetMap, ask questions or participate in our meetings. Everyone is welcome!", "url": "https://t.me/OSMcl", diff --git a/resources/south-america/chile/OSM-CL-twitter.json b/resources/south-america/chile/OSM-CL-twitter.json index 3fd493a27..a642e3ef9 100644 --- a/resources/south-america/chile/OSM-CL-twitter.json +++ b/resources/south-america/chile/OSM-CL-twitter.json @@ -1,10 +1,10 @@ { "id": "OSM-CL-twitter", - "featureId": "chile", "type": "twitter", - "name": "OpenStreetMap Chile Twitter", + "includeLocations": ["chile.geojson"], "countryCodes": ["cl"], "languageCodes": ["es"], + "name": "OpenStreetMap Chile Twitter", "description": "Follow us on Twitter at {url}", "url": "https://twitter.com/osmCL", "contacts": [{"name": "Julio Costa", "email": "julio.costa@openstreetmap.cl"}] diff --git a/resources/south-america/colombia/Maptime-Bogota.json b/resources/south-america/colombia/Maptime-Bogota.json index 4fe63ef39..2b820bf9d 100644 --- a/resources/south-america/colombia/Maptime-Bogota.json +++ b/resources/south-america/colombia/Maptime-Bogota.json @@ -1,10 +1,10 @@ { "id": "Maptime-Bogota", - "featureId": "bogota", "type": "meetup", - "name": "Maptime Bogotá", + "includeLocations": ["bogota.geojson"], "countryCodes": ["co"], "languageCodes": ["es"], + "name": "Maptime Bogotá", "description": "We're a group of mappers interested in mapping in OpenStreetMap around Bogotá.", "extendedDescription": "Learn to collect data in the field and digitize onto OpenStreetMap. It is not necessary to have previous knowledge! You just need the desire to participate, learn, and have fun.", "url": "https://www.meetup.com/Maptime-Colombia-OSM/", diff --git a/resources/south-america/colombia/OSM-CO-facebook.json b/resources/south-america/colombia/OSM-CO-facebook.json index 821fd9d02..bdd07ec8e 100644 --- a/resources/south-america/colombia/OSM-CO-facebook.json +++ b/resources/south-america/colombia/OSM-CO-facebook.json @@ -1,10 +1,10 @@ { "id": "OSM-CO-facebook", - "featureId": "colombia", "type": "facebook", - "name": "OpenStreetMap Colombia Facebook", + "includeLocations": ["colombia.geojson"], "countryCodes": ["co"], "languageCodes": ["es"], + "name": "OpenStreetMap Colombia Facebook", "description": "Join the OpenStreetMap Colombia community on Facebook", "extendedDescription": "Join the community to learn more about OpenStreetMap. Everyone is welcome!", "url": "https://www.facebook.com/groups/OsmCol/", diff --git a/resources/south-america/colombia/OSM-CO-mailinglist.json b/resources/south-america/colombia/OSM-CO-mailinglist.json index ffd928640..4077b1d24 100644 --- a/resources/south-america/colombia/OSM-CO-mailinglist.json +++ b/resources/south-america/colombia/OSM-CO-mailinglist.json @@ -1,10 +1,10 @@ { "id": "OSM-CO-mailinglist", - "featureId": "colombia", "type": "mailinglist", - "name": "Talk-co Mailing List", + "includeLocations": ["colombia.geojson"], "countryCodes": ["co"], "languageCodes": ["es"], + "name": "Talk-co Mailing List", "description": "A mailing list to discuss OpenStreetMap in Colombia", "url": "https://lists.openstreetmap.org/pipermail/talk-co/", "contacts": [{"name": "Fredy Rivera", "email": "fredyrivera@gmail.com"}], diff --git a/resources/south-america/colombia/OSM-CO-telegram.json b/resources/south-america/colombia/OSM-CO-telegram.json index c80df9eb7..99210944d 100644 --- a/resources/south-america/colombia/OSM-CO-telegram.json +++ b/resources/south-america/colombia/OSM-CO-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-CO-telegram", "type": "telegram", - "featureId": "colombia", + "includeLocations": ["colombia.geojson"], "countryCodes": ["co"], "languageCodes": ["es"], "name": "OSM Colombia on Telegram", diff --git a/resources/south-america/colombia/OSM-CO-twitter.json b/resources/south-america/colombia/OSM-CO-twitter.json index d4dcba21a..46899b22d 100644 --- a/resources/south-america/colombia/OSM-CO-twitter.json +++ b/resources/south-america/colombia/OSM-CO-twitter.json @@ -1,10 +1,10 @@ { "id": "OSM-CO-twitter", - "featureId": "colombia", "type": "twitter", - "name": "OpenStreetMap Colombia Twitter", + "includeLocations": ["colombia.geojson"], "countryCodes": ["co"], "languageCodes": ["es"], + "name": "OpenStreetMap Colombia Twitter", "description": "Follow us on Twitter at {url}", "url": "https://twitter.com/OpenStreetMapCo", "contacts": [{"name": "Fredy Rivera", "email": "fredyrivera@gmail.com"}] diff --git a/resources/south-america/colombia/OSM-CO.json b/resources/south-america/colombia/OSM-CO.json index 7d1616243..be34bf0e1 100644 --- a/resources/south-america/colombia/OSM-CO.json +++ b/resources/south-america/colombia/OSM-CO.json @@ -1,7 +1,7 @@ { "id": "OSM-CO", - "featureId": "colombia", "type": "group", + "includeLocations": ["colombia.geojson"], "countryCodes": ["co"], "languageCodes": ["es"], "name": "OpenStreetMap Colombia", diff --git a/resources/south-america/colombia/ym-Universidad-Distrital-Francisco-Jose-de-Caldas.json b/resources/south-america/colombia/ym-Universidad-Distrital-Francisco-Jose-de-Caldas.json index db988e99f..f4d4acdbc 100644 --- a/resources/south-america/colombia/ym-Universidad-Distrital-Francisco-Jose-de-Caldas.json +++ b/resources/south-america/colombia/ym-Universidad-Distrital-Francisco-Jose-de-Caldas.json @@ -1,11 +1,11 @@ { + "id": "ym-Universidad-Distrital-Francisco-Jose-de-Caldas", "type": "youthmappers", + "includeLocations": ["universidad-distrital-francisco-jose-de-caldas.geojson"], + "countryCodes": ["co"], "name": "YouthMappers at Bogota", "description": "YouthMappers chapter at Universidad Distrital Francisco Jose de Caldas", - "id": "ym-Universidad-Distrital-Francisco-Jose-de-Caldas", - "featureId": "universidad-distrital-francisco-jose-de-caldas", - "contacts": [{"name": "Organizer", "email": "lrocha@selper.org.co"}], "extendedDescription": "The Universidad Distrital Francisco José de Caldas is a public, coeducational, research university based in Bogotá, Colombia with a population of 26,140 students.", - "countryCodes": ["co"], - "url": "mailto:lrocha@selper.org.co" + "url": "mailto:lrocha@selper.org.co", + "contacts": [{"name": "Organizer", "email": "lrocha@selper.org.co"}] } \ No newline at end of file diff --git a/resources/south-america/colombia/ym-Universidad-Nacional-de-Colombia.json b/resources/south-america/colombia/ym-Universidad-Nacional-de-Colombia.json index 8d3cb2812..d239b76cf 100644 --- a/resources/south-america/colombia/ym-Universidad-Nacional-de-Colombia.json +++ b/resources/south-america/colombia/ym-Universidad-Nacional-de-Colombia.json @@ -1,11 +1,11 @@ { + "id": "ym-Universidad-Nacional-de-Colombia", "type": "youthmappers", + "includeLocations": ["universidad-nacional-de-colombia.geojson"], + "countryCodes": ["co"], "name": "Grupo UN", "description": "YouthMappers chapter at Universidad Nacional de Colombia", - "id": "ym-Universidad-Nacional-de-Colombia", - "featureId": "universidad-nacional-de-colombia", - "contacts": [{"name": "Organizer", "email": "raknudsono@unal.edu.co"}], "extendedDescription": "Students are uniting to map and network with university students across the country of Colombia and across the globe.  Geographic specialties include affiliation with microbiology and health disciplines.", - "countryCodes": ["co"], - "url": "mailto:raknudsono@unal.edu.co?subject=Youth%20Mappers%20y%20Grupo%20UN%20Colombia" + "url": "mailto:raknudsono@unal.edu.co?subject=Youth%20Mappers%20y%20Grupo%20UN%20Colombia", + "contacts": [{"name": "Organizer", "email": "raknudsono@unal.edu.co"}] } \ No newline at end of file diff --git a/resources/south-america/colombia/ym-Universidad-de-Antioquia.json b/resources/south-america/colombia/ym-Universidad-de-Antioquia.json index 729ff3ce7..877b4fc90 100644 --- a/resources/south-america/colombia/ym-Universidad-de-Antioquia.json +++ b/resources/south-america/colombia/ym-Universidad-de-Antioquia.json @@ -1,11 +1,11 @@ { + "id": "ym-Universidad-de-Antioquia", "type": "youthmappers", + "includeLocations": ["universidad-de-antioquia.geojson"], + "countryCodes": ["co"], "name": "Geomatica UDEA", "description": "YouthMappers chapter at Universidad de Antioquia", - "id": "ym-Universidad-de-Antioquia", - "featureId": "universidad-de-antioquia", - "contacts": [{"name": "Organizer", "email": "geomatica.ing.udea@gmail.com"}], "extendedDescription": "We are a group interested in geospatial data, voluntary cartography, and participating in mapping with others in our country and within the YouthMappers network.", - "countryCodes": ["co"], - "url": "mailto:geomatica.ing.udea@gmail.com?subject=YouthMappers%20y%20Universidad%20de%20Antioquia" + "url": "mailto:geomatica.ing.udea@gmail.com?subject=YouthMappers%20y%20Universidad%20de%20Antioquia", + "contacts": [{"name": "Organizer", "email": "geomatica.ing.udea@gmail.com"}] } \ No newline at end of file diff --git a/resources/south-america/colombia/ym-Universidad-de-La-Guajira.json b/resources/south-america/colombia/ym-Universidad-de-La-Guajira.json index df1b74e1f..6ffd4c15b 100644 --- a/resources/south-america/colombia/ym-Universidad-de-La-Guajira.json +++ b/resources/south-america/colombia/ym-Universidad-de-La-Guajira.json @@ -1,11 +1,11 @@ { + "id": "ym-Universidad-de-La-Guajira", "type": "youthmappers", + "includeLocations": ["universidad-de-la-guajira.geojson"], + "countryCodes": ["co"], "name": "Grupo Mesh", "description": "YouthMappers chapter at Universidad de La Guajira", - "id": "ym-Universidad-de-La-Guajira", - "featureId": "universidad-de-la-guajira", - "contacts": [{"name": "Organizer", "email": "zoviedo@uniguajira.edu.co"}], "extendedDescription": "Grupo Mesh is a student organization at the Universidad de la Guajira in Colombia, including students from the program of Environmental Engineering who learn cartography and open mapping.", - "countryCodes": ["co"], - "url": "mailto:zoviedo@uniguajira.edu.co?subject=Grupo%20Mesh%20y%20YouthMappers" + "url": "mailto:zoviedo@uniguajira.edu.co?subject=Grupo%20Mesh%20y%20YouthMappers", + "contacts": [{"name": "Organizer", "email": "zoviedo@uniguajira.edu.co"}] } \ No newline at end of file diff --git a/resources/south-america/colombia/ym-Universidad-de-Los-Andes.json b/resources/south-america/colombia/ym-Universidad-de-Los-Andes.json index d0ac5bd57..53da531f0 100644 --- a/resources/south-america/colombia/ym-Universidad-de-Los-Andes.json +++ b/resources/south-america/colombia/ym-Universidad-de-Los-Andes.json @@ -1,11 +1,11 @@ { + "id": "ym-Universidad-de-Los-Andes", "type": "youthmappers", + "includeLocations": ["universidad-de-los-andes.geojson"], + "countryCodes": ["co"], "name": "Cartografos Uniandes", "description": "YouthMappers chapter at Universidad de Los Andes", - "id": "ym-Universidad-de-Los-Andes", - "featureId": "universidad-de-los-andes", - "contacts": [{"name": "Organizer", "email": "geografia@uniandes.edu.co"}], "extendedDescription": "We are a circle of student participation that seeks to use mapping and spatial reasoning as a means to create bonds of cooperation and integration between the university and society by addressing different spatial, social, political , economic and cultural dynamics.", - "countryCodes": ["co"], - "url": "mailto:geografia@uniandes.edu.co?subject=Youth%20Mappers%20Chapter%20y%20la%20Universidad%20de%20los%20Andes" + "url": "mailto:geografia@uniandes.edu.co?subject=Youth%20Mappers%20Chapter%20y%20la%20Universidad%20de%20los%20Andes", + "contacts": [{"name": "Organizer", "email": "geografia@uniandes.edu.co"}] } \ No newline at end of file diff --git a/resources/south-america/colombia/ym-Universidad-de-San-Buenaventura.json b/resources/south-america/colombia/ym-Universidad-de-San-Buenaventura.json index 1ed762e97..19ab21710 100644 --- a/resources/south-america/colombia/ym-Universidad-de-San-Buenaventura.json +++ b/resources/south-america/colombia/ym-Universidad-de-San-Buenaventura.json @@ -1,11 +1,11 @@ { + "id": "ym-Universidad-de-San-Buenaventura", "type": "youthmappers", + "includeLocations": ["universidad-de-san-buenaventura.geojson"], + "countryCodes": ["co"], "name": "YouthMappers San Buenaventura", "description": "YouthMappers chapter at Universidad de San Buenaventura", - "id": "ym-Universidad-de-San-Buenaventura", - "featureId": "universidad-de-san-buenaventura", - "contacts": [{"name": "Organizer", "email": "ingenieria.sistemas@usbmed.edu.co"}], "extendedDescription": "We are pleased to join YouthMappers mapping for a better world and community.", - "countryCodes": ["co"], - "url": "https://www.facebook.com/groups/1742657446017065/" + "url": "https://www.facebook.com/groups/1742657446017065/", + "contacts": [{"name": "Organizer", "email": "ingenieria.sistemas@usbmed.edu.co"}] } \ No newline at end of file diff --git a/resources/south-america/ecuador/OSM-EC-telegram.json b/resources/south-america/ecuador/OSM-EC-telegram.json index 0a0476ab8..1351ccfe5 100644 --- a/resources/south-america/ecuador/OSM-EC-telegram.json +++ b/resources/south-america/ecuador/OSM-EC-telegram.json @@ -1,9 +1,9 @@ { "id": "OSM-EC-telegram", "type": "telegram", - "featureId": "ecuador", - "languageCodes": ["es"], + "includeLocations": ["ecuador.geojson"], "countryCodes": ["ec"], + "languageCodes": ["es"], "name": "OSM Ecuador on Telegram", "description": "OpenStreetMap Ecuador Telegram chat", "url": "https://telegram.me/MappingEcuador", diff --git a/resources/south-america/paraguay/OSM-PY-telegram.json b/resources/south-america/paraguay/OSM-PY-telegram.json index 664a43b7d..16540d2d6 100644 --- a/resources/south-america/paraguay/OSM-PY-telegram.json +++ b/resources/south-america/paraguay/OSM-PY-telegram.json @@ -1,9 +1,9 @@ { "id": "OSM-PY-telegram", "type": "telegram", - "featureId": "paraguay", - "languageCodes": ["es"], + "includeLocations": ["paraguay.geojson"], "countryCodes": ["py"], + "languageCodes": ["es"], "name": "OSM Paraguay on Telegram", "description": "OpenStreetMap Paraguay Telegram chat", "url": "https://telegram.me/osm_py", diff --git a/resources/south-america/peru/OSM-PE-facebook.json b/resources/south-america/peru/OSM-PE-facebook.json index 0434ea9bf..c2cf0be28 100644 --- a/resources/south-america/peru/OSM-PE-facebook.json +++ b/resources/south-america/peru/OSM-PE-facebook.json @@ -1,10 +1,10 @@ { "id": "OSM-PE-facebook", - "featureId": "peru", "type": "facebook", - "name": "OpenStreetMap Peru Facebook", + "includeLocations": ["peru.geojson"], "countryCodes": ["pe"], "languageCodes": ["es"], + "name": "OpenStreetMap Peru Facebook", "description": "Join the OpenStreetMap Peru community on Facebook", "url": "https://www.facebook.com/Osmpe", "contacts": [ diff --git a/resources/south-america/peru/OSM-PE-mailinglist.json b/resources/south-america/peru/OSM-PE-mailinglist.json index 7ab556f00..cee739c28 100644 --- a/resources/south-america/peru/OSM-PE-mailinglist.json +++ b/resources/south-america/peru/OSM-PE-mailinglist.json @@ -1,10 +1,10 @@ { "id": "OSM-PE-mailinglist", - "featureId": "peru", "type": "mailinglist", - "name": "Talk-pe Mailing List", + "includeLocations": ["peru.geojson"], "countryCodes": ["pe"], "languageCodes": ["es"], + "name": "Talk-pe Mailing List", "description": "The official mailing list for the OpenStreetMap Peru community", "url": "https://lists.openstreetmap.org/pipermail/talk-pe/", "contacts": [ diff --git a/resources/south-america/peru/OSM-PE-matrix.json b/resources/south-america/peru/OSM-PE-matrix.json index 1346e7a09..7fb8b7ef6 100644 --- a/resources/south-america/peru/OSM-PE-matrix.json +++ b/resources/south-america/peru/OSM-PE-matrix.json @@ -1,10 +1,10 @@ { "id": "OSM-PE-matrix", - "featureId": "peru", "type": "matrix", - "name": "OpenStreetMap Peru Matrix Chat", + "includeLocations": ["peru.geojson"], "countryCodes": ["pe"], "languageCodes": ["es"], + "name": "OpenStreetMap Peru Matrix Chat", "description": "Chat with other members of the OpenStreetMap Peru community in Matrix.", "url": "https://matrix.to/#/#osmpe:matrix.org", "contacts": [ diff --git a/resources/south-america/peru/OSM-PE-telegram.json b/resources/south-america/peru/OSM-PE-telegram.json index 2e7b33c24..9231ac36d 100644 --- a/resources/south-america/peru/OSM-PE-telegram.json +++ b/resources/south-america/peru/OSM-PE-telegram.json @@ -1,10 +1,10 @@ { "id": "OSM-PE-telegram", - "featureId": "peru", "type": "telegram", - "name": "OpenStreetMap Peru Telegram", + "includeLocations": ["peru.geojson"], "countryCodes": ["pe"], "languageCodes": ["es"], + "name": "OpenStreetMap Peru Telegram", "description": "Join the OpenStreetMap Peru community on Telegram", "url": "https://telegram.me/osmPe", "contacts": [ diff --git a/resources/south-america/peru/OSM-PE-twitter.json b/resources/south-america/peru/OSM-PE-twitter.json index 108d74eed..6372287de 100644 --- a/resources/south-america/peru/OSM-PE-twitter.json +++ b/resources/south-america/peru/OSM-PE-twitter.json @@ -1,10 +1,10 @@ { "id": "OSM-PE-twitter", - "featureId": "peru", "type": "twitter", - "name": "OpenStreetMap Peru Twitter", + "includeLocations": ["peru.geojson"], "countryCodes": ["pe"], "languageCodes": ["es"], + "name": "OpenStreetMap Peru Twitter", "description": "Follow us on Twitter at {url}", "url": "https://twitter.com/osmpe", "contacts": [ diff --git a/resources/south-america/peru/OSM-PE.json b/resources/south-america/peru/OSM-PE.json index 987c37875..7da7957b9 100644 --- a/resources/south-america/peru/OSM-PE.json +++ b/resources/south-america/peru/OSM-PE.json @@ -1,10 +1,10 @@ { "id": "OSM-PE", - "featureId": "peru", "type": "osm", - "name": "OpenStreetMap Peru", + "includeLocations": ["peru.geojson"], "countryCodes": ["ar"], "languageCodes": ["es"], + "name": "OpenStreetMap Peru", "description": "News and resources for the OpenStreetMap Peru community", "url": "http://osmpe.ourproject.org/", "contacts": [ diff --git a/resources/south-america/uruguay/uy-forum.json b/resources/south-america/uruguay/uy-forum.json index e255e4d4c..22f70bd3a 100644 --- a/resources/south-america/uruguay/uy-forum.json +++ b/resources/south-america/uruguay/uy-forum.json @@ -1,7 +1,7 @@ { "id": "uy-forum", "type": "forum", - "featureId": "uruguay", + "includeLocations": ["uruguay.geojson"], "countryCodes": ["uy"], "languageCodes": ["es"], "name": "OpenStreetMap UY forum", diff --git a/resources/south-america/uruguay/uy-irc.json b/resources/south-america/uruguay/uy-irc.json index 27b4c1fd9..55eb6a082 100644 --- a/resources/south-america/uruguay/uy-irc.json +++ b/resources/south-america/uruguay/uy-irc.json @@ -1,10 +1,10 @@ { "id": "uy-irc", - "featureId": "uruguay", "type": "irc", - "name": "OpenStreetMap Uruguay on IRC", + "includeLocations": ["uruguay.geojson"], "countryCodes": ["uy"], "languageCodes": ["es"], + "name": "OpenStreetMap Uruguay on IRC", "description": "Join #osmuruguay on irc.freenode.org (port 6667)", "extendedDescription": "Join #osmuruguay on irc.freenode.org", "url": "https://webchat.freenode.net/?url=irc://irc.freenode.net/osmuruguay", diff --git a/resources/south-america/uruguay/uy-mailinglist.json b/resources/south-america/uruguay/uy-mailinglist.json index bfa2b2d3b..29e5c6b85 100644 --- a/resources/south-america/uruguay/uy-mailinglist.json +++ b/resources/south-america/uruguay/uy-mailinglist.json @@ -1,10 +1,10 @@ { "id": "uy-mailinglist", - "featureId": "uruguay", "type": "mailinglist", - "name": "Talk-uy Mailing List", + "includeLocations": ["uruguay.geojson"], "countryCodes": ["uy"], "languageCodes": ["es"], + "name": "Talk-uy Mailing List", "description": "Talk-uy is the official mailing list for the Uruguayan OSM community", "url": "https://lists.openstreetmap.org/listinfo/talk-uy", "contacts": [{"name": "UY community", "email": "talk-uy-owner@openstreetmap.org"}], diff --git a/resources/south-america/venezuela/ve-forum.json b/resources/south-america/venezuela/ve-forum.json index 835bc66ec..bbd99b118 100644 --- a/resources/south-america/venezuela/ve-forum.json +++ b/resources/south-america/venezuela/ve-forum.json @@ -1,7 +1,7 @@ { "id": "ve-forum", "type": "forum", - "featureId": "venezuela", + "includeLocations": ["venezuela.geojson"], "countryCodes": ["ve"], "languageCodes": ["es"], "name": "OpenStreetMap VE Forum", diff --git a/resources/south-america/venezuela/ve-mailinglist.json b/resources/south-america/venezuela/ve-mailinglist.json index 298be3bc4..6172159d2 100644 --- a/resources/south-america/venezuela/ve-mailinglist.json +++ b/resources/south-america/venezuela/ve-mailinglist.json @@ -1,10 +1,10 @@ { "id": "ve-mailinglist", - "featureId": "venezuela", "type": "mailinglist", - "name": "Talk-ve Mailing List", + "includeLocations": ["venezuela.geojson"], "countryCodes": ["ve"], "languageCodes": ["es"], + "name": "Talk-ve Mailing List", "description": "Talk-ve is the official mailing list for the Venezuelan OSM community", "url": "https://lists.openstreetmap.org/listinfo/talk-ve", "contacts": [{"name": "VE Community", "email": "talk-ve-owner@openstreetmap.org"}], diff --git a/resources/south-america/venezuela/ve-telegram.json b/resources/south-america/venezuela/ve-telegram.json index 7e51f1440..9b097efb9 100644 --- a/resources/south-america/venezuela/ve-telegram.json +++ b/resources/south-america/venezuela/ve-telegram.json @@ -1,10 +1,10 @@ { "id": "ve-telegram", - "featureId": "venezuela", "type": "telegram", - "name": "OpenStreetMap Venezuela Telegram", + "includeLocations": ["venezuela.geojson"], "countryCodes": ["ve"], "languageCodes": ["es"], + "name": "OpenStreetMap Venezuela Telegram", "description": "Join the OpenStreetMap Venezuela community on Telegram", "url": "https://telegram.me/OSMve", "contacts": [{"name": "VE Community", "email": "talk-ve-owner@openstreetmap.org"}] diff --git a/resources/world/OSMF.json b/resources/world/OSMF.json index bc81e4d36..9d9dc389f 100644 --- a/resources/world/OSMF.json +++ b/resources/world/OSMF.json @@ -2,7 +2,7 @@ "id": "OSMF", "type": "osm", "includeLocations": ["001"], - "languageCodes": ["en", "nl", "fr", "it", "ja", "ru"], + "languageCodes": ["en", "fr", "it", "ja", "nl", "ru"], "name": "OpenStreetMap Foundation", "description": "OSMF is a UK-based not-for-profit that supports the OpenStreetMap Project", "extendedDescription": "OSMF supports the OpenStreetMap by fundraising, maintaining the servers which power OSM, organizing the annual State of the Map conference, and coordinating the volunteers who keep OSM running. You can show your support and have a voice in the direction of OpenStreetMap by joining as an OSMF member here: {signupUrl}", diff --git a/schema/resource.json b/schema/resource.json index 35bf72892..f1fead577 100644 --- a/schema/resource.json +++ b/schema/resource.json @@ -17,11 +17,6 @@ "type": "string", "pattern": "^[-_.A-Za-z0-9]+$" }, - "featureId": { - "description": "(required) A unique identifier for the polygon", - "type": "string", - "pattern": "^[-_.A-Za-z0-9]+$" - }, "type": { "description": "(required) Type of community resource", "type": "string", From cecff19f1c160982b4580cf0287c16f50ff42761 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 14 Nov 2019 15:14:55 -0500 Subject: [PATCH 09/35] Replace YouthMappers geojson features with centroid locations --- build.js | 33 +++++++++++++++++++ ...-lUniversit-Felix-Houphouet-Boigny.geojson | 21 ------------ ...mbia-YMCA-University-of-the-Gambia.geojson | 21 ------------ ...iversity-of-Science-and-Technology.geojson | 21 ------------ .../ghana/University-of-Cape-Coast.geojson | 21 ------------ ...ty-of-Energy-and-Natural-Resources.geojson | 21 ------------ .../africa/ghana/University-of-Ghana.geojson | 21 ------------ ...University-of-Mines-and-Technology.geojson | 21 ------------ .../General-Lansana-Conte-University.geojson | 21 ------------ ...of-Science-and-Veterinary-Medicine.geojson | 21 ------------ .../africa/guinea/Universit-de-NZrkor.geojson | 21 ------------ ...n-Kimathi-University-of-Technology.geojson | 21 ------------ ...sity-of-Agriculture-and-Technology.geojson | 21 ------------ .../africa/kenya/Karatina-University.geojson | 21 ------------ .../africa/kenya/Kenyatta-University.geojson | 21 ------------ features/africa/kenya/Moi-University.geojson | 21 ------------ .../Technical-University-of-Kenya.geojson | 21 ------------ .../kenya/University-of-Nairobi.geojson | 21 ------------ ...can-Methodist-Episcopal-University.geojson | 21 ------------ .../liberia/Cuttington-University.geojson | 21 ------------ ...and-Gedeh-County-Community-College.geojson | 21 ------------ .../Nimba-County-Community-College.geojson | 21 ------------ .../liberia/Stella-Maris-Polytechnic.geojson | 21 ------------ ...University-of-Liberia-YouthMappers.geojson | 21 ------------ .../malawi/University-of-Malawi.geojson | 21 ------------ ...es-Sociale-et-de-Gestion-de-Bamako.geojson | 21 ------------ .../Universidade-Eduardo-Mondlane.geojson | 21 ------------ ...iversity-of-Science-and-Technology.geojson | 21 ------------ .../nigeria/Abia-State-University.geojson | 21 ------------ .../nigeria/Ahmadu-Bello-University.geojson | 21 ------------ .../nigeria/Federal-School-of-Surveys.geojson | 21 ------------ ...ral-University-of-Technology-Akure.geojson | 21 ------------ ...tius-Ajuru-University-of-Education.geojson | 21 ------------ ...University-of-Nigeria-Enugu-Campus.geojson | 21 ------------ .../University-of-Nigeria-Nsukka.geojson | 21 ------------ .../University-of-Port-Harcourt.geojson | 21 ------------ ...nseignement-Superieur-de-Ruhengeri.geojson | 21 ------------ .../University-of-Rwanda-Huye-Campus.geojson | 21 ------------ ...titut-Suprieur-de-Management-Kolda.geojson | 21 ------------ .../senegal/Universit-Gaston-Berger.geojson | 21 ------------ .../sierra_leone/Fourah-Bay-College.geojson | 21 ------------ .../Njala-University-Freetown-Campus.geojson | 21 ------------ .../Njala-University-Njala-Campus.geojson | 21 ------------ .../University-of-Pretoria.geojson | 21 ------------ .../africa/tanzania/Ardhi-University.geojson | 21 ------------ .../Institute-of-Finance-Management.geojson | 21 ------------ ...-Rural-Development-Planning-Mwanza.geojson | 21 ------------ ...tute-of-Rural-Development-Planning.geojson | 21 ------------ .../Open-University-of-Tanzania.geojson | 21 ------------ .../Sokoine-University-of-Agriculture.geojson | 21 ------------ .../University-of-Dar-es-Salaam.geojson | 21 ------------ .../africa/uganda/Busitema-University.geojson | 21 ------------ .../africa/uganda/Gulu-University.geojson | 21 ------------ .../africa/uganda/Kumi-University.geojson | 21 ------------ .../africa/uganda/Makerere-University.geojson | 21 ------------ ...iversity-of-Science-and-Technology.geojson | 21 ------------ ...Augustine-International-University.geojson | 21 ------------ ...-Christian-University-Mbale-Campus.geojson | 21 ------------ .../Uganda-Pentecostal-University.geojson | 21 ------------ ...awaggali-Trades-Training-Institute.geojson | 21 ------------ .../zambia/The-University-of-Zambia.geojson | 21 ------------ .../zimbabwe/University-of-Zimbabwe.geojson | 21 ------------ .../Asian-University-for-Women.geojson | 21 ------------ .../asia/bangladesh/Dhaka-College.geojson | 21 ------------ .../asia/bangladesh/Dhaka-University.geojson | 21 ------------ .../bangladesh/Eastern-University.geojson | 21 ------------ .../Jahangirnagar-University.geojson | 21 ------------ .../asia/bangladesh/Khulna-University.geojson | 21 ------------ ...iversity-of-Engineering-Technology.geojson | 21 ------------ .../asia/bhutan/Sherubtse-College.geojson | 21 ------------ .../asia/india/Gujarat-University.geojson | 21 ------------ .../Universitas-Negeri-Makassar.geojson | 21 ------------ .../University-Muhammadiyah-Surakarta.geojson | 21 ------------ ...itute-of-Crisis-Management-Studies.geojson | 21 ------------ .../asia/nepal/Kathmandu-University.geojson | 21 ------------ .../asia/nepal/Tribhuvan-University.geojson | 21 ------------ .../germany/Heidelberg-University.geojson | 21 ------------ .../italy/Politecnico-di-Milano.geojson | 21 ------------ .../Universit-Mohammed-V-Rabat.geojson | 21 ------------ .../Universidad-Autonoma-de-Madrid.geojson | 21 ------------ .../Universidad-Politcnica-de-Madrid.geojson | 21 ------------ .../Istanbul-Technical-University.geojson | 21 ------------ .../Queen-Mary-University-of-London.geojson | 21 ------------ .../University-of-Exeter.geojson | 21 ------------ .../University-of-Warwick.geojson | 21 ------------ .../jordan/Yarmouk-University.geojson | 21 ------------ .../Sacred-Heart-Junior-College.geojson | 21 ------------ .../Universidad-de-Costa-Rica.geojson | 21 ------------ ...sidad-Nacional-Autnoma-de-Honduras.geojson | 21 ------------ ...ity-of-the-West-Indies-Mona-Campus.geojson | 21 ------------ ...Universidad-Nacional-de-Ingenieria.geojson | 21 ------------ .../panama/University-of-Panama.geojson | 21 ------------ ...ersidad-de-Puerto-Rico-Rio-Piedras.geojson | 21 ------------ .../Ball-State-University.geojson | 21 ------------ ...ifornia-University-of-Pennsylvania.geojson | 21 ------------ .../Central-Washington-University.geojson | 21 ------------ .../united_states/Clemson-University.geojson | 21 ------------ .../College-of-William-and-Mary.geojson | 21 ------------ .../united_states/Cornell-University.geojson | 21 ------------ .../George-Mason-University.geojson | 21 ------------ ...Indiana-University-of-Pennsylvania.geojson | 21 ------------ .../Jacksonville-State-University.geojson | 21 ------------ .../Kansas-State-University.geojson | 21 ------------ .../united_states/McGill-University.geojson | 21 ------------ .../united_states/Miami-University.geojson | 21 ------------ .../Monroe-Community-College.geojson | 21 ------------ .../united_states/Montgomery-College.geojson | 21 ------------ .../united_states/New-York-University.geojson | 21 ------------ .../Ohio-Wesleyan-University.geojson | 21 ------------ .../Oklahoma-State-University.geojson | 21 ------------ .../united_states/SUNY-at-Fredonia.geojson | 21 ------------ ...ate-University-of-New-York-Geneseo.geojson | 21 ------------ .../Texas-Tech-University.geojson | 21 ------------ .../united_states/The-Citadel.geojson | 21 ------------ .../The-George-Washington-University.geojson | 21 ------------ .../The-Johns-Hopkins-University-SAIS.geojson | 21 ------------ .../The-Pennsylvania-State-University.geojson | 21 ------------ .../united_states/UW-Madison.geojson | 21 ------------ .../University-of-California-Davis.geojson | 21 ------------ .../University-of-Central-Florida.geojson | 21 ------------ .../University-of-Chicago.geojson | 21 ------------ ...niversity-of-Maryland-College-Park.geojson | 21 ------------ .../University-of-North-Texas.geojson | 21 ------------ .../University-of-Northern-Colorado.geojson | 21 ------------ .../University-of-Oregon.geojson | 21 ------------ .../University-of-Redlands.geojson | 21 ------------ .../University-of-South-Carolina.geojson | 21 ------------ .../University-of-Southern-California.geojson | 21 ------------ .../University-of-Vermont.geojson | 21 ------------ .../University-of-Victoria.geojson | 21 ------------ .../University-of-Wyoming.geojson | 21 ------------ .../united_states/Vassar-College.geojson | 21 ------------ .../Villanova-University.geojson | 21 ------------ .../West-Virginia-University.geojson | 21 ------------ .../Western-Michigan-University.geojson | 21 ------------ ...Distrital-Francisco-Jose-de-Caldas.geojson | 21 ------------ .../Universidad-Nacional-de-Colombia.geojson | 21 ------------ .../colombia/Universidad-de-Antioquia.geojson | 21 ------------ .../Universidad-de-La-Guajira.geojson | 21 ------------ .../colombia/Universidad-de-Los-Andes.geojson | 21 ------------ .../Universidad-de-San-Buenaventura.geojson | 21 ------------ ...-de-lUniversit-Felix-Houphouet-Boigny.json | 4 +-- ...-Gambia-YMCA-University-of-the-Gambia.json | 2 +- ...-University-of-Science-and-Technology.json | 2 +- .../ghana/ym-University-of-Cape-Coast.json | 2 +- ...rsity-of-Energy-and-Natural-Resources.json | 2 +- .../africa/ghana/ym-University-of-Ghana.json | 2 +- ...ym-University-of-Mines-and-Technology.json | 2 +- .../ym-General-Lansana-Conte-University.json | 2 +- ...te-of-Science-and-Veterinary-Medicine.json | 2 +- .../africa/guinea/ym-Universit-de-NZrkor.json | 2 +- ...edan-Kimathi-University-of-Technology.json | 2 +- ...versity-of-Agriculture-and-Technology.json | 2 +- .../africa/kenya/ym-Karatina-University.json | 2 +- .../africa/kenya/ym-Kenyatta-University.json | 2 +- resources/africa/kenya/ym-Moi-University.json | 2 +- .../ym-Technical-University-of-Kenya.json | 2 +- .../kenya/ym-University-of-Nairobi.json | 2 +- ...frican-Methodist-Episcopal-University.json | 2 +- .../liberia/ym-Cuttington-University.json | 2 +- ...-Grand-Gedeh-County-Community-College.json | 2 +- .../ym-Nimba-County-Community-College.json | 2 +- .../liberia/ym-Stella-Maris-Polytechnic.json | 2 +- ...ym-University-of-Liberia-YouthMappers.json | 2 +- .../malawi/ym-University-of-Malawi.json | 2 +- ...ences-Sociale-et-de-Gestion-de-Bamako.json | 2 +- .../ym-Universidade-Eduardo-Mondlane.json | 2 +- ...-University-of-Science-and-Technology.json | 2 +- .../nigeria/ym-Abia-State-University.json | 2 +- .../nigeria/ym-Ahmadu-Bello-University.json | 2 +- .../nigeria/ym-Federal-School-of-Surveys.json | 2 +- ...ederal-University-of-Technology-Akure.json | 2 +- ...gnatius-Ajuru-University-of-Education.json | 2 +- ...ym-University-of-Nigeria-Enugu-Campus.json | 2 +- .../ym-University-of-Nigeria-Nsukka.json | 2 +- .../ym-University-of-Port-Harcourt.json | 2 +- ...d-Enseignement-Superieur-de-Ruhengeri.json | 2 +- .../ym-University-of-Rwanda-Huye-Campus.json | 2 +- ...Institut-Suprieur-de-Management-Kolda.json | 2 +- .../senegal/ym-Universit-Gaston-Berger.json | 2 +- .../sierra_leone/ym-Fourah-Bay-College.json | 2 +- .../ym-Njala-University-Freetown-Campus.json | 2 +- .../ym-Njala-University-Njala-Campus.json | 2 +- .../ym-University-of-Pretoria.json | 2 +- .../africa/tanzania/ym-Ardhi-University.json | 2 +- .../ym-Institute-of-Finance-Management.json | 2 +- ...-of-Rural-Development-Planning-Mwanza.json | 2 +- ...stitute-of-Rural-Development-Planning.json | 2 +- .../ym-Open-University-of-Tanzania.json | 2 +- .../ym-Sokoine-University-of-Agriculture.json | 2 +- .../ym-University-of-Dar-es-Salaam.json | 2 +- .../africa/uganda/ym-Busitema-University.json | 2 +- .../africa/uganda/ym-Gulu-University.json | 2 +- .../africa/uganda/ym-Kumi-University.json | 2 +- .../africa/uganda/ym-Makerere-University.json | 2 +- ...-University-of-Science-and-Technology.json | 2 +- ...t.-Augustine-International-University.json | 2 +- ...nda-Christian-University-Mbale-Campus.json | 2 +- .../ym-Uganda-Pentecostal-University.json | 2 +- ....-Mawaggali-Trades-Training-Institute.json | 2 +- .../zambia/ym-The-University-of-Zambia.json | 2 +- .../zimbabwe/ym-University-of-Zimbabwe.json | 2 +- .../ym-Asian-University-for-Women.json | 2 +- .../asia/bangladesh/ym-Dhaka-College.json | 2 +- .../asia/bangladesh/ym-Dhaka-University.json | 2 +- .../bangladesh/ym-Eastern-University.json | 2 +- .../ym-Jahangirnagar-University.json | 2 +- .../asia/bangladesh/ym-Khulna-University.json | 2 +- ...-University-of-Engineering-Technology.json | 2 +- .../asia/bhutan/ym-Sherubtse-College.json | 2 +- .../asia/india/ym-Gujarat-University.json | 2 +- .../ym-Universitas-Negeri-Makassar.json | 2 +- .../ym-University-Muhammadiyah-Surakarta.json | 2 +- ...nstitute-of-Crisis-Management-Studies.json | 2 +- .../asia/nepal/ym-Kathmandu-University.json | 2 +- .../asia/nepal/ym-Tribhuvan-University.json | 2 +- .../germany/ym-Heidelberg-University.json | 2 +- .../italy/ym-Politecnico-di-Milano.json | 2 +- .../ym-Universit-Mohammed-V-Rabat.json | 2 +- .../ym-Universidad-Autonoma-de-Madrid.json | 2 +- .../ym-Universidad-Politcnica-de-Madrid.json | 2 +- .../ym-Istanbul-Technical-University.json | 2 +- .../ym-Queen-Mary-University-of-London.json | 2 +- .../ym-University-of-Exeter.json | 2 +- .../ym-University-of-Warwick.json | 2 +- .../jordan/ym-Yarmouk-University.json | 2 +- .../ym-Sacred-Heart-Junior-College.json | 2 +- .../ym-Universidad-de-Costa-Rica.json | 2 +- ...versidad-Nacional-Autnoma-de-Honduras.json | 2 +- ...ersity-of-the-West-Indies-Mona-Campus.json | 2 +- ...ym-Universidad-Nacional-de-Ingenieria.json | 2 +- .../panama/ym-University-of-Panama.json | 2 +- ...niversidad-de-Puerto-Rico-Rio-Piedras.json | 2 +- .../ym-Ball-State-University.json | 2 +- ...California-University-of-Pennsylvania.json | 2 +- .../ym-Central-Washington-University.json | 2 +- .../united_states/ym-Clemson-University.json | 2 +- .../ym-College-of-William-and-Mary.json | 2 +- .../united_states/ym-Cornell-University.json | 2 +- .../ym-George-Mason-University.json | 2 +- ...ym-Indiana-University-of-Pennsylvania.json | 2 +- .../ym-Jacksonville-State-University.json | 2 +- .../ym-Kansas-State-University.json | 2 +- .../united_states/ym-McGill-University.json | 2 +- .../united_states/ym-Miami-University.json | 2 +- .../ym-Monroe-Community-College.json | 2 +- .../united_states/ym-Montgomery-College.json | 2 +- .../united_states/ym-New-York-University.json | 2 +- .../ym-Ohio-Wesleyan-University.json | 2 +- .../ym-Oklahoma-State-University.json | 2 +- .../united_states/ym-SUNY-at-Fredonia.json | 2 +- ...-State-University-of-New-York-Geneseo.json | 2 +- .../ym-Texas-Tech-University.json | 2 +- .../united_states/ym-The-Citadel.json | 2 +- .../ym-The-George-Washington-University.json | 2 +- .../ym-The-Johns-Hopkins-University-SAIS.json | 2 +- .../ym-The-Pennsylvania-State-University.json | 2 +- .../united_states/ym-UW-Madison.json | 2 +- .../ym-University-of-California-Davis.json | 2 +- .../ym-University-of-Central-Florida.json | 2 +- .../ym-University-of-Chicago.json | 2 +- ...m-University-of-Maryland-College-Park.json | 2 +- .../ym-University-of-North-Texas.json | 2 +- .../ym-University-of-Northern-Colorado.json | 2 +- .../ym-University-of-Oregon.json | 2 +- .../ym-University-of-Redlands.json | 2 +- .../ym-University-of-South-Carolina.json | 2 +- .../ym-University-of-Southern-California.json | 2 +- .../ym-University-of-Vermont.json | 2 +- .../ym-University-of-Victoria.json | 2 +- .../ym-University-of-Wyoming.json | 2 +- .../united_states/ym-Vassar-College.json | 2 +- .../ym-Villanova-University.json | 2 +- .../ym-West-Virginia-University.json | 2 +- .../ym-Western-Michigan-University.json | 2 +- ...ad-Distrital-Francisco-Jose-de-Caldas.json | 2 +- .../ym-Universidad-Nacional-de-Colombia.json | 2 +- .../colombia/ym-Universidad-de-Antioquia.json | 2 +- .../ym-Universidad-de-La-Guajira.json | 2 +- .../colombia/ym-Universidad-de-Los-Andes.json | 2 +- .../ym-Universidad-de-San-Buenaventura.json | 2 +- 281 files changed, 173 insertions(+), 3082 deletions(-) delete mode 100644 features/africa/cote_d'_ivoire/Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.geojson delete mode 100644 features/africa/gambia/The-Gambia-YMCA-University-of-the-Gambia.geojson delete mode 100644 features/africa/ghana/Kwame-Nkrumah-University-of-Science-and-Technology.geojson delete mode 100644 features/africa/ghana/University-of-Cape-Coast.geojson delete mode 100644 features/africa/ghana/University-of-Energy-and-Natural-Resources.geojson delete mode 100644 features/africa/ghana/University-of-Ghana.geojson delete mode 100644 features/africa/ghana/University-of-Mines-and-Technology.geojson delete mode 100644 features/africa/guinea/General-Lansana-Conte-University.geojson delete mode 100644 features/africa/guinea/Institute-of-Science-and-Veterinary-Medicine.geojson delete mode 100644 features/africa/guinea/Universit-de-NZrkor.geojson delete mode 100644 features/africa/kenya/Dedan-Kimathi-University-of-Technology.geojson delete mode 100644 features/africa/kenya/Jomo-Kenyatta-University-of-Agriculture-and-Technology.geojson delete mode 100644 features/africa/kenya/Karatina-University.geojson delete mode 100644 features/africa/kenya/Kenyatta-University.geojson delete mode 100644 features/africa/kenya/Moi-University.geojson delete mode 100644 features/africa/kenya/Technical-University-of-Kenya.geojson delete mode 100644 features/africa/kenya/University-of-Nairobi.geojson delete mode 100644 features/africa/liberia/African-Methodist-Episcopal-University.geojson delete mode 100644 features/africa/liberia/Cuttington-University.geojson delete mode 100644 features/africa/liberia/Grand-Gedeh-County-Community-College.geojson delete mode 100644 features/africa/liberia/Nimba-County-Community-College.geojson delete mode 100644 features/africa/liberia/Stella-Maris-Polytechnic.geojson delete mode 100644 features/africa/liberia/University-of-Liberia-YouthMappers.geojson delete mode 100644 features/africa/malawi/University-of-Malawi.geojson delete mode 100644 features/africa/mali/Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.geojson delete mode 100644 features/africa/mozambique/Universidade-Eduardo-Mondlane.geojson delete mode 100644 features/africa/namibia/Namibia-University-of-Science-and-Technology.geojson delete mode 100644 features/africa/nigeria/Abia-State-University.geojson delete mode 100644 features/africa/nigeria/Ahmadu-Bello-University.geojson delete mode 100644 features/africa/nigeria/Federal-School-of-Surveys.geojson delete mode 100644 features/africa/nigeria/Federal-University-of-Technology-Akure.geojson delete mode 100644 features/africa/nigeria/Ignatius-Ajuru-University-of-Education.geojson delete mode 100644 features/africa/nigeria/University-of-Nigeria-Enugu-Campus.geojson delete mode 100644 features/africa/nigeria/University-of-Nigeria-Nsukka.geojson delete mode 100644 features/africa/nigeria/University-of-Port-Harcourt.geojson delete mode 100644 features/africa/rwanda/Insititue-d-Enseignement-Superieur-de-Ruhengeri.geojson delete mode 100644 features/africa/rwanda/University-of-Rwanda-Huye-Campus.geojson delete mode 100644 features/africa/senegal/Institut-Suprieur-de-Management-Kolda.geojson delete mode 100644 features/africa/senegal/Universit-Gaston-Berger.geojson delete mode 100644 features/africa/sierra_leone/Fourah-Bay-College.geojson delete mode 100644 features/africa/sierra_leone/Njala-University-Freetown-Campus.geojson delete mode 100644 features/africa/sierra_leone/Njala-University-Njala-Campus.geojson delete mode 100644 features/africa/south_africa/University-of-Pretoria.geojson delete mode 100644 features/africa/tanzania/Ardhi-University.geojson delete mode 100644 features/africa/tanzania/Institute-of-Finance-Management.geojson delete mode 100644 features/africa/tanzania/Institute-of-Rural-Development-Planning-Mwanza.geojson delete mode 100644 features/africa/tanzania/Institute-of-Rural-Development-Planning.geojson delete mode 100644 features/africa/tanzania/Open-University-of-Tanzania.geojson delete mode 100644 features/africa/tanzania/Sokoine-University-of-Agriculture.geojson delete mode 100644 features/africa/tanzania/University-of-Dar-es-Salaam.geojson delete mode 100644 features/africa/uganda/Busitema-University.geojson delete mode 100644 features/africa/uganda/Gulu-University.geojson delete mode 100644 features/africa/uganda/Kumi-University.geojson delete mode 100644 features/africa/uganda/Makerere-University.geojson delete mode 100644 features/africa/uganda/Mbarara-University-of-Science-and-Technology.geojson delete mode 100644 features/africa/uganda/St.-Augustine-International-University.geojson delete mode 100644 features/africa/uganda/Uganda-Christian-University-Mbale-Campus.geojson delete mode 100644 features/africa/uganda/Uganda-Pentecostal-University.geojson delete mode 100644 features/africa/zambia/St.-Mawaggali-Trades-Training-Institute.geojson delete mode 100644 features/africa/zambia/The-University-of-Zambia.geojson delete mode 100644 features/africa/zimbabwe/University-of-Zimbabwe.geojson delete mode 100644 features/asia/bangladesh/Asian-University-for-Women.geojson delete mode 100644 features/asia/bangladesh/Dhaka-College.geojson delete mode 100644 features/asia/bangladesh/Dhaka-University.geojson delete mode 100644 features/asia/bangladesh/Eastern-University.geojson delete mode 100644 features/asia/bangladesh/Jahangirnagar-University.geojson delete mode 100644 features/asia/bangladesh/Khulna-University.geojson delete mode 100644 features/asia/bangladesh/Rajshahi-University-of-Engineering-Technology.geojson delete mode 100644 features/asia/bhutan/Sherubtse-College.geojson delete mode 100644 features/asia/india/Gujarat-University.geojson delete mode 100644 features/asia/indonesia/Universitas-Negeri-Makassar.geojson delete mode 100644 features/asia/indonesia/University-Muhammadiyah-Surakarta.geojson delete mode 100644 features/asia/nepal/Institute-of-Crisis-Management-Studies.geojson delete mode 100644 features/asia/nepal/Kathmandu-University.geojson delete mode 100644 features/asia/nepal/Tribhuvan-University.geojson delete mode 100644 features/europe/germany/Heidelberg-University.geojson delete mode 100644 features/europe/italy/Politecnico-di-Milano.geojson delete mode 100644 features/europe/morocco/Universit-Mohammed-V-Rabat.geojson delete mode 100644 features/europe/spain/Universidad-Autonoma-de-Madrid.geojson delete mode 100644 features/europe/spain/Universidad-Politcnica-de-Madrid.geojson delete mode 100644 features/europe/turkey/Istanbul-Technical-University.geojson delete mode 100644 features/europe/united_kingdom/Queen-Mary-University-of-London.geojson delete mode 100644 features/europe/united_kingdom/University-of-Exeter.geojson delete mode 100644 features/europe/united_kingdom/University-of-Warwick.geojson delete mode 100644 features/middle-east/jordan/Yarmouk-University.geojson delete mode 100644 features/north-america/belize/Sacred-Heart-Junior-College.geojson delete mode 100644 features/north-america/costa_rica/Universidad-de-Costa-Rica.geojson delete mode 100644 features/north-america/honduras/Universidad-Nacional-Autnoma-de-Honduras.geojson delete mode 100644 features/north-america/jamaica/University-of-the-West-Indies-Mona-Campus.geojson delete mode 100644 features/north-america/nicaragua/Universidad-Nacional-de-Ingenieria.geojson delete mode 100644 features/north-america/panama/University-of-Panama.geojson delete mode 100644 features/north-america/puerto_rico/Universidad-de-Puerto-Rico-Rio-Piedras.geojson delete mode 100644 features/north-america/united_states/Ball-State-University.geojson delete mode 100644 features/north-america/united_states/California-University-of-Pennsylvania.geojson delete mode 100644 features/north-america/united_states/Central-Washington-University.geojson delete mode 100644 features/north-america/united_states/Clemson-University.geojson delete mode 100644 features/north-america/united_states/College-of-William-and-Mary.geojson delete mode 100644 features/north-america/united_states/Cornell-University.geojson delete mode 100644 features/north-america/united_states/George-Mason-University.geojson delete mode 100644 features/north-america/united_states/Indiana-University-of-Pennsylvania.geojson delete mode 100644 features/north-america/united_states/Jacksonville-State-University.geojson delete mode 100644 features/north-america/united_states/Kansas-State-University.geojson delete mode 100644 features/north-america/united_states/McGill-University.geojson delete mode 100644 features/north-america/united_states/Miami-University.geojson delete mode 100644 features/north-america/united_states/Monroe-Community-College.geojson delete mode 100644 features/north-america/united_states/Montgomery-College.geojson delete mode 100644 features/north-america/united_states/New-York-University.geojson delete mode 100644 features/north-america/united_states/Ohio-Wesleyan-University.geojson delete mode 100644 features/north-america/united_states/Oklahoma-State-University.geojson delete mode 100644 features/north-america/united_states/SUNY-at-Fredonia.geojson delete mode 100644 features/north-america/united_states/State-University-of-New-York-Geneseo.geojson delete mode 100644 features/north-america/united_states/Texas-Tech-University.geojson delete mode 100644 features/north-america/united_states/The-Citadel.geojson delete mode 100644 features/north-america/united_states/The-George-Washington-University.geojson delete mode 100644 features/north-america/united_states/The-Johns-Hopkins-University-SAIS.geojson delete mode 100644 features/north-america/united_states/The-Pennsylvania-State-University.geojson delete mode 100644 features/north-america/united_states/UW-Madison.geojson delete mode 100644 features/north-america/united_states/University-of-California-Davis.geojson delete mode 100644 features/north-america/united_states/University-of-Central-Florida.geojson delete mode 100644 features/north-america/united_states/University-of-Chicago.geojson delete mode 100644 features/north-america/united_states/University-of-Maryland-College-Park.geojson delete mode 100644 features/north-america/united_states/University-of-North-Texas.geojson delete mode 100644 features/north-america/united_states/University-of-Northern-Colorado.geojson delete mode 100644 features/north-america/united_states/University-of-Oregon.geojson delete mode 100644 features/north-america/united_states/University-of-Redlands.geojson delete mode 100644 features/north-america/united_states/University-of-South-Carolina.geojson delete mode 100644 features/north-america/united_states/University-of-Southern-California.geojson delete mode 100644 features/north-america/united_states/University-of-Vermont.geojson delete mode 100644 features/north-america/united_states/University-of-Victoria.geojson delete mode 100644 features/north-america/united_states/University-of-Wyoming.geojson delete mode 100644 features/north-america/united_states/Vassar-College.geojson delete mode 100644 features/north-america/united_states/Villanova-University.geojson delete mode 100644 features/north-america/united_states/West-Virginia-University.geojson delete mode 100644 features/north-america/united_states/Western-Michigan-University.geojson delete mode 100644 features/south-america/colombia/Universidad-Distrital-Francisco-Jose-de-Caldas.geojson delete mode 100644 features/south-america/colombia/Universidad-Nacional-de-Colombia.geojson delete mode 100644 features/south-america/colombia/Universidad-de-Antioquia.geojson delete mode 100644 features/south-america/colombia/Universidad-de-La-Guajira.geojson delete mode 100644 features/south-america/colombia/Universidad-de-Los-Andes.geojson delete mode 100644 features/south-america/colombia/Universidad-de-San-Buenaventura.geojson diff --git a/build.js b/build.js index 0f73ee47d..ee75998ac 100644 --- a/build.js +++ b/build.js @@ -21,6 +21,10 @@ const resourceSchema = require('./schema/resource.json'); let v = new Validator(); v.addSchema(geojsonSchema, 'http://json.schemastore.org/geojson.json'); + +const execSync = require('child_process').execSync; +let _ymlocs = {}; + buildAll(); @@ -83,6 +87,22 @@ function generateFeatures() { const id = path.basename(file, '.geojson').toLowerCase(); feature.id = id; + +// YOUTHMAPPERS +let geom = feature.geometry; +if (geom.coordinates[0].length === 9 && props.area > 1765 && props.area < 1770) { + let centroid = [0, 0]; + for (let j = 0; j < 8; j++) { // skip last + centroid[0] += geom.coordinates[0][j][0]; + centroid[1] += geom.coordinates[0][j][1]; + } + centroid[0] /= 8; + centroid[1] /= 8; + _ymlocs[id] = { centroid: centroid, featfile: file }; + // console.log('YouthMappers? ' + id + ' centroid ' + centroid); +} + + // sort keys let obj = {}; if (feature.type) { obj.type = feature.type; } @@ -129,6 +149,19 @@ function generateResources(tstrings, features) { process.exit(1); } + +// YOUTHMAPPERS +let loc = resource.includeLocations[0].replace('.geojson', ''); +let found = _ymlocs[loc]; +if (resource.type === 'youthmappers' && found) { + // console.log('YouthMappers'); + // console.log(' centroid ' + centroid); + // console.log(' centroid ' + featfile); + resource.includeLocations = [ found.centroid ]; + execSync('git rm "' + found.featfile + '"'); +} + + // sort keys let obj = {}; if (resource.id) { obj.id = resource.id; } diff --git a/features/africa/cote_d'_ivoire/Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.geojson b/features/africa/cote_d'_ivoire/Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.geojson deleted file mode 100644 index 3d0221742..000000000 --- a/features/africa/cote_d'_ivoire/Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "centre-universitaire-de-recherche-et-dapplication-en-tldtection-curat-de-luniversit-felix-houphouet-boigny", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-3.98799, 5.5686], - [-3.82846, 5.5028], - [-3.76243, 5.34398], - [-3.82854, 5.1852], - [-3.98799, 5.11944], - [-4.14745, 5.1852], - [-4.21355, 5.34398], - [-4.14753, 5.5028], - [-3.98799, 5.5686] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/gambia/The-Gambia-YMCA-University-of-the-Gambia.geojson b/features/africa/gambia/The-Gambia-YMCA-University-of-the-Gambia.geojson deleted file mode 100644 index 640cbbf03..000000000 --- a/features/africa/gambia/The-Gambia-YMCA-University-of-the-Gambia.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "the-gambia-ymca-university-of-the-gambia", - "properties": {"area": 1767.78}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-16.6763, 13.68253], - [-16.5129, 13.6167], - [-16.44538, 13.45785], - [-16.51312, 13.2991], - [-16.6763, 13.23337], - [-16.83948, 13.2991], - [-16.90722, 13.45785], - [-16.83969, 13.6167], - [-16.6763, 13.68253] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/ghana/Kwame-Nkrumah-University-of-Science-and-Technology.geojson b/features/africa/ghana/Kwame-Nkrumah-University-of-Science-and-Technology.geojson deleted file mode 100644 index d18e9addd..000000000 --- a/features/africa/ghana/Kwame-Nkrumah-University-of-Science-and-Technology.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "kwame-nkrumah-university-of-science-and-technology", - "properties": {"area": 1767.79}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-1.56831, 6.89695], - [-1.40837, 6.83115], - [-1.3422, 6.67232], - [-1.40848, 6.51354], - [-1.56831, 6.44779], - [-1.72814, 6.51354], - [-1.79442, 6.67232], - [-1.72825, 6.83115], - [-1.56831, 6.89695] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/ghana/University-of-Cape-Coast.geojson b/features/africa/ghana/University-of-Cape-Coast.geojson deleted file mode 100644 index 08cfd52da..000000000 --- a/features/africa/ghana/University-of-Cape-Coast.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-cape-coast", - "properties": {"area": 1767.78}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-1.23047, 5.31552], - [-1.071, 5.24973], - [-1.005, 5.0909], - [-1.07108, 4.93212], - [-1.23047, 4.86637], - [-1.38986, 4.93212], - [-1.45594, 5.0909], - [-1.38994, 5.24973], - [-1.23047, 5.31552] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/ghana/University-of-Energy-and-Natural-Resources.geojson b/features/africa/ghana/University-of-Energy-and-Natural-Resources.geojson deleted file mode 100644 index 4043f9553..000000000 --- a/features/africa/ghana/University-of-Energy-and-Natural-Resources.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-energy-and-natural-resources", - "properties": {"area": 1767.75}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-2.343, 7.57482], - [-2.18283, 7.50901], - [-2.11656, 7.35018], - [-2.18294, 7.19141], - [-2.343, 7.12566], - [-2.50306, 7.19141], - [-2.56944, 7.35018], - [-2.50317, 7.50901], - [-2.343, 7.57482] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/ghana/University-of-Ghana.geojson b/features/africa/ghana/University-of-Ghana.geojson deleted file mode 100644 index 6f8f4e2d2..000000000 --- a/features/africa/ghana/University-of-Ghana.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-ghana", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-0.19624, 5.87573], - [-0.03662, 5.80993], - [0.02944, 5.65111], - [-0.0367, 5.49233], - [-0.19624, 5.42657], - [-0.35577, 5.49233], - [-0.42191, 5.65111], - [-0.35586, 5.80993], - [-0.19624, 5.87573] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/ghana/University-of-Mines-and-Technology.geojson b/features/africa/ghana/University-of-Mines-and-Technology.geojson deleted file mode 100644 index b838bfef0..000000000 --- a/features/africa/ghana/University-of-Mines-and-Technology.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-mines-and-technology", - "properties": {"area": 1767.74}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-2.00125, 5.52338], - [-1.84173, 5.45759], - [-1.77571, 5.29876], - [-1.84181, 5.13998], - [-2.00125, 5.07423], - [-2.16069, 5.13998], - [-2.22679, 5.29876], - [-2.16077, 5.45759], - [-2.00125, 5.52338] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/guinea/General-Lansana-Conte-University.geojson b/features/africa/guinea/General-Lansana-Conte-University.geojson deleted file mode 100644 index 28fc6556f..000000000 --- a/features/africa/guinea/General-Lansana-Conte-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "general-lansana-conte-university", - "properties": {"area": 1767.78}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-13.62305, 9.93364], - [-13.46186, 9.86782], - [-13.3952, 9.70898], - [-13.46201, 9.55022], - [-13.62305, 9.48448], - [-13.78408, 9.55022], - [-13.85089, 9.70898], - [-13.78423, 9.86782], - [-13.62305, 9.93364] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/guinea/Institute-of-Science-and-Veterinary-Medicine.geojson b/features/africa/guinea/Institute-of-Science-and-Veterinary-Medicine.geojson deleted file mode 100644 index 7ff9c27cc..000000000 --- a/features/africa/guinea/Institute-of-Science-and-Veterinary-Medicine.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "institute-of-science-and-veterinary-medicine", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-12.1175, 10.91114], - [-11.95581, 10.84532], - [-11.88896, 10.68648], - [-11.95598, 10.52772], - [-12.1175, 10.46198], - [-12.27902, 10.52772], - [-12.34604, 10.68648], - [-12.27919, 10.84532], - [-12.1175, 10.91114] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/guinea/Universit-de-NZrkor.geojson b/features/africa/guinea/Universit-de-NZrkor.geojson deleted file mode 100644 index 6813c2234..000000000 --- a/features/africa/guinea/Universit-de-NZrkor.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "universit-de-nzrkor", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-8.83716, 7.95701], - [-8.67684, 7.8912], - [-8.61052, 7.73237], - [-8.67696, 7.5736], - [-8.83716, 7.50785], - [-8.99736, 7.5736], - [-9.0638, 7.73237], - [-8.99748, 7.8912], - [-8.83716, 7.95701] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/kenya/Dedan-Kimathi-University-of-Technology.geojson b/features/africa/kenya/Dedan-Kimathi-University-of-Technology.geojson deleted file mode 100644 index 7b2e87e8f..000000000 --- a/features/africa/kenya/Dedan-Kimathi-University-of-Technology.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "dedan-kimathi-university-of-technology", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.00195, -0.21487], - [37.16076, -0.28065], - [37.22654, -0.43945], - [37.16076, -0.59825], - [37.00195, -0.66403], - [36.84314, -0.59825], - [36.77737, -0.43945], - [36.84315, -0.28065], - [37.00195, -0.21487] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/kenya/Jomo-Kenyatta-University-of-Agriculture-and-Technology.geojson b/features/africa/kenya/Jomo-Kenyatta-University-of-Agriculture-and-Technology.geojson deleted file mode 100644 index 8bccc4394..000000000 --- a/features/africa/kenya/Jomo-Kenyatta-University-of-Agriculture-and-Technology.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "jomo-kenyatta-university-of-agriculture-and-technology", - "properties": {"area": 1767.79}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.0105, -0.86452], - [37.16932, -0.93029], - [37.23512, -1.08909], - [37.16934, -1.2479], - [37.0105, -1.31368], - [36.85166, -1.2479], - [36.78588, -1.08909], - [36.85168, -0.93029], - [37.0105, -0.86452] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/kenya/Karatina-University.geojson b/features/africa/kenya/Karatina-University.geojson deleted file mode 100644 index 421f8ad8a..000000000 --- a/features/africa/kenya/Karatina-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "karatina-university", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.12789, -0.25676], - [37.28669, -0.32254], - [37.35247, -0.48134], - [37.2867, -0.64014], - [37.12789, -0.70592], - [36.96908, -0.64014], - [36.9033, -0.48134], - [36.96908, -0.32254], - [37.12789, -0.25676] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/kenya/Kenyatta-University.geojson b/features/africa/kenya/Kenyatta-University.geojson deleted file mode 100644 index d6a73ffe7..000000000 --- a/features/africa/kenya/Kenyatta-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "kenyatta-university", - "properties": {"area": 1767.79}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [36.93493, -0.95538], - [37.09376, -1.02116], - [37.15956, -1.17995], - [37.09378, -1.33876], - [36.93493, -1.40454], - [36.77609, -1.33876], - [36.7103, -1.17995], - [36.7761, -1.02116], - [36.93493, -0.95538] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/kenya/Moi-University.geojson b/features/africa/kenya/Moi-University.geojson deleted file mode 100644 index 67b7f1be5..000000000 --- a/features/africa/kenya/Moi-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "moi-university", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [35.50781, -0.12698], - [35.66661, -0.19276], - [35.7324, -0.35156], - [35.66662, -0.51036], - [35.50781, -0.57614], - [35.34901, -0.51036], - [35.28323, -0.35156], - [35.34901, -0.19276], - [35.50781, -0.12698] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/kenya/Technical-University-of-Kenya.geojson b/features/africa/kenya/Technical-University-of-Kenya.geojson deleted file mode 100644 index 3bce24a12..000000000 --- a/features/africa/kenya/Technical-University-of-Kenya.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "technical-university-of-kenya", - "properties": {"area": 1767.73}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [36.82449, -1.06703], - [36.98332, -1.1328], - [37.04913, -1.2916], - [36.98334, -1.4504], - [36.82449, -1.51618], - [36.66564, -1.4504], - [36.59986, -1.2916], - [36.66566, -1.1328], - [36.82449, -1.06703] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/kenya/University-of-Nairobi.geojson b/features/africa/kenya/University-of-Nairobi.geojson deleted file mode 100644 index ff5f47594..000000000 --- a/features/africa/kenya/University-of-Nairobi.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-nairobi", - "properties": {"area": 1767.78}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [36.82617, -1.09366], - [36.98501, -1.15944], - [37.05081, -1.31823], - [36.98503, -1.47704], - [36.82617, -1.54282], - [36.66732, -1.47704], - [36.60153, -1.31823], - [36.66734, -1.15944], - [36.82617, -1.09366] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/liberia/African-Methodist-Episcopal-University.geojson b/features/africa/liberia/African-Methodist-Episcopal-University.geojson deleted file mode 100644 index 822650441..000000000 --- a/features/africa/liberia/African-Methodist-Episcopal-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "african-methodist-episcopal-university", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-10.80063, 6.53533], - [-10.64081, 6.46953], - [-10.57468, 6.3107], - [-10.64091, 6.15193], - [-10.80063, 6.08617], - [-10.96035, 6.15193], - [-11.02658, 6.3107], - [-10.96045, 6.46953], - [-10.80063, 6.53533] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/liberia/Cuttington-University.geojson b/features/africa/liberia/Cuttington-University.geojson deleted file mode 100644 index 0058bdb20..000000000 --- a/features/africa/liberia/Cuttington-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "cuttington-university", - "properties": {"area": 1767.73}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-9.5539, 7.26498], - [-9.39384, 7.19917], - [-9.32762, 7.04035], - [-9.39395, 6.88157], - [-9.5539, 6.81582], - [-9.71385, 6.88157], - [-9.78018, 7.04035], - [-9.71396, 7.19917], - [-9.5539, 7.26498] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/liberia/Grand-Gedeh-County-Community-College.geojson b/features/africa/liberia/Grand-Gedeh-County-Community-College.geojson deleted file mode 100644 index dcf512714..000000000 --- a/features/africa/liberia/Grand-Gedeh-County-Community-College.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "grand-gedeh-county-community-college", - "properties": {"area": 1767.78}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-8.11817, 6.28853], - [-7.95843, 6.22273], - [-7.89233, 6.0639], - [-7.95852, 5.90512], - [-8.11817, 5.83937], - [-8.27782, 5.90512], - [-8.34401, 6.0639], - [-8.27791, 6.22273], - [-8.11817, 6.28853] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/liberia/Nimba-County-Community-College.geojson b/features/africa/liberia/Nimba-County-Community-College.geojson deleted file mode 100644 index dc76f57d2..000000000 --- a/features/africa/liberia/Nimba-County-Community-College.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "nimba-county-community-college", - "properties": {"area": 1767.79}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-8.71645, 7.57669], - [-8.55628, 7.51088], - [-8.49001, 7.35205], - [-8.55639, 7.19328], - [-8.71645, 7.12753], - [-8.87652, 7.19328], - [-8.9429, 7.35205], - [-8.87663, 7.51088], - [-8.71645, 7.57669] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/liberia/Stella-Maris-Polytechnic.geojson b/features/africa/liberia/Stella-Maris-Polytechnic.geojson deleted file mode 100644 index 355846b42..000000000 --- a/features/africa/liberia/Stella-Maris-Polytechnic.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "stella-maris-polytechnic", - "properties": {"area": 1767.78}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-10.7944, 6.51458], - [-10.63459, 6.44878], - [-10.56846, 6.28995], - [-10.63469, 6.13117], - [-10.7944, 6.06542], - [-10.95411, 6.13117], - [-11.02034, 6.28995], - [-10.95421, 6.44878], - [-10.7944, 6.51458] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/liberia/University-of-Liberia-YouthMappers.geojson b/features/africa/liberia/University-of-Liberia-YouthMappers.geojson deleted file mode 100644 index aa0ee9b39..000000000 --- a/features/africa/liberia/University-of-Liberia-YouthMappers.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-liberia-youthmappers", - "properties": {"area": 1767.75}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-10.61986, 6.60165], - [-10.46002, 6.53584], - [-10.39389, 6.37702], - [-10.46012, 6.21824], - [-10.61986, 6.15249], - [-10.7796, 6.21824], - [-10.84584, 6.37702], - [-10.7797, 6.53584], - [-10.61986, 6.60165] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/malawi/University-of-Malawi.geojson b/features/africa/malawi/University-of-Malawi.geojson deleted file mode 100644 index 7fca3298f..000000000 --- a/features/africa/malawi/University-of-Malawi.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-malawi", - "properties": {"area": 1767.78}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [35.33203, -15.14437], - [35.4966, -15.21009], - [35.56494, -15.36883], - [35.49685, -15.52769], - [35.33203, -15.59353], - [35.16721, -15.52769], - [35.09912, -15.36883], - [35.16747, -15.21009], - [35.33203, -15.14437] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/mali/Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.geojson b/features/africa/mali/Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.geojson deleted file mode 100644 index c59b1ff31..000000000 --- a/features/africa/mali/Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "universit-des-sciences-sociale-et-de-gestion-de-bamako", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-7.98832, 12.83993], - [-7.82549, 12.77411], - [-7.75819, 12.61526], - [-7.82569, 12.45651], - [-7.98832, 12.39078], - [-8.15095, 12.45651], - [-8.21846, 12.61526], - [-8.15116, 12.77411], - [-7.98832, 12.83993] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/mozambique/Universidade-Eduardo-Mondlane.geojson b/features/africa/mozambique/Universidade-Eduardo-Mondlane.geojson deleted file mode 100644 index 9d6d154a3..000000000 --- a/features/africa/mozambique/Universidade-Eduardo-Mondlane.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "universidade-eduardo-mondlane", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [32.60357, -25.72761], - [32.77994, -25.79328], - [32.85334, -25.95197], - [32.78042, -26.11088], - [32.60357, -26.17677], - [32.42672, -26.11088], - [32.35381, -25.95197], - [32.4272, -25.79328], - [32.60357, -25.72761] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/namibia/Namibia-University-of-Science-and-Technology.geojson b/features/africa/namibia/Namibia-University-of-Science-and-Technology.geojson deleted file mode 100644 index 1246a56f2..000000000 --- a/features/africa/namibia/Namibia-University-of-Science-and-Technology.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "namibia-university-of-science-and-technology", - "properties": {"area": 1767.78}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [17.07709, -22.34124], - [17.24886, -22.40692], - [17.32029, -22.56563], - [17.24926, -22.72453], - [17.07709, -22.79039], - [16.90493, -22.72453], - [16.83389, -22.56563], - [16.90532, -22.40692], - [17.07709, -22.34124] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/nigeria/Abia-State-University.geojson b/features/africa/nigeria/Abia-State-University.geojson deleted file mode 100644 index 7ecb96431..000000000 --- a/features/africa/nigeria/Abia-State-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "abia-state-university", - "properties": {"area": 1767.8}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.41909, 6.0554], - [7.57877, 5.9896], - [7.64484, 5.83077], - [7.57868, 5.67199], - [7.41909, 5.60624], - [7.25951, 5.67199], - [7.19335, 5.83077], - [7.25942, 5.9896], - [7.41909, 6.0554] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/nigeria/Ahmadu-Bello-University.geojson b/features/africa/nigeria/Ahmadu-Bello-University.geojson deleted file mode 100644 index efd170ead..000000000 --- a/features/africa/nigeria/Ahmadu-Bello-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "ahmadu-bello-university", - "properties": {"area": 1767.79}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.64648, 11.40298], - [7.80845, 11.33716], - [7.87541, 11.17831], - [7.80827, 11.01956], - [7.64648, 10.95382], - [7.4847, 11.01956], - [7.41756, 11.17831], - [7.48452, 11.33716], - [7.64648, 11.40298] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/nigeria/Federal-School-of-Surveys.geojson b/features/africa/nigeria/Federal-School-of-Surveys.geojson deleted file mode 100644 index 296cfad57..000000000 --- a/features/africa/nigeria/Federal-School-of-Surveys.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "federal-school-of-surveys", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [3.95129, 8.06678], - [4.11165, 8.00098], - [4.17798, 7.84215], - [4.11153, 7.68337], - [3.95129, 7.61763], - [3.79105, 7.68337], - [3.72459, 7.84215], - [3.79092, 8.00098], - [3.95129, 8.06678] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/nigeria/Federal-University-of-Technology-Akure.geojson b/features/africa/nigeria/Federal-University-of-Technology-Akure.geojson deleted file mode 100644 index 9cc7c899a..000000000 --- a/features/africa/nigeria/Federal-University-of-Technology-Akure.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "federal-university-of-technology-akure", - "properties": {"area": 1767.78}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [5.18555, 7.49987], - [5.34569, 7.43407], - [5.41195, 7.27524], - [5.34558, 7.11646], - [5.18555, 7.05071], - [5.02551, 7.11646], - [4.95915, 7.27524], - [5.0254, 7.43407], - [5.18555, 7.49987] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/nigeria/Ignatius-Ajuru-University-of-Education.geojson b/features/africa/nigeria/Ignatius-Ajuru-University-of-Education.geojson deleted file mode 100644 index 993e33889..000000000 --- a/features/africa/nigeria/Ignatius-Ajuru-University-of-Education.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "ignatius-ajuru-university-of-education", - "properties": {"area": 1767.78}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [6.93364, 5.03111], - [7.09304, 4.96531], - [7.15901, 4.80649], - [7.09296, 4.64771], - [6.93364, 4.58195], - [6.77431, 4.64771], - [6.70826, 4.80649], - [6.77424, 4.96531], - [6.93364, 5.03111] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/nigeria/University-of-Nigeria-Enugu-Campus.geojson b/features/africa/nigeria/University-of-Nigeria-Enugu-Campus.geojson deleted file mode 100644 index b898bb658..000000000 --- a/features/africa/nigeria/University-of-Nigeria-Enugu-Campus.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-nigeria-enugu-campus", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.50373, 6.651], - [7.66359, 6.58519], - [7.72973, 6.42637], - [7.66349, 6.26759], - [7.50373, 6.20184], - [7.34398, 6.26759], - [7.27773, 6.42637], - [7.34388, 6.58519], - [7.50373, 6.651] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/nigeria/University-of-Nigeria-Nsukka.geojson b/features/africa/nigeria/University-of-Nigeria-Nsukka.geojson deleted file mode 100644 index 8071b0e60..000000000 --- a/features/africa/nigeria/University-of-Nigeria-Nsukka.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-nigeria-nsukka", - "properties": {"area": 1767.74}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.40821, 7.08921], - [7.56821, 7.02341], - [7.63441, 6.86458], - [7.5681, 6.70581], - [7.40821, 6.64006], - [7.24831, 6.70581], - [7.18201, 6.86458], - [7.24821, 7.02341], - [7.40821, 7.08921] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/nigeria/University-of-Port-Harcourt.geojson b/features/africa/nigeria/University-of-Port-Harcourt.geojson deleted file mode 100644 index 313743ddf..000000000 --- a/features/africa/nigeria/University-of-Port-Harcourt.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-port-harcourt", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [6.92037, 5.12633], - [7.07979, 5.06053], - [7.14577, 4.90171], - [7.07971, 4.74293], - [6.92037, 4.67717], - [6.76102, 4.74293], - [6.69496, 4.90171], - [6.76094, 5.06053], - [6.92037, 5.12633] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/rwanda/Insititue-d-Enseignement-Superieur-de-Ruhengeri.geojson b/features/africa/rwanda/Insititue-d-Enseignement-Superieur-de-Ruhengeri.geojson deleted file mode 100644 index 0948288f9..000000000 --- a/features/africa/rwanda/Insititue-d-Enseignement-Superieur-de-Ruhengeri.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "insititue-d-enseignement-superieur-de-ruhengeri", - "properties": {"area": 1767.75}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [29.6112, -1.27634], - [29.77005, -1.34211], - [29.83586, -1.5009], - [29.77007, -1.65971], - [29.6112, -1.72549], - [29.45233, -1.65971], - [29.38655, -1.5009], - [29.45236, -1.34211], - [29.6112, -1.27634] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/rwanda/University-of-Rwanda-Huye-Campus.geojson b/features/africa/rwanda/University-of-Rwanda-Huye-Campus.geojson deleted file mode 100644 index 9440c1c1d..000000000 --- a/features/africa/rwanda/University-of-Rwanda-Huye-Campus.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-rwanda-huye-campus", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [29.7397, -2.39052], - [29.89865, -2.45629], - [29.96451, -2.61508], - [29.89869, -2.77389], - [29.7397, -2.83968], - [29.58071, -2.77389], - [29.51489, -2.61508], - [29.58075, -2.45629], - [29.7397, -2.39052] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/senegal/Institut-Suprieur-de-Management-Kolda.geojson b/features/africa/senegal/Institut-Suprieur-de-Management-Kolda.geojson deleted file mode 100644 index 618e9fda3..000000000 --- a/features/africa/senegal/Institut-Suprieur-de-Management-Kolda.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "institut-suprieur-de-management-kolda", - "properties": {"area": 1767.78}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-14.94108, 13.11445], - [-14.77807, 13.04862], - [-14.7107, 12.88977], - [-14.77828, 12.73102], - [-14.94108, 12.66529], - [-15.10389, 12.73102], - [-15.17147, 12.88977], - [-15.1041, 13.04862], - [-14.94108, 13.11445] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/senegal/Universit-Gaston-Berger.geojson b/features/africa/senegal/Universit-Gaston-Berger.geojson deleted file mode 100644 index aec2ef109..000000000 --- a/features/africa/senegal/Universit-Gaston-Berger.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "universit-gaston-berger", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-16.42556, 16.28748], - [-16.26018, 16.22164], - [-16.19186, 16.06278], - [-16.26044, 15.90404], - [-16.42556, 15.83833], - [-16.59069, 15.90404], - [-16.65927, 16.06278], - [-16.59095, 16.22164], - [-16.42556, 16.28748] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/sierra_leone/Fourah-Bay-College.geojson b/features/africa/sierra_leone/Fourah-Bay-College.geojson deleted file mode 100644 index f2abd3b1c..000000000 --- a/features/africa/sierra_leone/Fourah-Bay-College.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "fourah-bay-college", - "properties": {"area": 1767.74}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-13.18359, 8.71868], - [-13.02296, 8.65287], - [-12.95652, 8.49404], - [-13.0231, 8.33527], - [-13.18359, 8.26953], - [-13.34409, 8.33527], - [-13.41066, 8.49404], - [-13.34422, 8.65287], - [-13.18359, 8.71868] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/sierra_leone/Njala-University-Freetown-Campus.geojson b/features/africa/sierra_leone/Njala-University-Freetown-Campus.geojson deleted file mode 100644 index 3e834ff27..000000000 --- a/features/africa/sierra_leone/Njala-University-Freetown-Campus.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "njala-university-freetown-campus", - "properties": {"area": 1767.78}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-13.23673, 8.7042], - [-13.07611, 8.63839], - [-13.00967, 8.47955], - [-13.07624, 8.32078], - [-13.23673, 8.25504], - [-13.39722, 8.32078], - [-13.46379, 8.47955], - [-13.39735, 8.63839], - [-13.23673, 8.7042] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/sierra_leone/Njala-University-Njala-Campus.geojson b/features/africa/sierra_leone/Njala-University-Njala-Campus.geojson deleted file mode 100644 index 11935056d..000000000 --- a/features/africa/sierra_leone/Njala-University-Njala-Campus.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "njala-university-njala-campus", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-11.76548, 8.16057], - [-11.60508, 8.09476], - [-11.53873, 7.93593], - [-11.60521, 7.77716], - [-11.76548, 7.71141], - [-11.92576, 7.77716], - [-11.99223, 7.93593], - [-11.92588, 8.09476], - [-11.76548, 8.16057] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/south_africa/University-of-Pretoria.geojson b/features/africa/south_africa/University-of-Pretoria.geojson deleted file mode 100644 index f70a5d32d..000000000 --- a/features/africa/south_africa/University-of-Pretoria.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-pretoria", - "properties": {"area": 1767.75}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [28.21289, -25.49616], - [28.38892, -25.56183], - [28.46217, -25.72052], - [28.38939, -25.87943], - [28.21289, -25.94531], - [28.03639, -25.87943], - [27.96361, -25.72052], - [28.03686, -25.56183], - [28.21289, -25.49616] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/tanzania/Ardhi-University.geojson b/features/africa/tanzania/Ardhi-University.geojson deleted file mode 100644 index 1c93a7136..000000000 --- a/features/africa/tanzania/Ardhi-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "ardhi-university", - "properties": {"area": 1767.75}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [39.21541, -6.54158], - [39.37527, -6.60733], - [39.44156, -6.7661], - [39.37538, -6.92493], - [39.21541, -6.99074], - [39.05544, -6.92493], - [38.98926, -6.7661], - [39.05555, -6.60733], - [39.21541, -6.54158] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/tanzania/Institute-of-Finance-Management.geojson b/features/africa/tanzania/Institute-of-Finance-Management.geojson deleted file mode 100644 index 4943ca6c3..000000000 --- a/features/africa/tanzania/Institute-of-Finance-Management.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "institute-of-finance-management", - "properties": {"area": 1767.75}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [39.2935, -5.91323], - [39.45317, -5.97899], - [39.51937, -6.13776], - [39.45326, -6.29659], - [39.2935, -6.36239], - [39.13373, -6.29659], - [39.06763, -6.13776], - [39.13383, -5.97899], - [39.2935, -5.91323] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/tanzania/Institute-of-Rural-Development-Planning-Mwanza.geojson b/features/africa/tanzania/Institute-of-Rural-Development-Planning-Mwanza.geojson deleted file mode 100644 index fe032f3b0..000000000 --- a/features/africa/tanzania/Institute-of-Rural-Development-Planning-Mwanza.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "institute-of-rural-development-planning-mwanza", - "properties": {"area": 1767.74}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [32.89851, -2.29201], - [33.05745, -2.35778], - [33.12331, -2.51657], - [33.05749, -2.67538], - [32.89851, -2.74116], - [32.73954, -2.67538], - [32.67372, -2.51657], - [32.73958, -2.35778], - [32.89851, -2.29201] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/tanzania/Institute-of-Rural-Development-Planning.geojson b/features/africa/tanzania/Institute-of-Rural-Development-Planning.geojson deleted file mode 100644 index bf770fcb5..000000000 --- a/features/africa/tanzania/Institute-of-Rural-Development-Planning.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "institute-of-rural-development-planning", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [35.74578, -5.89759], - [35.90545, -5.96335], - [35.97165, -6.12212], - [35.90554, -6.28095], - [35.74578, -6.34675], - [35.58602, -6.28095], - [35.51992, -6.12212], - [35.58612, -5.96335], - [35.74578, -5.89759] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/tanzania/Open-University-of-Tanzania.geojson b/features/africa/tanzania/Open-University-of-Tanzania.geojson deleted file mode 100644 index d4dec3199..000000000 --- a/features/africa/tanzania/Open-University-of-Tanzania.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "open-university-of-tanzania", - "properties": {"area": 1767.73}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [39.26466, -6.55895], - [39.42453, -6.6247], - [39.49082, -6.78347], - [39.42463, -6.9423], - [39.26466, -7.0081], - [39.10469, -6.9423], - [39.0385, -6.78347], - [39.10479, -6.6247], - [39.26466, -6.55895] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/tanzania/Sokoine-University-of-Agriculture.geojson b/features/africa/tanzania/Sokoine-University-of-Agriculture.geojson deleted file mode 100644 index 32d3a5d7c..000000000 --- a/features/africa/tanzania/Sokoine-University-of-Agriculture.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "sokoine-university-of-agriculture", - "properties": {"area": 1767.75}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.65636, -6.62796], - [37.81625, -6.69371], - [37.88255, -6.85249], - [37.81636, -7.01131], - [37.65636, -7.07712], - [37.49636, -7.01131], - [37.43017, -6.85249], - [37.49647, -6.69371], - [37.65636, -6.62796] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/tanzania/University-of-Dar-es-Salaam.geojson b/features/africa/tanzania/University-of-Dar-es-Salaam.geojson deleted file mode 100644 index d8fce4dc6..000000000 --- a/features/africa/tanzania/University-of-Dar-es-Salaam.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-dar-es-salaam", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [39.20531, -6.55579], - [39.36518, -6.62155], - [39.43147, -6.78032], - [39.36528, -6.93915], - [39.20531, -7.00495], - [39.04534, -6.93915], - [38.97915, -6.78032], - [39.04544, -6.62155], - [39.20531, -6.55579] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/uganda/Busitema-University.geojson b/features/africa/uganda/Busitema-University.geojson deleted file mode 100644 index 87291b7d1..000000000 --- a/features/africa/uganda/Busitema-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "busitema-university", - "properties": {"area": 1767.79}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [34.01367, 0.75192], - [34.17248, 0.68614], - [34.23826, 0.52733], - [34.17248, 0.36853], - [34.01367, 0.30276], - [33.85487, 0.36853], - [33.78908, 0.52733], - [33.85486, 0.68614], - [34.01367, 0.75192] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/uganda/Gulu-University.geojson b/features/africa/uganda/Gulu-University.geojson deleted file mode 100644 index 924b89794..000000000 --- a/features/africa/uganda/Gulu-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "gulu-university", - "properties": {"area": 1767.75}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [32.34375, 3.03595], - [32.50276, 2.97016], - [32.5686, 2.81135], - [32.50272, 2.65256], - [32.34375, 2.58679], - [32.18478, 2.65256], - [32.1189, 2.81135], - [32.18474, 2.97016], - [32.34375, 3.03595] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/uganda/Kumi-University.geojson b/features/africa/uganda/Kumi-University.geojson deleted file mode 100644 index 7954c29ca..000000000 --- a/features/africa/uganda/Kumi-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "kumi-university", - "properties": {"area": 1767.79}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [33.83789, 1.71855], - [33.99676, 1.65277], - [34.06255, 1.49396], - [33.99673, 1.33516], - [33.83789, 1.26939], - [33.67905, 1.33516], - [33.61324, 1.49396], - [33.67902, 1.65277], - [33.83789, 1.71855] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/uganda/Makerere-University.geojson b/features/africa/uganda/Makerere-University.geojson deleted file mode 100644 index 751481d98..000000000 --- a/features/africa/uganda/Makerere-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "makerere-university", - "properties": {"area": 1767.75}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [32.60742, 0.57614], - [32.76623, 0.51036], - [32.832, 0.35156], - [32.76622, 0.19276], - [32.60742, 0.12698], - [32.44862, 0.19276], - [32.38284, 0.35156], - [32.44861, 0.51036], - [32.60742, 0.57614] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/uganda/Mbarara-University-of-Science-and-Technology.geojson b/features/africa/uganda/Mbarara-University-of-Science-and-Technology.geojson deleted file mode 100644 index 4f4f6f98f..000000000 --- a/features/africa/uganda/Mbarara-University-of-Science-and-Technology.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "mbarara-university-of-science-and-technology", - "properties": {"area": 1767.73}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [30.65679, -0.39187], - [30.81559, -0.45764], - [30.88138, -0.61644], - [30.8156, -0.77524], - [30.65679, -0.84102], - [30.49797, -0.77524], - [30.4322, -0.61644], - [30.49798, -0.45764], - [30.65679, -0.39187] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/uganda/St.-Augustine-International-University.geojson b/features/africa/uganda/St.-Augustine-International-University.geojson deleted file mode 100644 index b0551d294..000000000 --- a/features/africa/uganda/St.-Augustine-International-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "st.-augustine-international-university", - "properties": {"area": 1767.81}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [32.62161, 0.49696], - [32.78042, 0.43118], - [32.8462, 0.27237], - [32.78042, 0.11357], - [32.62161, 0.0478], - [32.46281, 0.11357], - [32.39703, 0.27237], - [32.46281, 0.43118], - [32.62161, 0.49696] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/uganda/Uganda-Christian-University-Mbale-Campus.geojson b/features/africa/uganda/Uganda-Christian-University-Mbale-Campus.geojson deleted file mode 100644 index e64001bfe..000000000 --- a/features/africa/uganda/Uganda-Christian-University-Mbale-Campus.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "uganda-christian-university-mbale-campus", - "properties": {"area": 1767.79}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [34.17487, 1.30046], - [34.3337, 1.23468], - [34.39949, 1.07587], - [34.33369, 0.91707], - [34.17487, 0.8513], - [34.01605, 0.91707], - [33.95025, 1.07587], - [34.01603, 1.23468], - [34.17487, 1.30046] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/uganda/Uganda-Pentecostal-University.geojson b/features/africa/uganda/Uganda-Pentecostal-University.geojson deleted file mode 100644 index 3a3352304..000000000 --- a/features/africa/uganda/Uganda-Pentecostal-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "uganda-pentecostal-university", - "properties": {"area": 1767.74}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [30.26621, 0.88664], - [30.42503, 0.82086], - [30.4908, 0.66206], - [30.42502, 0.50326], - [30.26621, 0.43749], - [30.1074, 0.50326], - [30.04162, 0.66206], - [30.10739, 0.82086], - [30.26621, 0.88664] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/zambia/St.-Mawaggali-Trades-Training-Institute.geojson b/features/africa/zambia/St.-Mawaggali-Trades-Training-Institute.geojson deleted file mode 100644 index fd7bfa3c4..000000000 --- a/features/africa/zambia/St.-Mawaggali-Trades-Training-Institute.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "st.-mawaggali-trades-training-institute", - "properties": {"area": 1767.8}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [26.9671, -16.59033], - [27.13286, -16.65604], - [27.20171, -16.81478], - [27.13314, -16.97365], - [26.9671, -17.03949], - [26.80107, -16.97365], - [26.73249, -16.81478], - [26.80135, -16.65604], - [26.9671, -16.59033] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/zambia/The-University-of-Zambia.geojson b/features/africa/zambia/The-University-of-Zambia.geojson deleted file mode 100644 index 8fb130291..000000000 --- a/features/africa/zambia/The-University-of-Zambia.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "the-university-of-zambia", - "properties": {"area": 1767.74}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [28.33027, -15.16737], - [28.49485, -15.23309], - [28.5632, -15.39183], - [28.49511, -15.55069], - [28.33027, -15.61653], - [28.16544, -15.55069], - [28.09734, -15.39183], - [28.16569, -15.23309], - [28.33027, -15.16737] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/zimbabwe/University-of-Zimbabwe.geojson b/features/africa/zimbabwe/University-of-Zimbabwe.geojson deleted file mode 100644 index 472ad1c45..000000000 --- a/features/africa/zimbabwe/University-of-Zimbabwe.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-zimbabwe", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [31.05466, -17.56016], - [31.22128, -17.62587], - [31.29051, -17.7846], - [31.22158, -17.94347], - [31.05466, -18.00932], - [30.88774, -17.94347], - [30.81881, -17.7846], - [30.88803, -17.62587], - [31.05466, -17.56016] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/bangladesh/Asian-University-for-Women.geojson b/features/asia/bangladesh/Asian-University-for-Women.geojson deleted file mode 100644 index 3ca4bdd57..000000000 --- a/features/asia/bangladesh/Asian-University-for-Women.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "asian-university-for-women", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [91.8457, 22.57465], - [92.0176, 22.50879], - [92.08852, 22.34989], - [92.01721, 22.19118], - [91.8457, 22.1255], - [91.6742, 22.19118], - [91.60288, 22.34989], - [91.67381, 22.50879], - [91.8457, 22.57465] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/bangladesh/Dhaka-College.geojson b/features/asia/bangladesh/Dhaka-College.geojson deleted file mode 100644 index 08820204d..000000000 --- a/features/asia/bangladesh/Dhaka-College.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "dhaka-college", - "properties": {"area": 1767.8}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [90.35156, 23.94959], - [90.52524, 23.88372], - [90.59687, 23.72482], - [90.52481, 23.56611], - [90.35156, 23.50043], - [90.17831, 23.56611], - [90.10625, 23.72482], - [90.17789, 23.88372], - [90.35156, 23.94959] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/bangladesh/Dhaka-University.geojson b/features/asia/bangladesh/Dhaka-University.geojson deleted file mode 100644 index e2518b9d3..000000000 --- a/features/asia/bangladesh/Dhaka-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "dhaka-university", - "properties": {"area": 1767.8}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [90.35156, 23.94959], - [90.52524, 23.88372], - [90.59687, 23.72482], - [90.52481, 23.56611], - [90.35156, 23.50043], - [90.17831, 23.56611], - [90.10625, 23.72482], - [90.17789, 23.88372], - [90.35156, 23.94959] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/bangladesh/Eastern-University.geojson b/features/asia/bangladesh/Eastern-University.geojson deleted file mode 100644 index bbfed97c5..000000000 --- a/features/asia/bangladesh/Eastern-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "eastern-university", - "properties": {"area": 1767.75}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [90.38063, 23.96703], - [90.55432, 23.90116], - [90.62597, 23.74226], - [90.5539, 23.58356], - [90.38063, 23.51788], - [90.20735, 23.58356], - [90.13528, 23.74226], - [90.20693, 23.90116], - [90.38063, 23.96703] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/bangladesh/Jahangirnagar-University.geojson b/features/asia/bangladesh/Jahangirnagar-University.geojson deleted file mode 100644 index f1c8341ea..000000000 --- a/features/asia/bangladesh/Jahangirnagar-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "jahangirnagar-university", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [90.26753, 24.10689], - [90.44141, 24.04102], - [90.51314, 23.88212], - [90.44099, 23.72342], - [90.26753, 23.65774], - [90.09407, 23.72342], - [90.02192, 23.88212], - [90.09364, 24.04102], - [90.26753, 24.10689] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/bangladesh/Khulna-University.geojson b/features/asia/bangladesh/Khulna-University.geojson deleted file mode 100644 index 0557536b8..000000000 --- a/features/asia/bangladesh/Khulna-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "khulna-university", - "properties": {"area": 1767.74}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [89.56055, 23.06152], - [89.73306, 22.99565], - [89.80423, 22.83676], - [89.73265, 22.67805], - [89.56055, 22.61237], - [89.38844, 22.67805], - [89.31687, 22.83676], - [89.38804, 22.99565], - [89.56055, 23.06152] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/bangladesh/Rajshahi-University-of-Engineering-Technology.geojson b/features/asia/bangladesh/Rajshahi-University-of-Engineering-Technology.geojson deleted file mode 100644 index 73c3ed61f..000000000 --- a/features/asia/bangladesh/Rajshahi-University-of-Engineering-Technology.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "rajshahi-university-of-engineering-technology", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [88.62839, 24.58841], - [88.80293, 24.52253], - [88.87492, 24.36363], - [88.8025, 24.20493], - [88.62839, 24.13925], - [88.45428, 24.20493], - [88.38185, 24.36363], - [88.45384, 24.52253], - [88.62839, 24.58841] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/bhutan/Sherubtse-College.geojson b/features/asia/bhutan/Sherubtse-College.geojson deleted file mode 100644 index d1399814c..000000000 --- a/features/asia/bhutan/Sherubtse-College.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "sherubtse-college", - "properties": {"area": 1767.73}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [91.52369, 27.51129], - [91.70263, 27.4454], - [91.77639, 27.28649], - [91.70212, 27.1278], - [91.52369, 27.06214], - [91.34526, 27.1278], - [91.271, 27.28649], - [91.34475, 27.4454], - [91.52369, 27.51129] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/india/Gujarat-University.geojson b/features/asia/india/Gujarat-University.geojson deleted file mode 100644 index 27760d973..000000000 --- a/features/asia/india/Gujarat-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "gujarat-university", - "properties": {"area": 1767.78}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [72.50977, 23.22343], - [72.68248, 23.15756], - [72.75374, 22.99866], - [72.68208, 22.83996], - [72.50977, 22.77427], - [72.33745, 22.83996], - [72.26579, 22.99866], - [72.33705, 23.15756], - [72.50977, 23.22343] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/indonesia/Universitas-Negeri-Makassar.geojson b/features/asia/indonesia/Universitas-Negeri-Makassar.geojson deleted file mode 100644 index 0209825d6..000000000 --- a/features/asia/indonesia/Universitas-Negeri-Makassar.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "universitas-negeri-makassar", - "properties": {"area": 1767.74}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [119.4292, -4.96157], - [119.58862, -5.02733], - [119.6547, -5.18611], - [119.5887, -5.34493], - [119.4292, -5.41072], - [119.26971, -5.34493], - [119.2037, -5.18611], - [119.26979, -5.02733], - [119.4292, -4.96157] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/indonesia/University-Muhammadiyah-Surakarta.geojson b/features/asia/indonesia/University-Muhammadiyah-Surakarta.geojson deleted file mode 100644 index 1c403188f..000000000 --- a/features/asia/indonesia/University-Muhammadiyah-Surakarta.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-muhammadiyah-surakarta", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [110.76899, -7.33303], - [110.92912, -7.39878], - [110.99553, -7.55755], - [110.92924, -7.71638], - [110.76899, -7.78219], - [110.60873, -7.71638], - [110.54244, -7.55755], - [110.60885, -7.39878], - [110.76899, -7.33303] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/nepal/Institute-of-Crisis-Management-Studies.geojson b/features/asia/nepal/Institute-of-Crisis-Management-Studies.geojson deleted file mode 100644 index bafdaa918..000000000 --- a/features/asia/nepal/Institute-of-Crisis-Management-Studies.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "institute-of-crisis-management-studies", - "properties": {"area": 1767.73}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [85.34173, 27.95228], - [85.5214, 27.88639], - [85.59544, 27.72747], - [85.52087, 27.56879], - [85.34173, 27.50313], - [85.16259, 27.56879], - [85.08802, 27.72747], - [85.16207, 27.88639], - [85.34173, 27.95228] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/nepal/Kathmandu-University.geojson b/features/asia/nepal/Kathmandu-University.geojson deleted file mode 100644 index 37b69ea6f..000000000 --- a/features/asia/nepal/Kathmandu-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "kathmandu-university", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [85.53873, 27.84494], - [85.71822, 27.77905], - [85.79219, 27.62013], - [85.7177, 27.46145], - [85.53873, 27.39578], - [85.35976, 27.46145], - [85.28527, 27.62013], - [85.35924, 27.77905], - [85.53873, 27.84494] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/nepal/Tribhuvan-University.geojson b/features/asia/nepal/Tribhuvan-University.geojson deleted file mode 100644 index 5c835ae49..000000000 --- a/features/asia/nepal/Tribhuvan-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "tribhuvan-university", - "properties": {"area": 1767.8}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [83.97645, 28.47849], - [84.157, 28.4126], - [84.23141, 28.25368], - [84.15647, 28.09499], - [83.97645, 28.02933], - [83.79644, 28.09499], - [83.7215, 28.25368], - [83.7959, 28.4126], - [83.97645, 28.47849] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/germany/Heidelberg-University.geojson b/features/europe/germany/Heidelberg-University.geojson deleted file mode 100644 index b9725010f..000000000 --- a/features/europe/germany/Heidelberg-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "heidelberg-university", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.67039, 49.64365], - [8.91529, 49.57762], - [9.01561, 49.41856], - [8.91371, 49.26002], - [8.67039, 49.19449], - [8.42706, 49.26002], - [8.32516, 49.41856], - [8.42548, 49.57762], - [8.67039, 49.64365] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/italy/Politecnico-di-Milano.geojson b/features/europe/italy/Politecnico-di-Milano.geojson deleted file mode 100644 index af5efc1ad..000000000 --- a/features/europe/italy/Politecnico-di-Milano.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "politecnico-di-milano", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [9.22852, 45.68471], - [9.45556, 45.61871], - [9.5487, 45.45968], - [9.45428, 45.30111], - [9.22852, 45.23555], - [9.00275, 45.30111], - [8.90833, 45.45968], - [9.00147, 45.61871], - [9.22852, 45.68471] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/morocco/Universit-Mohammed-V-Rabat.geojson b/features/europe/morocco/Universit-Mohammed-V-Rabat.geojson deleted file mode 100644 index d243ca037..000000000 --- a/features/europe/morocco/Universit-Mohammed-V-Rabat.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "universit-mohammed-v-rabat", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-6.84395, 34.22335], - [-6.65205, 34.15742], - [-6.57307, 33.99847], - [-6.65276, 33.83982], - [-6.84395, 33.77419], - [-7.03514, 33.83982], - [-7.11484, 33.99847], - [-7.03586, 34.15742], - [-6.84395, 34.22335] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/spain/Universidad-Autonoma-de-Madrid.geojson b/features/europe/spain/Universidad-Autonoma-de-Madrid.geojson deleted file mode 100644 index 227a37029..000000000 --- a/features/europe/spain/Universidad-Autonoma-de-Madrid.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "universidad-autonoma-de-madrid", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-3.69437, 40.77124], - [-3.48489, 40.70527], - [-3.39883, 40.54628], - [-3.48588, 40.38767], - [-3.69437, 40.32208], - [-3.90286, 40.38767], - [-3.98992, 40.54628], - [-3.90385, 40.70527], - [-3.69437, 40.77124] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/spain/Universidad-Politcnica-de-Madrid.geojson b/features/europe/spain/Universidad-Politcnica-de-Madrid.geojson deleted file mode 100644 index bdb189178..000000000 --- a/features/europe/spain/Universidad-Politcnica-de-Madrid.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "universidad-politcnica-de-madrid", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-3.7173, 40.67259], - [-3.50813, 40.60662], - [-3.42219, 40.44764], - [-3.50912, 40.28902], - [-3.7173, 40.22343], - [-3.92549, 40.28902], - [-4.01241, 40.44764], - [-3.92647, 40.60662], - [-3.7173, 40.67259] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/turkey/Istanbul-Technical-University.geojson b/features/europe/turkey/Istanbul-Technical-University.geojson deleted file mode 100644 index 4887d72d1..000000000 --- a/features/europe/turkey/Istanbul-Technical-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "istanbul-technical-university", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [29.02465, 41.33019], - [29.23592, 41.26422], - [29.3227, 41.10523], - [29.2349, 40.94662], - [29.02465, 40.88103], - [28.81441, 40.94662], - [28.72661, 41.10523], - [28.81339, 41.26422], - [29.02465, 41.33019] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/united_kingdom/Queen-Mary-University-of-London.geojson b/features/europe/united_kingdom/Queen-Mary-University-of-London.geojson deleted file mode 100644 index 7a28c1fdb..000000000 --- a/features/europe/united_kingdom/Queen-Mary-University-of-London.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "queen-mary-university-of-london", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-0.04049, 51.74867], - [0.21563, 51.68262], - [0.32046, 51.52354], - [0.21385, 51.36502], - [-0.04049, 51.29952], - [-0.29484, 51.36502], - [-0.40144, 51.52354], - [-0.29662, 51.68262], - [-0.04049, 51.74867] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/united_kingdom/University-of-Exeter.geojson b/features/europe/united_kingdom/University-of-Exeter.geojson deleted file mode 100644 index 752402842..000000000 --- a/features/europe/united_kingdom/University-of-Exeter.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-exeter", - "properties": {"area": 1767.75}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-3.53515, 50.96148], - [-3.28338, 50.89544], - [-3.1803, 50.73637], - [-3.28508, 50.57784], - [-3.53515, 50.51233], - [-3.78522, 50.57784], - [-3.89, 50.73637], - [-3.78692, 50.89544], - [-3.53515, 50.96148] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/united_kingdom/University-of-Warwick.geojson b/features/europe/united_kingdom/University-of-Warwick.geojson deleted file mode 100644 index a30b1202e..000000000 --- a/features/europe/united_kingdom/University-of-Warwick.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-warwick", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-1.56119, 52.60392], - [-1.30011, 52.53785], - [-1.19329, 52.37877], - [-1.30198, 52.22025], - [-1.56119, 52.15476], - [-1.8204, 52.22025], - [-1.92909, 52.37877], - [-1.82228, 52.53785], - [-1.56119, 52.60392] - ] - ] - } -} \ No newline at end of file diff --git a/features/middle-east/jordan/Yarmouk-University.geojson b/features/middle-east/jordan/Yarmouk-University.geojson deleted file mode 100644 index c98dd055c..000000000 --- a/features/middle-east/jordan/Yarmouk-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "yarmouk-university", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [35.85811, 32.76124], - [36.04681, 32.69532], - [36.1245, 32.53638], - [36.04615, 32.37772], - [35.85811, 32.31208], - [35.67008, 32.37772], - [35.59173, 32.53638], - [35.66941, 32.69532], - [35.85811, 32.76124] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/belize/Sacred-Heart-Junior-College.geojson b/features/north-america/belize/Sacred-Heart-Junior-College.geojson deleted file mode 100644 index 58ecf894f..000000000 --- a/features/north-america/belize/Sacred-Heart-Junior-College.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "sacred-heart-junior-college", - "properties": {"area": 1767.75}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-89.07411, 17.38565], - [-88.90777, 17.3198], - [-88.83907, 17.16093], - [-88.90805, 17.0022], - [-89.07411, 16.93649], - [-89.24017, 17.0022], - [-89.30915, 17.16093], - [-89.24045, 17.3198], - [-89.07411, 17.38565] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/costa_rica/Universidad-de-Costa-Rica.geojson b/features/north-america/costa_rica/Universidad-de-Costa-Rica.geojson deleted file mode 100644 index 4df4dff96..000000000 --- a/features/north-america/costa_rica/Universidad-de-Costa-Rica.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "universidad-de-costa-rica", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-84.05105, 10.16183], - [-83.88975, 10.09601], - [-83.82305, 9.93717], - [-83.88991, 9.77841], - [-84.05105, 9.71267], - [-84.21219, 9.77841], - [-84.27905, 9.93717], - [-84.21235, 10.09601], - [-84.05105, 10.16183] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/honduras/Universidad-Nacional-Autnoma-de-Honduras.geojson b/features/north-america/honduras/Universidad-Nacional-Autnoma-de-Honduras.geojson deleted file mode 100644 index 9fee78cdb..000000000 --- a/features/north-america/honduras/Universidad-Nacional-Autnoma-de-Honduras.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "universidad-nacional-autnoma-de-honduras", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-87.16598, 14.30969], - [-87.00214, 14.24385], - [-86.93444, 14.085], - [-87.00237, 13.92625], - [-87.16598, 13.86053], - [-87.32959, 13.92625], - [-87.39752, 14.085], - [-87.32982, 14.24385], - [-87.16598, 14.30969] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/jamaica/University-of-the-West-Indies-Mona-Campus.geojson b/features/north-america/jamaica/University-of-the-West-Indies-Mona-Campus.geojson deleted file mode 100644 index f7e0a8b60..000000000 --- a/features/north-america/jamaica/University-of-the-West-Indies-Mona-Campus.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-the-west-indies-mona-campus", - "properties": {"area": 1767.73}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-76.74601, 18.23094], - [-76.57888, 18.16509], - [-76.50987, 18.00622], - [-76.57918, 17.84749], - [-76.74601, 17.78179], - [-76.91284, 17.84749], - [-76.98215, 18.00622], - [-76.91314, 18.16509], - [-76.74601, 18.23094] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/nicaragua/Universidad-Nacional-de-Ingenieria.geojson b/features/north-america/nicaragua/Universidad-Nacional-de-Ingenieria.geojson deleted file mode 100644 index 2ac77755b..000000000 --- a/features/north-america/nicaragua/Universidad-Nacional-de-Ingenieria.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "universidad-nacional-de-ingenieria", - "properties": {"area": 1767.75}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-86.27051, 12.35623], - [-86.10798, 12.2904], - [-86.0408, 12.13156], - [-86.10817, 11.9728], - [-86.27051, 11.90707], - [-86.43284, 11.9728], - [-86.50021, 12.13156], - [-86.43303, 12.2904], - [-86.27051, 12.35623] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/panama/University-of-Panama.geojson b/features/north-america/panama/University-of-Panama.geojson deleted file mode 100644 index f1af3ec98..000000000 --- a/features/north-america/panama/University-of-Panama.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-panama", - "properties": {"area": 1767.74}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-79.54102, 9.23988], - [-79.38016, 9.17407], - [-79.31363, 9.01523], - [-79.3803, 8.85647], - [-79.54102, 8.79072], - [-79.70173, 8.85647], - [-79.7684, 9.01523], - [-79.70187, 9.17407], - [-79.54102, 9.23988] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/puerto_rico/Universidad-de-Puerto-Rico-Rio-Piedras.geojson b/features/north-america/puerto_rico/Universidad-de-Puerto-Rico-Rio-Piedras.geojson deleted file mode 100644 index 126122a7a..000000000 --- a/features/north-america/puerto_rico/Universidad-de-Puerto-Rico-Rio-Piedras.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "universidad-de-puerto-rico-rio-piedras", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-66.04978, 18.62742], - [-65.88227, 18.56157], - [-65.8131, 18.40269], - [-65.88258, 18.24397], - [-66.04978, 18.17826], - [-66.21699, 18.24397], - [-66.28647, 18.40269], - [-66.2173, 18.56157], - [-66.04978, 18.62742] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/Ball-State-University.geojson b/features/north-america/united_states/Ball-State-University.geojson deleted file mode 100644 index f36bb6c70..000000000 --- a/features/north-america/united_states/Ball-State-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "ball-state-university", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-85.40688, 40.43064], - [-85.19846, 40.36468], - [-85.11283, 40.20569], - [-85.19944, 40.04708], - [-85.40688, 39.98148], - [-85.61432, 40.04708], - [-85.70094, 40.20569], - [-85.6153, 40.36468], - [-85.40688, 40.43064] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/California-University-of-Pennsylvania.geojson b/features/north-america/united_states/California-University-of-Pennsylvania.geojson deleted file mode 100644 index 1288f23b9..000000000 --- a/features/north-america/united_states/California-University-of-Pennsylvania.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "california-university-of-pennsylvania", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-79.89258, 40.26902], - [-79.68466, 40.20305], - [-79.59922, 40.04407], - [-79.68562, 39.88545], - [-79.89258, 39.81986], - [-80.09953, 39.88545], - [-80.18593, 40.04407], - [-80.1005, 40.20305], - [-79.89258, 40.26902] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/Central-Washington-University.geojson b/features/north-america/united_states/Central-Washington-University.geojson deleted file mode 100644 index fb366e695..000000000 --- a/features/north-america/united_states/Central-Washington-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "central-washington-university", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-120.49805, 47.20483], - [-120.26459, 47.13882], - [-120.16888, 46.97978], - [-120.26598, 46.82122], - [-120.49805, 46.75567], - [-120.73012, 46.82122], - [-120.82722, 46.97978], - [-120.7315, 47.13882], - [-120.49805, 47.20483] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/Clemson-University.geojson b/features/north-america/united_states/Clemson-University.geojson deleted file mode 100644 index 1fa160df3..000000000 --- a/features/north-america/united_states/Clemson-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "clemson-university", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-82.79297, 34.89394], - [-82.59951, 34.82801], - [-82.51991, 34.66905], - [-82.60025, 34.51041], - [-82.79297, 34.44478], - [-82.98568, 34.51041], - [-83.06603, 34.66905], - [-82.98642, 34.82801], - [-82.79297, 34.89394] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/College-of-William-and-Mary.geojson b/features/north-america/united_states/College-of-William-and-Mary.geojson deleted file mode 100644 index 3636634c6..000000000 --- a/features/north-america/united_states/College-of-William-and-Mary.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "college-of-william-and-mary", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-76.72852, 37.52485], - [-76.52846, 37.45891], - [-76.44619, 37.29994], - [-76.5293, 37.14131], - [-76.72852, 37.0757], - [-76.92773, 37.14131], - [-77.01084, 37.29994], - [-76.92857, 37.45891], - [-76.72852, 37.52485] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/Cornell-University.geojson b/features/north-america/united_states/Cornell-University.geojson deleted file mode 100644 index 8a47bf220..000000000 --- a/features/north-america/united_states/Cornell-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "cornell-university", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-76.4735, 42.67798], - [-76.25772, 42.612], - [-76.16912, 42.453], - [-76.25882, 42.2944], - [-76.4735, 42.22882], - [-76.68818, 42.2944], - [-76.77788, 42.453], - [-76.68928, 42.612], - [-76.4735, 42.67798] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/George-Mason-University.geojson b/features/north-america/united_states/George-Mason-University.geojson deleted file mode 100644 index b2a2f5294..000000000 --- a/features/north-america/united_states/George-Mason-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "george-mason-university", - "properties": {"area": 1767.78}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-77.34375, 39.04717], - [-77.13947, 38.98121], - [-77.05549, 38.82224], - [-77.14037, 38.66361], - [-77.34375, 38.59801], - [-77.54713, 38.66361], - [-77.63201, 38.82224], - [-77.54803, 38.98121], - [-77.34375, 39.04717] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/Indiana-University-of-Pennsylvania.geojson b/features/north-america/united_states/Indiana-University-of-Pennsylvania.geojson deleted file mode 100644 index ebde707b2..000000000 --- a/features/north-america/united_states/Indiana-University-of-Pennsylvania.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "indiana-university-of-pennsylvania", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-79.16139, 40.83872], - [-78.9517, 40.77275], - [-78.86555, 40.61377], - [-78.95269, 40.45515], - [-79.16139, 40.38956], - [-79.37009, 40.45515], - [-79.45724, 40.61377], - [-79.37108, 40.77275], - [-79.16139, 40.83872] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/Jacksonville-State-University.geojson b/features/north-america/united_states/Jacksonville-State-University.geojson deleted file mode 100644 index 57eb72813..000000000 --- a/features/north-america/united_states/Jacksonville-State-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "jacksonville-state-university", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-85.76795, 34.04756], - [-85.57644, 33.98163], - [-85.49762, 33.82268], - [-85.57715, 33.66403], - [-85.76795, 33.5984], - [-85.95874, 33.66403], - [-86.03828, 33.82268], - [-85.95945, 33.98163], - [-85.76795, 34.04756] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/Kansas-State-University.geojson b/features/north-america/united_states/Kansas-State-University.geojson deleted file mode 100644 index 07e21e0f5..000000000 --- a/features/north-america/united_states/Kansas-State-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "kansas-state-university", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-96.5918, 39.38872], - [-96.38652, 39.32276], - [-96.30215, 39.16378], - [-96.38744, 39.00516], - [-96.5918, 38.93956], - [-96.79615, 39.00516], - [-96.88145, 39.16378], - [-96.79708, 39.32276], - [-96.5918, 39.38872] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/McGill-University.geojson b/features/north-america/united_states/McGill-University.geojson deleted file mode 100644 index e10cdedb4..000000000 --- a/features/north-america/united_states/McGill-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "mcgill-university", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-73.5787, 45.73088], - [-73.35147, 45.66488], - [-73.25825, 45.50585], - [-73.35274, 45.34728], - [-73.5787, 45.28172], - [-73.80465, 45.34728], - [-73.89914, 45.50585], - [-73.80593, 45.66488], - [-73.5787, 45.73088] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/Miami-University.geojson b/features/north-america/united_states/Miami-University.geojson deleted file mode 100644 index fc33f1e68..000000000 --- a/features/north-america/united_states/Miami-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "miami-university", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-84.73174, 39.73566], - [-84.52543, 39.6697], - [-84.44065, 39.51072], - [-84.52638, 39.3521], - [-84.73174, 39.2865], - [-84.9371, 39.3521], - [-85.02283, 39.51072], - [-84.93805, 39.6697], - [-84.73174, 39.73566] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/Monroe-Community-College.geojson b/features/north-america/united_states/Monroe-Community-College.geojson deleted file mode 100644 index c0904cc8e..000000000 --- a/features/north-america/united_states/Monroe-Community-College.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "monroe-community-college", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-77.61025, 43.32617], - [-77.39219, 43.26018], - [-77.30267, 43.10118], - [-77.39332, 42.94258], - [-77.61025, 42.87701], - [-77.82718, 42.94258], - [-77.91783, 43.10118], - [-77.82831, 43.26018], - [-77.61025, 43.32617] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/Montgomery-College.geojson b/features/north-america/united_states/Montgomery-College.geojson deleted file mode 100644 index 78d8a6c14..000000000 --- a/features/north-america/united_states/Montgomery-College.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "montgomery-college", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-77.15782, 39.32194], - [-76.95274, 39.25598], - [-76.86844, 39.097], - [-76.95366, 38.93838], - [-77.15782, 38.87278], - [-77.36198, 38.93838], - [-77.4472, 39.097], - [-77.3629, 39.25598], - [-77.15782, 39.32194] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/New-York-University.geojson b/features/north-america/united_states/New-York-University.geojson deleted file mode 100644 index 900dbdfca..000000000 --- a/features/north-america/united_states/New-York-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "new-york-university", - "properties": {"area": 1767.73}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.00391, 40.93853], - [-73.7939, 40.87257], - [-73.70762, 40.71358], - [-73.7949, 40.55497], - [-74.00391, 40.48938], - [-74.21291, 40.55497], - [-74.30019, 40.71358], - [-74.21391, 40.87257], - [-74.00391, 40.93853] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/Ohio-Wesleyan-University.geojson b/features/north-america/united_states/Ohio-Wesleyan-University.geojson deleted file mode 100644 index d64f8e68c..000000000 --- a/features/north-america/united_states/Ohio-Wesleyan-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "ohio-wesleyan-university", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-83.06823, 40.52082], - [-82.85953, 40.45485], - [-82.77378, 40.29586], - [-82.86051, 40.13725], - [-83.06823, 40.07166], - [-83.27595, 40.13725], - [-83.36268, 40.29586], - [-83.27692, 40.45485], - [-83.06823, 40.52082] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/Oklahoma-State-University.geojson b/features/north-america/united_states/Oklahoma-State-University.geojson deleted file mode 100644 index 3aa7c89e2..000000000 --- a/features/north-america/united_states/Oklahoma-State-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "oklahoma-state-university", - "properties": {"area": 1767.75}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-97.07253, 36.34551], - [-96.87554, 36.27957], - [-96.79451, 36.12061], - [-96.87634, 35.96197], - [-97.07253, 35.89636], - [-97.26873, 35.96197], - [-97.35055, 36.12061], - [-97.26952, 36.27957], - [-97.07253, 36.34551] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/SUNY-at-Fredonia.geojson b/features/north-america/united_states/SUNY-at-Fredonia.geojson deleted file mode 100644 index 7fd441191..000000000 --- a/features/north-america/united_states/SUNY-at-Fredonia.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "suny-at-fredonia", - "properties": {"area": 1767.81}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-79.36523, 42.64804], - [-79.14956, 42.58206], - [-79.061, 42.42305], - [-79.15065, 42.26445], - [-79.36523, 42.19888], - [-79.57982, 42.26445], - [-79.66947, 42.42305], - [-79.58091, 42.58206], - [-79.36523, 42.64804] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/State-University-of-New-York-Geneseo.geojson b/features/north-america/united_states/State-University-of-New-York-Geneseo.geojson deleted file mode 100644 index 6c324d0b8..000000000 --- a/features/north-america/united_states/State-University-of-New-York-Geneseo.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "state-university-of-new-york-geneseo", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-77.7832, 43.0361], - [-77.56618, 42.97012], - [-77.47707, 42.81111], - [-77.56729, 42.65252], - [-77.7832, 42.58694], - [-77.99912, 42.65252], - [-78.08934, 42.81111], - [-78.00023, 42.97012], - [-77.7832, 43.0361] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/Texas-Tech-University.geojson b/features/north-america/united_states/Texas-Tech-University.geojson deleted file mode 100644 index a785f08dc..000000000 --- a/features/north-america/united_states/Texas-Tech-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "texas-tech-university", - "properties": {"area": 1767.72}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-101.86523, 33.80259], - [-101.67428, 33.73667], - [-101.59568, 33.57772], - [-101.67498, 33.41907], - [-101.86523, 33.35344], - [-102.05549, 33.41907], - [-102.13479, 33.57772], - [-102.05619, 33.73667], - [-101.86523, 33.80259] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/The-Citadel.geojson b/features/north-america/united_states/The-Citadel.geojson deleted file mode 100644 index b35d73c91..000000000 --- a/features/north-america/united_states/The-Citadel.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "the-citadel", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-79.96064, 33.02165], - [-79.77138, 32.95573], - [-79.69347, 32.79679], - [-79.77206, 32.63813], - [-79.96064, 32.57249], - [-80.14921, 32.63813], - [-80.2278, 32.79679], - [-80.14989, 32.95573], - [-79.96064, 33.02165] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/The-George-Washington-University.geojson b/features/north-america/united_states/The-George-Washington-University.geojson deleted file mode 100644 index 2c2d47c8e..000000000 --- a/features/north-america/united_states/The-George-Washington-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "the-george-washington-university", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-77.04812, 39.12442], - [-76.84362, 39.05846], - [-76.75955, 38.89948], - [-76.84453, 38.74086], - [-77.04812, 38.67526], - [-77.25172, 38.74086], - [-77.33669, 38.89948], - [-77.25263, 39.05846], - [-77.04812, 39.12442] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/The-Johns-Hopkins-University-SAIS.geojson b/features/north-america/united_states/The-Johns-Hopkins-University-SAIS.geojson deleted file mode 100644 index 4a805c7f4..000000000 --- a/features/north-america/united_states/The-Johns-Hopkins-University-SAIS.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "the-johns-hopkins-university-sais", - "properties": {"area": 1767.8}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-77.04027, 39.13272], - [-76.83574, 39.06677], - [-76.75167, 38.90779], - [-76.83665, 38.74916], - [-77.04027, 38.68356], - [-77.24389, 38.74916], - [-77.32888, 38.90779], - [-77.2448, 39.06677], - [-77.04027, 39.13272] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/The-Pennsylvania-State-University.geojson b/features/north-america/united_states/The-Pennsylvania-State-University.geojson deleted file mode 100644 index 6458476a9..000000000 --- a/features/north-america/united_states/The-Pennsylvania-State-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "the-pennsylvania-state-university", - "properties": {"area": 1767.75}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-77.85976, 41.02277], - [-77.64948, 40.9568], - [-77.5631, 40.79781], - [-77.65049, 40.6392], - [-77.85976, 40.57361], - [-78.06903, 40.6392], - [-78.15642, 40.79781], - [-78.07003, 40.9568], - [-77.85976, 41.02277] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/UW-Madison.geojson b/features/north-america/united_states/UW-Madison.geojson deleted file mode 100644 index d8cdda067..000000000 --- a/features/north-america/united_states/UW-Madison.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "uw-madison", - "properties": {"area": 1767.74}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-89.41268, 43.30123], - [-89.19471, 43.23525], - [-89.10523, 43.07624], - [-89.19584, 42.91765], - [-89.41268, 42.85208], - [-89.62952, 42.91765], - [-89.72014, 43.07624], - [-89.63065, 43.23525], - [-89.41268, 43.30123] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/University-of-California-Davis.geojson b/features/north-america/united_states/University-of-California-Davis.geojson deleted file mode 100644 index f49487989..000000000 --- a/features/north-america/united_states/University-of-California-Davis.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-california-davis", - "properties": {"area": 1767.75}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-121.72852, 38.77274], - [-121.52502, 38.70679], - [-121.44136, 38.54781], - [-121.52591, 38.38919], - [-121.72852, 38.32359], - [-121.93112, 38.38919], - [-122.01567, 38.54781], - [-121.93201, 38.70679], - [-121.72852, 38.77274] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/University-of-Central-Florida.geojson b/features/north-america/united_states/University-of-Central-Florida.geojson deleted file mode 100644 index 19375a4b2..000000000 --- a/features/north-america/united_states/University-of-Central-Florida.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-central-florida", - "properties": {"area": 1767.78}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-81.38672, 28.68361], - [-81.20582, 28.61771], - [-81.13127, 28.45879], - [-81.20636, 28.30011], - [-81.38672, 28.23445], - [-81.56708, 28.30011], - [-81.64217, 28.45879], - [-81.56762, 28.61771], - [-81.38672, 28.68361] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/University-of-Chicago.geojson b/features/north-america/united_states/University-of-Chicago.geojson deleted file mode 100644 index c65669e7e..000000000 --- a/features/north-america/united_states/University-of-Chicago.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-chicago", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-87.59878, 42.0135], - [-87.38527, 41.94752], - [-87.29758, 41.78852], - [-87.38632, 41.62992], - [-87.59878, 41.56434], - [-87.81124, 41.62992], - [-87.89998, 41.78852], - [-87.81229, 41.94752], - [-87.59878, 42.0135] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/University-of-Maryland-College-Park.geojson b/features/north-america/united_states/University-of-Maryland-College-Park.geojson deleted file mode 100644 index fa7f8aaa9..000000000 --- a/features/north-america/united_states/University-of-Maryland-College-Park.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-maryland-college-park", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-76.94332, 39.21148], - [-76.73856, 39.14552], - [-76.65439, 38.98654], - [-76.73947, 38.82792], - [-76.94332, 38.76232], - [-77.14716, 38.82792], - [-77.23224, 38.98654], - [-77.14808, 39.14552], - [-76.94332, 39.21148] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/University-of-North-Texas.geojson b/features/north-america/united_states/University-of-North-Texas.geojson deleted file mode 100644 index 541f3c902..000000000 --- a/features/north-america/united_states/University-of-North-Texas.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-north-texas", - "properties": {"area": 1767.79}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-97.15255, 33.43207], - [-96.9624, 33.36615], - [-96.88413, 33.2072], - [-96.96309, 33.04855], - [-97.15255, 32.98291], - [-97.342, 33.04855], - [-97.42096, 33.2072], - [-97.34269, 33.36615], - [-97.15255, 33.43207] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/University-of-Northern-Colorado.geojson b/features/north-america/united_states/University-of-Northern-Colorado.geojson deleted file mode 100644 index 7a5706cd2..000000000 --- a/features/north-america/united_states/University-of-Northern-Colorado.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-northern-colorado", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-104.69563, 40.62872], - [-104.4866, 40.56275], - [-104.40071, 40.40377], - [-104.48758, 40.24515], - [-104.69563, 40.17956], - [-104.90368, 40.24515], - [-104.99055, 40.40377], - [-104.90466, 40.56275], - [-104.69563, 40.62872] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/University-of-Oregon.geojson b/features/north-america/united_states/University-of-Oregon.geojson deleted file mode 100644 index 694fec55b..000000000 --- a/features/north-america/united_states/University-of-Oregon.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-oregon", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-123.04688, 44.249], - [-122.82543, 44.18301], - [-122.73455, 44.024], - [-122.82661, 43.86541], - [-123.04688, 43.79984], - [-123.26714, 43.86541], - [-123.3592, 44.024], - [-123.26832, 44.18301], - [-123.04688, 44.249] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/University-of-Redlands.geojson b/features/north-america/united_states/University-of-Redlands.geojson deleted file mode 100644 index c084318a9..000000000 --- a/features/north-america/united_states/University-of-Redlands.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-redlands", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-117.16339, 34.28768], - [-116.97134, 34.22175], - [-116.8923, 34.06281], - [-116.97206, 33.90415], - [-117.16339, 33.83852], - [-117.35473, 33.90415], - [-117.43448, 34.06281], - [-117.35544, 34.22175], - [-117.16339, 34.28768] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/University-of-South-Carolina.geojson b/features/north-america/united_states/University-of-South-Carolina.geojson deleted file mode 100644 index 65f1f1ccf..000000000 --- a/features/north-america/united_states/University-of-South-Carolina.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-south-carolina", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-81.03516, 34.24082], - [-80.84321, 34.17489], - [-80.76421, 34.01594], - [-80.84393, 33.85729], - [-81.03516, 33.79166], - [-81.22638, 33.85729], - [-81.3061, 34.01594], - [-81.2271, 34.17489], - [-81.03516, 34.24082] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/University-of-Southern-California.geojson b/features/north-america/united_states/University-of-Southern-California.geojson deleted file mode 100644 index 6fd21d181..000000000 --- a/features/north-america/united_states/University-of-Southern-California.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-southern-california", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-118.30078, 34.24082], - [-118.10884, 34.17489], - [-118.02984, 34.01594], - [-118.10955, 33.85729], - [-118.30078, 33.79166], - [-118.49201, 33.85729], - [-118.57172, 34.01594], - [-118.49273, 34.17489], - [-118.30078, 34.24082] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/University-of-Vermont.geojson b/features/north-america/united_states/University-of-Vermont.geojson deleted file mode 100644 index 92df74ae1..000000000 --- a/features/north-america/united_states/University-of-Vermont.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-vermont", - "properties": {"area": 1767.81}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-73.21289, 44.68973], - [-72.98977, 44.62374], - [-72.89821, 44.46472], - [-72.99098, 44.30613], - [-73.21289, 44.24057], - [-73.4348, 44.30613], - [-73.52757, 44.46472], - [-73.43601, 44.62374], - [-73.21289, 44.68973] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/University-of-Victoria.geojson b/features/north-america/united_states/University-of-Victoria.geojson deleted file mode 100644 index d7be303f4..000000000 --- a/features/north-america/united_states/University-of-Victoria.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-victoria", - "properties": {"area": 1767.75}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-123.31186, 48.68804], - [-123.07162, 48.62201], - [-122.97318, 48.46297], - [-123.07312, 48.30441], - [-123.31186, 48.23888], - [-123.55059, 48.30441], - [-123.65053, 48.46297], - [-123.55209, 48.62201], - [-123.31186, 48.68804] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/University-of-Wyoming.geojson b/features/north-america/united_states/University-of-Wyoming.geojson deleted file mode 100644 index 713032b91..000000000 --- a/features/north-america/united_states/University-of-Wyoming.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-wyoming", - "properties": {"area": 1767.73}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-105.56651, 41.53953], - [-105.35457, 41.47356], - [-105.26751, 41.31457], - [-105.3556, 41.15596], - [-105.56651, 41.09038], - [-105.77742, 41.15596], - [-105.86551, 41.31457], - [-105.77845, 41.47356], - [-105.56651, 41.53953] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/Vassar-College.geojson b/features/north-america/united_states/Vassar-College.geojson deleted file mode 100644 index d6454ac01..000000000 --- a/features/north-america/united_states/Vassar-College.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "vassar-college", - "properties": {"area": 1767.75}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-73.89515, 41.91136], - [-73.68198, 41.84538], - [-73.59443, 41.68639], - [-73.68303, 41.52778], - [-73.89515, 41.4622], - [-74.10727, 41.52778], - [-74.19587, 41.68639], - [-74.10832, 41.84538], - [-73.89515, 41.91136] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/Villanova-University.geojson b/features/north-america/united_states/Villanova-University.geojson deleted file mode 100644 index 3ec33b237..000000000 --- a/features/north-america/united_states/Villanova-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "villanova-university", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-75.34361, 40.26191], - [-75.13571, 40.19594], - [-75.05028, 40.03696], - [-75.13667, 39.87834], - [-75.34361, 39.81275], - [-75.55054, 39.87834], - [-75.63693, 40.03696], - [-75.5515, 40.19594], - [-75.34361, 40.26191] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/West-Virginia-University.geojson b/features/north-america/united_states/West-Virginia-University.geojson deleted file mode 100644 index 634be56d1..000000000 --- a/features/north-america/united_states/West-Virginia-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "west-virginia-university", - "properties": {"area": 1767.78}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-79.98047, 39.86412], - [-79.77378, 39.79816], - [-79.68884, 39.63917], - [-79.77473, 39.48055], - [-79.98047, 39.41496], - [-80.18621, 39.48055], - [-80.2721, 39.63917], - [-80.18716, 39.79816], - [-79.98047, 39.86412] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/Western-Michigan-University.geojson b/features/north-america/united_states/Western-Michigan-University.geojson deleted file mode 100644 index 0b1b49373..000000000 --- a/features/north-america/united_states/Western-Michigan-University.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "western-michigan-university", - "properties": {"area": 1767.78}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-85.61042, 42.5082], - [-85.39523, 42.44222], - [-85.30686, 42.28322], - [-85.39631, 42.12462], - [-85.61042, 42.05904], - [-85.82453, 42.12462], - [-85.91398, 42.28322], - [-85.82561, 42.44222], - [-85.61042, 42.5082] - ] - ] - } -} \ No newline at end of file diff --git a/features/south-america/colombia/Universidad-Distrital-Francisco-Jose-de-Caldas.geojson b/features/south-america/colombia/Universidad-Distrital-Francisco-Jose-de-Caldas.geojson deleted file mode 100644 index db73e87cf..000000000 --- a/features/south-america/colombia/Universidad-Distrital-Francisco-Jose-de-Caldas.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "universidad-distrital-francisco-jose-de-caldas", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.0918, 4.87766], - [-73.93243, 4.81186], - [-73.86648, 4.65304], - [-73.93251, 4.49426], - [-74.0918, 4.4285], - [-74.25109, 4.49426], - [-74.31712, 4.65304], - [-74.25116, 4.81186], - [-74.0918, 4.87766] - ] - ] - } -} \ No newline at end of file diff --git a/features/south-america/colombia/Universidad-Nacional-de-Colombia.geojson b/features/south-america/colombia/Universidad-Nacional-de-Colombia.geojson deleted file mode 100644 index 96874aa91..000000000 --- a/features/south-america/colombia/Universidad-Nacional-de-Colombia.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "universidad-nacional-de-colombia", - "properties": {"area": 1767.76}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.0918, 4.87766], - [-73.93243, 4.81186], - [-73.86648, 4.65304], - [-73.93251, 4.49426], - [-74.0918, 4.4285], - [-74.25109, 4.49426], - [-74.31712, 4.65304], - [-74.25116, 4.81186], - [-74.0918, 4.87766] - ] - ] - } -} \ No newline at end of file diff --git a/features/south-america/colombia/Universidad-de-Antioquia.geojson b/features/south-america/colombia/Universidad-de-Antioquia.geojson deleted file mode 100644 index c99f1245d..000000000 --- a/features/south-america/colombia/Universidad-de-Antioquia.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "universidad-de-antioquia", - "properties": {"area": 1767.74}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-75.58594, 6.45251], - [-75.42614, 6.38671], - [-75.36003, 6.22789], - [-75.42624, 6.06911], - [-75.58594, 6.00336], - [-75.74563, 6.06911], - [-75.81185, 6.22789], - [-75.74573, 6.38671], - [-75.58594, 6.45251] - ] - ] - } -} \ No newline at end of file diff --git a/features/south-america/colombia/Universidad-de-La-Guajira.geojson b/features/south-america/colombia/Universidad-de-La-Guajira.geojson deleted file mode 100644 index 380068370..000000000 --- a/features/south-america/colombia/Universidad-de-La-Guajira.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "universidad-de-la-guajira", - "properties": {"area": 1767.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-72.86133, 11.74767], - [-72.69917, 11.68184], - [-72.63213, 11.523], - [-72.69935, 11.36424], - [-72.86133, 11.29851], - [-73.0233, 11.36424], - [-73.09053, 11.523], - [-73.02349, 11.68184], - [-72.86133, 11.74767] - ] - ] - } -} \ No newline at end of file diff --git a/features/south-america/colombia/Universidad-de-Los-Andes.geojson b/features/south-america/colombia/Universidad-de-Los-Andes.geojson deleted file mode 100644 index e7409efdd..000000000 --- a/features/south-america/colombia/Universidad-de-Los-Andes.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "universidad-de-los-andes", - "properties": {"area": 1767.8}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-74.0918, 4.79005], - [-73.93245, 4.72426], - [-73.8665, 4.56544], - [-73.93253, 4.40665], - [-74.0918, 4.34089], - [-74.25107, 4.40665], - [-74.31709, 4.56544], - [-74.25114, 4.72426], - [-74.0918, 4.79005] - ] - ] - } -} \ No newline at end of file diff --git a/features/south-america/colombia/Universidad-de-San-Buenaventura.geojson b/features/south-america/colombia/Universidad-de-San-Buenaventura.geojson deleted file mode 100644 index 4f046c9e5..000000000 --- a/features/south-america/colombia/Universidad-de-San-Buenaventura.geojson +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "Feature", - "id": "universidad-de-san-buenaventura", - "properties": {"area": 1767.74}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-75.58594, 6.45251], - [-75.42614, 6.38671], - [-75.36003, 6.22789], - [-75.42624, 6.06911], - [-75.58594, 6.00336], - [-75.74563, 6.06911], - [-75.81185, 6.22789], - [-75.74573, 6.38671], - [-75.58594, 6.45251] - ] - ] - } -} \ No newline at end of file diff --git a/resources/africa/cote_d'_ivoire/ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.json b/resources/africa/cote_d'_ivoire/ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.json index 3c9b83d32..d3941cbbc 100644 --- a/resources/africa/cote_d'_ivoire/ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.json +++ b/resources/africa/cote_d'_ivoire/ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.json @@ -1,9 +1,7 @@ { "id": "ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny", "type": "youthmappers", - "includeLocations": [ - "centre-universitaire-de-recherche-et-dapplication-en-tldtection-curat-de-luniversit-felix-houphouet-boigny.geojson" - ], + "includeLocations": [[-3.9879924999999994, 5.344]], "countryCodes": ["ci"], "name": "YouthMappers CURAT", "description": "YouthMappers chapter at Centre Universitaire de Recherche et d'Application en Télédétection (CURAT) de l'Université Felix Houphouet Boigny", diff --git a/resources/africa/gambia/ym-The-Gambia-YMCA-University-of-the-Gambia.json b/resources/africa/gambia/ym-The-Gambia-YMCA-University-of-the-Gambia.json index 22be0d303..e3f6c2199 100644 --- a/resources/africa/gambia/ym-The-Gambia-YMCA-University-of-the-Gambia.json +++ b/resources/africa/gambia/ym-The-Gambia-YMCA-University-of-the-Gambia.json @@ -1,7 +1,7 @@ { "id": "ym-The-Gambia-YMCA-University-of-the-Gambia", "type": "youthmappers", - "includeLocations": ["the-gambia-ymca-university-of-the-gambia.geojson"], + "includeLocations": [[-16.676298749999997, 13.457899999999997]], "countryCodes": ["gm"], "name": "Connected YouthMappers", "description": "YouthMappers chapter at The Gambia YMCA / University of the Gambia", diff --git a/resources/africa/ghana/ym-Kwame-Nkrumah-University-of-Science-and-Technology.json b/resources/africa/ghana/ym-Kwame-Nkrumah-University-of-Science-and-Technology.json index 889cdcffc..798be3dff 100644 --- a/resources/africa/ghana/ym-Kwame-Nkrumah-University-of-Science-and-Technology.json +++ b/resources/africa/ghana/ym-Kwame-Nkrumah-University-of-Science-and-Technology.json @@ -1,7 +1,7 @@ { "id": "ym-Kwame-Nkrumah-University-of-Science-and-Technology", "type": "youthmappers", - "includeLocations": ["kwame-nkrumah-university-of-science-and-technology.geojson"], + "includeLocations": [[-1.5683100000000003, 6.672345]], "countryCodes": ["gh"], "name": "Kwame Nkrumah University of Science and Technology YouthMappers", "description": "YouthMappers chapter at Kwame Nkrumah University of Science and Technology", diff --git a/resources/africa/ghana/ym-University-of-Cape-Coast.json b/resources/africa/ghana/ym-University-of-Cape-Coast.json index 63e769628..a78a15489 100644 --- a/resources/africa/ghana/ym-University-of-Cape-Coast.json +++ b/resources/africa/ghana/ym-University-of-Cape-Coast.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Cape-Coast", "type": "youthmappers", - "includeLocations": ["university-of-cape-coast.geojson"], + "includeLocations": [[-1.23047, 5.09092375]], "countryCodes": ["gh"], "name": "UCC Geographical Society", "description": "YouthMappers chapter at University of Cape Coast", diff --git a/resources/africa/ghana/ym-University-of-Energy-and-Natural-Resources.json b/resources/africa/ghana/ym-University-of-Energy-and-Natural-Resources.json index 93712afbe..9f5fef8b9 100644 --- a/resources/africa/ghana/ym-University-of-Energy-and-Natural-Resources.json +++ b/resources/africa/ghana/ym-University-of-Energy-and-Natural-Resources.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Energy-and-Natural-Resources", "type": "youthmappers", - "includeLocations": ["university-of-energy-and-natural-resources.geojson"], + "includeLocations": [[-2.3430000000000004, 7.350210000000001]], "countryCodes": ["gh"], "name": "Eco-Club", "description": "YouthMappers chapter at University of Energy and Natural Resources", diff --git a/resources/africa/ghana/ym-University-of-Ghana.json b/resources/africa/ghana/ym-University-of-Ghana.json index 444fe373a..4ec2ff6ac 100644 --- a/resources/africa/ghana/ym-University-of-Ghana.json +++ b/resources/africa/ghana/ym-University-of-Ghana.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Ghana", "type": "youthmappers", - "includeLocations": ["university-of-ghana.geojson"], + "includeLocations": [[-0.1962375, 5.65113]], "countryCodes": ["gh"], "name": "University of Ghana YouthMappers", "description": "YouthMappers chapter at University of Ghana", diff --git a/resources/africa/ghana/ym-University-of-Mines-and-Technology.json b/resources/africa/ghana/ym-University-of-Mines-and-Technology.json index f636897b2..e1be2f886 100644 --- a/resources/africa/ghana/ym-University-of-Mines-and-Technology.json +++ b/resources/africa/ghana/ym-University-of-Mines-and-Technology.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Mines-and-Technology", "type": "youthmappers", - "includeLocations": ["university-of-mines-and-technology.geojson"], + "includeLocations": [[-2.00125, 5.29878375]], "countryCodes": ["gh"], "name": "UMaT YouthMappers", "description": "YouthMappers chapter at University of Mines and Technology", diff --git a/resources/africa/guinea/ym-General-Lansana-Conte-University.json b/resources/africa/guinea/ym-General-Lansana-Conte-University.json index 81e367e98..a30daebbf 100644 --- a/resources/africa/guinea/ym-General-Lansana-Conte-University.json +++ b/resources/africa/guinea/ym-General-Lansana-Conte-University.json @@ -1,7 +1,7 @@ { "id": "ym-General-Lansana-Conte-University", "type": "youthmappers", - "includeLocations": ["general-lansana-conte-university.geojson"], + "includeLocations": [[-13.623046250000002, 9.709019999999999]], "countryCodes": ["gn"], "name": "YouthMappers General Lansana Conte University", "description": "YouthMappers chapter at General Lansana Conte University", diff --git a/resources/africa/guinea/ym-Institute-of-Science-and-Veterinary-Medicine.json b/resources/africa/guinea/ym-Institute-of-Science-and-Veterinary-Medicine.json index ab6fb63df..0d6f4790a 100644 --- a/resources/africa/guinea/ym-Institute-of-Science-and-Veterinary-Medicine.json +++ b/resources/africa/guinea/ym-Institute-of-Science-and-Veterinary-Medicine.json @@ -1,7 +1,7 @@ { "id": "ym-Institute-of-Science-and-Veterinary-Medicine", "type": "youthmappers", - "includeLocations": ["institute-of-science-and-veterinary-medicine.geojson"], + "includeLocations": [[-12.1175, 10.68652]], "countryCodes": ["gn"], "name": "YouthMappers ISSMV Dalaba", "description": "YouthMappers chapter at Institute of Science and Veterinary Medicine", diff --git a/resources/africa/guinea/ym-Universit-de-NZrkor.json b/resources/africa/guinea/ym-Universit-de-NZrkor.json index f6282ca89..725d73d7c 100644 --- a/resources/africa/guinea/ym-Universit-de-NZrkor.json +++ b/resources/africa/guinea/ym-Universit-de-NZrkor.json @@ -1,7 +1,7 @@ { "id": "ym-Universit-de-NZrkor", "type": "youthmappers", - "includeLocations": ["universit-de-nzrkor.geojson"], + "includeLocations": [[-8.83716, 7.7324]], "countryCodes": ["gn"], "name": "Youthmappers à N'Zérékoré", "description": "YouthMappers chapter at Université de N'Zérékoré", diff --git a/resources/africa/kenya/ym-Dedan-Kimathi-University-of-Technology.json b/resources/africa/kenya/ym-Dedan-Kimathi-University-of-Technology.json index 7e3195886..74fd2a986 100644 --- a/resources/africa/kenya/ym-Dedan-Kimathi-University-of-Technology.json +++ b/resources/africa/kenya/ym-Dedan-Kimathi-University-of-Technology.json @@ -1,7 +1,7 @@ { "id": "ym-Dedan-Kimathi-University-of-Technology", "type": "youthmappers", - "includeLocations": ["dedan-kimathi-university-of-technology.geojson"], + "includeLocations": [[37.0019525, -0.43944999999999995]], "countryCodes": ["ke"], "name": "GDEV", "description": "YouthMappers chapter at Dedan Kimathi University of Technology", diff --git a/resources/africa/kenya/ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology.json b/resources/africa/kenya/ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology.json index 28a226c0d..232059a27 100644 --- a/resources/africa/kenya/ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology.json +++ b/resources/africa/kenya/ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology.json @@ -1,7 +1,7 @@ { "id": "ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology", "type": "youthmappers", - "includeLocations": ["jomo-kenyatta-university-of-agriculture-and-technology.geojson"], + "includeLocations": [[37.0105, -1.089095]], "countryCodes": ["ke"], "name": "Association of Geomatics Engineering Students", "description": "YouthMappers chapter at Jomo Kenyatta University of Agriculture and Technology", diff --git a/resources/africa/kenya/ym-Karatina-University.json b/resources/africa/kenya/ym-Karatina-University.json index 7fa0437ce..659fb499e 100644 --- a/resources/africa/kenya/ym-Karatina-University.json +++ b/resources/africa/kenya/ym-Karatina-University.json @@ -1,7 +1,7 @@ { "id": "ym-Karatina-University", "type": "youthmappers", - "includeLocations": ["karatina-university.geojson"], + "includeLocations": [[37.12788750000001, -0.48134]], "countryCodes": ["ke"], "name": "Nature Club Karatina University", "description": "YouthMappers chapter at Karatina University", diff --git a/resources/africa/kenya/ym-Kenyatta-University.json b/resources/africa/kenya/ym-Kenyatta-University.json index 581f9a298..1cce4a128 100644 --- a/resources/africa/kenya/ym-Kenyatta-University.json +++ b/resources/africa/kenya/ym-Kenyatta-University.json @@ -1,7 +1,7 @@ { "id": "ym-Kenyatta-University", "type": "youthmappers", - "includeLocations": ["kenyatta-university.geojson"], + "includeLocations": [[36.934931250000005, -1.1799575]], "countryCodes": ["ke"], "name": "Kenyatta University GIS Club", "description": "YouthMappers chapter at Kenyatta University", diff --git a/resources/africa/kenya/ym-Moi-University.json b/resources/africa/kenya/ym-Moi-University.json index 754ee4214..313d1141e 100644 --- a/resources/africa/kenya/ym-Moi-University.json +++ b/resources/africa/kenya/ym-Moi-University.json @@ -1,7 +1,7 @@ { "id": "ym-Moi-University", "type": "youthmappers", - "includeLocations": ["moi-university.geojson"], + "includeLocations": [[35.5078125, -0.35156]], "countryCodes": ["ke"], "name": "Geography Students Association", "description": "YouthMappers chapter at Moi University", diff --git a/resources/africa/kenya/ym-Technical-University-of-Kenya.json b/resources/africa/kenya/ym-Technical-University-of-Kenya.json index 7b9b63837..28ce23996 100644 --- a/resources/africa/kenya/ym-Technical-University-of-Kenya.json +++ b/resources/africa/kenya/ym-Technical-University-of-Kenya.json @@ -1,7 +1,7 @@ { "id": "ym-Technical-University-of-Kenya", "type": "youthmappers", - "includeLocations": ["technical-university-of-kenya.geojson"], + "includeLocations": [[36.824491249999994, -1.29160125]], "countryCodes": ["ke"], "name": "Geospatial Science Student Association", "description": "YouthMappers chapter at Technical University of Kenya", diff --git a/resources/africa/kenya/ym-University-of-Nairobi.json b/resources/africa/kenya/ym-University-of-Nairobi.json index 620f02f29..cf78233f0 100644 --- a/resources/africa/kenya/ym-University-of-Nairobi.json +++ b/resources/africa/kenya/ym-University-of-Nairobi.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Nairobi", "type": "youthmappers", - "includeLocations": ["university-of-nairobi.geojson"], + "includeLocations": [[36.826172500000006, -1.3182375]], "countryCodes": ["ke"], "name": "Geospatial Engineering Students Association", "description": "YouthMappers chapter at University of Nairobi", diff --git a/resources/africa/liberia/ym-African-Methodist-Episcopal-University.json b/resources/africa/liberia/ym-African-Methodist-Episcopal-University.json index 974669dd9..8d1ba642a 100644 --- a/resources/africa/liberia/ym-African-Methodist-Episcopal-University.json +++ b/resources/africa/liberia/ym-African-Methodist-Episcopal-University.json @@ -1,7 +1,7 @@ { "id": "ym-African-Methodist-Episcopal-University", "type": "youthmappers", - "includeLocations": ["african-methodist-episcopal-university.geojson"], + "includeLocations": [[-10.800629999999998, 6.3107275]], "countryCodes": ["lr"], "name": "YouthMappers-AMEU", "description": "YouthMappers chapter at African Methodist Episcopal University", diff --git a/resources/africa/liberia/ym-Cuttington-University.json b/resources/africa/liberia/ym-Cuttington-University.json index 0e7882859..ee38e6c05 100644 --- a/resources/africa/liberia/ym-Cuttington-University.json +++ b/resources/africa/liberia/ym-Cuttington-University.json @@ -1,7 +1,7 @@ { "id": "ym-Cuttington-University", "type": "youthmappers", - "includeLocations": ["cuttington-university.geojson"], + "includeLocations": [[-9.5539, 7.040372500000001]], "countryCodes": ["lr"], "name": "Cuttington University YouthMappers", "description": "YouthMappers chapter at Cuttington University", diff --git a/resources/africa/liberia/ym-Grand-Gedeh-County-Community-College.json b/resources/africa/liberia/ym-Grand-Gedeh-County-Community-College.json index e9054ca4b..c210f1391 100644 --- a/resources/africa/liberia/ym-Grand-Gedeh-County-Community-College.json +++ b/resources/africa/liberia/ym-Grand-Gedeh-County-Community-College.json @@ -1,7 +1,7 @@ { "id": "ym-Grand-Gedeh-County-Community-College", "type": "youthmappers", - "includeLocations": ["grand-gedeh-county-community-college.geojson"], + "includeLocations": [[-8.118170000000001, 6.063924999999999]], "countryCodes": ["lr"], "name": "YouthMappers at Grand Gedeh County Community College", "description": "YouthMappers chapter at Grand Gedeh County Community College", diff --git a/resources/africa/liberia/ym-Nimba-County-Community-College.json b/resources/africa/liberia/ym-Nimba-County-Community-College.json index 661349365..ac7fd7a3a 100644 --- a/resources/africa/liberia/ym-Nimba-County-Community-College.json +++ b/resources/africa/liberia/ym-Nimba-County-Community-College.json @@ -1,7 +1,7 @@ { "id": "ym-Nimba-County-Community-College", "type": "youthmappers", - "includeLocations": ["nimba-county-community-college.geojson"], + "includeLocations": [[-8.716453750000001, 7.35208]], "countryCodes": ["lr"], "name": "Nimba County Community College Youth Mappers", "description": "YouthMappers chapter at Nimba County Community College", diff --git a/resources/africa/liberia/ym-Stella-Maris-Polytechnic.json b/resources/africa/liberia/ym-Stella-Maris-Polytechnic.json index deb0fc826..878a38476 100644 --- a/resources/africa/liberia/ym-Stella-Maris-Polytechnic.json +++ b/resources/africa/liberia/ym-Stella-Maris-Polytechnic.json @@ -1,7 +1,7 @@ { "id": "ym-Stella-Maris-Polytechnic", "type": "youthmappers", - "includeLocations": ["stella-maris-polytechnic.geojson"], + "includeLocations": [[-10.794400000000001, 6.289974999999999]], "countryCodes": ["lr"], "name": "YouthMappers-SMP", "description": "YouthMappers chapter at Stella Maris Polytechnic", diff --git a/resources/africa/liberia/ym-University-of-Liberia-YouthMappers.json b/resources/africa/liberia/ym-University-of-Liberia-YouthMappers.json index 8710bbc3c..894910f60 100644 --- a/resources/africa/liberia/ym-University-of-Liberia-YouthMappers.json +++ b/resources/africa/liberia/ym-University-of-Liberia-YouthMappers.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Liberia-YouthMappers", "type": "youthmappers", - "includeLocations": ["university-of-liberia-youthmappers.geojson"], + "includeLocations": [[-10.619861250000001, 6.377042500000001]], "countryCodes": ["lr"], "name": "University of Liberia YouthMappers", "description": "YouthMappers chapter at University of Liberia YouthMappers", diff --git a/resources/africa/malawi/ym-University-of-Malawi.json b/resources/africa/malawi/ym-University-of-Malawi.json index 4f5c81275..6dc85a3d6 100644 --- a/resources/africa/malawi/ym-University-of-Malawi.json +++ b/resources/africa/malawi/ym-University-of-Malawi.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Malawi", "type": "youthmappers", - "includeLocations": ["university-of-malawi.geojson"], + "includeLocations": [[35.33203125, -15.368889999999999]], "countryCodes": ["mw"], "name": "Chanco Malawi YouthMappers", "description": "YouthMappers chapter at University of Malawi", diff --git a/resources/africa/mali/ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.json b/resources/africa/mali/ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.json index 9d1890bb6..c6a792b6b 100644 --- a/resources/africa/mali/ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.json +++ b/resources/africa/mali/ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.json @@ -1,7 +1,7 @@ { "id": "ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako", "type": "youthmappers", - "includeLocations": ["universit-des-sciences-sociale-et-de-gestion-de-bamako.geojson"], + "includeLocations": [[-7.988322500000001, 12.61530875]], "countryCodes": ["ml"], "name": "Etudiant au Laboratoire HoPE", "description": "YouthMappers chapter at Université des Sciences Sociale et de Gestion de Bamako", diff --git a/resources/africa/mozambique/ym-Universidade-Eduardo-Mondlane.json b/resources/africa/mozambique/ym-Universidade-Eduardo-Mondlane.json index 9cba33575..96e566c1b 100644 --- a/resources/africa/mozambique/ym-Universidade-Eduardo-Mondlane.json +++ b/resources/africa/mozambique/ym-Universidade-Eduardo-Mondlane.json @@ -1,7 +1,7 @@ { "id": "ym-Universidade-Eduardo-Mondlane", "type": "youthmappers", - "includeLocations": ["universidade-eduardo-mondlane.geojson"], + "includeLocations": [[32.60357125, -25.952080000000002]], "countryCodes": ["mz"], "name": "Comunidade YouthMappers Moçambique", "description": "YouthMappers chapter at Universidade Eduardo Mondlane", diff --git a/resources/africa/namibia/ym-Namibia-University-of-Science-and-Technology.json b/resources/africa/namibia/ym-Namibia-University-of-Science-and-Technology.json index 3fc5095cf..701b0c8df 100644 --- a/resources/africa/namibia/ym-Namibia-University-of-Science-and-Technology.json +++ b/resources/africa/namibia/ym-Namibia-University-of-Science-and-Technology.json @@ -1,7 +1,7 @@ { "id": "ym-Namibia-University-of-Science-and-Technology", "type": "youthmappers", - "includeLocations": ["namibia-university-of-science-and-technology.geojson"], + "includeLocations": [[17.07709125, -22.565723750000004]], "countryCodes": ["na"], "name": "Geoinformation Technology Student Society", "description": "YouthMappers chapter at Namibia University of Science and Technology", diff --git a/resources/africa/nigeria/ym-Abia-State-University.json b/resources/africa/nigeria/ym-Abia-State-University.json index bd6efa4c6..68d95f51c 100644 --- a/resources/africa/nigeria/ym-Abia-State-University.json +++ b/resources/africa/nigeria/ym-Abia-State-University.json @@ -1,7 +1,7 @@ { "id": "ym-Abia-State-University", "type": "youthmappers", - "includeLocations": ["abia-state-university.geojson"], + "includeLocations": [[7.419093749999999, 5.830795]], "countryCodes": ["ng"], "name": "AbsuMappersTeam", "description": "YouthMappers chapter at Abia State University", diff --git a/resources/africa/nigeria/ym-Ahmadu-Bello-University.json b/resources/africa/nigeria/ym-Ahmadu-Bello-University.json index d8887c76f..b1a2045b7 100644 --- a/resources/africa/nigeria/ym-Ahmadu-Bello-University.json +++ b/resources/africa/nigeria/ym-Ahmadu-Bello-University.json @@ -1,7 +1,7 @@ { "id": "ym-Ahmadu-Bello-University", "type": "youthmappers", - "includeLocations": ["ahmadu-bello-university.geojson"], + "includeLocations": [[7.64648375, 11.178357499999999]], "countryCodes": ["ng"], "name": "ABU Geomappers", "description": "YouthMappers chapter at Ahmadu Bello University", diff --git a/resources/africa/nigeria/ym-Federal-School-of-Surveys.json b/resources/africa/nigeria/ym-Federal-School-of-Surveys.json index 345080e8d..e3d74a3b6 100644 --- a/resources/africa/nigeria/ym-Federal-School-of-Surveys.json +++ b/resources/africa/nigeria/ym-Federal-School-of-Surveys.json @@ -1,7 +1,7 @@ { "id": "ym-Federal-School-of-Surveys", "type": "youthmappers", - "includeLocations": ["federal-school-of-surveys.geojson"], + "includeLocations": [[3.9512875, 7.84217625]], "countryCodes": ["ng"], "name": "OyoMappersTeam (OMT) Oyo", "description": "YouthMappers chapter at Federal School of Surveys", diff --git a/resources/africa/nigeria/ym-Federal-University-of-Technology-Akure.json b/resources/africa/nigeria/ym-Federal-University-of-Technology-Akure.json index cc7c33ca5..4f72ba356 100644 --- a/resources/africa/nigeria/ym-Federal-University-of-Technology-Akure.json +++ b/resources/africa/nigeria/ym-Federal-University-of-Technology-Akure.json @@ -1,7 +1,7 @@ { "id": "ym-Federal-University-of-Technology-Akure", "type": "youthmappers", - "includeLocations": ["federal-university-of-technology-akure.geojson"], + "includeLocations": [[5.185547499999999, 7.275265]], "countryCodes": ["ng"], "name": "YouthMappers Futa Space Club", "description": "YouthMappers chapter at Federal University of Technology, Akure", diff --git a/resources/africa/nigeria/ym-Ignatius-Ajuru-University-of-Education.json b/resources/africa/nigeria/ym-Ignatius-Ajuru-University-of-Education.json index 0cd7d3d59..b7493eaa9 100644 --- a/resources/africa/nigeria/ym-Ignatius-Ajuru-University-of-Education.json +++ b/resources/africa/nigeria/ym-Ignatius-Ajuru-University-of-Education.json @@ -1,7 +1,7 @@ { "id": "ym-Ignatius-Ajuru-University-of-Education", "type": "youthmappers", - "includeLocations": ["ignatius-ajuru-university-of-education.geojson"], + "includeLocations": [[6.9336375, 4.80651]], "countryCodes": ["ng"], "name": "IgnatiusMappersTeam (IMT)", "description": "YouthMappers chapter at Ignatius Ajuru University of Education", diff --git a/resources/africa/nigeria/ym-University-of-Nigeria-Enugu-Campus.json b/resources/africa/nigeria/ym-University-of-Nigeria-Enugu-Campus.json index 0e7f555da..6a05f2823 100644 --- a/resources/africa/nigeria/ym-University-of-Nigeria-Enugu-Campus.json +++ b/resources/africa/nigeria/ym-University-of-Nigeria-Enugu-Campus.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Nigeria-Enugu-Campus", "type": "youthmappers", - "includeLocations": ["university-of-nigeria-enugu-campus.geojson"], + "includeLocations": [[7.5037325, 6.426392499999999]], "countryCodes": ["ng"], "name": "LionMappersTeam (LMT) Enugu", "description": "YouthMappers chapter at University of Nigeria, Enugu Campus", diff --git a/resources/africa/nigeria/ym-University-of-Nigeria-Nsukka.json b/resources/africa/nigeria/ym-University-of-Nigeria-Nsukka.json index c3f04ea9b..bc797c1dc 100644 --- a/resources/africa/nigeria/ym-University-of-Nigeria-Nsukka.json +++ b/resources/africa/nigeria/ym-University-of-Nigeria-Nsukka.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Nigeria-Nsukka", "type": "youthmappers", - "includeLocations": ["university-of-nigeria-nsukka.geojson"], + "includeLocations": [[7.408208750000001, 6.86460875]], "countryCodes": ["ng"], "name": "LionMappersTeam (LMT) Nsukka", "description": "YouthMappers chapter at University of Nigeria, Nsukka", diff --git a/resources/africa/nigeria/ym-University-of-Port-Harcourt.json b/resources/africa/nigeria/ym-University-of-Port-Harcourt.json index 281828767..ec1f46fcb 100644 --- a/resources/africa/nigeria/ym-University-of-Port-Harcourt.json +++ b/resources/africa/nigeria/ym-University-of-Port-Harcourt.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Port-Harcourt", "type": "youthmappers", - "includeLocations": ["university-of-port-harcourt.geojson"], + "includeLocations": [[6.92036625, 4.90173]], "countryCodes": ["ng"], "name": "UniqueMappersTeam (UMT) Port Harcourt", "description": "YouthMappers chapter at University of Port Harcourt", diff --git a/resources/africa/rwanda/ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri.json b/resources/africa/rwanda/ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri.json index 921d2b125..ff825f2e1 100644 --- a/resources/africa/rwanda/ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri.json +++ b/resources/africa/rwanda/ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri.json @@ -1,7 +1,7 @@ { "id": "ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri", "type": "youthmappers", - "includeLocations": ["insititue-d-enseignement-superieur-de-ruhengeri.geojson"], + "includeLocations": [[29.6112025, -1.5009087499999998]], "countryCodes": ["rw"], "name": "YouthMappers at INES Ruhengeri", "description": "YouthMappers chapter at Insititue d' Enseignement Superieur de Ruhengeri", diff --git a/resources/africa/rwanda/ym-University-of-Rwanda-Huye-Campus.json b/resources/africa/rwanda/ym-University-of-Rwanda-Huye-Campus.json index 2b5f1cb43..0ae45673c 100644 --- a/resources/africa/rwanda/ym-University-of-Rwanda-Huye-Campus.json +++ b/resources/africa/rwanda/ym-University-of-Rwanda-Huye-Campus.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Rwanda-Huye-Campus", "type": "youthmappers", - "includeLocations": ["university-of-rwanda-huye-campus.geojson"], + "includeLocations": [[29.739700000000003, -2.61509]], "countryCodes": ["rw"], "name": "Rwanda YouthMappers", "description": "YouthMappers chapter at University of Rwanda - Huye Campus", diff --git a/resources/africa/senegal/ym-Institut-Suprieur-de-Management-Kolda.json b/resources/africa/senegal/ym-Institut-Suprieur-de-Management-Kolda.json index 33b3d1187..181ab5171 100644 --- a/resources/africa/senegal/ym-Institut-Suprieur-de-Management-Kolda.json +++ b/resources/africa/senegal/ym-Institut-Suprieur-de-Management-Kolda.json @@ -1,7 +1,7 @@ { "id": "ym-Institut-Suprieur-de-Management-Kolda", "type": "youthmappers", - "includeLocations": ["institut-suprieur-de-management-kolda.geojson"], + "includeLocations": [[-14.941083750000002, 12.88982]], "countryCodes": ["sn"], "name": "Les Femmes Leaders de ISM/Kolda", "description": "YouthMappers chapter at Institut Supérieur de Management Kolda", diff --git a/resources/africa/senegal/ym-Universit-Gaston-Berger.json b/resources/africa/senegal/ym-Universit-Gaston-Berger.json index e2dfc9bc1..af8cb799f 100644 --- a/resources/africa/senegal/ym-Universit-Gaston-Berger.json +++ b/resources/africa/senegal/ym-Universit-Gaston-Berger.json @@ -1,7 +1,7 @@ { "id": "ym-Universit-Gaston-Berger", "type": "youthmappers", - "includeLocations": ["universit-gaston-berger.geojson"], + "includeLocations": [[-16.42556375, 16.062841249999998]], "countryCodes": ["sn"], "name": "YouthMappers at UGB", "description": "YouthMappers chapter at Université Gaston Berger", diff --git a/resources/africa/sierra_leone/ym-Fourah-Bay-College.json b/resources/africa/sierra_leone/ym-Fourah-Bay-College.json index aeb7ba810..9280f4f8e 100644 --- a/resources/africa/sierra_leone/ym-Fourah-Bay-College.json +++ b/resources/africa/sierra_leone/ym-Fourah-Bay-College.json @@ -1,7 +1,7 @@ { "id": "ym-Fourah-Bay-College", "type": "youthmappers", - "includeLocations": ["fourah-bay-college.geojson"], + "includeLocations": [[-13.18359125, 8.49407125]], "countryCodes": ["sl"], "name": "Student's Geographical Association", "description": "YouthMappers chapter at Fourah Bay College", diff --git a/resources/africa/sierra_leone/ym-Njala-University-Freetown-Campus.json b/resources/africa/sierra_leone/ym-Njala-University-Freetown-Campus.json index 275db5494..25407594d 100644 --- a/resources/africa/sierra_leone/ym-Njala-University-Freetown-Campus.json +++ b/resources/africa/sierra_leone/ym-Njala-University-Freetown-Campus.json @@ -1,7 +1,7 @@ { "id": "ym-Njala-University-Freetown-Campus", "type": "youthmappers", - "includeLocations": ["njala-university-freetown-campus.geojson"], + "includeLocations": [[-13.236730000000001, 8.479585]], "countryCodes": ["sl"], "name": "Njala Freetown YouthMappers", "description": "YouthMappers chapter at Njala University, Freetown Campus", diff --git a/resources/africa/sierra_leone/ym-Njala-University-Njala-Campus.json b/resources/africa/sierra_leone/ym-Njala-University-Njala-Campus.json index 218caa15d..a317b37ee 100644 --- a/resources/africa/sierra_leone/ym-Njala-University-Njala-Campus.json +++ b/resources/africa/sierra_leone/ym-Njala-University-Njala-Campus.json @@ -1,7 +1,7 @@ { "id": "ym-Njala-University-Njala-Campus", "type": "youthmappers", - "includeLocations": ["njala-university-njala-campus.geojson"], + "includeLocations": [[-11.76548125, 7.935960000000001]], "countryCodes": ["sl"], "name": "YouthMappers Njala University, Njala Campus", "description": "YouthMappers chapter at Njala University, Njala Campus", diff --git a/resources/africa/south_africa/ym-University-of-Pretoria.json b/resources/africa/south_africa/ym-University-of-Pretoria.json index 250a272b5..54773d9de 100644 --- a/resources/africa/south_africa/ym-University-of-Pretoria.json +++ b/resources/africa/south_africa/ym-University-of-Pretoria.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Pretoria", "type": "youthmappers", - "includeLocations": ["university-of-pretoria.geojson"], + "includeLocations": [[28.21289, -25.720628750000003]], "countryCodes": ["za"], "name": "Centre for Geoinformation Science", "description": "YouthMappers chapter at University of Pretoria", diff --git a/resources/africa/tanzania/ym-Ardhi-University.json b/resources/africa/tanzania/ym-Ardhi-University.json index 4a1e55c49..bd066de09 100644 --- a/resources/africa/tanzania/ym-Ardhi-University.json +++ b/resources/africa/tanzania/ym-Ardhi-University.json @@ -1,7 +1,7 @@ { "id": "ym-Ardhi-University", "type": "youthmappers", - "includeLocations": ["ardhi-university.geojson"], + "includeLocations": [[39.21541, -6.76613]], "countryCodes": ["tz"], "name": "ARU Mapper", "description": "YouthMappers chapter at Ardhi University", diff --git a/resources/africa/tanzania/ym-Institute-of-Finance-Management.json b/resources/africa/tanzania/ym-Institute-of-Finance-Management.json index ddaeb8994..bf5e4a88f 100644 --- a/resources/africa/tanzania/ym-Institute-of-Finance-Management.json +++ b/resources/africa/tanzania/ym-Institute-of-Finance-Management.json @@ -1,7 +1,7 @@ { "id": "ym-Institute-of-Finance-Management", "type": "youthmappers", - "includeLocations": ["institute-of-finance-management.geojson"], + "includeLocations": [[39.29349875, -6.1377875]], "countryCodes": ["tz"], "name": "IFM mappers", "description": "YouthMappers chapter at Institute of Finance Management", diff --git a/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning-Mwanza.json b/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning-Mwanza.json index c2be9a151..67cf9cfcd 100644 --- a/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning-Mwanza.json +++ b/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning-Mwanza.json @@ -1,7 +1,7 @@ { "id": "ym-Institute-of-Rural-Development-Planning-Mwanza", "type": "youthmappers", - "includeLocations": ["institute-of-rural-development-planning-mwanza.geojson"], + "includeLocations": [[32.898513750000006, -2.51657875]], "countryCodes": ["tz"], "name": "Youth Mappers Chapter at Institute of Rural Development Planning - Lake Zone Centre", "description": "YouthMappers chapter at Institute of Rural Development Planning Mwanza", diff --git a/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning.json b/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning.json index 6bc07d484..5b7ab38db 100644 --- a/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning.json +++ b/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning.json @@ -1,7 +1,7 @@ { "id": "ym-Institute-of-Rural-Development-Planning", "type": "youthmappers", - "includeLocations": ["institute-of-rural-development-planning.geojson"], + "includeLocations": [[35.7457825, -6.1221475]], "countryCodes": ["tz"], "name": "Mipango YouthMappers Chapter", "description": "YouthMappers chapter at Institute of Rural Development Planning", diff --git a/resources/africa/tanzania/ym-Open-University-of-Tanzania.json b/resources/africa/tanzania/ym-Open-University-of-Tanzania.json index 5a23451bf..eb6ef15c1 100644 --- a/resources/africa/tanzania/ym-Open-University-of-Tanzania.json +++ b/resources/africa/tanzania/ym-Open-University-of-Tanzania.json @@ -1,7 +1,7 @@ { "id": "ym-Open-University-of-Tanzania", "type": "youthmappers", - "includeLocations": ["open-university-of-tanzania.geojson"], + "includeLocations": [[39.26465999999999, -6.783498750000001]], "countryCodes": ["tz"], "name": "Youth Mappers at Open University of Tanzania", "description": "YouthMappers chapter at Open University of Tanzania", diff --git a/resources/africa/tanzania/ym-Sokoine-University-of-Agriculture.json b/resources/africa/tanzania/ym-Sokoine-University-of-Agriculture.json index 0be436937..fb76ba5c2 100644 --- a/resources/africa/tanzania/ym-Sokoine-University-of-Agriculture.json +++ b/resources/africa/tanzania/ym-Sokoine-University-of-Agriculture.json @@ -1,7 +1,7 @@ { "id": "ym-Sokoine-University-of-Agriculture", "type": "youthmappers", - "includeLocations": ["sokoine-university-of-agriculture.geojson"], + "includeLocations": [[37.65636, -6.852512500000001]], "countryCodes": ["tz"], "name": "SMCoSE YouthMappers", "description": "YouthMappers chapter at Sokoine University of Agriculture", diff --git a/resources/africa/tanzania/ym-University-of-Dar-es-Salaam.json b/resources/africa/tanzania/ym-University-of-Dar-es-Salaam.json index b5d2ccba2..62295d704 100644 --- a/resources/africa/tanzania/ym-University-of-Dar-es-Salaam.json +++ b/resources/africa/tanzania/ym-University-of-Dar-es-Salaam.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Dar-es-Salaam", "type": "youthmappers", - "includeLocations": ["university-of-dar-es-salaam.geojson"], + "includeLocations": [[39.20531, -6.7803474999999995]], "countryCodes": ["tz"], "name": "YouthMappers at University of Dar es Salaam", "description": "YouthMappers chapter at University of Dar es Salaam", diff --git a/resources/africa/uganda/ym-Busitema-University.json b/resources/africa/uganda/ym-Busitema-University.json index 20e6dbace..ad22b1b4a 100644 --- a/resources/africa/uganda/ym-Busitema-University.json +++ b/resources/africa/uganda/ym-Busitema-University.json @@ -1,7 +1,7 @@ { "id": "ym-Busitema-University", "type": "youthmappers", - "includeLocations": ["busitema-university.geojson"], + "includeLocations": [[34.01367125, 0.527335]], "countryCodes": ["ug"], "name": "Good Mappers", "description": "YouthMappers chapter at Busitema University", diff --git a/resources/africa/uganda/ym-Gulu-University.json b/resources/africa/uganda/ym-Gulu-University.json index 978627625..0c1bc6c17 100644 --- a/resources/africa/uganda/ym-Gulu-University.json +++ b/resources/africa/uganda/ym-Gulu-University.json @@ -1,7 +1,7 @@ { "id": "ym-Gulu-University", "type": "youthmappers", - "includeLocations": ["gulu-university.geojson"], + "includeLocations": [[32.34374999999999, 2.81136]], "countryCodes": ["ug"], "name": "CSGU Mappers", "description": "YouthMappers chapter at Gulu University", diff --git a/resources/africa/uganda/ym-Kumi-University.json b/resources/africa/uganda/ym-Kumi-University.json index 64518849f..4427bbfdf 100644 --- a/resources/africa/uganda/ym-Kumi-University.json +++ b/resources/africa/uganda/ym-Kumi-University.json @@ -1,7 +1,7 @@ { "id": "ym-Kumi-University", "type": "youthmappers", - "includeLocations": ["kumi-university.geojson"], + "includeLocations": [[33.83789125, 1.493965]], "countryCodes": ["ug"], "name": "Ever Last YouthMappers", "description": "YouthMappers chapter at Kumi University", diff --git a/resources/africa/uganda/ym-Makerere-University.json b/resources/africa/uganda/ym-Makerere-University.json index 72bd2941f..a339a2592 100644 --- a/resources/africa/uganda/ym-Makerere-University.json +++ b/resources/africa/uganda/ym-Makerere-University.json @@ -1,7 +1,7 @@ { "id": "ym-Makerere-University", "type": "youthmappers", - "includeLocations": ["makerere-university.geojson"], + "includeLocations": [[32.607420000000005, 0.35156000000000004]], "countryCodes": ["ug"], "name": "Geo YouthMappers", "description": "YouthMappers chapter at Makerere University", diff --git a/resources/africa/uganda/ym-Mbarara-University-of-Science-and-Technology.json b/resources/africa/uganda/ym-Mbarara-University-of-Science-and-Technology.json index 63bea0682..78f427074 100644 --- a/resources/africa/uganda/ym-Mbarara-University-of-Science-and-Technology.json +++ b/resources/africa/uganda/ym-Mbarara-University-of-Science-and-Technology.json @@ -1,7 +1,7 @@ { "id": "ym-Mbarara-University-of-Science-and-Technology", "type": "youthmappers", - "includeLocations": ["mbarara-university-of-science-and-technology.geojson"], + "includeLocations": [[30.6567875, -0.6164412499999999]], "countryCodes": ["ug"], "name": "MUST Street Mappers", "description": "YouthMappers chapter at Mbarara University of Science and Technology", diff --git a/resources/africa/uganda/ym-St.-Augustine-International-University.json b/resources/africa/uganda/ym-St.-Augustine-International-University.json index acbd94694..66e27655b 100644 --- a/resources/africa/uganda/ym-St.-Augustine-International-University.json +++ b/resources/africa/uganda/ym-St.-Augustine-International-University.json @@ -1,7 +1,7 @@ { "id": "ym-St.-Augustine-International-University", "type": "youthmappers", - "includeLocations": ["st.-augustine-international-university.geojson"], + "includeLocations": [[32.62161375, 0.272375]], "countryCodes": ["ng"], "name": "YouthMappers at St Augustine International University", "description": "YouthMappers chapter at St. Augustine International University", diff --git a/resources/africa/uganda/ym-Uganda-Christian-University-Mbale-Campus.json b/resources/africa/uganda/ym-Uganda-Christian-University-Mbale-Campus.json index f1c1e4013..1e4675456 100644 --- a/resources/africa/uganda/ym-Uganda-Christian-University-Mbale-Campus.json +++ b/resources/africa/uganda/ym-Uganda-Christian-University-Mbale-Campus.json @@ -1,7 +1,7 @@ { "id": "ym-Uganda-Christian-University-Mbale-Campus", "type": "youthmappers", - "includeLocations": ["uganda-christian-university-mbale-campus.geojson"], + "includeLocations": [[34.17486875, 1.075875]], "countryCodes": ["ug"], "name": "Mappers for Life", "description": "YouthMappers chapter at Uganda Christian University Mbale Campus", diff --git a/resources/africa/uganda/ym-Uganda-Pentecostal-University.json b/resources/africa/uganda/ym-Uganda-Pentecostal-University.json index bee0a33f7..501ddb819 100644 --- a/resources/africa/uganda/ym-Uganda-Pentecostal-University.json +++ b/resources/africa/uganda/ym-Uganda-Pentecostal-University.json @@ -1,7 +1,7 @@ { "id": "ym-Uganda-Pentecostal-University", "type": "youthmappers", - "includeLocations": ["uganda-pentecostal-university.geojson"], + "includeLocations": [[30.266209999999997, 0.6620612499999999]], "countryCodes": ["ug"], "name": "HiTech Youth Mappers", "description": "YouthMappers chapter at Uganda Pentecostal University", diff --git a/resources/africa/zambia/ym-St.-Mawaggali-Trades-Training-Institute.json b/resources/africa/zambia/ym-St.-Mawaggali-Trades-Training-Institute.json index da4e71b8a..d36854941 100644 --- a/resources/africa/zambia/ym-St.-Mawaggali-Trades-Training-Institute.json +++ b/resources/africa/zambia/ym-St.-Mawaggali-Trades-Training-Institute.json @@ -1,7 +1,7 @@ { "id": "ym-St.-Mawaggali-Trades-Training-Institute", "type": "youthmappers", - "includeLocations": ["st.-mawaggali-trades-training-institute.geojson"], + "includeLocations": [[26.967102500000003, -16.814845]], "countryCodes": ["zm"], "name": "MawaggaliMappers", "description": "YouthMappers chapter at St. Mawaggali Trades Training Institute", diff --git a/resources/africa/zambia/ym-The-University-of-Zambia.json b/resources/africa/zambia/ym-The-University-of-Zambia.json index 81d2cb85f..72a93161f 100644 --- a/resources/africa/zambia/ym-The-University-of-Zambia.json +++ b/resources/africa/zambia/ym-The-University-of-Zambia.json @@ -1,7 +1,7 @@ { "id": "ym-The-University-of-Zambia", "type": "youthmappers", - "includeLocations": ["the-university-of-zambia.geojson"], + "includeLocations": [[28.33027125, -15.39189]], "countryCodes": ["zm"], "name": "YouthMappers Unza", "description": "YouthMappers chapter at The University of Zambia", diff --git a/resources/africa/zimbabwe/ym-University-of-Zimbabwe.json b/resources/africa/zimbabwe/ym-University-of-Zimbabwe.json index b0d6b0e27..bf62c4076 100644 --- a/resources/africa/zimbabwe/ym-University-of-Zimbabwe.json +++ b/resources/africa/zimbabwe/ym-University-of-Zimbabwe.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Zimbabwe", "type": "youthmappers", - "includeLocations": ["university-of-zimbabwe.geojson"], + "includeLocations": [[31.05465875, -17.784670000000002]], "countryCodes": ["zw"], "name": "UZMappers", "description": "YouthMappers chapter at University of Zimbabwe", diff --git a/resources/asia/bangladesh/ym-Asian-University-for-Women.json b/resources/asia/bangladesh/ym-Asian-University-for-Women.json index 69806809d..7a15fa02c 100644 --- a/resources/asia/bangladesh/ym-Asian-University-for-Women.json +++ b/resources/asia/bangladesh/ym-Asian-University-for-Women.json @@ -1,7 +1,7 @@ { "id": "ym-Asian-University-for-Women", "type": "youthmappers", - "includeLocations": ["asian-university-for-women.geojson"], + "includeLocations": [[91.8457025, 22.34998375]], "countryCodes": ["bd"], "name": "YouthMappers at AUW", "description": "YouthMappers chapter at Asian University for Women", diff --git a/resources/asia/bangladesh/ym-Dhaka-College.json b/resources/asia/bangladesh/ym-Dhaka-College.json index 23a468e0e..00988b7d9 100644 --- a/resources/asia/bangladesh/ym-Dhaka-College.json +++ b/resources/asia/bangladesh/ym-Dhaka-College.json @@ -1,7 +1,7 @@ { "id": "ym-Dhaka-College", "type": "youthmappers", - "includeLocations": ["dhaka-college.geojson"], + "includeLocations": [[90.35156125, 23.724915000000003]], "countryCodes": ["bd"], "name": "YouthMappers Daka College", "description": "YouthMappers chapter at Dhaka College", diff --git a/resources/asia/bangladesh/ym-Dhaka-University.json b/resources/asia/bangladesh/ym-Dhaka-University.json index 2cad5eb53..68b36736d 100644 --- a/resources/asia/bangladesh/ym-Dhaka-University.json +++ b/resources/asia/bangladesh/ym-Dhaka-University.json @@ -1,7 +1,7 @@ { "id": "ym-Dhaka-University", "type": "youthmappers", - "includeLocations": ["dhaka-university.geojson"], + "includeLocations": [[90.35156125, 23.724915000000003]], "countryCodes": ["bd"], "name": "Openstreetmap YouthMappers", "description": "YouthMappers chapter at Dhaka University", diff --git a/resources/asia/bangladesh/ym-Eastern-University.json b/resources/asia/bangladesh/ym-Eastern-University.json index 09f15b6f2..87bb840b7 100644 --- a/resources/asia/bangladesh/ym-Eastern-University.json +++ b/resources/asia/bangladesh/ym-Eastern-University.json @@ -1,7 +1,7 @@ { "id": "ym-Eastern-University", "type": "youthmappers", - "includeLocations": ["eastern-university.geojson"], + "includeLocations": [[90.38062625, 23.74235875]], "countryCodes": ["bd"], "name": "YouthMappers at Eastern University", "description": "YouthMappers chapter at Eastern University", diff --git a/resources/asia/bangladesh/ym-Jahangirnagar-University.json b/resources/asia/bangladesh/ym-Jahangirnagar-University.json index 761d0ec2e..ece0b08f7 100644 --- a/resources/asia/bangladesh/ym-Jahangirnagar-University.json +++ b/resources/asia/bangladesh/ym-Jahangirnagar-University.json @@ -1,7 +1,7 @@ { "id": "ym-Jahangirnagar-University", "type": "youthmappers", - "includeLocations": ["jahangirnagar-university.geojson"], + "includeLocations": [[90.26752875, 23.88221875]], "countryCodes": ["bd"], "name": "YouthMappers at IRS, Jahangirnagar University", "description": "YouthMappers chapter at Jahangirnagar University", diff --git a/resources/asia/bangladesh/ym-Khulna-University.json b/resources/asia/bangladesh/ym-Khulna-University.json index c82d031dc..8e6080049 100644 --- a/resources/asia/bangladesh/ym-Khulna-University.json +++ b/resources/asia/bangladesh/ym-Khulna-University.json @@ -1,7 +1,7 @@ { "id": "ym-Khulna-University", "type": "youthmappers", - "includeLocations": ["khulna-university.geojson"], + "includeLocations": [[89.56054875000002, 22.83685125]], "countryCodes": ["bd"], "name": "Khulna University YouthMappers", "description": "YouthMappers chapter at Khulna University", diff --git a/resources/asia/bangladesh/ym-Rajshahi-University-of-Engineering-Technology.json b/resources/asia/bangladesh/ym-Rajshahi-University-of-Engineering-Technology.json index 602eb20d0..f5250f2eb 100644 --- a/resources/asia/bangladesh/ym-Rajshahi-University-of-Engineering-Technology.json +++ b/resources/asia/bangladesh/ym-Rajshahi-University-of-Engineering-Technology.json @@ -1,7 +1,7 @@ { "id": "ym-Rajshahi-University-of-Engineering-Technology", "type": "youthmappers", - "includeLocations": ["rajshahi-university-of-engineering-technology.geojson"], + "includeLocations": [[88.6283875, 24.36373]], "countryCodes": ["bd"], "name": "YouthMappers at RUET", "description": "YouthMappers chapter at Rajshahi University of Engineering & Technology", diff --git a/resources/asia/bhutan/ym-Sherubtse-College.json b/resources/asia/bhutan/ym-Sherubtse-College.json index b11849746..5b1fce88a 100644 --- a/resources/asia/bhutan/ym-Sherubtse-College.json +++ b/resources/asia/bhutan/ym-Sherubtse-College.json @@ -1,7 +1,7 @@ { "id": "ym-Sherubtse-College", "type": "youthmappers", - "includeLocations": ["sherubtse-college.geojson"], + "includeLocations": [[91.52369124999998, 27.286601250000004]], "countryCodes": ["bt"], "name": "Geographical Society", "description": "YouthMappers chapter at Sherubtse College", diff --git a/resources/asia/india/ym-Gujarat-University.json b/resources/asia/india/ym-Gujarat-University.json index 581af7877..5321f5a20 100644 --- a/resources/asia/india/ym-Gujarat-University.json +++ b/resources/asia/india/ym-Gujarat-University.json @@ -1,7 +1,7 @@ { "id": "ym-Gujarat-University", "type": "youthmappers", - "includeLocations": ["gujarat-university.geojson"], + "includeLocations": [[72.50976625, 22.9987575]], "countryCodes": ["in"], "name": "CCIM at Ahmedabad", "description": "YouthMappers chapter at Gujarat University", diff --git a/resources/asia/indonesia/ym-Universitas-Negeri-Makassar.json b/resources/asia/indonesia/ym-Universitas-Negeri-Makassar.json index 5e2988bac..a3c4192e6 100644 --- a/resources/asia/indonesia/ym-Universitas-Negeri-Makassar.json +++ b/resources/asia/indonesia/ym-Universitas-Negeri-Makassar.json @@ -1,7 +1,7 @@ { "id": "ym-Universitas-Negeri-Makassar", "type": "youthmappers", - "includeLocations": ["universitas-negeri-makassar.geojson"], + "includeLocations": [[119.4292025, -5.18612875]], "countryCodes": ["in"], "name": "Kontur Geografi", "description": "YouthMappers chapter at Universitas Negeri Makassar", diff --git a/resources/asia/indonesia/ym-University-Muhammadiyah-Surakarta.json b/resources/asia/indonesia/ym-University-Muhammadiyah-Surakarta.json index c1336cab9..24b9a66ba 100644 --- a/resources/asia/indonesia/ym-University-Muhammadiyah-Surakarta.json +++ b/resources/asia/indonesia/ym-University-Muhammadiyah-Surakarta.json @@ -1,7 +1,7 @@ { "id": "ym-University-Muhammadiyah-Surakarta", "type": "youthmappers", - "includeLocations": ["university-muhammadiyah-surakarta.geojson"], + "includeLocations": [[110.76898625, -7.557580000000001]], "countryCodes": ["in"], "name": "SpaceTime", "description": "YouthMappers chapter at University Muhammadiyah Surakarta", diff --git a/resources/asia/nepal/ym-Institute-of-Crisis-Management-Studies.json b/resources/asia/nepal/ym-Institute-of-Crisis-Management-Studies.json index 49b45fd36..d66a2f657 100644 --- a/resources/asia/nepal/ym-Institute-of-Crisis-Management-Studies.json +++ b/resources/asia/nepal/ym-Institute-of-Crisis-Management-Studies.json @@ -1,7 +1,7 @@ { "id": "ym-Institute-of-Crisis-Management-Studies", "type": "youthmappers", - "includeLocations": ["institute-of-crisis-management-studies.geojson"], + "includeLocations": [[85.34173125, 27.727588750000002]], "countryCodes": ["np"], "name": "Institute of Crisis Management Studies YouthMappers", "description": "YouthMappers chapter at Institute of Crisis Management Studies", diff --git a/resources/asia/nepal/ym-Kathmandu-University.json b/resources/asia/nepal/ym-Kathmandu-University.json index df323fc42..ecf4b0c35 100644 --- a/resources/asia/nepal/ym-Kathmandu-University.json +++ b/resources/asia/nepal/ym-Kathmandu-University.json @@ -1,7 +1,7 @@ { "id": "ym-Kathmandu-University", "type": "youthmappers", - "includeLocations": ["kathmandu-university.geojson"], + "includeLocations": [[85.53873, 27.620247499999998]], "countryCodes": ["np"], "name": "Geomatics Engineering Society,GES", "description": "YouthMappers chapter at Kathmandu University", diff --git a/resources/asia/nepal/ym-Tribhuvan-University.json b/resources/asia/nepal/ym-Tribhuvan-University.json index 29c9b9fa2..b2f57e741 100644 --- a/resources/asia/nepal/ym-Tribhuvan-University.json +++ b/resources/asia/nepal/ym-Tribhuvan-University.json @@ -1,7 +1,7 @@ { "id": "ym-Tribhuvan-University", "type": "youthmappers", - "includeLocations": ["tribhuvan-university.geojson"], + "includeLocations": [[83.9764525, 28.253795]], "countryCodes": ["np"], "name": "Geomatics Engineering Students Association", "description": "YouthMappers chapter at Tribhuvan University", diff --git a/resources/europe/germany/ym-Heidelberg-University.json b/resources/europe/germany/ym-Heidelberg-University.json index d51e9891d..72289e1ce 100644 --- a/resources/europe/germany/ym-Heidelberg-University.json +++ b/resources/europe/germany/ym-Heidelberg-University.json @@ -1,7 +1,7 @@ { "id": "ym-Heidelberg-University", "type": "youthmappers", - "includeLocations": ["heidelberg-university.geojson"], + "includeLocations": [[8.67038625, 49.41881750000001]], "countryCodes": ["de"], "name": "disastermappers heidelberg", "description": "YouthMappers chapter at Heidelberg University", diff --git a/resources/europe/italy/ym-Politecnico-di-Milano.json b/resources/europe/italy/ym-Politecnico-di-Milano.json index 859edd524..0e2d798e1 100644 --- a/resources/europe/italy/ym-Politecnico-di-Milano.json +++ b/resources/europe/italy/ym-Politecnico-di-Milano.json @@ -1,7 +1,7 @@ { "id": "ym-Politecnico-di-Milano", "type": "youthmappers", - "includeLocations": ["politecnico-di-milano.geojson"], + "includeLocations": [[9.22851625, 45.4599075]], "countryCodes": ["it"], "name": "PoliMappers", "description": "YouthMappers chapter at Politecnico di Milano", diff --git a/resources/europe/morocco/ym-Universit-Mohammed-V-Rabat.json b/resources/europe/morocco/ym-Universit-Mohammed-V-Rabat.json index 7bcccfa87..8d5dd6ccd 100644 --- a/resources/europe/morocco/ym-Universit-Mohammed-V-Rabat.json +++ b/resources/europe/morocco/ym-Universit-Mohammed-V-Rabat.json @@ -1,7 +1,7 @@ { "id": "ym-Universit-Mohammed-V-Rabat", "type": "youthmappers", - "includeLocations": ["universit-mohammed-v-rabat.geojson"], + "includeLocations": [[-6.8439525, 33.99862]], "countryCodes": ["ma"], "name": "Brahmapoutre at Rabat", "description": "YouthMappers chapter at Université Mohammed V Rabat", diff --git a/resources/europe/spain/ym-Universidad-Autonoma-de-Madrid.json b/resources/europe/spain/ym-Universidad-Autonoma-de-Madrid.json index dc49998c6..46d3d338f 100644 --- a/resources/europe/spain/ym-Universidad-Autonoma-de-Madrid.json +++ b/resources/europe/spain/ym-Universidad-Autonoma-de-Madrid.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-Autonoma-de-Madrid", "type": "youthmappers", - "includeLocations": ["universidad-autonoma-de-madrid.geojson"], + "includeLocations": [[-3.69437125, 40.54647]], "countryCodes": ["es"], "name": "YouthMappers at UAM", "description": "YouthMappers chapter at Universidad Autonoma de Madrid", diff --git a/resources/europe/spain/ym-Universidad-Politcnica-de-Madrid.json b/resources/europe/spain/ym-Universidad-Politcnica-de-Madrid.json index 10f3aa873..fc7cb5902 100644 --- a/resources/europe/spain/ym-Universidad-Politcnica-de-Madrid.json +++ b/resources/europe/spain/ym-Universidad-Politcnica-de-Madrid.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-Politcnica-de-Madrid", "type": "youthmappers", - "includeLocations": ["universidad-politcnica-de-madrid.geojson"], + "includeLocations": [[-3.7173012500000002, 40.4478225]], "countryCodes": ["es"], "name": "Mapeo Humanitario", "description": "YouthMappers chapter at Universidad Politécnica de Madrid", diff --git a/resources/europe/turkey/ym-Istanbul-Technical-University.json b/resources/europe/turkey/ym-Istanbul-Technical-University.json index 95c94b1a5..031346450 100644 --- a/resources/europe/turkey/ym-Istanbul-Technical-University.json +++ b/resources/europe/turkey/ym-Istanbul-Technical-University.json @@ -1,7 +1,7 @@ { "id": "ym-Istanbul-Technical-University", "type": "youthmappers", - "includeLocations": ["istanbul-technical-university.geojson"], + "includeLocations": [[29.02465375, 41.10542]], "countryCodes": ["tr"], "name": "YouthMappers ITU", "description": "YouthMappers chapter at Istanbul Technical University", diff --git a/resources/europe/united_kingdom/ym-Queen-Mary-University-of-London.json b/resources/europe/united_kingdom/ym-Queen-Mary-University-of-London.json index df44bcdd9..a5310bd71 100644 --- a/resources/europe/united_kingdom/ym-Queen-Mary-University-of-London.json +++ b/resources/europe/united_kingdom/ym-Queen-Mary-University-of-London.json @@ -1,7 +1,7 @@ { "id": "ym-Queen-Mary-University-of-London", "type": "youthmappers", - "includeLocations": ["queen-mary-university-of-london.geojson"], + "includeLocations": [[-0.0404925, 51.52381875]], "countryCodes": ["uk"], "name": "Queen Mary YouthMappers", "description": "YouthMappers chapter at Queen Mary University of London", diff --git a/resources/europe/united_kingdom/ym-University-of-Exeter.json b/resources/europe/united_kingdom/ym-University-of-Exeter.json index ce6ad291d..8aa018d65 100644 --- a/resources/europe/united_kingdom/ym-University-of-Exeter.json +++ b/resources/europe/united_kingdom/ym-University-of-Exeter.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Exeter", "type": "youthmappers", - "includeLocations": ["university-of-exeter.geojson"], + "includeLocations": [[-3.53515, 50.736638750000004]], "countryCodes": ["uk"], "name": "University of Exeter British Red Cross Missing Maps", "description": "YouthMappers chapter at University of Exeter", diff --git a/resources/europe/united_kingdom/ym-University-of-Warwick.json b/resources/europe/united_kingdom/ym-University-of-Warwick.json index 5bdde2449..5122f66f8 100644 --- a/resources/europe/united_kingdom/ym-University-of-Warwick.json +++ b/resources/europe/united_kingdom/ym-University-of-Warwick.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Warwick", "type": "youthmappers", - "includeLocations": ["university-of-warwick.geojson"], + "includeLocations": [[-1.5611912499999998, 52.37905250000001]], "countryCodes": ["uk"], "name": "University of Warwick Resilience Mapping Society", "description": "YouthMappers chapter at University of Warwick", diff --git a/resources/middle-east/jordan/ym-Yarmouk-University.json b/resources/middle-east/jordan/ym-Yarmouk-University.json index 47370cca5..b84cba8f6 100644 --- a/resources/middle-east/jordan/ym-Yarmouk-University.json +++ b/resources/middle-east/jordan/ym-Yarmouk-University.json @@ -1,7 +1,7 @@ { "id": "ym-Yarmouk-University", "type": "youthmappers", - "includeLocations": ["yarmouk-university.geojson"], + "includeLocations": [[35.858112500000004, 32.536519999999996]], "countryCodes": ["jo"], "name": "YouthMappers at YU", "description": "YouthMappers chapter at Yarmouk University", diff --git a/resources/north-america/belize/ym-Sacred-Heart-Junior-College.json b/resources/north-america/belize/ym-Sacred-Heart-Junior-College.json index 22e39e183..60687424d 100644 --- a/resources/north-america/belize/ym-Sacred-Heart-Junior-College.json +++ b/resources/north-america/belize/ym-Sacred-Heart-Junior-College.json @@ -1,7 +1,7 @@ { "id": "ym-Sacred-Heart-Junior-College", "type": "youthmappers", - "includeLocations": ["sacred-heart-junior-college.geojson"], + "includeLocations": [[-89.07411, 17.161]], "countryCodes": ["bz"], "name": "Youth Mappers at Sacred Heart Junior College", "description": "YouthMappers chapter at Sacred Heart Junior College", diff --git a/resources/north-america/costa_rica/ym-Universidad-de-Costa-Rica.json b/resources/north-america/costa_rica/ym-Universidad-de-Costa-Rica.json index 83d177b4b..14e2ea59b 100644 --- a/resources/north-america/costa_rica/ym-Universidad-de-Costa-Rica.json +++ b/resources/north-america/costa_rica/ym-Universidad-de-Costa-Rica.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-de-Costa-Rica", "type": "youthmappers", - "includeLocations": ["universidad-de-costa-rica.geojson"], + "includeLocations": [[-84.05105000000002, 9.93721]], "countryCodes": ["cr"], "name": "YouthMappers de Universidad de Costa Rica", "description": "YouthMappers chapter at Universidad de Costa Rica", diff --git a/resources/north-america/honduras/ym-Universidad-Nacional-Autnoma-de-Honduras.json b/resources/north-america/honduras/ym-Universidad-Nacional-Autnoma-de-Honduras.json index 334d73fb9..5cb5a3cc2 100644 --- a/resources/north-america/honduras/ym-Universidad-Nacional-Autnoma-de-Honduras.json +++ b/resources/north-america/honduras/ym-Universidad-Nacional-Autnoma-de-Honduras.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-Nacional-Autnoma-de-Honduras", "type": "youthmappers", - "includeLocations": ["universidad-nacional-autnoma-de-honduras.geojson"], + "includeLocations": [[-87.16598, 14.085052499999998]], "countryCodes": ["hn"], "name": "PumaGis Hn", "description": "YouthMappers chapter at Universidad Nacional Autónoma de Honduras", diff --git a/resources/north-america/jamaica/ym-University-of-the-West-Indies-Mona-Campus.json b/resources/north-america/jamaica/ym-University-of-the-West-Indies-Mona-Campus.json index 12e166265..2b29f718d 100644 --- a/resources/north-america/jamaica/ym-University-of-the-West-Indies-Mona-Campus.json +++ b/resources/north-america/jamaica/ym-University-of-the-West-Indies-Mona-Campus.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-the-West-Indies-Mona-Campus", "type": "youthmappers", - "includeLocations": ["university-of-the-west-indies-mona-campus.geojson"], + "includeLocations": [[-76.74601, 18.00629125]], "countryCodes": ["jm"], "name": "Libraries Outreach - ODL", "description": "YouthMappers chapter at University of the West Indies, Mona Campus", diff --git a/resources/north-america/nicaragua/ym-Universidad-Nacional-de-Ingenieria.json b/resources/north-america/nicaragua/ym-Universidad-Nacional-de-Ingenieria.json index 274734a34..8cf98f796 100644 --- a/resources/north-america/nicaragua/ym-Universidad-Nacional-de-Ingenieria.json +++ b/resources/north-america/nicaragua/ym-Universidad-Nacional-de-Ingenieria.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-Nacional-de-Ingenieria", "type": "youthmappers", - "includeLocations": ["universidad-nacional-de-ingenieria.geojson"], + "includeLocations": [[-86.27050625000001, 12.1316025]], "countryCodes": ["ni"], "name": "Yeka Street MGA", "description": "YouthMappers chapter at Universidad Nacional de Ingenieria", diff --git a/resources/north-america/panama/ym-University-of-Panama.json b/resources/north-america/panama/ym-University-of-Panama.json index 5656638e8..59b316ebc 100644 --- a/resources/north-america/panama/ym-University-of-Panama.json +++ b/resources/north-america/panama/ym-University-of-Panama.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Panama", "type": "youthmappers", - "includeLocations": ["university-of-panama.geojson"], + "includeLocations": [[-79.54101625, 9.0152675]], "countryCodes": ["pa"], "name": "YouthMappers UP", "description": "YouthMappers chapter at University of Panama", diff --git a/resources/north-america/puerto_rico/ym-Universidad-de-Puerto-Rico-Rio-Piedras.json b/resources/north-america/puerto_rico/ym-Universidad-de-Puerto-Rico-Rio-Piedras.json index 2d3369270..46de87e24 100644 --- a/resources/north-america/puerto_rico/ym-Universidad-de-Puerto-Rico-Rio-Piedras.json +++ b/resources/north-america/puerto_rico/ym-Universidad-de-Puerto-Rico-Rio-Piedras.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-de-Puerto-Rico-Rio-Piedras", "type": "youthmappers", - "includeLocations": ["universidad-de-puerto-rico-rio-piedras.geojson"], + "includeLocations": [[-66.04978375, 18.4027675]], "countryCodes": ["pa"], "name": "UPR YouthMappers", "description": "YouthMappers chapter at Universidad de Puerto Rico - Rio Piedras", diff --git a/resources/north-america/united_states/ym-Ball-State-University.json b/resources/north-america/united_states/ym-Ball-State-University.json index b636ab147..94f7b67bd 100644 --- a/resources/north-america/united_states/ym-Ball-State-University.json +++ b/resources/north-america/united_states/ym-Ball-State-University.json @@ -1,7 +1,7 @@ { "id": "ym-Ball-State-University", "type": "youthmappers", - "includeLocations": ["ball-state-university.geojson"], + "includeLocations": [[-85.40688125000001, 40.2058775]], "countryCodes": ["us"], "name": "Gamma Theta Upsilon- Iota Omega Chapter", "description": "YouthMappers chapter at Ball State University", diff --git a/resources/north-america/united_states/ym-California-University-of-Pennsylvania.json b/resources/north-america/united_states/ym-California-University-of-Pennsylvania.json index 3517cd60a..a6b4f1d77 100644 --- a/resources/north-america/united_states/ym-California-University-of-Pennsylvania.json +++ b/resources/north-america/united_states/ym-California-University-of-Pennsylvania.json @@ -1,7 +1,7 @@ { "id": "ym-California-University-of-Pennsylvania", "type": "youthmappers", - "includeLocations": ["california-university-of-pennsylvania.geojson"], + "includeLocations": [[-79.8925775, 40.0442525]], "countryCodes": ["us"], "name": "CalU PA GIS Club", "description": "YouthMappers chapter at California University of Pennsylvania", diff --git a/resources/north-america/united_states/ym-Central-Washington-University.json b/resources/north-america/united_states/ym-Central-Washington-University.json index fc70d3dbc..2d1f585b2 100644 --- a/resources/north-america/united_states/ym-Central-Washington-University.json +++ b/resources/north-america/united_states/ym-Central-Washington-University.json @@ -1,7 +1,7 @@ { "id": "ym-Central-Washington-University", "type": "youthmappers", - "includeLocations": ["central-washington-university.geojson"], + "includeLocations": [[-120.49804875000001, 46.9800175]], "countryCodes": ["us"], "name": "Geography Club", "description": "YouthMappers chapter at Central Washington University", diff --git a/resources/north-america/united_states/ym-Clemson-University.json b/resources/north-america/united_states/ym-Clemson-University.json index ebf503fe9..1cde9e150 100644 --- a/resources/north-america/united_states/ym-Clemson-University.json +++ b/resources/north-america/united_states/ym-Clemson-University.json @@ -1,7 +1,7 @@ { "id": "ym-Clemson-University", "type": "youthmappers", - "includeLocations": ["clemson-university.geojson"], + "includeLocations": [[-82.79296749999999, 34.6692075]], "countryCodes": ["us"], "name": "Clemson Mappers", "description": "YouthMappers chapter at Clemson University", diff --git a/resources/north-america/united_states/ym-College-of-William-and-Mary.json b/resources/north-america/united_states/ym-College-of-William-and-Mary.json index fc4e75e3a..633cc9786 100644 --- a/resources/north-america/united_states/ym-College-of-William-and-Mary.json +++ b/resources/north-america/united_states/ym-College-of-William-and-Mary.json @@ -1,7 +1,7 @@ { "id": "ym-College-of-William-and-Mary", "type": "youthmappers", - "includeLocations": ["college-of-william-and-mary.geojson"], + "includeLocations": [[-76.72851625000001, 37.30010875000001]], "countryCodes": ["us"], "name": "All over the map!", "description": "YouthMappers chapter at College of William and Mary", diff --git a/resources/north-america/united_states/ym-Cornell-University.json b/resources/north-america/united_states/ym-Cornell-University.json index 1f00fde0a..392eff837 100644 --- a/resources/north-america/united_states/ym-Cornell-University.json +++ b/resources/north-america/united_states/ym-Cornell-University.json @@ -1,7 +1,7 @@ { "id": "ym-Cornell-University", "type": "youthmappers", - "includeLocations": ["cornell-university.geojson"], + "includeLocations": [[-76.4735, 42.4532]], "countryCodes": ["us"], "name": "Mapping Society", "description": "YouthMappers chapter at Cornell University", diff --git a/resources/north-america/united_states/ym-George-Mason-University.json b/resources/north-america/united_states/ym-George-Mason-University.json index b152678e3..575ce3297 100644 --- a/resources/north-america/united_states/ym-George-Mason-University.json +++ b/resources/north-america/united_states/ym-George-Mason-University.json @@ -1,7 +1,7 @@ { "id": "ym-George-Mason-University", "type": "youthmappers", - "includeLocations": ["george-mason-university.geojson"], + "includeLocations": [[-77.34375000000001, 38.8224125]], "countryCodes": ["us"], "name": "Mason Mappers", "description": "YouthMappers chapter at George Mason University", diff --git a/resources/north-america/united_states/ym-Indiana-University-of-Pennsylvania.json b/resources/north-america/united_states/ym-Indiana-University-of-Pennsylvania.json index cb54342d9..9f81856a9 100644 --- a/resources/north-america/united_states/ym-Indiana-University-of-Pennsylvania.json +++ b/resources/north-america/united_states/ym-Indiana-University-of-Pennsylvania.json @@ -1,7 +1,7 @@ { "id": "ym-Indiana-University-of-Pennsylvania", "type": "youthmappers", - "includeLocations": ["indiana-university-of-pennsylvania.geojson"], + "includeLocations": [[-79.16139125, 40.613952499999996]], "countryCodes": ["us"], "name": "Geospatial Science Club", "description": "YouthMappers chapter at Indiana University of Pennsylvania", diff --git a/resources/north-america/united_states/ym-Jacksonville-State-University.json b/resources/north-america/united_states/ym-Jacksonville-State-University.json index 61b5db2fe..f1107a1ed 100644 --- a/resources/north-america/united_states/ym-Jacksonville-State-University.json +++ b/resources/north-america/united_states/ym-Jacksonville-State-University.json @@ -1,7 +1,7 @@ { "id": "ym-Jacksonville-State-University", "type": "youthmappers", - "includeLocations": ["jacksonville-state-university.geojson"], + "includeLocations": [[-85.76794749999999, 33.822829999999996]], "countryCodes": ["us"], "name": "JSU Disaster Mapping Team", "description": "YouthMappers chapter at Jacksonville State University", diff --git a/resources/north-america/united_states/ym-Kansas-State-University.json b/resources/north-america/united_states/ym-Kansas-State-University.json index d41856a04..b8fbe0d29 100644 --- a/resources/north-america/united_states/ym-Kansas-State-University.json +++ b/resources/north-america/united_states/ym-Kansas-State-University.json @@ -1,7 +1,7 @@ { "id": "ym-Kansas-State-University", "type": "youthmappers", - "includeLocations": ["kansas-state-university.geojson"], + "includeLocations": [[-96.59179875000001, 39.16396]], "countryCodes": ["us"], "name": "Gamma Theta Upsilon: Beta Psi Chapter", "description": "YouthMappers chapter at Kansas State University", diff --git a/resources/north-america/united_states/ym-McGill-University.json b/resources/north-america/united_states/ym-McGill-University.json index 9ed2ab638..f64edccb8 100644 --- a/resources/north-america/united_states/ym-McGill-University.json +++ b/resources/north-america/united_states/ym-McGill-University.json @@ -1,7 +1,7 @@ { "id": "ym-McGill-University", "type": "youthmappers", - "includeLocations": ["mcgill-university.geojson"], + "includeLocations": [[-73.5786975, 45.5060775]], "countryCodes": ["ca"], "name": "Open Mapping Group McGill: A Member of the McGill Undergraduate Geography Society", "description": "YouthMappers chapter at McGill University", diff --git a/resources/north-america/united_states/ym-Miami-University.json b/resources/north-america/united_states/ym-Miami-University.json index 3ce7850c3..fc8089657 100644 --- a/resources/north-america/united_states/ym-Miami-University.json +++ b/resources/north-america/united_states/ym-Miami-University.json @@ -1,7 +1,7 @@ { "id": "ym-Miami-University", "type": "youthmappers", - "includeLocations": ["miami-university.geojson"], + "includeLocations": [[-84.73174, 39.5109]], "countryCodes": ["us"], "name": "Geography and Planning Society", "description": "YouthMappers chapter at Miami University", diff --git a/resources/north-america/united_states/ym-Monroe-Community-College.json b/resources/north-america/united_states/ym-Monroe-Community-College.json index 78f819710..cc71c8d3d 100644 --- a/resources/north-america/united_states/ym-Monroe-Community-College.json +++ b/resources/north-america/united_states/ym-Monroe-Community-College.json @@ -1,7 +1,7 @@ { "id": "ym-Monroe-Community-College", "type": "youthmappers", - "includeLocations": ["monroe-community-college.geojson"], + "includeLocations": [[-77.61025, 43.1013825]], "countryCodes": ["us"], "name": "MCC Mapping Corps", "description": "YouthMappers chapter at Monroe Community College", diff --git a/resources/north-america/united_states/ym-Montgomery-College.json b/resources/north-america/united_states/ym-Montgomery-College.json index 652f19e46..a78e962af 100644 --- a/resources/north-america/united_states/ym-Montgomery-College.json +++ b/resources/north-america/united_states/ym-Montgomery-College.json @@ -1,7 +1,7 @@ { "id": "ym-Montgomery-College", "type": "youthmappers", - "includeLocations": ["montgomery-college.geojson"], + "includeLocations": [[-77.15782, 39.09718]], "countryCodes": ["us"], "name": "GeoMC", "description": "YouthMappers chapter at Montgomery College", diff --git a/resources/north-america/united_states/ym-New-York-University.json b/resources/north-america/united_states/ym-New-York-University.json index 4b8809c5a..41aa86291 100644 --- a/resources/north-america/united_states/ym-New-York-University.json +++ b/resources/north-america/united_states/ym-New-York-University.json @@ -1,7 +1,7 @@ { "id": "ym-New-York-University", "type": "youthmappers", - "includeLocations": ["new-york-university.geojson"], + "includeLocations": [[-74.00390625, 40.71376875]], "countryCodes": ["us"], "name": "NYU mHealth Initiative Mapping Corps", "description": "YouthMappers chapter at New York University", diff --git a/resources/north-america/united_states/ym-Ohio-Wesleyan-University.json b/resources/north-america/united_states/ym-Ohio-Wesleyan-University.json index 87936850e..f21dfb6ea 100644 --- a/resources/north-america/united_states/ym-Ohio-Wesleyan-University.json +++ b/resources/north-america/united_states/ym-Ohio-Wesleyan-University.json @@ -1,7 +1,7 @@ { "id": "ym-Ohio-Wesleyan-University", "type": "youthmappers", - "includeLocations": ["ohio-wesleyan-university.geojson"], + "includeLocations": [[-83.06822874999999, 40.29605]], "countryCodes": ["us"], "name": "Environment and Wildlife Club", "description": "YouthMappers chapter at Ohio Wesleyan University", diff --git a/resources/north-america/united_states/ym-Oklahoma-State-University.json b/resources/north-america/united_states/ym-Oklahoma-State-University.json index d8699b114..a5c016779 100644 --- a/resources/north-america/united_states/ym-Oklahoma-State-University.json +++ b/resources/north-america/united_states/ym-Oklahoma-State-University.json @@ -1,7 +1,7 @@ { "id": "ym-Oklahoma-State-University", "type": "youthmappers", - "includeLocations": ["oklahoma-state-university.geojson"], + "includeLocations": [[-97.07253125, 36.12077125]], "countryCodes": ["us"], "name": "Geography Club", "description": "YouthMappers chapter at Oklahoma State University", diff --git a/resources/north-america/united_states/ym-SUNY-at-Fredonia.json b/resources/north-america/united_states/ym-SUNY-at-Fredonia.json index 4dadf0e32..3a2e0eb4a 100644 --- a/resources/north-america/united_states/ym-SUNY-at-Fredonia.json +++ b/resources/north-america/united_states/ym-SUNY-at-Fredonia.json @@ -1,7 +1,7 @@ { "id": "ym-SUNY-at-Fredonia", "type": "youthmappers", - "includeLocations": ["suny-at-fredonia.geojson"], + "includeLocations": [[-79.36523375, 42.423255]], "countryCodes": ["us"], "name": "Geoventurers", "description": "YouthMappers chapter at SUNY at Fredonia", diff --git a/resources/north-america/united_states/ym-State-University-of-New-York-Geneseo.json b/resources/north-america/united_states/ym-State-University-of-New-York-Geneseo.json index efacc0e99..8f83d0ba4 100644 --- a/resources/north-america/united_states/ym-State-University-of-New-York-Geneseo.json +++ b/resources/north-america/united_states/ym-State-University-of-New-York-Geneseo.json @@ -1,7 +1,7 @@ { "id": "ym-State-University-of-New-York-Geneseo", "type": "youthmappers", - "includeLocations": ["state-university-of-new-york-geneseo.geojson"], + "includeLocations": [[-77.78320375, 42.8113175]], "countryCodes": ["us"], "name": "SUNY Geneseo GIS Association", "description": "YouthMappers chapter at State University of New York Geneseo", diff --git a/resources/north-america/united_states/ym-Texas-Tech-University.json b/resources/north-america/united_states/ym-Texas-Tech-University.json index 70538f19d..3f3a1d16c 100644 --- a/resources/north-america/united_states/ym-Texas-Tech-University.json +++ b/resources/north-america/united_states/ym-Texas-Tech-University.json @@ -1,7 +1,7 @@ { "id": "ym-Texas-Tech-University", "type": "youthmappers", - "includeLocations": ["texas-tech-university.geojson"], + "includeLocations": [[-101.86523375, 33.57786875]], "countryCodes": ["us"], "name": "YouthMappers at TTU", "description": "YouthMappers chapter at Texas Tech University", diff --git a/resources/north-america/united_states/ym-The-Citadel.json b/resources/north-america/united_states/ym-The-Citadel.json index b31e5a22a..3c54b772c 100644 --- a/resources/north-america/united_states/ym-The-Citadel.json +++ b/resources/north-america/united_states/ym-The-Citadel.json @@ -1,7 +1,7 @@ { "id": "ym-The-Citadel", "type": "youthmappers", - "includeLocations": ["the-citadel.geojson"], + "includeLocations": [[-79.96063625000001, 32.79693]], "countryCodes": ["us"], "name": "YouthMappers at The Citadel", "description": "YouthMappers chapter at The Citadel", diff --git a/resources/north-america/united_states/ym-The-George-Washington-University.json b/resources/north-america/united_states/ym-The-George-Washington-University.json index cc3f006a4..b0338ad36 100644 --- a/resources/north-america/united_states/ym-The-George-Washington-University.json +++ b/resources/north-america/united_states/ym-The-George-Washington-University.json @@ -1,7 +1,7 @@ { "id": "ym-The-George-Washington-University", "type": "youthmappers", - "includeLocations": ["the-george-washington-university.geojson"], + "includeLocations": [[-77.04812249999999, 38.89966]], "countryCodes": ["us"], "name": "Humanitarian Mapping Society", "description": "YouthMappers chapter at The George Washington University", diff --git a/resources/north-america/united_states/ym-The-Johns-Hopkins-University-SAIS.json b/resources/north-america/united_states/ym-The-Johns-Hopkins-University-SAIS.json index 4b6f373d2..6801a0cbd 100644 --- a/resources/north-america/united_states/ym-The-Johns-Hopkins-University-SAIS.json +++ b/resources/north-america/united_states/ym-The-Johns-Hopkins-University-SAIS.json @@ -1,7 +1,7 @@ { "id": "ym-The-Johns-Hopkins-University-SAIS", "type": "youthmappers", - "includeLocations": ["the-johns-hopkins-university-sais.geojson"], + "includeLocations": [[-77.04027125000002, 38.907965000000004]], "countryCodes": ["us"], "name": "SAIS YouthMappers", "description": "YouthMappers chapter at The Johns Hopkins University, SAIS", diff --git a/resources/north-america/united_states/ym-The-Pennsylvania-State-University.json b/resources/north-america/united_states/ym-The-Pennsylvania-State-University.json index e7cca1f1f..44bdd2914 100644 --- a/resources/north-america/united_states/ym-The-Pennsylvania-State-University.json +++ b/resources/north-america/united_states/ym-The-Pennsylvania-State-University.json @@ -1,7 +1,7 @@ { "id": "ym-The-Pennsylvania-State-University", "type": "youthmappers", - "includeLocations": ["the-pennsylvania-state-university.geojson"], + "includeLocations": [[-77.85975875, 40.797999999999995]], "countryCodes": ["us"], "name": "Penn State GIS Coalition", "description": "YouthMappers chapter at The Pennsylvania State University", diff --git a/resources/north-america/united_states/ym-UW-Madison.json b/resources/north-america/united_states/ym-UW-Madison.json index 0a6934289..44b9ec1b7 100644 --- a/resources/north-america/united_states/ym-UW-Madison.json +++ b/resources/north-america/united_states/ym-UW-Madison.json @@ -1,7 +1,7 @@ { "id": "ym-UW-Madison", "type": "youthmappers", - "includeLocations": ["uw-madison.geojson"], + "includeLocations": [[-89.41268124999999, 43.07644875]], "countryCodes": ["us"], "name": "BadgerMaps", "description": "YouthMappers chapter at UW-Madison", diff --git a/resources/north-america/united_states/ym-University-of-California-Davis.json b/resources/north-america/united_states/ym-University-of-California-Davis.json index 8e4891468..0076b7c08 100644 --- a/resources/north-america/united_states/ym-University-of-California-Davis.json +++ b/resources/north-america/united_states/ym-University-of-California-Davis.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-California-Davis", "type": "youthmappers", - "includeLocations": ["university-of-california-davis.geojson"], + "includeLocations": [[-121.72851624999998, 38.547988749999995]], "countryCodes": ["us"], "name": "Mapping Club", "description": "YouthMappers chapter at University of California, Davis", diff --git a/resources/north-america/united_states/ym-University-of-Central-Florida.json b/resources/north-america/united_states/ym-University-of-Central-Florida.json index 87fecbe91..7c6f5704f 100644 --- a/resources/north-america/united_states/ym-University-of-Central-Florida.json +++ b/resources/north-america/united_states/ym-University-of-Central-Florida.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Central-Florida", "type": "youthmappers", - "includeLocations": ["university-of-central-florida.geojson"], + "includeLocations": [[-81.38672, 28.458909999999996]], "countryCodes": ["us"], "name": "Geospatial Information Society", "description": "YouthMappers chapter at University of Central Florida", diff --git a/resources/north-america/united_states/ym-University-of-Chicago.json b/resources/north-america/united_states/ym-University-of-Chicago.json index d6af7630b..9b9b4685d 100644 --- a/resources/north-america/united_states/ym-University-of-Chicago.json +++ b/resources/north-america/united_states/ym-University-of-Chicago.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Chicago", "type": "youthmappers", - "includeLocations": ["university-of-chicago.geojson"], + "includeLocations": [[-87.59878, 41.78872]], "countryCodes": ["us"], "name": "Tobler Society", "description": "YouthMappers chapter at University of Chicago", diff --git a/resources/north-america/united_states/ym-University-of-Maryland-College-Park.json b/resources/north-america/united_states/ym-University-of-Maryland-College-Park.json index 19eea7c40..fb251b4a1 100644 --- a/resources/north-america/united_states/ym-University-of-Maryland-College-Park.json +++ b/resources/north-america/united_states/ym-University-of-Maryland-College-Park.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Maryland-College-Park", "type": "youthmappers", - "includeLocations": ["university-of-maryland-college-park.geojson"], + "includeLocations": [[-76.9433175, 38.98672]], "countryCodes": ["us"], "name": "Geography Club", "description": "YouthMappers chapter at University of Maryland - College Park", diff --git a/resources/north-america/united_states/ym-University-of-North-Texas.json b/resources/north-america/united_states/ym-University-of-North-Texas.json index bfd9cf9d7..21fb07b59 100644 --- a/resources/north-america/united_states/ym-University-of-North-Texas.json +++ b/resources/north-america/united_states/ym-University-of-North-Texas.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-North-Texas", "type": "youthmappers", - "includeLocations": ["university-of-north-texas.geojson"], + "includeLocations": [[-97.15254625, 33.2073475]], "countryCodes": ["us"], "name": "UNT Geography Club", "description": "YouthMappers chapter at University of North Texas", diff --git a/resources/north-america/united_states/ym-University-of-Northern-Colorado.json b/resources/north-america/united_states/ym-University-of-Northern-Colorado.json index 97ad8b04a..4f7d7b392 100644 --- a/resources/north-america/united_states/ym-University-of-Northern-Colorado.json +++ b/resources/north-america/united_states/ym-University-of-Northern-Colorado.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Northern-Colorado", "type": "youthmappers", - "includeLocations": ["university-of-northern-colorado.geojson"], + "includeLocations": [[-104.69563, 40.4039525]], "countryCodes": ["us"], "name": "UNCO Geography and GIS Club", "description": "YouthMappers chapter at University of Northern Colorado", diff --git a/resources/north-america/united_states/ym-University-of-Oregon.json b/resources/north-america/united_states/ym-University-of-Oregon.json index e6b014ffb..1f0276148 100644 --- a/resources/north-america/united_states/ym-University-of-Oregon.json +++ b/resources/north-america/united_states/ym-University-of-Oregon.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Oregon", "type": "youthmappers", - "includeLocations": ["university-of-oregon.geojson"], + "includeLocations": [[-123.04687625000001, 44.024210000000004]], "countryCodes": ["us"], "name": "Map by Northwest", "description": "YouthMappers chapter at University of Oregon", diff --git a/resources/north-america/united_states/ym-University-of-Redlands.json b/resources/north-america/united_states/ym-University-of-Redlands.json index a2579aaf3..e0ba90559 100644 --- a/resources/north-america/united_states/ym-University-of-Redlands.json +++ b/resources/north-america/united_states/ym-University-of-Redlands.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Redlands", "type": "youthmappers", - "includeLocations": ["university-of-redlands.geojson"], + "includeLocations": [[-117.16339125, 34.0629525]], "countryCodes": ["us"], "name": "URSpatial Geo-Thinkers", "description": "YouthMappers chapter at University of Redlands", diff --git a/resources/north-america/united_states/ym-University-of-South-Carolina.json b/resources/north-america/united_states/ym-University-of-South-Carolina.json index edd216804..409608505 100644 --- a/resources/north-america/united_states/ym-University-of-South-Carolina.json +++ b/resources/north-america/united_states/ym-University-of-South-Carolina.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-South-Carolina", "type": "youthmappers", - "includeLocations": ["university-of-south-carolina.geojson"], + "includeLocations": [[-81.03515625, 34.01609]], "countryCodes": ["us"], "name": "Geography Graduate Student Association", "description": "YouthMappers chapter at University of South Carolina", diff --git a/resources/north-america/united_states/ym-University-of-Southern-California.json b/resources/north-america/united_states/ym-University-of-Southern-California.json index b0655673e..ce1fd64e3 100644 --- a/resources/north-america/united_states/ym-University-of-Southern-California.json +++ b/resources/north-america/united_states/ym-University-of-Southern-California.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Southern-California", "type": "youthmappers", - "includeLocations": ["university-of-southern-california.geojson"], + "includeLocations": [[-118.30078125, 34.01609]], "countryCodes": ["us"], "name": "SC Mappers", "description": "YouthMappers chapter at University of Southern California", diff --git a/resources/north-america/united_states/ym-University-of-Vermont.json b/resources/north-america/united_states/ym-University-of-Vermont.json index 6ff816422..e8c8bfa1e 100644 --- a/resources/north-america/united_states/ym-University-of-Vermont.json +++ b/resources/north-america/united_states/ym-University-of-Vermont.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Vermont", "type": "youthmappers", - "includeLocations": ["university-of-vermont.geojson"], + "includeLocations": [[-73.21289, 44.464935]], "countryCodes": ["us"], "name": "University of Vermont Humanitarian Mapping Club", "description": "YouthMappers chapter at University of Vermont", diff --git a/resources/north-america/united_states/ym-University-of-Victoria.json b/resources/north-america/united_states/ym-University-of-Victoria.json index cb9d2c035..847b4babc 100644 --- a/resources/north-america/united_states/ym-University-of-Victoria.json +++ b/resources/north-america/united_states/ym-University-of-Victoria.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Victoria", "type": "youthmappers", - "includeLocations": ["university-of-victoria.geojson"], + "includeLocations": [[-123.31185625, 48.4632125]], "name": "Society of Geography Students", "description": "YouthMappers chapter at University of Victoria", "extendedDescription": "SOGS seeks to promote and represent social and academic interests within the Department of Geography. This is expressed by four key goals: To provide a forum for the discussion of matters concerning the quality and accessibility of education within geography; to provide a means of expressing a consensus of student opinion to deparhnental faculty through representation at deparkrnental meetings and on departrnental committees; to undertake anangements for such activities as are for the benefit of students and are seen to be within the field of interest of students in geography; to act as a liaison through the UVSS and the Course Union Council with other student groups on campus", diff --git a/resources/north-america/united_states/ym-University-of-Wyoming.json b/resources/north-america/united_states/ym-University-of-Wyoming.json index adda3f0f6..d17b72bed 100644 --- a/resources/north-america/united_states/ym-University-of-Wyoming.json +++ b/resources/north-america/united_states/ym-University-of-Wyoming.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Wyoming", "type": "youthmappers", - "includeLocations": ["university-of-wyoming.geojson"], + "includeLocations": [[-105.56651, 41.314761250000004]], "countryCodes": ["us"], "name": "Gamma Theta Upsilon/Geography Club", "description": "YouthMappers chapter at University of Wyoming", diff --git a/resources/north-america/united_states/ym-Vassar-College.json b/resources/north-america/united_states/ym-Vassar-College.json index 3d82fcc0d..0a16db5bd 100644 --- a/resources/north-america/united_states/ym-Vassar-College.json +++ b/resources/north-america/united_states/ym-Vassar-College.json @@ -1,7 +1,7 @@ { "id": "ym-Vassar-College", "type": "youthmappers", - "includeLocations": ["vassar-college.geojson"], + "includeLocations": [[-73.89515000000002, 41.6865825]], "countryCodes": ["us"], "name": "Hudson Valley Mappers", "description": "YouthMappers chapter at Vassar College", diff --git a/resources/north-america/united_states/ym-Villanova-University.json b/resources/north-america/united_states/ym-Villanova-University.json index 0f7fc8ef7..ae7270ad7 100644 --- a/resources/north-america/united_states/ym-Villanova-University.json +++ b/resources/north-america/united_states/ym-Villanova-University.json @@ -1,7 +1,7 @@ { "id": "ym-Villanova-University", "type": "youthmappers", - "includeLocations": ["villanova-university.geojson"], + "includeLocations": [[-75.34360625000001, 40.0371425]], "countryCodes": ["us"], "name": "The Villanova Globeplotters", "description": "YouthMappers chapter at Villanova University", diff --git a/resources/north-america/united_states/ym-West-Virginia-University.json b/resources/north-america/united_states/ym-West-Virginia-University.json index cc2f87de3..29a3cc6b1 100644 --- a/resources/north-america/united_states/ym-West-Virginia-University.json +++ b/resources/north-america/united_states/ym-West-Virginia-University.json @@ -1,7 +1,7 @@ { "id": "ym-West-Virginia-University", "type": "youthmappers", - "includeLocations": ["west-virginia-university.geojson"], + "includeLocations": [[-79.98047, 39.639355]], "countryCodes": ["us"], "name": "Maptime Morgantown", "description": "YouthMappers chapter at West Virginia University", diff --git a/resources/north-america/united_states/ym-Western-Michigan-University.json b/resources/north-america/united_states/ym-Western-Michigan-University.json index 478b31aeb..f961aac43 100644 --- a/resources/north-america/united_states/ym-Western-Michigan-University.json +++ b/resources/north-america/united_states/ym-Western-Michigan-University.json @@ -1,7 +1,7 @@ { "id": "ym-Western-Michigan-University", "type": "youthmappers", - "includeLocations": ["western-michigan-university.geojson"], + "includeLocations": [[-85.61041999999999, 42.28342000000001]], "countryCodes": ["us"], "name": "Geography Club", "description": "YouthMappers chapter at Western Michigan University", diff --git a/resources/south-america/colombia/ym-Universidad-Distrital-Francisco-Jose-de-Caldas.json b/resources/south-america/colombia/ym-Universidad-Distrital-Francisco-Jose-de-Caldas.json index f4d4acdbc..cc05b0254 100644 --- a/resources/south-america/colombia/ym-Universidad-Distrital-Francisco-Jose-de-Caldas.json +++ b/resources/south-america/colombia/ym-Universidad-Distrital-Francisco-Jose-de-Caldas.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-Distrital-Francisco-Jose-de-Caldas", "type": "youthmappers", - "includeLocations": ["universidad-distrital-francisco-jose-de-caldas.geojson"], + "includeLocations": [[-74.09179875000001, 4.65306]], "countryCodes": ["co"], "name": "YouthMappers at Bogota", "description": "YouthMappers chapter at Universidad Distrital Francisco Jose de Caldas", diff --git a/resources/south-america/colombia/ym-Universidad-Nacional-de-Colombia.json b/resources/south-america/colombia/ym-Universidad-Nacional-de-Colombia.json index d239b76cf..0862a0247 100644 --- a/resources/south-america/colombia/ym-Universidad-Nacional-de-Colombia.json +++ b/resources/south-america/colombia/ym-Universidad-Nacional-de-Colombia.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-Nacional-de-Colombia", "type": "youthmappers", - "includeLocations": ["universidad-nacional-de-colombia.geojson"], + "includeLocations": [[-74.09179875000001, 4.65306]], "countryCodes": ["co"], "name": "Grupo UN", "description": "YouthMappers chapter at Universidad Nacional de Colombia", diff --git a/resources/south-america/colombia/ym-Universidad-de-Antioquia.json b/resources/south-america/colombia/ym-Universidad-de-Antioquia.json index 877b4fc90..72e5f9cde 100644 --- a/resources/south-america/colombia/ym-Universidad-de-Antioquia.json +++ b/resources/south-america/colombia/ym-Universidad-de-Antioquia.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-de-Antioquia", "type": "youthmappers", - "includeLocations": ["universidad-de-antioquia.geojson"], + "includeLocations": [[-75.5859375, 6.227911250000001]], "countryCodes": ["co"], "name": "Geomatica UDEA", "description": "YouthMappers chapter at Universidad de Antioquia", diff --git a/resources/south-america/colombia/ym-Universidad-de-La-Guajira.json b/resources/south-america/colombia/ym-Universidad-de-La-Guajira.json index 6ffd4c15b..70be3ba3a 100644 --- a/resources/south-america/colombia/ym-Universidad-de-La-Guajira.json +++ b/resources/south-america/colombia/ym-Universidad-de-La-Guajira.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-de-La-Guajira", "type": "youthmappers", - "includeLocations": ["universidad-de-la-guajira.geojson"], + "includeLocations": [[-72.86132875, 11.523042499999999]], "countryCodes": ["co"], "name": "Grupo Mesh", "description": "YouthMappers chapter at Universidad de La Guajira", diff --git a/resources/south-america/colombia/ym-Universidad-de-Los-Andes.json b/resources/south-america/colombia/ym-Universidad-de-Los-Andes.json index 53da531f0..540fa14cf 100644 --- a/resources/south-america/colombia/ym-Universidad-de-Los-Andes.json +++ b/resources/south-america/colombia/ym-Universidad-de-Los-Andes.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-de-Los-Andes", "type": "youthmappers", - "includeLocations": ["universidad-de-los-andes.geojson"], + "includeLocations": [[-74.0917975, 4.565454999999999]], "countryCodes": ["co"], "name": "Cartografos Uniandes", "description": "YouthMappers chapter at Universidad de Los Andes", diff --git a/resources/south-america/colombia/ym-Universidad-de-San-Buenaventura.json b/resources/south-america/colombia/ym-Universidad-de-San-Buenaventura.json index 19ab21710..5d9fb88ad 100644 --- a/resources/south-america/colombia/ym-Universidad-de-San-Buenaventura.json +++ b/resources/south-america/colombia/ym-Universidad-de-San-Buenaventura.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-de-San-Buenaventura", "type": "youthmappers", - "includeLocations": ["universidad-de-san-buenaventura.geojson"], + "includeLocations": [[-75.5859375, 6.227911250000001]], "countryCodes": ["co"], "name": "YouthMappers San Buenaventura", "description": "YouthMappers chapter at Universidad de San Buenaventura", From f6155419369140af02ce0074d1aa921d903001b9 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 14 Nov 2019 15:30:35 -0500 Subject: [PATCH 10/35] Round youthmappers centroids to 5 decimals, remove conversion code --- build.js | 33 ------------------- ...-de-lUniversit-Felix-Houphouet-Boigny.json | 2 +- ...-Gambia-YMCA-University-of-the-Gambia.json | 2 +- ...-University-of-Science-and-Technology.json | 2 +- .../ghana/ym-University-of-Cape-Coast.json | 2 +- ...rsity-of-Energy-and-Natural-Resources.json | 2 +- .../africa/ghana/ym-University-of-Ghana.json | 2 +- ...ym-University-of-Mines-and-Technology.json | 2 +- .../ym-General-Lansana-Conte-University.json | 2 +- ...edan-Kimathi-University-of-Technology.json | 2 +- ...versity-of-Agriculture-and-Technology.json | 2 +- .../africa/kenya/ym-Karatina-University.json | 2 +- .../africa/kenya/ym-Kenyatta-University.json | 2 +- resources/africa/kenya/ym-Moi-University.json | 2 +- .../ym-Technical-University-of-Kenya.json | 2 +- .../kenya/ym-University-of-Nairobi.json | 2 +- ...frican-Methodist-Episcopal-University.json | 2 +- .../liberia/ym-Cuttington-University.json | 2 +- ...-Grand-Gedeh-County-Community-College.json | 2 +- .../ym-Nimba-County-Community-College.json | 2 +- .../liberia/ym-Stella-Maris-Polytechnic.json | 2 +- ...ym-University-of-Liberia-YouthMappers.json | 2 +- .../malawi/ym-University-of-Malawi.json | 2 +- ...ences-Sociale-et-de-Gestion-de-Bamako.json | 2 +- .../ym-Universidade-Eduardo-Mondlane.json | 2 +- ...-University-of-Science-and-Technology.json | 2 +- .../nigeria/ym-Abia-State-University.json | 2 +- .../nigeria/ym-Ahmadu-Bello-University.json | 2 +- .../nigeria/ym-Federal-School-of-Surveys.json | 2 +- ...ederal-University-of-Technology-Akure.json | 2 +- ...gnatius-Ajuru-University-of-Education.json | 2 +- ...ym-University-of-Nigeria-Enugu-Campus.json | 2 +- .../ym-University-of-Nigeria-Nsukka.json | 2 +- .../ym-University-of-Port-Harcourt.json | 2 +- ...d-Enseignement-Superieur-de-Ruhengeri.json | 2 +- .../ym-University-of-Rwanda-Huye-Campus.json | 2 +- ...Institut-Suprieur-de-Management-Kolda.json | 2 +- .../senegal/ym-Universit-Gaston-Berger.json | 2 +- .../sierra_leone/ym-Fourah-Bay-College.json | 2 +- .../ym-Njala-University-Freetown-Campus.json | 2 +- .../ym-Njala-University-Njala-Campus.json | 2 +- .../ym-University-of-Pretoria.json | 2 +- .../ym-Institute-of-Finance-Management.json | 2 +- ...-of-Rural-Development-Planning-Mwanza.json | 2 +- ...stitute-of-Rural-Development-Planning.json | 2 +- .../ym-Open-University-of-Tanzania.json | 2 +- .../ym-Sokoine-University-of-Agriculture.json | 2 +- .../ym-University-of-Dar-es-Salaam.json | 2 +- .../africa/uganda/ym-Busitema-University.json | 2 +- .../africa/uganda/ym-Gulu-University.json | 2 +- .../africa/uganda/ym-Kumi-University.json | 2 +- .../africa/uganda/ym-Makerere-University.json | 2 +- ...-University-of-Science-and-Technology.json | 2 +- ...t.-Augustine-International-University.json | 2 +- ...nda-Christian-University-Mbale-Campus.json | 2 +- .../ym-Uganda-Pentecostal-University.json | 2 +- ....-Mawaggali-Trades-Training-Institute.json | 2 +- .../zambia/ym-The-University-of-Zambia.json | 2 +- .../zimbabwe/ym-University-of-Zimbabwe.json | 2 +- .../ym-Asian-University-for-Women.json | 2 +- .../asia/bangladesh/ym-Dhaka-College.json | 2 +- .../asia/bangladesh/ym-Dhaka-University.json | 2 +- .../bangladesh/ym-Eastern-University.json | 2 +- .../ym-Jahangirnagar-University.json | 2 +- .../asia/bangladesh/ym-Khulna-University.json | 2 +- ...-University-of-Engineering-Technology.json | 2 +- .../asia/bhutan/ym-Sherubtse-College.json | 2 +- .../asia/india/ym-Gujarat-University.json | 2 +- .../ym-Universitas-Negeri-Makassar.json | 2 +- .../ym-University-Muhammadiyah-Surakarta.json | 2 +- ...nstitute-of-Crisis-Management-Studies.json | 2 +- .../asia/nepal/ym-Kathmandu-University.json | 2 +- .../asia/nepal/ym-Tribhuvan-University.json | 2 +- .../germany/ym-Heidelberg-University.json | 2 +- .../italy/ym-Politecnico-di-Milano.json | 2 +- .../ym-Universit-Mohammed-V-Rabat.json | 2 +- .../ym-Universidad-Autonoma-de-Madrid.json | 2 +- .../ym-Universidad-Politcnica-de-Madrid.json | 2 +- .../ym-Istanbul-Technical-University.json | 2 +- .../ym-Queen-Mary-University-of-London.json | 2 +- .../ym-University-of-Exeter.json | 2 +- .../ym-University-of-Warwick.json | 2 +- .../jordan/ym-Yarmouk-University.json | 2 +- .../ym-Universidad-de-Costa-Rica.json | 2 +- ...versidad-Nacional-Autnoma-de-Honduras.json | 2 +- ...ersity-of-the-West-Indies-Mona-Campus.json | 2 +- ...ym-Universidad-Nacional-de-Ingenieria.json | 2 +- .../panama/ym-University-of-Panama.json | 2 +- ...niversidad-de-Puerto-Rico-Rio-Piedras.json | 2 +- .../ym-Ball-State-University.json | 2 +- ...California-University-of-Pennsylvania.json | 2 +- .../ym-Central-Washington-University.json | 2 +- .../united_states/ym-Clemson-University.json | 2 +- .../ym-College-of-William-and-Mary.json | 2 +- .../ym-George-Mason-University.json | 2 +- ...ym-Indiana-University-of-Pennsylvania.json | 2 +- .../ym-Jacksonville-State-University.json | 2 +- .../ym-Kansas-State-University.json | 2 +- .../united_states/ym-McGill-University.json | 2 +- .../ym-Monroe-Community-College.json | 2 +- .../united_states/ym-New-York-University.json | 2 +- .../ym-Ohio-Wesleyan-University.json | 2 +- .../ym-Oklahoma-State-University.json | 2 +- .../united_states/ym-SUNY-at-Fredonia.json | 2 +- ...-State-University-of-New-York-Geneseo.json | 2 +- .../ym-Texas-Tech-University.json | 2 +- .../united_states/ym-The-Citadel.json | 2 +- .../ym-The-George-Washington-University.json | 2 +- .../ym-The-Johns-Hopkins-University-SAIS.json | 2 +- .../ym-The-Pennsylvania-State-University.json | 2 +- .../united_states/ym-UW-Madison.json | 2 +- .../ym-University-of-California-Davis.json | 2 +- .../ym-University-of-Central-Florida.json | 2 +- ...m-University-of-Maryland-College-Park.json | 2 +- .../ym-University-of-North-Texas.json | 2 +- .../ym-University-of-Northern-Colorado.json | 2 +- .../ym-University-of-Oregon.json | 2 +- .../ym-University-of-Redlands.json | 2 +- .../ym-University-of-South-Carolina.json | 2 +- .../ym-University-of-Southern-California.json | 2 +- .../ym-University-of-Vermont.json | 2 +- .../ym-University-of-Victoria.json | 2 +- .../ym-University-of-Wyoming.json | 2 +- .../united_states/ym-Vassar-College.json | 2 +- .../ym-Villanova-University.json | 2 +- .../ym-West-Virginia-University.json | 2 +- .../ym-Western-Michigan-University.json | 2 +- ...ad-Distrital-Francisco-Jose-de-Caldas.json | 2 +- .../ym-Universidad-Nacional-de-Colombia.json | 2 +- .../colombia/ym-Universidad-de-Antioquia.json | 2 +- .../ym-Universidad-de-La-Guajira.json | 2 +- .../colombia/ym-Universidad-de-Los-Andes.json | 2 +- .../ym-Universidad-de-San-Buenaventura.json | 2 +- 133 files changed, 132 insertions(+), 165 deletions(-) diff --git a/build.js b/build.js index ee75998ac..0f73ee47d 100644 --- a/build.js +++ b/build.js @@ -21,10 +21,6 @@ const resourceSchema = require('./schema/resource.json'); let v = new Validator(); v.addSchema(geojsonSchema, 'http://json.schemastore.org/geojson.json'); - -const execSync = require('child_process').execSync; -let _ymlocs = {}; - buildAll(); @@ -87,22 +83,6 @@ function generateFeatures() { const id = path.basename(file, '.geojson').toLowerCase(); feature.id = id; - -// YOUTHMAPPERS -let geom = feature.geometry; -if (geom.coordinates[0].length === 9 && props.area > 1765 && props.area < 1770) { - let centroid = [0, 0]; - for (let j = 0; j < 8; j++) { // skip last - centroid[0] += geom.coordinates[0][j][0]; - centroid[1] += geom.coordinates[0][j][1]; - } - centroid[0] /= 8; - centroid[1] /= 8; - _ymlocs[id] = { centroid: centroid, featfile: file }; - // console.log('YouthMappers? ' + id + ' centroid ' + centroid); -} - - // sort keys let obj = {}; if (feature.type) { obj.type = feature.type; } @@ -149,19 +129,6 @@ function generateResources(tstrings, features) { process.exit(1); } - -// YOUTHMAPPERS -let loc = resource.includeLocations[0].replace('.geojson', ''); -let found = _ymlocs[loc]; -if (resource.type === 'youthmappers' && found) { - // console.log('YouthMappers'); - // console.log(' centroid ' + centroid); - // console.log(' centroid ' + featfile); - resource.includeLocations = [ found.centroid ]; - execSync('git rm "' + found.featfile + '"'); -} - - // sort keys let obj = {}; if (resource.id) { obj.id = resource.id; } diff --git a/resources/africa/cote_d'_ivoire/ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.json b/resources/africa/cote_d'_ivoire/ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.json index d3941cbbc..b50381b37 100644 --- a/resources/africa/cote_d'_ivoire/ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.json +++ b/resources/africa/cote_d'_ivoire/ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny.json @@ -1,7 +1,7 @@ { "id": "ym-Centre-Universitaire-de-Recherche-et-dApplication-en-Tldtection-CURAT-de-lUniversit-Felix-Houphouet-Boigny", "type": "youthmappers", - "includeLocations": [[-3.9879924999999994, 5.344]], + "includeLocations": [[-3.98799, 5.344]], "countryCodes": ["ci"], "name": "YouthMappers CURAT", "description": "YouthMappers chapter at Centre Universitaire de Recherche et d'Application en Télédétection (CURAT) de l'Université Felix Houphouet Boigny", diff --git a/resources/africa/gambia/ym-The-Gambia-YMCA-University-of-the-Gambia.json b/resources/africa/gambia/ym-The-Gambia-YMCA-University-of-the-Gambia.json index e3f6c2199..e06da90d0 100644 --- a/resources/africa/gambia/ym-The-Gambia-YMCA-University-of-the-Gambia.json +++ b/resources/africa/gambia/ym-The-Gambia-YMCA-University-of-the-Gambia.json @@ -1,7 +1,7 @@ { "id": "ym-The-Gambia-YMCA-University-of-the-Gambia", "type": "youthmappers", - "includeLocations": [[-16.676298749999997, 13.457899999999997]], + "includeLocations": [[-16.6763, 13.4579]], "countryCodes": ["gm"], "name": "Connected YouthMappers", "description": "YouthMappers chapter at The Gambia YMCA / University of the Gambia", diff --git a/resources/africa/ghana/ym-Kwame-Nkrumah-University-of-Science-and-Technology.json b/resources/africa/ghana/ym-Kwame-Nkrumah-University-of-Science-and-Technology.json index 798be3dff..3a86f0a29 100644 --- a/resources/africa/ghana/ym-Kwame-Nkrumah-University-of-Science-and-Technology.json +++ b/resources/africa/ghana/ym-Kwame-Nkrumah-University-of-Science-and-Technology.json @@ -1,7 +1,7 @@ { "id": "ym-Kwame-Nkrumah-University-of-Science-and-Technology", "type": "youthmappers", - "includeLocations": [[-1.5683100000000003, 6.672345]], + "includeLocations": [[-1.56831, 6.67234]], "countryCodes": ["gh"], "name": "Kwame Nkrumah University of Science and Technology YouthMappers", "description": "YouthMappers chapter at Kwame Nkrumah University of Science and Technology", diff --git a/resources/africa/ghana/ym-University-of-Cape-Coast.json b/resources/africa/ghana/ym-University-of-Cape-Coast.json index a78a15489..edf92fe26 100644 --- a/resources/africa/ghana/ym-University-of-Cape-Coast.json +++ b/resources/africa/ghana/ym-University-of-Cape-Coast.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Cape-Coast", "type": "youthmappers", - "includeLocations": [[-1.23047, 5.09092375]], + "includeLocations": [[-1.23047, 5.09092]], "countryCodes": ["gh"], "name": "UCC Geographical Society", "description": "YouthMappers chapter at University of Cape Coast", diff --git a/resources/africa/ghana/ym-University-of-Energy-and-Natural-Resources.json b/resources/africa/ghana/ym-University-of-Energy-and-Natural-Resources.json index 9f5fef8b9..1cba12080 100644 --- a/resources/africa/ghana/ym-University-of-Energy-and-Natural-Resources.json +++ b/resources/africa/ghana/ym-University-of-Energy-and-Natural-Resources.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Energy-and-Natural-Resources", "type": "youthmappers", - "includeLocations": [[-2.3430000000000004, 7.350210000000001]], + "includeLocations": [[-2.343, 7.35021]], "countryCodes": ["gh"], "name": "Eco-Club", "description": "YouthMappers chapter at University of Energy and Natural Resources", diff --git a/resources/africa/ghana/ym-University-of-Ghana.json b/resources/africa/ghana/ym-University-of-Ghana.json index 4ec2ff6ac..180fe4d92 100644 --- a/resources/africa/ghana/ym-University-of-Ghana.json +++ b/resources/africa/ghana/ym-University-of-Ghana.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Ghana", "type": "youthmappers", - "includeLocations": [[-0.1962375, 5.65113]], + "includeLocations": [[-0.19624, 5.65113]], "countryCodes": ["gh"], "name": "University of Ghana YouthMappers", "description": "YouthMappers chapter at University of Ghana", diff --git a/resources/africa/ghana/ym-University-of-Mines-and-Technology.json b/resources/africa/ghana/ym-University-of-Mines-and-Technology.json index e1be2f886..f3d6cad0d 100644 --- a/resources/africa/ghana/ym-University-of-Mines-and-Technology.json +++ b/resources/africa/ghana/ym-University-of-Mines-and-Technology.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Mines-and-Technology", "type": "youthmappers", - "includeLocations": [[-2.00125, 5.29878375]], + "includeLocations": [[-2.00125, 5.29878]], "countryCodes": ["gh"], "name": "UMaT YouthMappers", "description": "YouthMappers chapter at University of Mines and Technology", diff --git a/resources/africa/guinea/ym-General-Lansana-Conte-University.json b/resources/africa/guinea/ym-General-Lansana-Conte-University.json index a30daebbf..627d3ea41 100644 --- a/resources/africa/guinea/ym-General-Lansana-Conte-University.json +++ b/resources/africa/guinea/ym-General-Lansana-Conte-University.json @@ -1,7 +1,7 @@ { "id": "ym-General-Lansana-Conte-University", "type": "youthmappers", - "includeLocations": [[-13.623046250000002, 9.709019999999999]], + "includeLocations": [[-13.62305, 9.70902]], "countryCodes": ["gn"], "name": "YouthMappers General Lansana Conte University", "description": "YouthMappers chapter at General Lansana Conte University", diff --git a/resources/africa/kenya/ym-Dedan-Kimathi-University-of-Technology.json b/resources/africa/kenya/ym-Dedan-Kimathi-University-of-Technology.json index 74fd2a986..a9b0f4352 100644 --- a/resources/africa/kenya/ym-Dedan-Kimathi-University-of-Technology.json +++ b/resources/africa/kenya/ym-Dedan-Kimathi-University-of-Technology.json @@ -1,7 +1,7 @@ { "id": "ym-Dedan-Kimathi-University-of-Technology", "type": "youthmappers", - "includeLocations": [[37.0019525, -0.43944999999999995]], + "includeLocations": [[37.00195, -0.43945]], "countryCodes": ["ke"], "name": "GDEV", "description": "YouthMappers chapter at Dedan Kimathi University of Technology", diff --git a/resources/africa/kenya/ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology.json b/resources/africa/kenya/ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology.json index 232059a27..0f133b631 100644 --- a/resources/africa/kenya/ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology.json +++ b/resources/africa/kenya/ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology.json @@ -1,7 +1,7 @@ { "id": "ym-Jomo-Kenyatta-University-of-Agriculture-and-Technology", "type": "youthmappers", - "includeLocations": [[37.0105, -1.089095]], + "includeLocations": [[37.0105, -1.08909]], "countryCodes": ["ke"], "name": "Association of Geomatics Engineering Students", "description": "YouthMappers chapter at Jomo Kenyatta University of Agriculture and Technology", diff --git a/resources/africa/kenya/ym-Karatina-University.json b/resources/africa/kenya/ym-Karatina-University.json index 659fb499e..8aeda3393 100644 --- a/resources/africa/kenya/ym-Karatina-University.json +++ b/resources/africa/kenya/ym-Karatina-University.json @@ -1,7 +1,7 @@ { "id": "ym-Karatina-University", "type": "youthmappers", - "includeLocations": [[37.12788750000001, -0.48134]], + "includeLocations": [[37.12789, -0.48134]], "countryCodes": ["ke"], "name": "Nature Club Karatina University", "description": "YouthMappers chapter at Karatina University", diff --git a/resources/africa/kenya/ym-Kenyatta-University.json b/resources/africa/kenya/ym-Kenyatta-University.json index 1cce4a128..e594f32be 100644 --- a/resources/africa/kenya/ym-Kenyatta-University.json +++ b/resources/africa/kenya/ym-Kenyatta-University.json @@ -1,7 +1,7 @@ { "id": "ym-Kenyatta-University", "type": "youthmappers", - "includeLocations": [[36.934931250000005, -1.1799575]], + "includeLocations": [[36.93493, -1.17996]], "countryCodes": ["ke"], "name": "Kenyatta University GIS Club", "description": "YouthMappers chapter at Kenyatta University", diff --git a/resources/africa/kenya/ym-Moi-University.json b/resources/africa/kenya/ym-Moi-University.json index 313d1141e..8bb9d1615 100644 --- a/resources/africa/kenya/ym-Moi-University.json +++ b/resources/africa/kenya/ym-Moi-University.json @@ -1,7 +1,7 @@ { "id": "ym-Moi-University", "type": "youthmappers", - "includeLocations": [[35.5078125, -0.35156]], + "includeLocations": [[35.50781, -0.35156]], "countryCodes": ["ke"], "name": "Geography Students Association", "description": "YouthMappers chapter at Moi University", diff --git a/resources/africa/kenya/ym-Technical-University-of-Kenya.json b/resources/africa/kenya/ym-Technical-University-of-Kenya.json index 28ce23996..213c587f4 100644 --- a/resources/africa/kenya/ym-Technical-University-of-Kenya.json +++ b/resources/africa/kenya/ym-Technical-University-of-Kenya.json @@ -1,7 +1,7 @@ { "id": "ym-Technical-University-of-Kenya", "type": "youthmappers", - "includeLocations": [[36.824491249999994, -1.29160125]], + "includeLocations": [[36.82449, -1.2916]], "countryCodes": ["ke"], "name": "Geospatial Science Student Association", "description": "YouthMappers chapter at Technical University of Kenya", diff --git a/resources/africa/kenya/ym-University-of-Nairobi.json b/resources/africa/kenya/ym-University-of-Nairobi.json index cf78233f0..e7359c74b 100644 --- a/resources/africa/kenya/ym-University-of-Nairobi.json +++ b/resources/africa/kenya/ym-University-of-Nairobi.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Nairobi", "type": "youthmappers", - "includeLocations": [[36.826172500000006, -1.3182375]], + "includeLocations": [[36.82617, -1.31824]], "countryCodes": ["ke"], "name": "Geospatial Engineering Students Association", "description": "YouthMappers chapter at University of Nairobi", diff --git a/resources/africa/liberia/ym-African-Methodist-Episcopal-University.json b/resources/africa/liberia/ym-African-Methodist-Episcopal-University.json index 8d1ba642a..a71c48e7a 100644 --- a/resources/africa/liberia/ym-African-Methodist-Episcopal-University.json +++ b/resources/africa/liberia/ym-African-Methodist-Episcopal-University.json @@ -1,7 +1,7 @@ { "id": "ym-African-Methodist-Episcopal-University", "type": "youthmappers", - "includeLocations": [[-10.800629999999998, 6.3107275]], + "includeLocations": [[-10.80063, 6.31073]], "countryCodes": ["lr"], "name": "YouthMappers-AMEU", "description": "YouthMappers chapter at African Methodist Episcopal University", diff --git a/resources/africa/liberia/ym-Cuttington-University.json b/resources/africa/liberia/ym-Cuttington-University.json index ee38e6c05..467f3da67 100644 --- a/resources/africa/liberia/ym-Cuttington-University.json +++ b/resources/africa/liberia/ym-Cuttington-University.json @@ -1,7 +1,7 @@ { "id": "ym-Cuttington-University", "type": "youthmappers", - "includeLocations": [[-9.5539, 7.040372500000001]], + "includeLocations": [[-9.5539, 7.04037]], "countryCodes": ["lr"], "name": "Cuttington University YouthMappers", "description": "YouthMappers chapter at Cuttington University", diff --git a/resources/africa/liberia/ym-Grand-Gedeh-County-Community-College.json b/resources/africa/liberia/ym-Grand-Gedeh-County-Community-College.json index c210f1391..64c6b0d0f 100644 --- a/resources/africa/liberia/ym-Grand-Gedeh-County-Community-College.json +++ b/resources/africa/liberia/ym-Grand-Gedeh-County-Community-College.json @@ -1,7 +1,7 @@ { "id": "ym-Grand-Gedeh-County-Community-College", "type": "youthmappers", - "includeLocations": [[-8.118170000000001, 6.063924999999999]], + "includeLocations": [[-8.11817, 6.06392]], "countryCodes": ["lr"], "name": "YouthMappers at Grand Gedeh County Community College", "description": "YouthMappers chapter at Grand Gedeh County Community College", diff --git a/resources/africa/liberia/ym-Nimba-County-Community-College.json b/resources/africa/liberia/ym-Nimba-County-Community-College.json index ac7fd7a3a..2c51c8a33 100644 --- a/resources/africa/liberia/ym-Nimba-County-Community-College.json +++ b/resources/africa/liberia/ym-Nimba-County-Community-College.json @@ -1,7 +1,7 @@ { "id": "ym-Nimba-County-Community-College", "type": "youthmappers", - "includeLocations": [[-8.716453750000001, 7.35208]], + "includeLocations": [[-8.71645, 7.35208]], "countryCodes": ["lr"], "name": "Nimba County Community College Youth Mappers", "description": "YouthMappers chapter at Nimba County Community College", diff --git a/resources/africa/liberia/ym-Stella-Maris-Polytechnic.json b/resources/africa/liberia/ym-Stella-Maris-Polytechnic.json index 878a38476..3bf66c28f 100644 --- a/resources/africa/liberia/ym-Stella-Maris-Polytechnic.json +++ b/resources/africa/liberia/ym-Stella-Maris-Polytechnic.json @@ -1,7 +1,7 @@ { "id": "ym-Stella-Maris-Polytechnic", "type": "youthmappers", - "includeLocations": [[-10.794400000000001, 6.289974999999999]], + "includeLocations": [[-10.7944, 6.28997]], "countryCodes": ["lr"], "name": "YouthMappers-SMP", "description": "YouthMappers chapter at Stella Maris Polytechnic", diff --git a/resources/africa/liberia/ym-University-of-Liberia-YouthMappers.json b/resources/africa/liberia/ym-University-of-Liberia-YouthMappers.json index 894910f60..64d1ee06d 100644 --- a/resources/africa/liberia/ym-University-of-Liberia-YouthMappers.json +++ b/resources/africa/liberia/ym-University-of-Liberia-YouthMappers.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Liberia-YouthMappers", "type": "youthmappers", - "includeLocations": [[-10.619861250000001, 6.377042500000001]], + "includeLocations": [[-10.61986, 6.37704]], "countryCodes": ["lr"], "name": "University of Liberia YouthMappers", "description": "YouthMappers chapter at University of Liberia YouthMappers", diff --git a/resources/africa/malawi/ym-University-of-Malawi.json b/resources/africa/malawi/ym-University-of-Malawi.json index 6dc85a3d6..9f7cd0ba0 100644 --- a/resources/africa/malawi/ym-University-of-Malawi.json +++ b/resources/africa/malawi/ym-University-of-Malawi.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Malawi", "type": "youthmappers", - "includeLocations": [[35.33203125, -15.368889999999999]], + "includeLocations": [[35.33203, -15.36889]], "countryCodes": ["mw"], "name": "Chanco Malawi YouthMappers", "description": "YouthMappers chapter at University of Malawi", diff --git a/resources/africa/mali/ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.json b/resources/africa/mali/ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.json index c6a792b6b..1844bd636 100644 --- a/resources/africa/mali/ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.json +++ b/resources/africa/mali/ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako.json @@ -1,7 +1,7 @@ { "id": "ym-Universit-des-Sciences-Sociale-et-de-Gestion-de-Bamako", "type": "youthmappers", - "includeLocations": [[-7.988322500000001, 12.61530875]], + "includeLocations": [[-7.98832, 12.61531]], "countryCodes": ["ml"], "name": "Etudiant au Laboratoire HoPE", "description": "YouthMappers chapter at Université des Sciences Sociale et de Gestion de Bamako", diff --git a/resources/africa/mozambique/ym-Universidade-Eduardo-Mondlane.json b/resources/africa/mozambique/ym-Universidade-Eduardo-Mondlane.json index 96e566c1b..4fddcef74 100644 --- a/resources/africa/mozambique/ym-Universidade-Eduardo-Mondlane.json +++ b/resources/africa/mozambique/ym-Universidade-Eduardo-Mondlane.json @@ -1,7 +1,7 @@ { "id": "ym-Universidade-Eduardo-Mondlane", "type": "youthmappers", - "includeLocations": [[32.60357125, -25.952080000000002]], + "includeLocations": [[32.60357, -25.95208]], "countryCodes": ["mz"], "name": "Comunidade YouthMappers Moçambique", "description": "YouthMappers chapter at Universidade Eduardo Mondlane", diff --git a/resources/africa/namibia/ym-Namibia-University-of-Science-and-Technology.json b/resources/africa/namibia/ym-Namibia-University-of-Science-and-Technology.json index 701b0c8df..0b0c2ad45 100644 --- a/resources/africa/namibia/ym-Namibia-University-of-Science-and-Technology.json +++ b/resources/africa/namibia/ym-Namibia-University-of-Science-and-Technology.json @@ -1,7 +1,7 @@ { "id": "ym-Namibia-University-of-Science-and-Technology", "type": "youthmappers", - "includeLocations": [[17.07709125, -22.565723750000004]], + "includeLocations": [[17.07709, -22.56572]], "countryCodes": ["na"], "name": "Geoinformation Technology Student Society", "description": "YouthMappers chapter at Namibia University of Science and Technology", diff --git a/resources/africa/nigeria/ym-Abia-State-University.json b/resources/africa/nigeria/ym-Abia-State-University.json index 68d95f51c..363c465d3 100644 --- a/resources/africa/nigeria/ym-Abia-State-University.json +++ b/resources/africa/nigeria/ym-Abia-State-University.json @@ -1,7 +1,7 @@ { "id": "ym-Abia-State-University", "type": "youthmappers", - "includeLocations": [[7.419093749999999, 5.830795]], + "includeLocations": [[7.41909, 5.8308]], "countryCodes": ["ng"], "name": "AbsuMappersTeam", "description": "YouthMappers chapter at Abia State University", diff --git a/resources/africa/nigeria/ym-Ahmadu-Bello-University.json b/resources/africa/nigeria/ym-Ahmadu-Bello-University.json index b1a2045b7..666091aa2 100644 --- a/resources/africa/nigeria/ym-Ahmadu-Bello-University.json +++ b/resources/africa/nigeria/ym-Ahmadu-Bello-University.json @@ -1,7 +1,7 @@ { "id": "ym-Ahmadu-Bello-University", "type": "youthmappers", - "includeLocations": [[7.64648375, 11.178357499999999]], + "includeLocations": [[7.64648, 11.17836]], "countryCodes": ["ng"], "name": "ABU Geomappers", "description": "YouthMappers chapter at Ahmadu Bello University", diff --git a/resources/africa/nigeria/ym-Federal-School-of-Surveys.json b/resources/africa/nigeria/ym-Federal-School-of-Surveys.json index e3d74a3b6..72b26e05c 100644 --- a/resources/africa/nigeria/ym-Federal-School-of-Surveys.json +++ b/resources/africa/nigeria/ym-Federal-School-of-Surveys.json @@ -1,7 +1,7 @@ { "id": "ym-Federal-School-of-Surveys", "type": "youthmappers", - "includeLocations": [[3.9512875, 7.84217625]], + "includeLocations": [[3.95129, 7.84218]], "countryCodes": ["ng"], "name": "OyoMappersTeam (OMT) Oyo", "description": "YouthMappers chapter at Federal School of Surveys", diff --git a/resources/africa/nigeria/ym-Federal-University-of-Technology-Akure.json b/resources/africa/nigeria/ym-Federal-University-of-Technology-Akure.json index 4f72ba356..9416353ba 100644 --- a/resources/africa/nigeria/ym-Federal-University-of-Technology-Akure.json +++ b/resources/africa/nigeria/ym-Federal-University-of-Technology-Akure.json @@ -1,7 +1,7 @@ { "id": "ym-Federal-University-of-Technology-Akure", "type": "youthmappers", - "includeLocations": [[5.185547499999999, 7.275265]], + "includeLocations": [[5.18555, 7.27527]], "countryCodes": ["ng"], "name": "YouthMappers Futa Space Club", "description": "YouthMappers chapter at Federal University of Technology, Akure", diff --git a/resources/africa/nigeria/ym-Ignatius-Ajuru-University-of-Education.json b/resources/africa/nigeria/ym-Ignatius-Ajuru-University-of-Education.json index b7493eaa9..13fddf10f 100644 --- a/resources/africa/nigeria/ym-Ignatius-Ajuru-University-of-Education.json +++ b/resources/africa/nigeria/ym-Ignatius-Ajuru-University-of-Education.json @@ -1,7 +1,7 @@ { "id": "ym-Ignatius-Ajuru-University-of-Education", "type": "youthmappers", - "includeLocations": [[6.9336375, 4.80651]], + "includeLocations": [[6.93364, 4.80651]], "countryCodes": ["ng"], "name": "IgnatiusMappersTeam (IMT)", "description": "YouthMappers chapter at Ignatius Ajuru University of Education", diff --git a/resources/africa/nigeria/ym-University-of-Nigeria-Enugu-Campus.json b/resources/africa/nigeria/ym-University-of-Nigeria-Enugu-Campus.json index 6a05f2823..22497979c 100644 --- a/resources/africa/nigeria/ym-University-of-Nigeria-Enugu-Campus.json +++ b/resources/africa/nigeria/ym-University-of-Nigeria-Enugu-Campus.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Nigeria-Enugu-Campus", "type": "youthmappers", - "includeLocations": [[7.5037325, 6.426392499999999]], + "includeLocations": [[7.50373, 6.42639]], "countryCodes": ["ng"], "name": "LionMappersTeam (LMT) Enugu", "description": "YouthMappers chapter at University of Nigeria, Enugu Campus", diff --git a/resources/africa/nigeria/ym-University-of-Nigeria-Nsukka.json b/resources/africa/nigeria/ym-University-of-Nigeria-Nsukka.json index bc797c1dc..256d7995f 100644 --- a/resources/africa/nigeria/ym-University-of-Nigeria-Nsukka.json +++ b/resources/africa/nigeria/ym-University-of-Nigeria-Nsukka.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Nigeria-Nsukka", "type": "youthmappers", - "includeLocations": [[7.408208750000001, 6.86460875]], + "includeLocations": [[7.40821, 6.86461]], "countryCodes": ["ng"], "name": "LionMappersTeam (LMT) Nsukka", "description": "YouthMappers chapter at University of Nigeria, Nsukka", diff --git a/resources/africa/nigeria/ym-University-of-Port-Harcourt.json b/resources/africa/nigeria/ym-University-of-Port-Harcourt.json index ec1f46fcb..2f8a60a44 100644 --- a/resources/africa/nigeria/ym-University-of-Port-Harcourt.json +++ b/resources/africa/nigeria/ym-University-of-Port-Harcourt.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Port-Harcourt", "type": "youthmappers", - "includeLocations": [[6.92036625, 4.90173]], + "includeLocations": [[6.92037, 4.90173]], "countryCodes": ["ng"], "name": "UniqueMappersTeam (UMT) Port Harcourt", "description": "YouthMappers chapter at University of Port Harcourt", diff --git a/resources/africa/rwanda/ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri.json b/resources/africa/rwanda/ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri.json index ff825f2e1..e45ee2bed 100644 --- a/resources/africa/rwanda/ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri.json +++ b/resources/africa/rwanda/ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri.json @@ -1,7 +1,7 @@ { "id": "ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri", "type": "youthmappers", - "includeLocations": [[29.6112025, -1.5009087499999998]], + "includeLocations": [[29.6112, -1.50091]], "countryCodes": ["rw"], "name": "YouthMappers at INES Ruhengeri", "description": "YouthMappers chapter at Insititue d' Enseignement Superieur de Ruhengeri", diff --git a/resources/africa/rwanda/ym-University-of-Rwanda-Huye-Campus.json b/resources/africa/rwanda/ym-University-of-Rwanda-Huye-Campus.json index 0ae45673c..cbc19f717 100644 --- a/resources/africa/rwanda/ym-University-of-Rwanda-Huye-Campus.json +++ b/resources/africa/rwanda/ym-University-of-Rwanda-Huye-Campus.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Rwanda-Huye-Campus", "type": "youthmappers", - "includeLocations": [[29.739700000000003, -2.61509]], + "includeLocations": [[29.7397, -2.61509]], "countryCodes": ["rw"], "name": "Rwanda YouthMappers", "description": "YouthMappers chapter at University of Rwanda - Huye Campus", diff --git a/resources/africa/senegal/ym-Institut-Suprieur-de-Management-Kolda.json b/resources/africa/senegal/ym-Institut-Suprieur-de-Management-Kolda.json index 181ab5171..d6aa30a88 100644 --- a/resources/africa/senegal/ym-Institut-Suprieur-de-Management-Kolda.json +++ b/resources/africa/senegal/ym-Institut-Suprieur-de-Management-Kolda.json @@ -1,7 +1,7 @@ { "id": "ym-Institut-Suprieur-de-Management-Kolda", "type": "youthmappers", - "includeLocations": [[-14.941083750000002, 12.88982]], + "includeLocations": [[-14.94108, 12.88982]], "countryCodes": ["sn"], "name": "Les Femmes Leaders de ISM/Kolda", "description": "YouthMappers chapter at Institut Supérieur de Management Kolda", diff --git a/resources/africa/senegal/ym-Universit-Gaston-Berger.json b/resources/africa/senegal/ym-Universit-Gaston-Berger.json index af8cb799f..c0bcd0d74 100644 --- a/resources/africa/senegal/ym-Universit-Gaston-Berger.json +++ b/resources/africa/senegal/ym-Universit-Gaston-Berger.json @@ -1,7 +1,7 @@ { "id": "ym-Universit-Gaston-Berger", "type": "youthmappers", - "includeLocations": [[-16.42556375, 16.062841249999998]], + "includeLocations": [[-16.42556, 16.06284]], "countryCodes": ["sn"], "name": "YouthMappers at UGB", "description": "YouthMappers chapter at Université Gaston Berger", diff --git a/resources/africa/sierra_leone/ym-Fourah-Bay-College.json b/resources/africa/sierra_leone/ym-Fourah-Bay-College.json index 9280f4f8e..5b7a6f888 100644 --- a/resources/africa/sierra_leone/ym-Fourah-Bay-College.json +++ b/resources/africa/sierra_leone/ym-Fourah-Bay-College.json @@ -1,7 +1,7 @@ { "id": "ym-Fourah-Bay-College", "type": "youthmappers", - "includeLocations": [[-13.18359125, 8.49407125]], + "includeLocations": [[-13.18359, 8.49407]], "countryCodes": ["sl"], "name": "Student's Geographical Association", "description": "YouthMappers chapter at Fourah Bay College", diff --git a/resources/africa/sierra_leone/ym-Njala-University-Freetown-Campus.json b/resources/africa/sierra_leone/ym-Njala-University-Freetown-Campus.json index 25407594d..a834c3943 100644 --- a/resources/africa/sierra_leone/ym-Njala-University-Freetown-Campus.json +++ b/resources/africa/sierra_leone/ym-Njala-University-Freetown-Campus.json @@ -1,7 +1,7 @@ { "id": "ym-Njala-University-Freetown-Campus", "type": "youthmappers", - "includeLocations": [[-13.236730000000001, 8.479585]], + "includeLocations": [[-13.23673, 8.47959]], "countryCodes": ["sl"], "name": "Njala Freetown YouthMappers", "description": "YouthMappers chapter at Njala University, Freetown Campus", diff --git a/resources/africa/sierra_leone/ym-Njala-University-Njala-Campus.json b/resources/africa/sierra_leone/ym-Njala-University-Njala-Campus.json index a317b37ee..5ada46e00 100644 --- a/resources/africa/sierra_leone/ym-Njala-University-Njala-Campus.json +++ b/resources/africa/sierra_leone/ym-Njala-University-Njala-Campus.json @@ -1,7 +1,7 @@ { "id": "ym-Njala-University-Njala-Campus", "type": "youthmappers", - "includeLocations": [[-11.76548125, 7.935960000000001]], + "includeLocations": [[-11.76548, 7.93596]], "countryCodes": ["sl"], "name": "YouthMappers Njala University, Njala Campus", "description": "YouthMappers chapter at Njala University, Njala Campus", diff --git a/resources/africa/south_africa/ym-University-of-Pretoria.json b/resources/africa/south_africa/ym-University-of-Pretoria.json index 54773d9de..81c69ecd3 100644 --- a/resources/africa/south_africa/ym-University-of-Pretoria.json +++ b/resources/africa/south_africa/ym-University-of-Pretoria.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Pretoria", "type": "youthmappers", - "includeLocations": [[28.21289, -25.720628750000003]], + "includeLocations": [[28.21289, -25.72063]], "countryCodes": ["za"], "name": "Centre for Geoinformation Science", "description": "YouthMappers chapter at University of Pretoria", diff --git a/resources/africa/tanzania/ym-Institute-of-Finance-Management.json b/resources/africa/tanzania/ym-Institute-of-Finance-Management.json index bf5e4a88f..061e7b130 100644 --- a/resources/africa/tanzania/ym-Institute-of-Finance-Management.json +++ b/resources/africa/tanzania/ym-Institute-of-Finance-Management.json @@ -1,7 +1,7 @@ { "id": "ym-Institute-of-Finance-Management", "type": "youthmappers", - "includeLocations": [[39.29349875, -6.1377875]], + "includeLocations": [[39.2935, -6.13779]], "countryCodes": ["tz"], "name": "IFM mappers", "description": "YouthMappers chapter at Institute of Finance Management", diff --git a/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning-Mwanza.json b/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning-Mwanza.json index 67cf9cfcd..024ba42be 100644 --- a/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning-Mwanza.json +++ b/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning-Mwanza.json @@ -1,7 +1,7 @@ { "id": "ym-Institute-of-Rural-Development-Planning-Mwanza", "type": "youthmappers", - "includeLocations": [[32.898513750000006, -2.51657875]], + "includeLocations": [[32.89851, -2.51658]], "countryCodes": ["tz"], "name": "Youth Mappers Chapter at Institute of Rural Development Planning - Lake Zone Centre", "description": "YouthMappers chapter at Institute of Rural Development Planning Mwanza", diff --git a/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning.json b/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning.json index 5b7ab38db..7e32b163e 100644 --- a/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning.json +++ b/resources/africa/tanzania/ym-Institute-of-Rural-Development-Planning.json @@ -1,7 +1,7 @@ { "id": "ym-Institute-of-Rural-Development-Planning", "type": "youthmappers", - "includeLocations": [[35.7457825, -6.1221475]], + "includeLocations": [[35.74578, -6.12215]], "countryCodes": ["tz"], "name": "Mipango YouthMappers Chapter", "description": "YouthMappers chapter at Institute of Rural Development Planning", diff --git a/resources/africa/tanzania/ym-Open-University-of-Tanzania.json b/resources/africa/tanzania/ym-Open-University-of-Tanzania.json index eb6ef15c1..1cdb2039a 100644 --- a/resources/africa/tanzania/ym-Open-University-of-Tanzania.json +++ b/resources/africa/tanzania/ym-Open-University-of-Tanzania.json @@ -1,7 +1,7 @@ { "id": "ym-Open-University-of-Tanzania", "type": "youthmappers", - "includeLocations": [[39.26465999999999, -6.783498750000001]], + "includeLocations": [[39.26466, -6.7835]], "countryCodes": ["tz"], "name": "Youth Mappers at Open University of Tanzania", "description": "YouthMappers chapter at Open University of Tanzania", diff --git a/resources/africa/tanzania/ym-Sokoine-University-of-Agriculture.json b/resources/africa/tanzania/ym-Sokoine-University-of-Agriculture.json index fb76ba5c2..03a28e54c 100644 --- a/resources/africa/tanzania/ym-Sokoine-University-of-Agriculture.json +++ b/resources/africa/tanzania/ym-Sokoine-University-of-Agriculture.json @@ -1,7 +1,7 @@ { "id": "ym-Sokoine-University-of-Agriculture", "type": "youthmappers", - "includeLocations": [[37.65636, -6.852512500000001]], + "includeLocations": [[37.65636, -6.85251]], "countryCodes": ["tz"], "name": "SMCoSE YouthMappers", "description": "YouthMappers chapter at Sokoine University of Agriculture", diff --git a/resources/africa/tanzania/ym-University-of-Dar-es-Salaam.json b/resources/africa/tanzania/ym-University-of-Dar-es-Salaam.json index 62295d704..40b9c7bf9 100644 --- a/resources/africa/tanzania/ym-University-of-Dar-es-Salaam.json +++ b/resources/africa/tanzania/ym-University-of-Dar-es-Salaam.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Dar-es-Salaam", "type": "youthmappers", - "includeLocations": [[39.20531, -6.7803474999999995]], + "includeLocations": [[39.20531, -6.78035]], "countryCodes": ["tz"], "name": "YouthMappers at University of Dar es Salaam", "description": "YouthMappers chapter at University of Dar es Salaam", diff --git a/resources/africa/uganda/ym-Busitema-University.json b/resources/africa/uganda/ym-Busitema-University.json index ad22b1b4a..cd070a73b 100644 --- a/resources/africa/uganda/ym-Busitema-University.json +++ b/resources/africa/uganda/ym-Busitema-University.json @@ -1,7 +1,7 @@ { "id": "ym-Busitema-University", "type": "youthmappers", - "includeLocations": [[34.01367125, 0.527335]], + "includeLocations": [[34.01367, 0.52733]], "countryCodes": ["ug"], "name": "Good Mappers", "description": "YouthMappers chapter at Busitema University", diff --git a/resources/africa/uganda/ym-Gulu-University.json b/resources/africa/uganda/ym-Gulu-University.json index 0c1bc6c17..d82860a02 100644 --- a/resources/africa/uganda/ym-Gulu-University.json +++ b/resources/africa/uganda/ym-Gulu-University.json @@ -1,7 +1,7 @@ { "id": "ym-Gulu-University", "type": "youthmappers", - "includeLocations": [[32.34374999999999, 2.81136]], + "includeLocations": [[32.34375, 2.81136]], "countryCodes": ["ug"], "name": "CSGU Mappers", "description": "YouthMappers chapter at Gulu University", diff --git a/resources/africa/uganda/ym-Kumi-University.json b/resources/africa/uganda/ym-Kumi-University.json index 4427bbfdf..397e86046 100644 --- a/resources/africa/uganda/ym-Kumi-University.json +++ b/resources/africa/uganda/ym-Kumi-University.json @@ -1,7 +1,7 @@ { "id": "ym-Kumi-University", "type": "youthmappers", - "includeLocations": [[33.83789125, 1.493965]], + "includeLocations": [[33.83789, 1.49396]], "countryCodes": ["ug"], "name": "Ever Last YouthMappers", "description": "YouthMappers chapter at Kumi University", diff --git a/resources/africa/uganda/ym-Makerere-University.json b/resources/africa/uganda/ym-Makerere-University.json index a339a2592..47a173b16 100644 --- a/resources/africa/uganda/ym-Makerere-University.json +++ b/resources/africa/uganda/ym-Makerere-University.json @@ -1,7 +1,7 @@ { "id": "ym-Makerere-University", "type": "youthmappers", - "includeLocations": [[32.607420000000005, 0.35156000000000004]], + "includeLocations": [[32.60742, 0.35156]], "countryCodes": ["ug"], "name": "Geo YouthMappers", "description": "YouthMappers chapter at Makerere University", diff --git a/resources/africa/uganda/ym-Mbarara-University-of-Science-and-Technology.json b/resources/africa/uganda/ym-Mbarara-University-of-Science-and-Technology.json index 78f427074..6d4bd6c44 100644 --- a/resources/africa/uganda/ym-Mbarara-University-of-Science-and-Technology.json +++ b/resources/africa/uganda/ym-Mbarara-University-of-Science-and-Technology.json @@ -1,7 +1,7 @@ { "id": "ym-Mbarara-University-of-Science-and-Technology", "type": "youthmappers", - "includeLocations": [[30.6567875, -0.6164412499999999]], + "includeLocations": [[30.65679, -0.61644]], "countryCodes": ["ug"], "name": "MUST Street Mappers", "description": "YouthMappers chapter at Mbarara University of Science and Technology", diff --git a/resources/africa/uganda/ym-St.-Augustine-International-University.json b/resources/africa/uganda/ym-St.-Augustine-International-University.json index 66e27655b..7c85ad0cc 100644 --- a/resources/africa/uganda/ym-St.-Augustine-International-University.json +++ b/resources/africa/uganda/ym-St.-Augustine-International-University.json @@ -1,7 +1,7 @@ { "id": "ym-St.-Augustine-International-University", "type": "youthmappers", - "includeLocations": [[32.62161375, 0.272375]], + "includeLocations": [[32.62161, 0.27237]], "countryCodes": ["ng"], "name": "YouthMappers at St Augustine International University", "description": "YouthMappers chapter at St. Augustine International University", diff --git a/resources/africa/uganda/ym-Uganda-Christian-University-Mbale-Campus.json b/resources/africa/uganda/ym-Uganda-Christian-University-Mbale-Campus.json index 1e4675456..e2f2ddeb1 100644 --- a/resources/africa/uganda/ym-Uganda-Christian-University-Mbale-Campus.json +++ b/resources/africa/uganda/ym-Uganda-Christian-University-Mbale-Campus.json @@ -1,7 +1,7 @@ { "id": "ym-Uganda-Christian-University-Mbale-Campus", "type": "youthmappers", - "includeLocations": [[34.17486875, 1.075875]], + "includeLocations": [[34.17487, 1.07587]], "countryCodes": ["ug"], "name": "Mappers for Life", "description": "YouthMappers chapter at Uganda Christian University Mbale Campus", diff --git a/resources/africa/uganda/ym-Uganda-Pentecostal-University.json b/resources/africa/uganda/ym-Uganda-Pentecostal-University.json index 501ddb819..95149e8e4 100644 --- a/resources/africa/uganda/ym-Uganda-Pentecostal-University.json +++ b/resources/africa/uganda/ym-Uganda-Pentecostal-University.json @@ -1,7 +1,7 @@ { "id": "ym-Uganda-Pentecostal-University", "type": "youthmappers", - "includeLocations": [[30.266209999999997, 0.6620612499999999]], + "includeLocations": [[30.26621, 0.66206]], "countryCodes": ["ug"], "name": "HiTech Youth Mappers", "description": "YouthMappers chapter at Uganda Pentecostal University", diff --git a/resources/africa/zambia/ym-St.-Mawaggali-Trades-Training-Institute.json b/resources/africa/zambia/ym-St.-Mawaggali-Trades-Training-Institute.json index d36854941..4c3f9ad2a 100644 --- a/resources/africa/zambia/ym-St.-Mawaggali-Trades-Training-Institute.json +++ b/resources/africa/zambia/ym-St.-Mawaggali-Trades-Training-Institute.json @@ -1,7 +1,7 @@ { "id": "ym-St.-Mawaggali-Trades-Training-Institute", "type": "youthmappers", - "includeLocations": [[26.967102500000003, -16.814845]], + "includeLocations": [[26.9671, -16.81484]], "countryCodes": ["zm"], "name": "MawaggaliMappers", "description": "YouthMappers chapter at St. Mawaggali Trades Training Institute", diff --git a/resources/africa/zambia/ym-The-University-of-Zambia.json b/resources/africa/zambia/ym-The-University-of-Zambia.json index 72a93161f..2ec18d960 100644 --- a/resources/africa/zambia/ym-The-University-of-Zambia.json +++ b/resources/africa/zambia/ym-The-University-of-Zambia.json @@ -1,7 +1,7 @@ { "id": "ym-The-University-of-Zambia", "type": "youthmappers", - "includeLocations": [[28.33027125, -15.39189]], + "includeLocations": [[28.33027, -15.39189]], "countryCodes": ["zm"], "name": "YouthMappers Unza", "description": "YouthMappers chapter at The University of Zambia", diff --git a/resources/africa/zimbabwe/ym-University-of-Zimbabwe.json b/resources/africa/zimbabwe/ym-University-of-Zimbabwe.json index bf62c4076..11688ba71 100644 --- a/resources/africa/zimbabwe/ym-University-of-Zimbabwe.json +++ b/resources/africa/zimbabwe/ym-University-of-Zimbabwe.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Zimbabwe", "type": "youthmappers", - "includeLocations": [[31.05465875, -17.784670000000002]], + "includeLocations": [[31.05466, -17.78467]], "countryCodes": ["zw"], "name": "UZMappers", "description": "YouthMappers chapter at University of Zimbabwe", diff --git a/resources/asia/bangladesh/ym-Asian-University-for-Women.json b/resources/asia/bangladesh/ym-Asian-University-for-Women.json index 7a15fa02c..25241c088 100644 --- a/resources/asia/bangladesh/ym-Asian-University-for-Women.json +++ b/resources/asia/bangladesh/ym-Asian-University-for-Women.json @@ -1,7 +1,7 @@ { "id": "ym-Asian-University-for-Women", "type": "youthmappers", - "includeLocations": [[91.8457025, 22.34998375]], + "includeLocations": [[91.8457, 22.34998]], "countryCodes": ["bd"], "name": "YouthMappers at AUW", "description": "YouthMappers chapter at Asian University for Women", diff --git a/resources/asia/bangladesh/ym-Dhaka-College.json b/resources/asia/bangladesh/ym-Dhaka-College.json index 00988b7d9..1cf89ef1b 100644 --- a/resources/asia/bangladesh/ym-Dhaka-College.json +++ b/resources/asia/bangladesh/ym-Dhaka-College.json @@ -1,7 +1,7 @@ { "id": "ym-Dhaka-College", "type": "youthmappers", - "includeLocations": [[90.35156125, 23.724915000000003]], + "includeLocations": [[90.35156, 23.72492]], "countryCodes": ["bd"], "name": "YouthMappers Daka College", "description": "YouthMappers chapter at Dhaka College", diff --git a/resources/asia/bangladesh/ym-Dhaka-University.json b/resources/asia/bangladesh/ym-Dhaka-University.json index 68b36736d..9f0cc05a9 100644 --- a/resources/asia/bangladesh/ym-Dhaka-University.json +++ b/resources/asia/bangladesh/ym-Dhaka-University.json @@ -1,7 +1,7 @@ { "id": "ym-Dhaka-University", "type": "youthmappers", - "includeLocations": [[90.35156125, 23.724915000000003]], + "includeLocations": [[90.35156, 23.72492]], "countryCodes": ["bd"], "name": "Openstreetmap YouthMappers", "description": "YouthMappers chapter at Dhaka University", diff --git a/resources/asia/bangladesh/ym-Eastern-University.json b/resources/asia/bangladesh/ym-Eastern-University.json index 87bb840b7..f1f0ef8c8 100644 --- a/resources/asia/bangladesh/ym-Eastern-University.json +++ b/resources/asia/bangladesh/ym-Eastern-University.json @@ -1,7 +1,7 @@ { "id": "ym-Eastern-University", "type": "youthmappers", - "includeLocations": [[90.38062625, 23.74235875]], + "includeLocations": [[90.38063, 23.74236]], "countryCodes": ["bd"], "name": "YouthMappers at Eastern University", "description": "YouthMappers chapter at Eastern University", diff --git a/resources/asia/bangladesh/ym-Jahangirnagar-University.json b/resources/asia/bangladesh/ym-Jahangirnagar-University.json index ece0b08f7..c4078f19a 100644 --- a/resources/asia/bangladesh/ym-Jahangirnagar-University.json +++ b/resources/asia/bangladesh/ym-Jahangirnagar-University.json @@ -1,7 +1,7 @@ { "id": "ym-Jahangirnagar-University", "type": "youthmappers", - "includeLocations": [[90.26752875, 23.88221875]], + "includeLocations": [[90.26753, 23.88222]], "countryCodes": ["bd"], "name": "YouthMappers at IRS, Jahangirnagar University", "description": "YouthMappers chapter at Jahangirnagar University", diff --git a/resources/asia/bangladesh/ym-Khulna-University.json b/resources/asia/bangladesh/ym-Khulna-University.json index 8e6080049..1806af5b8 100644 --- a/resources/asia/bangladesh/ym-Khulna-University.json +++ b/resources/asia/bangladesh/ym-Khulna-University.json @@ -1,7 +1,7 @@ { "id": "ym-Khulna-University", "type": "youthmappers", - "includeLocations": [[89.56054875000002, 22.83685125]], + "includeLocations": [[89.56055, 22.83685]], "countryCodes": ["bd"], "name": "Khulna University YouthMappers", "description": "YouthMappers chapter at Khulna University", diff --git a/resources/asia/bangladesh/ym-Rajshahi-University-of-Engineering-Technology.json b/resources/asia/bangladesh/ym-Rajshahi-University-of-Engineering-Technology.json index f5250f2eb..f291d8e87 100644 --- a/resources/asia/bangladesh/ym-Rajshahi-University-of-Engineering-Technology.json +++ b/resources/asia/bangladesh/ym-Rajshahi-University-of-Engineering-Technology.json @@ -1,7 +1,7 @@ { "id": "ym-Rajshahi-University-of-Engineering-Technology", "type": "youthmappers", - "includeLocations": [[88.6283875, 24.36373]], + "includeLocations": [[88.62839, 24.36373]], "countryCodes": ["bd"], "name": "YouthMappers at RUET", "description": "YouthMappers chapter at Rajshahi University of Engineering & Technology", diff --git a/resources/asia/bhutan/ym-Sherubtse-College.json b/resources/asia/bhutan/ym-Sherubtse-College.json index 5b1fce88a..5871af8d9 100644 --- a/resources/asia/bhutan/ym-Sherubtse-College.json +++ b/resources/asia/bhutan/ym-Sherubtse-College.json @@ -1,7 +1,7 @@ { "id": "ym-Sherubtse-College", "type": "youthmappers", - "includeLocations": [[91.52369124999998, 27.286601250000004]], + "includeLocations": [[91.52369, 27.2866]], "countryCodes": ["bt"], "name": "Geographical Society", "description": "YouthMappers chapter at Sherubtse College", diff --git a/resources/asia/india/ym-Gujarat-University.json b/resources/asia/india/ym-Gujarat-University.json index 5321f5a20..47861e7aa 100644 --- a/resources/asia/india/ym-Gujarat-University.json +++ b/resources/asia/india/ym-Gujarat-University.json @@ -1,7 +1,7 @@ { "id": "ym-Gujarat-University", "type": "youthmappers", - "includeLocations": [[72.50976625, 22.9987575]], + "includeLocations": [[72.50977, 22.99876]], "countryCodes": ["in"], "name": "CCIM at Ahmedabad", "description": "YouthMappers chapter at Gujarat University", diff --git a/resources/asia/indonesia/ym-Universitas-Negeri-Makassar.json b/resources/asia/indonesia/ym-Universitas-Negeri-Makassar.json index a3c4192e6..c85b5f76d 100644 --- a/resources/asia/indonesia/ym-Universitas-Negeri-Makassar.json +++ b/resources/asia/indonesia/ym-Universitas-Negeri-Makassar.json @@ -1,7 +1,7 @@ { "id": "ym-Universitas-Negeri-Makassar", "type": "youthmappers", - "includeLocations": [[119.4292025, -5.18612875]], + "includeLocations": [[119.4292, -5.18613]], "countryCodes": ["in"], "name": "Kontur Geografi", "description": "YouthMappers chapter at Universitas Negeri Makassar", diff --git a/resources/asia/indonesia/ym-University-Muhammadiyah-Surakarta.json b/resources/asia/indonesia/ym-University-Muhammadiyah-Surakarta.json index 24b9a66ba..b1d4187d9 100644 --- a/resources/asia/indonesia/ym-University-Muhammadiyah-Surakarta.json +++ b/resources/asia/indonesia/ym-University-Muhammadiyah-Surakarta.json @@ -1,7 +1,7 @@ { "id": "ym-University-Muhammadiyah-Surakarta", "type": "youthmappers", - "includeLocations": [[110.76898625, -7.557580000000001]], + "includeLocations": [[110.76899, -7.55758]], "countryCodes": ["in"], "name": "SpaceTime", "description": "YouthMappers chapter at University Muhammadiyah Surakarta", diff --git a/resources/asia/nepal/ym-Institute-of-Crisis-Management-Studies.json b/resources/asia/nepal/ym-Institute-of-Crisis-Management-Studies.json index d66a2f657..0d24613d5 100644 --- a/resources/asia/nepal/ym-Institute-of-Crisis-Management-Studies.json +++ b/resources/asia/nepal/ym-Institute-of-Crisis-Management-Studies.json @@ -1,7 +1,7 @@ { "id": "ym-Institute-of-Crisis-Management-Studies", "type": "youthmappers", - "includeLocations": [[85.34173125, 27.727588750000002]], + "includeLocations": [[85.34173, 27.72759]], "countryCodes": ["np"], "name": "Institute of Crisis Management Studies YouthMappers", "description": "YouthMappers chapter at Institute of Crisis Management Studies", diff --git a/resources/asia/nepal/ym-Kathmandu-University.json b/resources/asia/nepal/ym-Kathmandu-University.json index ecf4b0c35..492a3b8bb 100644 --- a/resources/asia/nepal/ym-Kathmandu-University.json +++ b/resources/asia/nepal/ym-Kathmandu-University.json @@ -1,7 +1,7 @@ { "id": "ym-Kathmandu-University", "type": "youthmappers", - "includeLocations": [[85.53873, 27.620247499999998]], + "includeLocations": [[85.53873, 27.62025]], "countryCodes": ["np"], "name": "Geomatics Engineering Society,GES", "description": "YouthMappers chapter at Kathmandu University", diff --git a/resources/asia/nepal/ym-Tribhuvan-University.json b/resources/asia/nepal/ym-Tribhuvan-University.json index b2f57e741..9cf13d77b 100644 --- a/resources/asia/nepal/ym-Tribhuvan-University.json +++ b/resources/asia/nepal/ym-Tribhuvan-University.json @@ -1,7 +1,7 @@ { "id": "ym-Tribhuvan-University", "type": "youthmappers", - "includeLocations": [[83.9764525, 28.253795]], + "includeLocations": [[83.97645, 28.2538]], "countryCodes": ["np"], "name": "Geomatics Engineering Students Association", "description": "YouthMappers chapter at Tribhuvan University", diff --git a/resources/europe/germany/ym-Heidelberg-University.json b/resources/europe/germany/ym-Heidelberg-University.json index 72289e1ce..74ae3182f 100644 --- a/resources/europe/germany/ym-Heidelberg-University.json +++ b/resources/europe/germany/ym-Heidelberg-University.json @@ -1,7 +1,7 @@ { "id": "ym-Heidelberg-University", "type": "youthmappers", - "includeLocations": [[8.67038625, 49.41881750000001]], + "includeLocations": [[8.67039, 49.41882]], "countryCodes": ["de"], "name": "disastermappers heidelberg", "description": "YouthMappers chapter at Heidelberg University", diff --git a/resources/europe/italy/ym-Politecnico-di-Milano.json b/resources/europe/italy/ym-Politecnico-di-Milano.json index 0e2d798e1..b4eb21e37 100644 --- a/resources/europe/italy/ym-Politecnico-di-Milano.json +++ b/resources/europe/italy/ym-Politecnico-di-Milano.json @@ -1,7 +1,7 @@ { "id": "ym-Politecnico-di-Milano", "type": "youthmappers", - "includeLocations": [[9.22851625, 45.4599075]], + "includeLocations": [[9.22852, 45.45991]], "countryCodes": ["it"], "name": "PoliMappers", "description": "YouthMappers chapter at Politecnico di Milano", diff --git a/resources/europe/morocco/ym-Universit-Mohammed-V-Rabat.json b/resources/europe/morocco/ym-Universit-Mohammed-V-Rabat.json index 8d5dd6ccd..0f214b8f6 100644 --- a/resources/europe/morocco/ym-Universit-Mohammed-V-Rabat.json +++ b/resources/europe/morocco/ym-Universit-Mohammed-V-Rabat.json @@ -1,7 +1,7 @@ { "id": "ym-Universit-Mohammed-V-Rabat", "type": "youthmappers", - "includeLocations": [[-6.8439525, 33.99862]], + "includeLocations": [[-6.84395, 33.99862]], "countryCodes": ["ma"], "name": "Brahmapoutre at Rabat", "description": "YouthMappers chapter at Université Mohammed V Rabat", diff --git a/resources/europe/spain/ym-Universidad-Autonoma-de-Madrid.json b/resources/europe/spain/ym-Universidad-Autonoma-de-Madrid.json index 46d3d338f..297b120a8 100644 --- a/resources/europe/spain/ym-Universidad-Autonoma-de-Madrid.json +++ b/resources/europe/spain/ym-Universidad-Autonoma-de-Madrid.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-Autonoma-de-Madrid", "type": "youthmappers", - "includeLocations": [[-3.69437125, 40.54647]], + "includeLocations": [[-3.69437, 40.54647]], "countryCodes": ["es"], "name": "YouthMappers at UAM", "description": "YouthMappers chapter at Universidad Autonoma de Madrid", diff --git a/resources/europe/spain/ym-Universidad-Politcnica-de-Madrid.json b/resources/europe/spain/ym-Universidad-Politcnica-de-Madrid.json index fc7cb5902..dfb5bbc55 100644 --- a/resources/europe/spain/ym-Universidad-Politcnica-de-Madrid.json +++ b/resources/europe/spain/ym-Universidad-Politcnica-de-Madrid.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-Politcnica-de-Madrid", "type": "youthmappers", - "includeLocations": [[-3.7173012500000002, 40.4478225]], + "includeLocations": [[-3.7173, 40.44782]], "countryCodes": ["es"], "name": "Mapeo Humanitario", "description": "YouthMappers chapter at Universidad Politécnica de Madrid", diff --git a/resources/europe/turkey/ym-Istanbul-Technical-University.json b/resources/europe/turkey/ym-Istanbul-Technical-University.json index 031346450..cf6ad0594 100644 --- a/resources/europe/turkey/ym-Istanbul-Technical-University.json +++ b/resources/europe/turkey/ym-Istanbul-Technical-University.json @@ -1,7 +1,7 @@ { "id": "ym-Istanbul-Technical-University", "type": "youthmappers", - "includeLocations": [[29.02465375, 41.10542]], + "includeLocations": [[29.02465, 41.10542]], "countryCodes": ["tr"], "name": "YouthMappers ITU", "description": "YouthMappers chapter at Istanbul Technical University", diff --git a/resources/europe/united_kingdom/ym-Queen-Mary-University-of-London.json b/resources/europe/united_kingdom/ym-Queen-Mary-University-of-London.json index a5310bd71..490459ff4 100644 --- a/resources/europe/united_kingdom/ym-Queen-Mary-University-of-London.json +++ b/resources/europe/united_kingdom/ym-Queen-Mary-University-of-London.json @@ -1,7 +1,7 @@ { "id": "ym-Queen-Mary-University-of-London", "type": "youthmappers", - "includeLocations": [[-0.0404925, 51.52381875]], + "includeLocations": [[-0.04049, 51.52382]], "countryCodes": ["uk"], "name": "Queen Mary YouthMappers", "description": "YouthMappers chapter at Queen Mary University of London", diff --git a/resources/europe/united_kingdom/ym-University-of-Exeter.json b/resources/europe/united_kingdom/ym-University-of-Exeter.json index 8aa018d65..5a5b18313 100644 --- a/resources/europe/united_kingdom/ym-University-of-Exeter.json +++ b/resources/europe/united_kingdom/ym-University-of-Exeter.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Exeter", "type": "youthmappers", - "includeLocations": [[-3.53515, 50.736638750000004]], + "includeLocations": [[-3.53515, 50.73664]], "countryCodes": ["uk"], "name": "University of Exeter British Red Cross Missing Maps", "description": "YouthMappers chapter at University of Exeter", diff --git a/resources/europe/united_kingdom/ym-University-of-Warwick.json b/resources/europe/united_kingdom/ym-University-of-Warwick.json index 5122f66f8..ab5f732c8 100644 --- a/resources/europe/united_kingdom/ym-University-of-Warwick.json +++ b/resources/europe/united_kingdom/ym-University-of-Warwick.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Warwick", "type": "youthmappers", - "includeLocations": [[-1.5611912499999998, 52.37905250000001]], + "includeLocations": [[-1.56119, 52.37905]], "countryCodes": ["uk"], "name": "University of Warwick Resilience Mapping Society", "description": "YouthMappers chapter at University of Warwick", diff --git a/resources/middle-east/jordan/ym-Yarmouk-University.json b/resources/middle-east/jordan/ym-Yarmouk-University.json index b84cba8f6..b765939eb 100644 --- a/resources/middle-east/jordan/ym-Yarmouk-University.json +++ b/resources/middle-east/jordan/ym-Yarmouk-University.json @@ -1,7 +1,7 @@ { "id": "ym-Yarmouk-University", "type": "youthmappers", - "includeLocations": [[35.858112500000004, 32.536519999999996]], + "includeLocations": [[35.85811, 32.53652]], "countryCodes": ["jo"], "name": "YouthMappers at YU", "description": "YouthMappers chapter at Yarmouk University", diff --git a/resources/north-america/costa_rica/ym-Universidad-de-Costa-Rica.json b/resources/north-america/costa_rica/ym-Universidad-de-Costa-Rica.json index 14e2ea59b..73325880e 100644 --- a/resources/north-america/costa_rica/ym-Universidad-de-Costa-Rica.json +++ b/resources/north-america/costa_rica/ym-Universidad-de-Costa-Rica.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-de-Costa-Rica", "type": "youthmappers", - "includeLocations": [[-84.05105000000002, 9.93721]], + "includeLocations": [[-84.05105, 9.93721]], "countryCodes": ["cr"], "name": "YouthMappers de Universidad de Costa Rica", "description": "YouthMappers chapter at Universidad de Costa Rica", diff --git a/resources/north-america/honduras/ym-Universidad-Nacional-Autnoma-de-Honduras.json b/resources/north-america/honduras/ym-Universidad-Nacional-Autnoma-de-Honduras.json index 5cb5a3cc2..5be931461 100644 --- a/resources/north-america/honduras/ym-Universidad-Nacional-Autnoma-de-Honduras.json +++ b/resources/north-america/honduras/ym-Universidad-Nacional-Autnoma-de-Honduras.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-Nacional-Autnoma-de-Honduras", "type": "youthmappers", - "includeLocations": [[-87.16598, 14.085052499999998]], + "includeLocations": [[-87.16598, 14.08505]], "countryCodes": ["hn"], "name": "PumaGis Hn", "description": "YouthMappers chapter at Universidad Nacional Autónoma de Honduras", diff --git a/resources/north-america/jamaica/ym-University-of-the-West-Indies-Mona-Campus.json b/resources/north-america/jamaica/ym-University-of-the-West-Indies-Mona-Campus.json index 2b29f718d..e3737b33f 100644 --- a/resources/north-america/jamaica/ym-University-of-the-West-Indies-Mona-Campus.json +++ b/resources/north-america/jamaica/ym-University-of-the-West-Indies-Mona-Campus.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-the-West-Indies-Mona-Campus", "type": "youthmappers", - "includeLocations": [[-76.74601, 18.00629125]], + "includeLocations": [[-76.74601, 18.00629]], "countryCodes": ["jm"], "name": "Libraries Outreach - ODL", "description": "YouthMappers chapter at University of the West Indies, Mona Campus", diff --git a/resources/north-america/nicaragua/ym-Universidad-Nacional-de-Ingenieria.json b/resources/north-america/nicaragua/ym-Universidad-Nacional-de-Ingenieria.json index 8cf98f796..2a32f28bc 100644 --- a/resources/north-america/nicaragua/ym-Universidad-Nacional-de-Ingenieria.json +++ b/resources/north-america/nicaragua/ym-Universidad-Nacional-de-Ingenieria.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-Nacional-de-Ingenieria", "type": "youthmappers", - "includeLocations": [[-86.27050625000001, 12.1316025]], + "includeLocations": [[-86.27051, 12.1316]], "countryCodes": ["ni"], "name": "Yeka Street MGA", "description": "YouthMappers chapter at Universidad Nacional de Ingenieria", diff --git a/resources/north-america/panama/ym-University-of-Panama.json b/resources/north-america/panama/ym-University-of-Panama.json index 59b316ebc..36b22b012 100644 --- a/resources/north-america/panama/ym-University-of-Panama.json +++ b/resources/north-america/panama/ym-University-of-Panama.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Panama", "type": "youthmappers", - "includeLocations": [[-79.54101625, 9.0152675]], + "includeLocations": [[-79.54102, 9.01527]], "countryCodes": ["pa"], "name": "YouthMappers UP", "description": "YouthMappers chapter at University of Panama", diff --git a/resources/north-america/puerto_rico/ym-Universidad-de-Puerto-Rico-Rio-Piedras.json b/resources/north-america/puerto_rico/ym-Universidad-de-Puerto-Rico-Rio-Piedras.json index 46de87e24..db6873d69 100644 --- a/resources/north-america/puerto_rico/ym-Universidad-de-Puerto-Rico-Rio-Piedras.json +++ b/resources/north-america/puerto_rico/ym-Universidad-de-Puerto-Rico-Rio-Piedras.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-de-Puerto-Rico-Rio-Piedras", "type": "youthmappers", - "includeLocations": [[-66.04978375, 18.4027675]], + "includeLocations": [[-66.04978, 18.40277]], "countryCodes": ["pa"], "name": "UPR YouthMappers", "description": "YouthMappers chapter at Universidad de Puerto Rico - Rio Piedras", diff --git a/resources/north-america/united_states/ym-Ball-State-University.json b/resources/north-america/united_states/ym-Ball-State-University.json index 94f7b67bd..4755fe746 100644 --- a/resources/north-america/united_states/ym-Ball-State-University.json +++ b/resources/north-america/united_states/ym-Ball-State-University.json @@ -1,7 +1,7 @@ { "id": "ym-Ball-State-University", "type": "youthmappers", - "includeLocations": [[-85.40688125000001, 40.2058775]], + "includeLocations": [[-85.40688, 40.20588]], "countryCodes": ["us"], "name": "Gamma Theta Upsilon- Iota Omega Chapter", "description": "YouthMappers chapter at Ball State University", diff --git a/resources/north-america/united_states/ym-California-University-of-Pennsylvania.json b/resources/north-america/united_states/ym-California-University-of-Pennsylvania.json index a6b4f1d77..877a32899 100644 --- a/resources/north-america/united_states/ym-California-University-of-Pennsylvania.json +++ b/resources/north-america/united_states/ym-California-University-of-Pennsylvania.json @@ -1,7 +1,7 @@ { "id": "ym-California-University-of-Pennsylvania", "type": "youthmappers", - "includeLocations": [[-79.8925775, 40.0442525]], + "includeLocations": [[-79.89258, 40.04425]], "countryCodes": ["us"], "name": "CalU PA GIS Club", "description": "YouthMappers chapter at California University of Pennsylvania", diff --git a/resources/north-america/united_states/ym-Central-Washington-University.json b/resources/north-america/united_states/ym-Central-Washington-University.json index 2d1f585b2..7c61a050a 100644 --- a/resources/north-america/united_states/ym-Central-Washington-University.json +++ b/resources/north-america/united_states/ym-Central-Washington-University.json @@ -1,7 +1,7 @@ { "id": "ym-Central-Washington-University", "type": "youthmappers", - "includeLocations": [[-120.49804875000001, 46.9800175]], + "includeLocations": [[-120.49805, 46.98002]], "countryCodes": ["us"], "name": "Geography Club", "description": "YouthMappers chapter at Central Washington University", diff --git a/resources/north-america/united_states/ym-Clemson-University.json b/resources/north-america/united_states/ym-Clemson-University.json index 1cde9e150..7cab05696 100644 --- a/resources/north-america/united_states/ym-Clemson-University.json +++ b/resources/north-america/united_states/ym-Clemson-University.json @@ -1,7 +1,7 @@ { "id": "ym-Clemson-University", "type": "youthmappers", - "includeLocations": [[-82.79296749999999, 34.6692075]], + "includeLocations": [[-82.79297, 34.66921]], "countryCodes": ["us"], "name": "Clemson Mappers", "description": "YouthMappers chapter at Clemson University", diff --git a/resources/north-america/united_states/ym-College-of-William-and-Mary.json b/resources/north-america/united_states/ym-College-of-William-and-Mary.json index 633cc9786..0e521ba9e 100644 --- a/resources/north-america/united_states/ym-College-of-William-and-Mary.json +++ b/resources/north-america/united_states/ym-College-of-William-and-Mary.json @@ -1,7 +1,7 @@ { "id": "ym-College-of-William-and-Mary", "type": "youthmappers", - "includeLocations": [[-76.72851625000001, 37.30010875000001]], + "includeLocations": [[-76.72852, 37.30011]], "countryCodes": ["us"], "name": "All over the map!", "description": "YouthMappers chapter at College of William and Mary", diff --git a/resources/north-america/united_states/ym-George-Mason-University.json b/resources/north-america/united_states/ym-George-Mason-University.json index 575ce3297..81a2bf488 100644 --- a/resources/north-america/united_states/ym-George-Mason-University.json +++ b/resources/north-america/united_states/ym-George-Mason-University.json @@ -1,7 +1,7 @@ { "id": "ym-George-Mason-University", "type": "youthmappers", - "includeLocations": [[-77.34375000000001, 38.8224125]], + "includeLocations": [[-77.34375, 38.82241]], "countryCodes": ["us"], "name": "Mason Mappers", "description": "YouthMappers chapter at George Mason University", diff --git a/resources/north-america/united_states/ym-Indiana-University-of-Pennsylvania.json b/resources/north-america/united_states/ym-Indiana-University-of-Pennsylvania.json index 9f81856a9..9a3df06cf 100644 --- a/resources/north-america/united_states/ym-Indiana-University-of-Pennsylvania.json +++ b/resources/north-america/united_states/ym-Indiana-University-of-Pennsylvania.json @@ -1,7 +1,7 @@ { "id": "ym-Indiana-University-of-Pennsylvania", "type": "youthmappers", - "includeLocations": [[-79.16139125, 40.613952499999996]], + "includeLocations": [[-79.16139, 40.61395]], "countryCodes": ["us"], "name": "Geospatial Science Club", "description": "YouthMappers chapter at Indiana University of Pennsylvania", diff --git a/resources/north-america/united_states/ym-Jacksonville-State-University.json b/resources/north-america/united_states/ym-Jacksonville-State-University.json index f1107a1ed..57f2fc856 100644 --- a/resources/north-america/united_states/ym-Jacksonville-State-University.json +++ b/resources/north-america/united_states/ym-Jacksonville-State-University.json @@ -1,7 +1,7 @@ { "id": "ym-Jacksonville-State-University", "type": "youthmappers", - "includeLocations": [[-85.76794749999999, 33.822829999999996]], + "includeLocations": [[-85.76795, 33.82283]], "countryCodes": ["us"], "name": "JSU Disaster Mapping Team", "description": "YouthMappers chapter at Jacksonville State University", diff --git a/resources/north-america/united_states/ym-Kansas-State-University.json b/resources/north-america/united_states/ym-Kansas-State-University.json index b8fbe0d29..a33407b85 100644 --- a/resources/north-america/united_states/ym-Kansas-State-University.json +++ b/resources/north-america/united_states/ym-Kansas-State-University.json @@ -1,7 +1,7 @@ { "id": "ym-Kansas-State-University", "type": "youthmappers", - "includeLocations": [[-96.59179875000001, 39.16396]], + "includeLocations": [[-96.5918, 39.16396]], "countryCodes": ["us"], "name": "Gamma Theta Upsilon: Beta Psi Chapter", "description": "YouthMappers chapter at Kansas State University", diff --git a/resources/north-america/united_states/ym-McGill-University.json b/resources/north-america/united_states/ym-McGill-University.json index f64edccb8..67b439143 100644 --- a/resources/north-america/united_states/ym-McGill-University.json +++ b/resources/north-america/united_states/ym-McGill-University.json @@ -1,7 +1,7 @@ { "id": "ym-McGill-University", "type": "youthmappers", - "includeLocations": [[-73.5786975, 45.5060775]], + "includeLocations": [[-73.5787, 45.50608]], "countryCodes": ["ca"], "name": "Open Mapping Group McGill: A Member of the McGill Undergraduate Geography Society", "description": "YouthMappers chapter at McGill University", diff --git a/resources/north-america/united_states/ym-Monroe-Community-College.json b/resources/north-america/united_states/ym-Monroe-Community-College.json index cc71c8d3d..44b9622b3 100644 --- a/resources/north-america/united_states/ym-Monroe-Community-College.json +++ b/resources/north-america/united_states/ym-Monroe-Community-College.json @@ -1,7 +1,7 @@ { "id": "ym-Monroe-Community-College", "type": "youthmappers", - "includeLocations": [[-77.61025, 43.1013825]], + "includeLocations": [[-77.61025, 43.10138]], "countryCodes": ["us"], "name": "MCC Mapping Corps", "description": "YouthMappers chapter at Monroe Community College", diff --git a/resources/north-america/united_states/ym-New-York-University.json b/resources/north-america/united_states/ym-New-York-University.json index 41aa86291..fbf7ab412 100644 --- a/resources/north-america/united_states/ym-New-York-University.json +++ b/resources/north-america/united_states/ym-New-York-University.json @@ -1,7 +1,7 @@ { "id": "ym-New-York-University", "type": "youthmappers", - "includeLocations": [[-74.00390625, 40.71376875]], + "includeLocations": [[-74.00391, 40.71377]], "countryCodes": ["us"], "name": "NYU mHealth Initiative Mapping Corps", "description": "YouthMappers chapter at New York University", diff --git a/resources/north-america/united_states/ym-Ohio-Wesleyan-University.json b/resources/north-america/united_states/ym-Ohio-Wesleyan-University.json index f21dfb6ea..0bf1ffd1f 100644 --- a/resources/north-america/united_states/ym-Ohio-Wesleyan-University.json +++ b/resources/north-america/united_states/ym-Ohio-Wesleyan-University.json @@ -1,7 +1,7 @@ { "id": "ym-Ohio-Wesleyan-University", "type": "youthmappers", - "includeLocations": [[-83.06822874999999, 40.29605]], + "includeLocations": [[-83.06823, 40.29605]], "countryCodes": ["us"], "name": "Environment and Wildlife Club", "description": "YouthMappers chapter at Ohio Wesleyan University", diff --git a/resources/north-america/united_states/ym-Oklahoma-State-University.json b/resources/north-america/united_states/ym-Oklahoma-State-University.json index a5c016779..e8a510da8 100644 --- a/resources/north-america/united_states/ym-Oklahoma-State-University.json +++ b/resources/north-america/united_states/ym-Oklahoma-State-University.json @@ -1,7 +1,7 @@ { "id": "ym-Oklahoma-State-University", "type": "youthmappers", - "includeLocations": [[-97.07253125, 36.12077125]], + "includeLocations": [[-97.07253, 36.12077]], "countryCodes": ["us"], "name": "Geography Club", "description": "YouthMappers chapter at Oklahoma State University", diff --git a/resources/north-america/united_states/ym-SUNY-at-Fredonia.json b/resources/north-america/united_states/ym-SUNY-at-Fredonia.json index 3a2e0eb4a..9aa2c2987 100644 --- a/resources/north-america/united_states/ym-SUNY-at-Fredonia.json +++ b/resources/north-america/united_states/ym-SUNY-at-Fredonia.json @@ -1,7 +1,7 @@ { "id": "ym-SUNY-at-Fredonia", "type": "youthmappers", - "includeLocations": [[-79.36523375, 42.423255]], + "includeLocations": [[-79.36523, 42.42325]], "countryCodes": ["us"], "name": "Geoventurers", "description": "YouthMappers chapter at SUNY at Fredonia", diff --git a/resources/north-america/united_states/ym-State-University-of-New-York-Geneseo.json b/resources/north-america/united_states/ym-State-University-of-New-York-Geneseo.json index 8f83d0ba4..dd4f3f361 100644 --- a/resources/north-america/united_states/ym-State-University-of-New-York-Geneseo.json +++ b/resources/north-america/united_states/ym-State-University-of-New-York-Geneseo.json @@ -1,7 +1,7 @@ { "id": "ym-State-University-of-New-York-Geneseo", "type": "youthmappers", - "includeLocations": [[-77.78320375, 42.8113175]], + "includeLocations": [[-77.7832, 42.81132]], "countryCodes": ["us"], "name": "SUNY Geneseo GIS Association", "description": "YouthMappers chapter at State University of New York Geneseo", diff --git a/resources/north-america/united_states/ym-Texas-Tech-University.json b/resources/north-america/united_states/ym-Texas-Tech-University.json index 3f3a1d16c..8d48dec30 100644 --- a/resources/north-america/united_states/ym-Texas-Tech-University.json +++ b/resources/north-america/united_states/ym-Texas-Tech-University.json @@ -1,7 +1,7 @@ { "id": "ym-Texas-Tech-University", "type": "youthmappers", - "includeLocations": [[-101.86523375, 33.57786875]], + "includeLocations": [[-101.86523, 33.57787]], "countryCodes": ["us"], "name": "YouthMappers at TTU", "description": "YouthMappers chapter at Texas Tech University", diff --git a/resources/north-america/united_states/ym-The-Citadel.json b/resources/north-america/united_states/ym-The-Citadel.json index 3c54b772c..d25758603 100644 --- a/resources/north-america/united_states/ym-The-Citadel.json +++ b/resources/north-america/united_states/ym-The-Citadel.json @@ -1,7 +1,7 @@ { "id": "ym-The-Citadel", "type": "youthmappers", - "includeLocations": [[-79.96063625000001, 32.79693]], + "includeLocations": [[-79.96064, 32.79693]], "countryCodes": ["us"], "name": "YouthMappers at The Citadel", "description": "YouthMappers chapter at The Citadel", diff --git a/resources/north-america/united_states/ym-The-George-Washington-University.json b/resources/north-america/united_states/ym-The-George-Washington-University.json index b0338ad36..878bb555a 100644 --- a/resources/north-america/united_states/ym-The-George-Washington-University.json +++ b/resources/north-america/united_states/ym-The-George-Washington-University.json @@ -1,7 +1,7 @@ { "id": "ym-The-George-Washington-University", "type": "youthmappers", - "includeLocations": [[-77.04812249999999, 38.89966]], + "includeLocations": [[-77.04812, 38.89966]], "countryCodes": ["us"], "name": "Humanitarian Mapping Society", "description": "YouthMappers chapter at The George Washington University", diff --git a/resources/north-america/united_states/ym-The-Johns-Hopkins-University-SAIS.json b/resources/north-america/united_states/ym-The-Johns-Hopkins-University-SAIS.json index 6801a0cbd..56efdc6a1 100644 --- a/resources/north-america/united_states/ym-The-Johns-Hopkins-University-SAIS.json +++ b/resources/north-america/united_states/ym-The-Johns-Hopkins-University-SAIS.json @@ -1,7 +1,7 @@ { "id": "ym-The-Johns-Hopkins-University-SAIS", "type": "youthmappers", - "includeLocations": [[-77.04027125000002, 38.907965000000004]], + "includeLocations": [[-77.04027, 38.90797]], "countryCodes": ["us"], "name": "SAIS YouthMappers", "description": "YouthMappers chapter at The Johns Hopkins University, SAIS", diff --git a/resources/north-america/united_states/ym-The-Pennsylvania-State-University.json b/resources/north-america/united_states/ym-The-Pennsylvania-State-University.json index 44bdd2914..92deb77b7 100644 --- a/resources/north-america/united_states/ym-The-Pennsylvania-State-University.json +++ b/resources/north-america/united_states/ym-The-Pennsylvania-State-University.json @@ -1,7 +1,7 @@ { "id": "ym-The-Pennsylvania-State-University", "type": "youthmappers", - "includeLocations": [[-77.85975875, 40.797999999999995]], + "includeLocations": [[-77.85976, 40.798]], "countryCodes": ["us"], "name": "Penn State GIS Coalition", "description": "YouthMappers chapter at The Pennsylvania State University", diff --git a/resources/north-america/united_states/ym-UW-Madison.json b/resources/north-america/united_states/ym-UW-Madison.json index 44b9ec1b7..e3ba01511 100644 --- a/resources/north-america/united_states/ym-UW-Madison.json +++ b/resources/north-america/united_states/ym-UW-Madison.json @@ -1,7 +1,7 @@ { "id": "ym-UW-Madison", "type": "youthmappers", - "includeLocations": [[-89.41268124999999, 43.07644875]], + "includeLocations": [[-89.41268, 43.07645]], "countryCodes": ["us"], "name": "BadgerMaps", "description": "YouthMappers chapter at UW-Madison", diff --git a/resources/north-america/united_states/ym-University-of-California-Davis.json b/resources/north-america/united_states/ym-University-of-California-Davis.json index 0076b7c08..fd407d90b 100644 --- a/resources/north-america/united_states/ym-University-of-California-Davis.json +++ b/resources/north-america/united_states/ym-University-of-California-Davis.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-California-Davis", "type": "youthmappers", - "includeLocations": [[-121.72851624999998, 38.547988749999995]], + "includeLocations": [[-121.72852, 38.54799]], "countryCodes": ["us"], "name": "Mapping Club", "description": "YouthMappers chapter at University of California, Davis", diff --git a/resources/north-america/united_states/ym-University-of-Central-Florida.json b/resources/north-america/united_states/ym-University-of-Central-Florida.json index 7c6f5704f..5a1440e3a 100644 --- a/resources/north-america/united_states/ym-University-of-Central-Florida.json +++ b/resources/north-america/united_states/ym-University-of-Central-Florida.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Central-Florida", "type": "youthmappers", - "includeLocations": [[-81.38672, 28.458909999999996]], + "includeLocations": [[-81.38672, 28.45891]], "countryCodes": ["us"], "name": "Geospatial Information Society", "description": "YouthMappers chapter at University of Central Florida", diff --git a/resources/north-america/united_states/ym-University-of-Maryland-College-Park.json b/resources/north-america/united_states/ym-University-of-Maryland-College-Park.json index fb251b4a1..87e71bb8d 100644 --- a/resources/north-america/united_states/ym-University-of-Maryland-College-Park.json +++ b/resources/north-america/united_states/ym-University-of-Maryland-College-Park.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Maryland-College-Park", "type": "youthmappers", - "includeLocations": [[-76.9433175, 38.98672]], + "includeLocations": [[-76.94332, 38.98672]], "countryCodes": ["us"], "name": "Geography Club", "description": "YouthMappers chapter at University of Maryland - College Park", diff --git a/resources/north-america/united_states/ym-University-of-North-Texas.json b/resources/north-america/united_states/ym-University-of-North-Texas.json index 21fb07b59..ba4037f39 100644 --- a/resources/north-america/united_states/ym-University-of-North-Texas.json +++ b/resources/north-america/united_states/ym-University-of-North-Texas.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-North-Texas", "type": "youthmappers", - "includeLocations": [[-97.15254625, 33.2073475]], + "includeLocations": [[-97.15255, 33.20735]], "countryCodes": ["us"], "name": "UNT Geography Club", "description": "YouthMappers chapter at University of North Texas", diff --git a/resources/north-america/united_states/ym-University-of-Northern-Colorado.json b/resources/north-america/united_states/ym-University-of-Northern-Colorado.json index 4f7d7b392..14ffaed59 100644 --- a/resources/north-america/united_states/ym-University-of-Northern-Colorado.json +++ b/resources/north-america/united_states/ym-University-of-Northern-Colorado.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Northern-Colorado", "type": "youthmappers", - "includeLocations": [[-104.69563, 40.4039525]], + "includeLocations": [[-104.69563, 40.40395]], "countryCodes": ["us"], "name": "UNCO Geography and GIS Club", "description": "YouthMappers chapter at University of Northern Colorado", diff --git a/resources/north-america/united_states/ym-University-of-Oregon.json b/resources/north-america/united_states/ym-University-of-Oregon.json index 1f0276148..a922b510e 100644 --- a/resources/north-america/united_states/ym-University-of-Oregon.json +++ b/resources/north-america/united_states/ym-University-of-Oregon.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Oregon", "type": "youthmappers", - "includeLocations": [[-123.04687625000001, 44.024210000000004]], + "includeLocations": [[-123.04688, 44.02421]], "countryCodes": ["us"], "name": "Map by Northwest", "description": "YouthMappers chapter at University of Oregon", diff --git a/resources/north-america/united_states/ym-University-of-Redlands.json b/resources/north-america/united_states/ym-University-of-Redlands.json index e0ba90559..a33aa0338 100644 --- a/resources/north-america/united_states/ym-University-of-Redlands.json +++ b/resources/north-america/united_states/ym-University-of-Redlands.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Redlands", "type": "youthmappers", - "includeLocations": [[-117.16339125, 34.0629525]], + "includeLocations": [[-117.16339, 34.06295]], "countryCodes": ["us"], "name": "URSpatial Geo-Thinkers", "description": "YouthMappers chapter at University of Redlands", diff --git a/resources/north-america/united_states/ym-University-of-South-Carolina.json b/resources/north-america/united_states/ym-University-of-South-Carolina.json index 409608505..038b3b02b 100644 --- a/resources/north-america/united_states/ym-University-of-South-Carolina.json +++ b/resources/north-america/united_states/ym-University-of-South-Carolina.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-South-Carolina", "type": "youthmappers", - "includeLocations": [[-81.03515625, 34.01609]], + "includeLocations": [[-81.03516, 34.01609]], "countryCodes": ["us"], "name": "Geography Graduate Student Association", "description": "YouthMappers chapter at University of South Carolina", diff --git a/resources/north-america/united_states/ym-University-of-Southern-California.json b/resources/north-america/united_states/ym-University-of-Southern-California.json index ce1fd64e3..74423832c 100644 --- a/resources/north-america/united_states/ym-University-of-Southern-California.json +++ b/resources/north-america/united_states/ym-University-of-Southern-California.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Southern-California", "type": "youthmappers", - "includeLocations": [[-118.30078125, 34.01609]], + "includeLocations": [[-118.30078, 34.01609]], "countryCodes": ["us"], "name": "SC Mappers", "description": "YouthMappers chapter at University of Southern California", diff --git a/resources/north-america/united_states/ym-University-of-Vermont.json b/resources/north-america/united_states/ym-University-of-Vermont.json index e8c8bfa1e..e27d53b4b 100644 --- a/resources/north-america/united_states/ym-University-of-Vermont.json +++ b/resources/north-america/united_states/ym-University-of-Vermont.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Vermont", "type": "youthmappers", - "includeLocations": [[-73.21289, 44.464935]], + "includeLocations": [[-73.21289, 44.46493]], "countryCodes": ["us"], "name": "University of Vermont Humanitarian Mapping Club", "description": "YouthMappers chapter at University of Vermont", diff --git a/resources/north-america/united_states/ym-University-of-Victoria.json b/resources/north-america/united_states/ym-University-of-Victoria.json index 847b4babc..7f73f38a0 100644 --- a/resources/north-america/united_states/ym-University-of-Victoria.json +++ b/resources/north-america/united_states/ym-University-of-Victoria.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Victoria", "type": "youthmappers", - "includeLocations": [[-123.31185625, 48.4632125]], + "includeLocations": [[-123.31186, 48.46321]], "name": "Society of Geography Students", "description": "YouthMappers chapter at University of Victoria", "extendedDescription": "SOGS seeks to promote and represent social and academic interests within the Department of Geography. This is expressed by four key goals: To provide a forum for the discussion of matters concerning the quality and accessibility of education within geography; to provide a means of expressing a consensus of student opinion to deparhnental faculty through representation at deparkrnental meetings and on departrnental committees; to undertake anangements for such activities as are for the benefit of students and are seen to be within the field of interest of students in geography; to act as a liaison through the UVSS and the Course Union Council with other student groups on campus", diff --git a/resources/north-america/united_states/ym-University-of-Wyoming.json b/resources/north-america/united_states/ym-University-of-Wyoming.json index d17b72bed..f0cbdea3a 100644 --- a/resources/north-america/united_states/ym-University-of-Wyoming.json +++ b/resources/north-america/united_states/ym-University-of-Wyoming.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-Wyoming", "type": "youthmappers", - "includeLocations": [[-105.56651, 41.314761250000004]], + "includeLocations": [[-105.56651, 41.31476]], "countryCodes": ["us"], "name": "Gamma Theta Upsilon/Geography Club", "description": "YouthMappers chapter at University of Wyoming", diff --git a/resources/north-america/united_states/ym-Vassar-College.json b/resources/north-america/united_states/ym-Vassar-College.json index 0a16db5bd..e9257a28a 100644 --- a/resources/north-america/united_states/ym-Vassar-College.json +++ b/resources/north-america/united_states/ym-Vassar-College.json @@ -1,7 +1,7 @@ { "id": "ym-Vassar-College", "type": "youthmappers", - "includeLocations": [[-73.89515000000002, 41.6865825]], + "includeLocations": [[-73.89515, 41.68658]], "countryCodes": ["us"], "name": "Hudson Valley Mappers", "description": "YouthMappers chapter at Vassar College", diff --git a/resources/north-america/united_states/ym-Villanova-University.json b/resources/north-america/united_states/ym-Villanova-University.json index ae7270ad7..d5c67f02f 100644 --- a/resources/north-america/united_states/ym-Villanova-University.json +++ b/resources/north-america/united_states/ym-Villanova-University.json @@ -1,7 +1,7 @@ { "id": "ym-Villanova-University", "type": "youthmappers", - "includeLocations": [[-75.34360625000001, 40.0371425]], + "includeLocations": [[-75.34361, 40.03714]], "countryCodes": ["us"], "name": "The Villanova Globeplotters", "description": "YouthMappers chapter at Villanova University", diff --git a/resources/north-america/united_states/ym-West-Virginia-University.json b/resources/north-america/united_states/ym-West-Virginia-University.json index 29a3cc6b1..8b63e068b 100644 --- a/resources/north-america/united_states/ym-West-Virginia-University.json +++ b/resources/north-america/united_states/ym-West-Virginia-University.json @@ -1,7 +1,7 @@ { "id": "ym-West-Virginia-University", "type": "youthmappers", - "includeLocations": [[-79.98047, 39.639355]], + "includeLocations": [[-79.98047, 39.63936]], "countryCodes": ["us"], "name": "Maptime Morgantown", "description": "YouthMappers chapter at West Virginia University", diff --git a/resources/north-america/united_states/ym-Western-Michigan-University.json b/resources/north-america/united_states/ym-Western-Michigan-University.json index f961aac43..9a0ec3e0c 100644 --- a/resources/north-america/united_states/ym-Western-Michigan-University.json +++ b/resources/north-america/united_states/ym-Western-Michigan-University.json @@ -1,7 +1,7 @@ { "id": "ym-Western-Michigan-University", "type": "youthmappers", - "includeLocations": [[-85.61041999999999, 42.28342000000001]], + "includeLocations": [[-85.61042, 42.28342]], "countryCodes": ["us"], "name": "Geography Club", "description": "YouthMappers chapter at Western Michigan University", diff --git a/resources/south-america/colombia/ym-Universidad-Distrital-Francisco-Jose-de-Caldas.json b/resources/south-america/colombia/ym-Universidad-Distrital-Francisco-Jose-de-Caldas.json index cc05b0254..8c0c0fb94 100644 --- a/resources/south-america/colombia/ym-Universidad-Distrital-Francisco-Jose-de-Caldas.json +++ b/resources/south-america/colombia/ym-Universidad-Distrital-Francisco-Jose-de-Caldas.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-Distrital-Francisco-Jose-de-Caldas", "type": "youthmappers", - "includeLocations": [[-74.09179875000001, 4.65306]], + "includeLocations": [[-74.0918, 4.65306]], "countryCodes": ["co"], "name": "YouthMappers at Bogota", "description": "YouthMappers chapter at Universidad Distrital Francisco Jose de Caldas", diff --git a/resources/south-america/colombia/ym-Universidad-Nacional-de-Colombia.json b/resources/south-america/colombia/ym-Universidad-Nacional-de-Colombia.json index 0862a0247..e52901f2c 100644 --- a/resources/south-america/colombia/ym-Universidad-Nacional-de-Colombia.json +++ b/resources/south-america/colombia/ym-Universidad-Nacional-de-Colombia.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-Nacional-de-Colombia", "type": "youthmappers", - "includeLocations": [[-74.09179875000001, 4.65306]], + "includeLocations": [[-74.0918, 4.65306]], "countryCodes": ["co"], "name": "Grupo UN", "description": "YouthMappers chapter at Universidad Nacional de Colombia", diff --git a/resources/south-america/colombia/ym-Universidad-de-Antioquia.json b/resources/south-america/colombia/ym-Universidad-de-Antioquia.json index 72e5f9cde..7e4be195d 100644 --- a/resources/south-america/colombia/ym-Universidad-de-Antioquia.json +++ b/resources/south-america/colombia/ym-Universidad-de-Antioquia.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-de-Antioquia", "type": "youthmappers", - "includeLocations": [[-75.5859375, 6.227911250000001]], + "includeLocations": [[-75.58594, 6.22791]], "countryCodes": ["co"], "name": "Geomatica UDEA", "description": "YouthMappers chapter at Universidad de Antioquia", diff --git a/resources/south-america/colombia/ym-Universidad-de-La-Guajira.json b/resources/south-america/colombia/ym-Universidad-de-La-Guajira.json index 70be3ba3a..20724735b 100644 --- a/resources/south-america/colombia/ym-Universidad-de-La-Guajira.json +++ b/resources/south-america/colombia/ym-Universidad-de-La-Guajira.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-de-La-Guajira", "type": "youthmappers", - "includeLocations": [[-72.86132875, 11.523042499999999]], + "includeLocations": [[-72.86133, 11.52304]], "countryCodes": ["co"], "name": "Grupo Mesh", "description": "YouthMappers chapter at Universidad de La Guajira", diff --git a/resources/south-america/colombia/ym-Universidad-de-Los-Andes.json b/resources/south-america/colombia/ym-Universidad-de-Los-Andes.json index 540fa14cf..ca2d110b9 100644 --- a/resources/south-america/colombia/ym-Universidad-de-Los-Andes.json +++ b/resources/south-america/colombia/ym-Universidad-de-Los-Andes.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-de-Los-Andes", "type": "youthmappers", - "includeLocations": [[-74.0917975, 4.565454999999999]], + "includeLocations": [[-74.0918, 4.56545]], "countryCodes": ["co"], "name": "Cartografos Uniandes", "description": "YouthMappers chapter at Universidad de Los Andes", diff --git a/resources/south-america/colombia/ym-Universidad-de-San-Buenaventura.json b/resources/south-america/colombia/ym-Universidad-de-San-Buenaventura.json index 5d9fb88ad..1c7e02131 100644 --- a/resources/south-america/colombia/ym-Universidad-de-San-Buenaventura.json +++ b/resources/south-america/colombia/ym-Universidad-de-San-Buenaventura.json @@ -1,7 +1,7 @@ { "id": "ym-Universidad-de-San-Buenaventura", "type": "youthmappers", - "includeLocations": [[-75.5859375, 6.227911250000001]], + "includeLocations": [[-75.58594, 6.22791]], "countryCodes": ["co"], "name": "YouthMappers San Buenaventura", "description": "YouthMappers chapter at Universidad de San Buenaventura", From 16c218e794fc476fc10ea92867647b67b61eb177 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 14 Nov 2019 15:36:19 -0500 Subject: [PATCH 11/35] Replace a few Philippines YouthMappers geojsons with centroid points (they didn't get rolled into the previous updates because they weren't using the circular geojson geometries) --- ...University-Institute-of-Technology.geojson | 19 ------------------- ...e-Philippines-Resilience-Institute.geojson | 11 ----------- ...rn-University-Institute-of-Technology.json | 2 +- ...-the-Philippines-Resilience-Institute.json | 2 +- 4 files changed, 2 insertions(+), 32 deletions(-) delete mode 100644 features/asia/philippines/Far-Eastern-University-Institute-of-Technology.geojson delete mode 100644 features/asia/philippines/University-of-the-Philippines-Resilience-Institute.geojson diff --git a/features/asia/philippines/Far-Eastern-University-Institute-of-Technology.geojson b/features/asia/philippines/Far-Eastern-University-Institute-of-Technology.geojson deleted file mode 100644 index 96993d544..000000000 --- a/features/asia/philippines/Far-Eastern-University-Institute-of-Technology.geojson +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "Feature", - "id": "far-eastern-university-institute-of-technology", - "properties": {"area": 0}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [120.98888, 14.60404], - [120.98887, 14.60385], - [120.98861, 14.60381], - [120.98839, 14.60362], - [120.98819, 14.60383], - [120.98849, 14.60444], - [120.98888, 14.60404] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/philippines/University-of-the-Philippines-Resilience-Institute.geojson b/features/asia/philippines/University-of-the-Philippines-Resilience-Institute.geojson deleted file mode 100644 index c253ebc31..000000000 --- a/features/asia/philippines/University-of-the-Philippines-Resilience-Institute.geojson +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "Feature", - "id": "university-of-the-philippines-resilience-institute", - "properties": {"area": 57.55}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [[121.02, 14.68], [121.1, 14.68], [121.1, 14.62], [121.02, 14.62], [121.02, 14.68]] - ] - } -} \ No newline at end of file diff --git a/resources/asia/philippines/ym-Far-Eastern-University-Institute-of-Technology.json b/resources/asia/philippines/ym-Far-Eastern-University-Institute-of-Technology.json index 0c5904e78..780626b1b 100644 --- a/resources/asia/philippines/ym-Far-Eastern-University-Institute-of-Technology.json +++ b/resources/asia/philippines/ym-Far-Eastern-University-Institute-of-Technology.json @@ -1,7 +1,7 @@ { "id": "ym-Far-Eastern-University-Institute-of-Technology", "type": "youthmappers", - "includeLocations": ["far-eastern-university-institute-of-technology.geojson"], + "includeLocations": [[120.98854, 14.60403]], "countryCodes": ["ph"], "name": "Junior Philippines Computer Society", "description": "YouthMappers chapter at Far Eastern University -Institute of Technology", diff --git a/resources/asia/philippines/ym-University-of-the-Philippines-Resilience-Institute.json b/resources/asia/philippines/ym-University-of-the-Philippines-Resilience-Institute.json index 0fd534b98..0ec7a0f94 100644 --- a/resources/asia/philippines/ym-University-of-the-Philippines-Resilience-Institute.json +++ b/resources/asia/philippines/ym-University-of-the-Philippines-Resilience-Institute.json @@ -1,7 +1,7 @@ { "id": "ym-University-of-the-Philippines-Resilience-Institute", "type": "youthmappers", - "includeLocations": ["university-of-the-philippines-resilience-institute.geojson"], + "includeLocations": [[121.06, 14.65]], "countryCodes": ["ph"], "name": "YouthMappers UP Resilience Institute", "description": "YouthMappers chapter at University of the Philippines Resilience Institute", From 5eaa8abf0b23ae66dbfde32c94782085d0d0283b Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 14 Nov 2019 15:38:37 -0500 Subject: [PATCH 12/35] pacify eslint --- build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.js b/build.js index 0f73ee47d..38a29643f 100644 --- a/build.js +++ b/build.js @@ -139,7 +139,7 @@ function generateResources(tstrings, features) { if (resource.languageCodes) { obj.languageCodes = resource.languageCodes.sort(); } if (resource.name) { obj.name = resource.name; } if (resource.description) { obj.description = resource.description; } - if (resource.extendedDescription) { obj.extendedDescription = resource.extendedDescription } + if (resource.extendedDescription) { obj.extendedDescription = resource.extendedDescription; } if (resource.url) { obj.url = resource.url; } if (resource.signupUrl) { obj.signupUrl = resource.signupUrl; } if (resource.contacts) { obj.contacts = resource.contacts; } From 21a57f889723aa575c045c5d5fa9420c793ce0f1 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 14 Nov 2019 22:43:19 -0500 Subject: [PATCH 13/35] Perform trivial geojson -> country-coder replacements --- build.js | 39 +- features/africa/africa_full.geojson | 30 -- features/africa/botswana/botswana.geojson | 149 ------ features/africa/ghana/ghana.geojson | 126 ----- features/africa/kenya/kenya.geojson | 74 --- features/africa/madagascar/madagascar.geojson | 9 - features/asia/afghanistan/afghanistan.geojson | 81 --- features/asia/asia_full.geojson | 70 --- features/asia/bangladesh/bangladesh.geojson | 48 -- features/asia/india/india_full.geojson | 113 ----- features/asia/indonesia/indonesia.geojson | 143 ------ features/asia/iran/iran.geojson | 118 ----- features/asia/japan/japan.geojson | 59 --- features/asia/malaysia/malaysia.geojson | 185 ------- features/asia/mongolia/mongolia.geojson | 87 ---- features/asia/myanmar/myanmar.geojson | 56 --- features/asia/nepal/nepal.geojson | 35 -- features/asia/philippines/philippines.geojson | 20 - features/asia/russia/russia.geojson | 311 ------------ features/asia/sri_lanka/sri_lanka.geojson | 22 - features/asia/taiwan/taiwan.geojson | 11 - features/asia/thailand/thailand.geojson | 32 -- features/europe/albania/albania.geojson | 64 --- features/europe/austria/austria.geojson | 203 -------- features/europe/belarus/belarus.geojson | 50 -- features/europe/belgium/belgium.geojson | 200 -------- .../bosnia_herzegovina.geojson | 101 ---- features/europe/croatia/croatia.geojson | 153 ------ .../europe/czech_republic/czechia.geojson | 28 -- features/europe/denmark/denmark.geojson | 53 -- features/europe/finland/finland.geojson | 71 --- features/europe/france/france.geojson | 341 ------------- features/europe/germany/germany.geojson | 159 ------ features/europe/hungary/hungary.geojson | 78 --- features/europe/iceland/iceland.geojson | 9 - features/europe/ireland/ireland.geojson | 9 - features/europe/italy/italy.geojson | 83 ---- features/europe/kosovo/kosovo.geojson | 192 ------- features/europe/luxembourg/luxembourg.geojson | 138 ------ .../europe/netherlands/netherlands.geojson | 128 ----- features/europe/norway/norway.geojson | 46 -- features/europe/poland/poland.geojson | 59 --- features/europe/portugal/portugal.geojson | 49 -- features/europe/slovenia/slovenia.geojson | 189 ------- features/europe/spain/spain.geojson | 153 ------ features/europe/sweden/sweden.geojson | 110 ----- .../europe/switzerland/switzerland.geojson | 232 --------- features/europe/ukraine/ukraine.geojson | 196 -------- .../united_kingdom/united_kingdom.geojson | 224 --------- features/middle-east/israel/israel.geojson | 49 -- .../saudi_arabia/saudi_arabia.geojson | 50 -- .../north-america/canada/canada_full.geojson | 169 ------- features/north-america/cuba/cuba.geojson | 19 - .../north-america/nicaragua/nicaragua.geojson | 38 -- .../united_states/usa_full.geojson | 146 ------ .../oceania/australia/australia_full.geojson | 46 -- .../new_zealand/new_zealand_full.geojson | 22 - features/oceania/oceania_full.geojson | 28 -- .../south-america/argentina/argentina.geojson | 226 --------- .../south-america/bolivia/bolivia.geojson | 112 ----- features/south-america/brazil/brazil.geojson | 78 --- features/south-america/brazil/rs.geojson | 41 -- features/south-america/chile/chile.geojson | 149 ------ .../south-america/colombia/colombia.geojson | 149 ------ .../south-america/ecuador/ecuador.geojson | 77 --- .../south-america/paraguay/paraguay.geojson | 85 ---- features/south-america/peru/peru.geojson | 95 ---- .../south-america/uruguay/uruguay.geojson | 48 -- .../south-america/venezuela/venezuela.geojson | 467 ------------------ resources/africa/botswana/bw-facebook.json | 2 +- resources/africa/botswana/bw-twitter.json | 2 +- resources/africa/ghana/osm-gh-facebook.json | 2 +- resources/africa/ghana/osm-gh-twitter.json | 2 +- resources/africa/ghana/talk-gh.json | 2 +- resources/africa/kenya/osm-kenya.json | 2 +- .../africa/madagascar/osm-mg-facebook.json | 2 +- resources/africa/madagascar/talk-mg.json | 2 +- resources/africa/osm-africa-telegram.json | 2 +- .../afghanistan/osm-afghanistan-facebook.json | 2 +- .../bangladesh/osm-bangladesh-facebook.json | 2 +- resources/asia/india/osm-india-facebook.json | 2 +- resources/asia/india/osm-india-forum.json | 2 +- resources/asia/india/osm-india-github.json | 2 +- .../asia/india/osm-india-mailing-list.json | 2 +- resources/asia/india/osm-india-telegram.json | 2 +- resources/asia/india/osm-india-twitter.json | 2 +- resources/asia/india/osm-india-website.json | 2 +- resources/asia/india/osm-india-wiki.json | 2 +- resources/asia/india/osm-india-youtube.json | 2 +- resources/asia/indonesia/indonesia.json | 2 +- resources/asia/iran/osm-iran-aparat.json | 2 +- resources/asia/iran/osm-iran-forum.json | 2 +- resources/asia/iran/osm-iran-telegram.json | 2 +- resources/asia/japan/OSM-Japan-facebook.json | 2 +- .../asia/japan/OSM-Japan-mailinglist.json | 2 +- resources/asia/japan/OSM-Japan-telegram.json | 2 +- resources/asia/japan/OSM-Japan-twitter.json | 2 +- resources/asia/japan/OSM-Japan-website.json | 2 +- resources/asia/malaysia/OSM-MY-facebook.json | 2 +- resources/asia/malaysia/OSM-MY-forum.json | 2 +- resources/asia/malaysia/OSM-MY-matrix.json | 2 +- resources/asia/mongolia/mongolia.json | 2 +- .../asia/myanmar/osm-myanmar-facebook.json | 2 +- resources/asia/nepal/osm-nepal-facebook.json | 2 +- resources/asia/osm-asia-mailing-list.json | 2 +- resources/asia/osm-asia-telegram.json | 2 +- .../asia/philippines/OSM-PH-facebook.json | 2 +- .../asia/philippines/OSM-PH-mailinglist.json | 2 +- resources/asia/philippines/OSM-PH-slack.json | 2 +- .../asia/philippines/OSM-PH-telegram.json | 2 +- resources/asia/russia/OSM-RU-forum.json | 2 +- resources/asia/russia/OSM-RU-telegram.json | 2 +- .../sri_lanka/OSM-sri-lanka-facebook.json | 2 +- resources/asia/taiwan/OSM-TW-facebook.json | 2 +- resources/asia/taiwan/OSM-TW-mailinglist.json | 2 +- resources/asia/taiwan/OSM-TW-telegram.json | 2 +- resources/asia/thailand/OSM-TH-facebook.json | 2 +- resources/asia/thailand/OSM-TH-forum.json | 2 +- resources/europe/albania/al-forum.json | 2 +- resources/europe/albania/al-telegram.json | 2 +- resources/europe/austria/at-forum.json | 2 +- resources/europe/austria/at-mailinglist.json | 2 +- resources/europe/austria/at-twitter.json | 2 +- resources/europe/austria/osm-at.json | 2 +- resources/europe/belarus/byosm.json | 2 +- resources/europe/belgium/be-chapter.json | 2 +- resources/europe/belgium/be-facebook.json | 2 +- resources/europe/belgium/be-forum.json | 2 +- resources/europe/belgium/be-irc.json | 2 +- resources/europe/belgium/be-mailinglist.json | 2 +- resources/europe/belgium/be-matrix.json | 2 +- resources/europe/belgium/be-meetup.json | 2 +- resources/europe/belgium/be-twitter.json | 2 +- .../bosnia_herzegovina/OSM-BiH-telegram.json | 2 +- resources/europe/croatia/hr-facebook.json | 2 +- resources/europe/croatia/hr-irc.json | 2 +- resources/europe/croatia/hr-mailinglist.json | 2 +- .../czech_republic/czech-community.json | 2 +- .../europe/czech_republic/osmcz-facebook.json | 2 +- .../europe/czech_republic/osmcz-telegram.json | 2 +- .../europe/czech_republic/osmcz-twitter.json | 2 +- .../czech_republic/talk-cz-mailinglist.json | 2 +- resources/europe/denmark/dk-forum.json | 2 +- resources/europe/denmark/dk-irc.json | 2 +- resources/europe/denmark/dk-mailinglist.json | 2 +- resources/europe/finland/fi-forum.json | 2 +- resources/europe/finland/fi-irc.json | 2 +- resources/europe/finland/fi-mailinglist.json | 2 +- resources/europe/france/fr-chapter.json | 2 +- resources/europe/france/fr-facebook.json | 2 +- resources/europe/france/fr-forum.json | 2 +- resources/europe/france/fr-irc.json | 2 +- resources/europe/france/fr-mailinglist.json | 2 +- resources/europe/france/fr-telegram.json | 2 +- resources/europe/france/fr-twitter.json | 2 +- resources/europe/germany/de-forum.json | 2 +- resources/europe/germany/de-irc.json | 2 +- resources/europe/germany/de-mailinglist.json | 2 +- resources/europe/germany/de-telegram.json | 2 +- resources/europe/germany/osm-de.json | 2 +- resources/europe/hungary/hu-facebook.json | 2 +- resources/europe/hungary/hu-forum.json | 2 +- resources/europe/hungary/hu-meetup.json | 2 +- resources/europe/iceland/is-chapter.json | 2 +- resources/europe/iceland/is-facebook.json | 2 +- resources/europe/iceland/is-mailinglist.json | 2 +- resources/europe/iceland/is-twitter.json | 2 +- resources/europe/ireland/ireland-chapter.json | 2 +- .../europe/ireland/ireland-facebook.json | 2 +- resources/europe/ireland/ireland-irc.json | 2 +- .../europe/ireland/ireland-mailinglist.json | 2 +- .../europe/ireland/ireland-telegram.json | 2 +- resources/europe/ireland/ireland-twitter.json | 2 +- resources/europe/italy/it-chapter.json | 2 +- resources/europe/italy/it-facebook.json | 2 +- resources/europe/italy/it-irc.json | 2 +- resources/europe/italy/it-mailinglist.json | 2 +- resources/europe/italy/it-telegram.json | 2 +- resources/europe/italy/it-twitter.json | 2 +- resources/europe/kosovo/kosovo-telegram.json | 2 +- .../europe/luxembourg/lu-mailinglist.json | 2 +- resources/europe/netherlands/nl-forum.json | 2 +- resources/europe/netherlands/nl-telegram.json | 2 +- resources/europe/norway/no-forum.json | 2 +- resources/europe/norway/no-irc.json | 2 +- resources/europe/norway/no-mailinglist.json | 2 +- resources/europe/norway/no-telegram.json | 2 +- .../europe/poland/OSM-PL-facebook-group.json | 2 +- resources/europe/poland/OSM-PL-forum.json | 2 +- resources/europe/portugal/pt-mailinglist.json | 2 +- resources/europe/portugal/pt-telegram.json | 2 +- resources/europe/slovenia/si-forum.json | 2 +- resources/europe/slovenia/si-mailinglist.json | 2 +- resources/europe/slovenia/si-twitter.json | 2 +- .../europe/spain/OSM-ES-mailinglist.json | 2 +- resources/europe/spain/OSM-ES-telegram.json | 2 +- resources/europe/sweden/osm-se.json | 2 +- resources/europe/sweden/se-facebook.json | 2 +- resources/europe/sweden/se-forum.json | 2 +- resources/europe/sweden/se-irc.json | 2 +- resources/europe/sweden/se-mailinglist.json | 2 +- resources/europe/sweden/se-twitter.json | 2 +- resources/europe/switzerland/ch-irc.json | 2 +- .../europe/switzerland/ch-mailinglist.json | 2 +- resources/europe/switzerland/ch-twitter.json | 2 +- resources/europe/switzerland/osm-ch.json | 2 +- resources/europe/ukraine/ua-facebook.json | 2 +- resources/europe/ukraine/ua-forum.json | 2 +- resources/europe/ukraine/ua-github.json | 2 +- resources/europe/ukraine/ua-slack.json | 2 +- resources/europe/ukraine/ua-telegram.json | 2 +- resources/europe/ukraine/ua-twitter.json | 2 +- resources/europe/ukraine/ua-website.json | 2 +- resources/europe/united_kingdom/uk-irc.json | 2 +- .../united_kingdom/uk-localchapter.json | 2 +- .../europe/united_kingdom/uk-mailinglist.json | 2 +- .../europe/united_kingdom/uk-twitter.json | 2 +- resources/middle-east/israel/il-telegram.json | 2 +- .../middle-east/saudi_arabia/sa-telegram.json | 2 +- .../north-america/canada/OSM-CA-Slack.json | 2 +- .../north-america/cuba/OSM-CU-telegram.json | 2 +- .../north-america/nicaragua/ni-facebook.json | 2 +- .../nicaragua/ni-mailinglist.json | 2 +- .../north-america/nicaragua/ni-telegram.json | 2 +- .../north-america/nicaragua/ni-twitter.json | 2 +- resources/north-america/nicaragua/osm-ni.json | 2 +- .../united_states/OSM-US-Slack.json | 2 +- .../north-america/united_states/OSM-US.json | 2 +- resources/oceania/Maptime-Oceania-Slack.json | 2 +- resources/oceania/australia/talk-au.json | 2 +- resources/oceania/new_zealand/talk-nz.json | 2 +- .../argentina/OSM-AR-facebook.json | 2 +- .../south-america/argentina/OSM-AR-forum.json | 2 +- .../south-america/argentina/OSM-AR-irc.json | 2 +- .../argentina/OSM-AR-mailinglist.json | 2 +- .../argentina/OSM-AR-telegram.json | 2 +- .../argentina/OSM-AR-twitter.json | 2 +- .../bolivia/OSM-BO-mailinglist.json | 2 +- .../south-america/brazil/OSM-br-discord.json | 2 +- .../brazil/OSM-br-mailinglist.json | 2 +- .../south-america/brazil/OSM-br-telegram.json | 2 +- .../south-america/brazil/OSM-br-twitter.json | 2 +- .../south-america/brazil/RS-telegram.json | 2 +- .../south-america/chile/OSM-CL-facebook.json | 2 +- .../chile/OSM-CL-mailinglist.json | 2 +- .../south-america/chile/OSM-CL-telegram.json | 2 +- .../south-america/chile/OSM-CL-twitter.json | 2 +- .../colombia/OSM-CO-facebook.json | 2 +- .../colombia/OSM-CO-mailinglist.json | 2 +- .../colombia/OSM-CO-telegram.json | 2 +- .../colombia/OSM-CO-twitter.json | 2 +- resources/south-america/colombia/OSM-CO.json | 2 +- .../ecuador/OSM-EC-telegram.json | 2 +- .../paraguay/OSM-PY-telegram.json | 2 +- .../south-america/peru/OSM-PE-facebook.json | 2 +- .../peru/OSM-PE-mailinglist.json | 2 +- .../south-america/peru/OSM-PE-matrix.json | 2 +- .../south-america/peru/OSM-PE-telegram.json | 2 +- .../south-america/peru/OSM-PE-twitter.json | 2 +- resources/south-america/peru/OSM-PE.json | 2 +- resources/south-america/uruguay/uy-forum.json | 2 +- resources/south-america/uruguay/uy-irc.json | 2 +- .../south-america/uruguay/uy-mailinglist.json | 2 +- .../south-america/venezuela/ve-forum.json | 2 +- .../venezuela/ve-mailinglist.json | 2 +- .../south-america/venezuela/ve-telegram.json | 2 +- 266 files changed, 233 insertions(+), 7391 deletions(-) delete mode 100644 features/africa/africa_full.geojson delete mode 100644 features/africa/botswana/botswana.geojson delete mode 100644 features/africa/ghana/ghana.geojson delete mode 100644 features/africa/kenya/kenya.geojson delete mode 100644 features/africa/madagascar/madagascar.geojson delete mode 100644 features/asia/afghanistan/afghanistan.geojson delete mode 100644 features/asia/asia_full.geojson delete mode 100644 features/asia/bangladesh/bangladesh.geojson delete mode 100644 features/asia/india/india_full.geojson delete mode 100644 features/asia/indonesia/indonesia.geojson delete mode 100644 features/asia/iran/iran.geojson delete mode 100644 features/asia/japan/japan.geojson delete mode 100644 features/asia/malaysia/malaysia.geojson delete mode 100644 features/asia/mongolia/mongolia.geojson delete mode 100644 features/asia/myanmar/myanmar.geojson delete mode 100644 features/asia/nepal/nepal.geojson delete mode 100644 features/asia/philippines/philippines.geojson delete mode 100644 features/asia/russia/russia.geojson delete mode 100644 features/asia/sri_lanka/sri_lanka.geojson delete mode 100644 features/asia/taiwan/taiwan.geojson delete mode 100644 features/asia/thailand/thailand.geojson delete mode 100644 features/europe/albania/albania.geojson delete mode 100644 features/europe/austria/austria.geojson delete mode 100644 features/europe/belarus/belarus.geojson delete mode 100644 features/europe/belgium/belgium.geojson delete mode 100644 features/europe/bosnia_herzegovina/bosnia_herzegovina.geojson delete mode 100644 features/europe/croatia/croatia.geojson delete mode 100644 features/europe/czech_republic/czechia.geojson delete mode 100644 features/europe/denmark/denmark.geojson delete mode 100644 features/europe/finland/finland.geojson delete mode 100644 features/europe/france/france.geojson delete mode 100644 features/europe/germany/germany.geojson delete mode 100644 features/europe/hungary/hungary.geojson delete mode 100644 features/europe/iceland/iceland.geojson delete mode 100644 features/europe/ireland/ireland.geojson delete mode 100644 features/europe/italy/italy.geojson delete mode 100644 features/europe/kosovo/kosovo.geojson delete mode 100644 features/europe/luxembourg/luxembourg.geojson delete mode 100644 features/europe/netherlands/netherlands.geojson delete mode 100644 features/europe/norway/norway.geojson delete mode 100644 features/europe/poland/poland.geojson delete mode 100644 features/europe/portugal/portugal.geojson delete mode 100644 features/europe/slovenia/slovenia.geojson delete mode 100644 features/europe/spain/spain.geojson delete mode 100644 features/europe/sweden/sweden.geojson delete mode 100644 features/europe/switzerland/switzerland.geojson delete mode 100644 features/europe/ukraine/ukraine.geojson delete mode 100644 features/europe/united_kingdom/united_kingdom.geojson delete mode 100644 features/middle-east/israel/israel.geojson delete mode 100644 features/middle-east/saudi_arabia/saudi_arabia.geojson delete mode 100644 features/north-america/canada/canada_full.geojson delete mode 100644 features/north-america/cuba/cuba.geojson delete mode 100644 features/north-america/nicaragua/nicaragua.geojson delete mode 100644 features/north-america/united_states/usa_full.geojson delete mode 100644 features/oceania/australia/australia_full.geojson delete mode 100644 features/oceania/new_zealand/new_zealand_full.geojson delete mode 100644 features/oceania/oceania_full.geojson delete mode 100644 features/south-america/argentina/argentina.geojson delete mode 100644 features/south-america/bolivia/bolivia.geojson delete mode 100644 features/south-america/brazil/brazil.geojson delete mode 100644 features/south-america/brazil/rs.geojson delete mode 100644 features/south-america/chile/chile.geojson delete mode 100644 features/south-america/colombia/colombia.geojson delete mode 100644 features/south-america/ecuador/ecuador.geojson delete mode 100644 features/south-america/paraguay/paraguay.geojson delete mode 100644 features/south-america/peru/peru.geojson delete mode 100644 features/south-america/uruguay/uruguay.geojson delete mode 100644 features/south-america/venezuela/venezuela.geojson diff --git a/build.js b/build.js index 38a29643f..9497731fb 100644 --- a/build.js +++ b/build.js @@ -21,6 +21,9 @@ const resourceSchema = require('./schema/resource.json'); let v = new Validator(); v.addSchema(geojsonSchema, 'http://json.schemastore.org/geojson.json'); +const execSync = require('child_process').execSync; +let _featurefiles = {}; + buildAll(); @@ -108,6 +111,7 @@ function generateFeatures() { process.stdout.write(Object.keys(files).length + '\n'); +_featurefiles = files; return features; } @@ -117,6 +121,8 @@ function generateResources(tstrings, features) { let files = {}; process.stdout.write('Resources:'); +let _removals = new Set(); + glob.sync(__dirname + '/resources/**/*.json').forEach(file => { let contents = fs.readFileSync(file, 'utf8'); @@ -129,6 +135,27 @@ function generateResources(tstrings, features) { process.exit(1); } + + +// TRIVIAL GEOJSON -> COUNTRY-CODER REPLACEMENTS +let loc = resource.includeLocations[0]; +if (!Array.isArray(loc) && !/^\S+\.geojson$/i.test(loc)) { + let id = loc.replace('.geojson', ''); + let foundFile = _featurefiles[id]; + if (foundFile) { + let ccmatch = CountryCoder.feature(id.replace('_full', '')); + if (ccmatch) { + let replacement = ccmatch.properties.iso1A2 || ccmatch.properties.m49; + console.log(' Country Coder Match: ' + + id + ' -> ' + + ccmatch.properties.nameEn + ' (' + replacement + ')' + ); + resource.includeLocations[0] = replacement.toLowerCase(); + _removals.add(foundFile); + } + } +} + // sort keys let obj = {}; if (resource.id) { obj.id = resource.id; } @@ -218,6 +245,12 @@ function generateResources(tstrings, features) { process.stdout.write(Object.keys(files).length + '\n'); + +_removals.forEach(foundFile => { + console.log(' REMOVE "' + foundFile + '"'); + execSync('git rm "' + foundFile + '"'); +}); + return resources; } @@ -228,7 +261,7 @@ function validateLocations(locations, file, features) { if (location.length === 2 && Number.isFinite(location[0]) && Number.isFinite(location[1]) && location[0] >= -180 && location[0] <= 180 && location[1] >= -90 && location[1] <= 90 ) { - console.log(' Lon,Lat: ' + colors.yellow(location)); + // console.log(' Lon,Lat: ' + colors.yellow(location)); } else { console.error(colors.red('Error - Invalid location: ') + colors.yellow(location)); console.error(' ' + colors.yellow(file)); @@ -238,7 +271,7 @@ function validateLocations(locations, file, features) { } else if (/^\S+\.geojson$/i.test(location)) { // a .geojson filename? let featureId = location.replace('.geojson', ''); if (features[featureId]) { - console.log(' GeoJSON: ' + colors.yellow(location)); + // console.log(' GeoJSON: ' + colors.yellow(location)); } else { console.error(colors.red('Error - Invalid location: ') + colors.yellow(location)); console.error(' ' + colors.yellow(file)); @@ -248,7 +281,7 @@ function validateLocations(locations, file, features) { } else { // a country-coder string? let ccmatch = CountryCoder.feature(location); if (ccmatch) { - console.log(' Country Coder: ' + colors.yellow(ccmatch.properties.nameEn)); + // console.log(' Country Coder: ' + colors.yellow(ccmatch.properties.nameEn)); } else { console.error(colors.red('Error - Invalid location: ') + colors.yellow(location)); console.error(' ' + colors.yellow(file)); diff --git a/features/africa/africa_full.geojson b/features/africa/africa_full.geojson deleted file mode 100644 index 4a8af97b5..000000000 --- a/features/africa/africa_full.geojson +++ /dev/null @@ -1,30 +0,0 @@ -{ - "type": "Feature", - "id": "africa_full", - "properties": {"area": 52303711.75}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-30, 18], - [-13, 34], - [-5.4, 36], - [-3, 36], - [6, 38], - [12.1, 37.4], - [14, 35], - [33.6, 33], - [34.93, 29.5], - [34.34, 27.6], - [42.5, 13.7], - [44.2, 11.5], - [55, 15], - [65, -11.3], - [50, -40], - [11, -40], - [2, -10], - [-30, 18] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/botswana/botswana.geojson b/features/africa/botswana/botswana.geojson deleted file mode 100644 index 47c6b64f2..000000000 --- a/features/africa/botswana/botswana.geojson +++ /dev/null @@ -1,149 +0,0 @@ -{ - "type": "Feature", - "id": "botswana", - "properties": {"area": 586298.89}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [25.65423, -18.48085], - [25.70131, -18.56629], - [25.79198, -18.60814], - [25.83557, -18.82958], - [25.95414, -18.89236], - [26.00296, -19.02313], - [25.9925, -19.058], - [26.17908, -19.52356], - [26.25057, -19.57064], - [26.32554, -19.57064], - [26.37611, -19.62121], - [26.35344, -19.64562], - [26.70741, -19.87404], - [26.73356, -19.91763], - [26.97419, -20.00133], - [27.04394, -19.99784], - [27.13984, -20.06585], - [27.22005, -20.07456], - [27.30723, -20.22626], - [27.31769, -20.45643], - [27.73269, -20.4913], - [27.74664, -20.70926], - [27.71525, -21.07718], - [27.9088, -21.2777], - [28.02562, -21.55668], - [28.19825, -21.5933], - [28.37261, -21.59679], - [28.50339, -21.65433], - [28.58011, -21.62643], - [28.8033, -21.71362], - [29.08577, -21.80603], - [29.03346, -21.90193], - [29.06659, -22.02399], - [29.17645, -22.07107], - [29.25665, -22.05189], - [29.38569, -22.19312], - [29.32117, -22.21231], - [29.0387, -22.23323], - [29.01428, -22.27159], - [28.97941, -22.31344], - [28.98115, -22.34482], - [28.94105, -22.45991], - [28.52257, -22.59766], - [28.36041, -22.58371], - [28.18255, -22.70053], - [28.18255, -22.74761], - [28.06747, -22.89931], - [27.95239, -22.9708], - [27.96285, -23.03532], - [27.74838, -23.24107], - [27.68561, -23.21666], - [27.62109, -23.23758], - [27.56006, -23.36836], - [27.2741, -23.49565], - [27.08578, -23.66304], - [27.00034, -23.70489], - [26.88875, -24.10593], - [26.87654, -24.26635], - [26.74228, -24.31343], - [26.57663, -24.45292], - [26.42842, -24.64821], - [25.8844, -24.77724], - [25.89486, -24.88012], - [25.76585, -25.17485], - [25.66467, -25.48682], - [25.58448, -25.64908], - [25.3456, -25.78509], - [25.11021, -25.76939], - [25.02517, -25.71967], - [24.92538, -25.81822], - [24.69696, -25.83042], - [24.46156, -25.74324], - [24.37786, -25.76765], - [24.21127, -25.67022], - [23.92974, -25.64036], - [23.66819, -25.44158], - [23.3121, -25.26869], - [22.88179, -25.50087], - [22.72835, -26.01351], - [22.63768, -26.10767], - [22.56793, -26.2367], - [22.48424, -26.21054], - [22.35521, -26.33609], - [22.24971, -26.35352], - [22.07317, -26.63251], - [21.9668, -26.67131], - [21.79767, -26.66956], - [21.77761, -26.69223], - [21.80377, -26.78465], - [21.6913, -26.87096], - [21.59889, -26.8605], - [21.5274, -26.86224], - [21.32339, -26.84349], - [21.14248, -26.87375], - [21.00386, -26.84873], - [20.98729, -26.81621], - [20.85826, -26.80575], - [20.68477, -26.92022], - [20.61677, -26.79293], - [20.61589, -26.68718], - [20.622, -26.60461], - [20.5941, -26.47558], - [20.82252, -26.153], - [20.78939, -25.92458], - [20.63769, -25.63862], - [20.63595, -25.55143], - [20.36045, -25.06321], - [20.25583, -24.93766], - [20.11982, -24.89756], - [19.98556, -24.76853], - [19.99602, -21.99435], - [20.9934, -22.00132], - [20.99514, -18.30648], - [21.45547, -18.31171], - [23.10324, -17.98913], - [23.31422, -17.98913], - [23.43105, -18.18268], - [23.54439, -18.26289], - [23.60542, -18.48085], - [23.77455, -18.36577], - [23.91928, -18.20884], - [24.18606, -18.01355], - [24.36915, -17.94031], - [24.47377, -17.956], - [24.51038, -18.03621], - [24.57839, -18.05714], - [24.615, -17.98565], - [24.71439, -17.89498], - [24.97594, -17.77466], - [25.09102, -17.82174], - [25.15903, -17.76246], - [25.27411, -17.79559], - [25.25493, -17.91241], - [25.31596, -18.06062], - [25.40489, -18.1077], - [25.5374, -18.37972], - [25.65423, -18.48085] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/ghana/ghana.geojson b/features/africa/ghana/ghana.geojson deleted file mode 100644 index 64cffac0a..000000000 --- a/features/africa/ghana/ghana.geojson +++ /dev/null @@ -1,126 +0,0 @@ -{ - "type": "Feature", - "id": "ghana", - "properties": {"area": 297118.3}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-3.11256, 5.13335], - [-2.97215, 5.11112], - [-2.94811, 5.12753], - [-2.75757, 5.10599], - [-2.7253, 5.14087], - [-2.78641, 5.28242], - [-2.78297, 5.29541], - [-2.76993, 5.2937], - [-2.76546, 5.31797], - [-2.77748, 5.33079], - [-2.77319, 5.35557], - [-2.72495, 5.34224], - [-2.78023, 5.60642], - [-2.86022, 5.65049], - [-2.92889, 5.61838], - [-2.96631, 5.64127], - [-2.95292, 5.71643], - [-3.02639, 5.7096], - [-3.01987, 5.8575], - [-3.07411, 5.98624], - [-3.10226, 6.15284], - [-3.15514, 6.25114], - [-3.17574, 6.25182], - [-3.17162, 6.29755], - [-3.23753, 6.54183], - [-3.23341, 6.60049], - [-3.26157, 6.61959], - [-3.21007, 6.73417], - [-3.24028, 6.83031], - [-2.95326, 7.23817], - [-2.97558, 7.27018], - [-2.92236, 7.61436], - [-2.77611, 7.94432], - [-2.60513, 8.03747], - [-2.62985, 8.11769], - [-2.48978, 8.20877], - [-2.64221, 9.00988], - [-2.77679, 9.03972], - [-2.76581, 9.15633], - [-2.66968, 9.26478], - [-2.93884, 10.66601], - [-2.82898, 11.0113], - [-0.68939, 11.00051], - [-0.60974, 10.91962], - [-0.43121, 11.04095], - [-0.43396, 11.10295], - [-0.27843, 11.17672], - [-0.13424, 11.13967], - [-0.14214, 11.10632], - [-0.05905, 11.08341], - [-0.0388, 11.10733], - [-0.01339, 11.11204], - [0.02369, 11.05308], - [0.03296, 10.97793], - [-0.00549, 10.96411], - [-0.02266, 10.81914], - [-0.07141, 10.76856], - [-0.07999, 10.69806], - [-0.05905, 10.63294], - [0.04257, 10.60257], - [0.0618, 10.56207], - [0.14351, 10.52629], - [0.17097, 10.42265], - [0.26711, 10.41151], - [0.28633, 10.42096], - [0.34264, 10.31357], - [0.39757, 10.31492], - [0.39722, 10.30546], - [0.37148, 10.28283], - [0.35225, 10.10746], - [0.41817, 10.06487], - [0.40924, 10.01822], - [0.36461, 10.03174], - [0.34676, 9.66506], - [0.26779, 9.64678], - [0.24994, 9.44771], - [0.42847, 9.48564], - [0.56168, 9.40977], - [0.48203, 8.80501], - [0.3804, 8.74122], - [0.47653, 8.59324], - [0.65369, 8.49546], - [0.65781, 8.42347], - [0.70862, 8.38339], - [0.72784, 8.28964], - [0.60425, 8.21693], - [0.62004, 7.70623], - [0.59464, 7.70283], - [0.5809, 7.62253], - [0.52322, 7.5953], - [0.52734, 7.45099], - [0.56168, 7.39243], - [0.62759, 7.40741], - [0.66055, 7.30935], - [0.59395, 7.11248], - [0.61317, 7.09306], - [0.59601, 7.00549], - [0.52322, 6.97823], - [0.52322, 6.94006], - [0.56442, 6.92234], - [0.53284, 6.82962], - [0.65094, 6.73962], - [0.63446, 6.63733], - [0.74707, 6.57048], - [0.71411, 6.51864], - [0.90242, 6.33355], - [1.00405, 6.33543], - [1.02516, 6.25319], - [1.05537, 6.22964], - [1.1, 6.17], - [1.2, 6.17], - [1.2, 4], - [-3, 4.5], - [-3.11256, 5.13335] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/kenya/kenya.geojson b/features/africa/kenya/kenya.geojson deleted file mode 100644 index c81a5dd37..000000000 --- a/features/africa/kenya/kenya.geojson +++ /dev/null @@ -1,74 +0,0 @@ -{ - "type": "Feature", - "id": "kenya", - "properties": {"area": 612152.39}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.67349, -3.05961], - [34.08165, -1.02099], - [34.03976, -1.04296], - [33.93127, -0.98872], - [33.92578, -0.51086], - [33.98071, -0.08789], - [33.90656, 0.10986], - [34.10774, 0.37697], - [34.08852, 0.45661], - [34.11598, 0.48408], - [34.13727, 0.58295], - [34.27803, 0.64131], - [34.27872, 0.68045], - [34.31511, 0.69761], - [34.31305, 0.76627], - [34.41124, 0.81296], - [34.5266, 1.10543], - [34.5726, 1.10131], - [34.58015, 1.15143], - [34.66805, 1.20772], - [34.80125, 1.22557], - [34.8349, 1.30108], - [34.78958, 1.36835], - [34.88022, 1.55437], - [34.94202, 1.57771], - [34.98871, 1.67106], - [34.93378, 2.51506], - [34.59183, 2.97733], - [34.54651, 3.13229], - [34.45313, 3.20633], - [34.42017, 3.68611], - [33.98346, 4.2259], - [34.38446, 4.61202], - [35.94315, 4.62297], - [35.961, 4.53125], - [36.05026, 4.44226], - [36.88385, 4.445], - [38.13629, 3.61211], - [38.54004, 3.63678], - [38.95134, 3.51411], - [39.02103, 3.50999], - [39.08987, 3.53604], - [39.28711, 3.46682], - [39.4931, 3.45996], - [39.5192, 3.40787], - [39.55353, 3.40376], - [39.58786, 3.48875], - [39.76227, 3.65596], - [39.86389, 3.8807], - [40.77301, 4.28068], - [41.18225, 3.94098], - [41.91833, 3.99852], - [40.991, 2.82989], - [40.995, -0.835], - [41.8, -1.9], - [39.9, -4.7], - [39.35, -4.85], - [39.19853, -4.66882], - [37.81219, -3.6916], - [37.58972, -3.44762], - [37.70508, -3.29408], - [37.67349, -3.05961] - ] - ] - } -} \ No newline at end of file diff --git a/features/africa/madagascar/madagascar.geojson b/features/africa/madagascar/madagascar.geojson deleted file mode 100644 index bf213f7cf..000000000 --- a/features/africa/madagascar/madagascar.geojson +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "Feature", - "id": "madagascar", - "properties": {"area": 964945.85}, - "geometry": { - "type": "Polygon", - "coordinates": [[[51, -15], [47.5, -26], [42, -26], [43.5, -16], [49.5, -11], [51, -15]]] - } -} \ No newline at end of file diff --git a/features/asia/afghanistan/afghanistan.geojson b/features/asia/afghanistan/afghanistan.geojson deleted file mode 100644 index 585d47ebd..000000000 --- a/features/asia/afghanistan/afghanistan.geojson +++ /dev/null @@ -1,81 +0,0 @@ -{ - "type": "Feature", - "id": "afghanistan", - "properties": {"name": "Afghanistan", "area": 653958.06}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [66.51861, 37.36278], - [67.07578, 37.35614], - [67.83, 37.14499], - [68.13556, 37.02312], - [68.85945, 37.34434], - [69.19627, 37.15114], - [69.51879, 37.609], - [70.11658, 37.58822], - [70.27057, 37.73516], - [70.3763, 38.1384], - [70.80682, 38.48628], - [71.34813, 38.25891], - [71.2394, 37.95327], - [71.54192, 37.90577], - [71.44869, 37.06564], - [71.84464, 36.73817], - [72.19304, 36.94829], - [72.63689, 37.04756], - [73.26006, 37.49526], - [73.9487, 37.42157], - [74.98, 37.41999], - [75.15803, 37.13303], - [74.57589, 37.02084], - [74.06755, 36.83618], - [72.92002, 36.72001], - [71.84629, 36.50994], - [71.26235, 36.07439], - [71.49877, 35.65056], - [71.61308, 35.1532], - [71.11502, 34.73313], - [71.15677, 34.34891], - [70.8818, 33.98886], - [69.93054, 34.02012], - [70.32359, 33.35853], - [69.68715, 33.1055], - [69.26252, 32.50194], - [69.31776, 31.90141], - [68.92668, 31.62019], - [68.55693, 31.71331], - [67.79269, 31.58293], - [67.68339, 31.30315], - [66.93889, 31.30491], - [66.38146, 30.7389], - [66.34647, 29.88794], - [65.04686, 29.47218], - [64.35042, 29.56003], - [64.148, 29.34082], - [63.55026, 29.46833], - [62.54986, 29.31857], - [60.87425, 29.82924], - [61.78122, 30.73585], - [61.69931, 31.37951], - [60.94194, 31.54807], - [60.86365, 32.18292], - [60.53608, 32.98127], - [60.9637, 33.52883], - [60.52843, 33.67645], - [60.80319, 34.4041], - [61.21082, 35.65007], - [62.23065, 35.27066], - [62.98466, 35.40404], - [63.19354, 35.85717], - [63.9829, 36.00796], - [64.54648, 36.31207], - [64.74611, 37.11182], - [65.58895, 37.30522], - [65.74563, 37.66116], - [66.21738, 37.39379], - [66.51861, 37.36278] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/asia_full.geojson b/features/asia/asia_full.geojson deleted file mode 100644 index 289421158..000000000 --- a/features/asia/asia_full.geojson +++ /dev/null @@ -1,70 +0,0 @@ -{ - "type": "Feature", - "id": "asia_full", - "properties": {"area": 91922406.48}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [65, -11.3], - [55, 15], - [44.2, 11.5], - [42.5, 13.7], - [34.34, 27.6], - [34.93, 29.5], - [33.6, 33], - [27, 34.7], - [25.1, 39], - [25.6, 40.2], - [26.33, 40.98], - [26.33, 41.23], - [26.63, 41.36], - [26.58, 41.6], - [26.32, 41.76], - [27.2, 42.1], - [27.55, 41.93], - [35, 43], - [38.3, 47.6], - [38.7, 47.7], - [38.86, 47.86], - [39.74, 47.82], - [40.1, 49.6], - [38, 50], - [37.4, 50.4], - [36.65, 50.25], - [35.66, 50.35], - [35.2, 51.1], - [34.28, 51.27], - [34.1, 51.7], - [34.4, 51.73], - [33.9, 52.35], - [31.8, 52.05], - [31.3, 53.1], - [32.8, 53.3], - [30.77, 54.78], - [30.95, 55.61], - [28.19, 56.13], - [27.83, 57.29], - [27.33, 57.53], - [27.7, 57.9], - [27.3, 58.7], - [28.2, 59.37], - [27.2, 60.2], - [31.5, 62.6], - [29, 67], - [30, 67.66], - [28.27, 68.6], - [31, 70], - [31, 90], - [180, 90], - [180, 60], - [130, 7], - [130, -0.5], - [131.8, -3.5], - [132.3, -8], - [128, -11.3], - [65, -11.3] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/bangladesh/bangladesh.geojson b/features/asia/bangladesh/bangladesh.geojson deleted file mode 100644 index 74a5f1991..000000000 --- a/features/asia/bangladesh/bangladesh.geojson +++ /dev/null @@ -1,48 +0,0 @@ -{ - "type": "Feature", - "id": "bangladesh", - "properties": {"name": "Bangladesh", "area": 134364.93}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [92.67272, 22.04124], - [92.65226, 21.32405], - [92.30323, 21.47548], - [92.36855, 20.67088], - [92.08289, 21.1922], - [92.02522, 21.70157], - [91.83489, 22.18294], - [91.41709, 22.76502], - [90.49601, 22.80502], - [90.58696, 22.39279], - [90.27297, 21.83637], - [89.84747, 22.03915], - [89.70205, 21.85712], - [89.41886, 21.96618], - [89.03196, 22.05571], - [88.87631, 22.87915], - [88.52977, 23.63114], - [88.69994, 24.23372], - [88.08442, 24.50166], - [88.30637, 24.86608], - [88.93155, 25.23869], - [88.20979, 25.76807], - [88.56305, 26.44653], - [89.35509, 26.01441], - [89.83248, 25.96508], - [89.92069, 25.26975], - [90.87221, 25.1326], - [91.7996, 25.14743], - [92.3762, 24.97669], - [91.91509, 24.13041], - [91.46773, 24.07264], - [91.15896, 23.50353], - [91.70647, 22.98526], - [91.86993, 23.62435], - [92.14603, 23.6275], - [92.67272, 22.04124] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/india/india_full.geojson b/features/asia/india/india_full.geojson deleted file mode 100644 index 8d812f474..000000000 --- a/features/asia/india/india_full.geojson +++ /dev/null @@ -1,113 +0,0 @@ -{ - "type": "Feature", - "id": "india_full", - "properties": {"name": "India", "area": 4274433.91}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [77.83745, 35.49401], - [78.91227, 34.32194], - [78.81109, 33.5062], - [79.20889, 32.99439], - [79.17613, 32.48378], - [78.45845, 32.61816], - [78.73889, 31.51591], - [80.90881, 30.29702], - [80.08843, 28.79447], - [83.30425, 27.36451], - [84.67502, 27.2349], - [85.29785, 26.75542], - [85.64392, 26.87798], - [85.7428, 26.80446], - [85.74417, 26.64378], - [86.02439, 26.63098], - [87.22747, 26.3979], - [88.06024, 26.41462], - [88.1748, 26.8104], - [88.04313, 27.44582], - [88.12044, 27.87654], - [88.73033, 28.08686], - [88.81425, 27.29932], - [88.83564, 27.09897], - [89.74453, 26.7194], - [90.37328, 26.87572], - [91.21751, 26.80865], - [92.03348, 26.83831], - [92.10371, 27.45261], - [91.69666, 27.77174], - [92.50312, 27.89688], - [93.41335, 28.64063], - [94.56599, 29.27744], - [95.4048, 29.03172], - [96.11768, 29.4528], - [96.58659, 28.83098], - [96.24883, 28.41103], - [97.32711, 28.26158], - [97.40256, 27.88254], - [97.05199, 27.69906], - [97.134, 27.08377], - [96.41937, 27.26459], - [95.12477, 26.57357], - [95.15515, 26.00131], - [94.60325, 25.16249], - [94.55266, 24.67524], - [94.10674, 23.85074], - [93.32519, 24.07856], - [93.28633, 23.04366], - [93.06029, 22.70311], - [93.16613, 22.27846], - [92.67272, 22.04124], - [92.14603, 23.6275], - [91.86993, 23.62435], - [91.70647, 22.98526], - [91.15896, 23.50353], - [91.46773, 24.07264], - [91.91509, 24.13041], - [92.3762, 24.97669], - [91.7996, 25.14743], - [90.87221, 25.1326], - [89.92069, 25.26975], - [89.83248, 25.96508], - [89.35509, 26.01441], - [88.51685, 26.49024], - [88.08838, 25.86911], - [89.00299, 25.2894], - [88.94531, 25.17015], - [88.47839, 25.21488], - [88.35754, 24.85653], - [88.19275, 24.9512], - [88.04993, 24.68196], - [88.12683, 24.52713], - [88.72284, 24.28953], - [88.74756, 23.91095], - [88.59375, 23.85067], - [88.56079, 23.62943], - [88.85742, 23.22115], - [89.2, 21], - [79.5, 9.6], - [79.45, 9.1], - [77, 7], - [72, 8], - [67.9, 23.7], - [68.8426, 24.35913], - [71.04324, 24.35652], - [70.78491, 25.24966], - [70.08728, 25.92841], - [70.16893, 26.49187], - [69.44458, 26.77504], - [70.3125, 28.0041], - [71.77767, 27.91318], - [73.45064, 29.97641], - [74.55872, 31.03882], - [74.55872, 31.83557], - [75.41016, 32.26856], - [74.47632, 32.70411], - [73.74995, 34.3177], - [74.2402, 34.74889], - [75.75706, 34.50492], - [77.83745, 35.49401] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/indonesia/indonesia.geojson b/features/asia/indonesia/indonesia.geojson deleted file mode 100644 index 6df1ea038..000000000 --- a/features/asia/indonesia/indonesia.geojson +++ /dev/null @@ -1,143 +0,0 @@ -{ - "type": "Feature", - "id": "indonesia", - "properties": {"area": 6397922.94}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [109.538, 1.92671], - [109.58606, 1.79192], - [109.68554, 1.78179], - [109.66224, 1.61881], - [109.82759, 1.48148], - [109.93117, 1.42466], - [109.97919, 1.29865], - [110.09758, 1.19756], - [110.1922, 1.18303], - [110.30096, 0.99575], - [110.39497, 0.99668], - [110.49064, 0.87637], - [110.59486, 0.858], - [110.85815, 0.94998], - [110.9055, 1.02835], - [111.19759, 1.06475], - [111.22607, 1.08799], - [111.40504, 1.0094], - [111.48916, 1.03442], - [111.52219, 0.95868], - [111.66704, 1.04281], - [111.82599, 0.98538], - [111.934, 1.10284], - [112.13391, 1.13752], - [112.22581, 1.39272], - [112.20003, 1.43709], - [112.5171, 1.57395], - [112.77536, 1.56153], - [112.87744, 1.58118], - [113.05767, 1.55877], - [113.106, 1.44495], - [113.35493, 1.35908], - [113.41908, 1.28549], - [113.53549, 1.32127], - [113.63068, 1.21597], - [113.81508, 1.30294], - [113.85093, 1.38715], - [113.97573, 1.45005], - [114.14945, 1.46149], - [114.2027, 1.4213], - [114.41581, 1.51111], - [114.52646, 1.44179], - [114.58583, 1.44665], - [114.61498, 1.57508], - [114.71115, 1.67148], - [114.69469, 1.81063], - [114.74372, 1.86954], - [114.87834, 1.91463], - [114.80632, 2.02438], - [114.78024, 2.14454], - [114.79949, 2.24936], - [114.90604, 2.25697], - [114.95039, 2.35132], - [115.09508, 2.41123], - [115.13965, 2.4776], - [115.23743, 2.50599], - [115.09278, 2.69409], - [115.14115, 2.74432], - [115.11387, 2.83327], - [115.15001, 2.90895], - [115.24912, 2.9667], - [115.48328, 3.01964], - [115.56423, 3.17109], - [115.51617, 3.26111], - [115.53779, 3.36201], - [115.6344, 3.45571], - [115.57652, 3.6094], - [115.57965, 3.74752], - [115.61864, 3.84247], - [115.58177, 3.88792], - [115.64991, 3.98828], - [115.70731, 4.19935], - [115.8296, 4.24118], - [115.8779, 4.39102], - [116.00607, 4.34818], - [116.07901, 4.27643], - [116.18028, 4.38255], - [116.34851, 4.39138], - [116.43275, 4.32567], - [116.53602, 4.37566], - [116.61942, 4.33622], - [116.89887, 4.36704], - [116.97351, 4.34488], - [117.28899, 4.31595], - [117.52934, 4.1615], - [117.8992, 4.16585], - [117.95861, 4.19058], - [118.26478, 4.09696], - [127.3, 5.2], - [129, 2.7], - [141, -2.4], - [141, -6.3], - [140.83, -6.7], - [141.02, -6.95], - [141.02, -9.5], - [128.5, -9.5], - [127.3, -8.2], - [125, -8.5], - [123.96, -9.2], - [124.11, -9.42], - [124.22, -9.37], - [124.269, -9.4], - [124.287, -9.5], - [124.358, -9.48564], - [124.355, -9.43281], - [124.383, -9.361], - [124.444, -9.31899], - [124.48, -9.15], - [124.95, -8.9], - [124.94064, -9.03565], - [124.99695, -9.06413], - [125.11368, -8.98275], - [125.18234, -9.03293], - [125.18234, -9.17396], - [124.98459, -9.19429], - [124.99283, -9.28646], - [125.04913, -9.33254], - [125.16, -9.7], - [123, -11.4], - [100, -7], - [93.5, 6.3], - [96.6, 6.1], - [103, 1.4], - [103.75, 1.14], - [103.9, 1.2], - [104.5, 1.3], - [105, 3], - [108, 5.1], - [109.64501, 2.08141], - [109.62041, 1.98321], - [109.538, 1.92671] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/iran/iran.geojson b/features/asia/iran/iran.geojson deleted file mode 100644 index e4f39887b..000000000 --- a/features/asia/iran/iran.geojson +++ /dev/null @@ -1,118 +0,0 @@ -{ - "type": "Feature", - "id": "iran", - "properties": {"area": 1812060.29}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [43.96643, 39.42704], - [44.36828, 39.45104], - [44.3518, 39.57183], - [44.62479, 39.89048], - [45.02746, 39.54218], - [45.50433, 39.06259], - [45.9613, 38.92951], - [46.50828, 38.94537], - [47.3236, 39.44892], - [48.00512, 39.77374], - [48.4411, 39.3641], - [48.19977, 39.25565], - [48.3728, 39.10236], - [48.30414, 38.906], - [48.10427, 38.85269], - [48.67649, 38.48336], - [49.32106, 38.48734], - [53.94287, 37.48358], - [54.43724, 37.47487], - [54.70691, 37.69815], - [55.26122, 38.10864], - [55.91695, 38.16284], - [56.239, 38.26407], - [57.28683, 38.36073], - [57.57896, 37.98007], - [58.01879, 37.91821], - [58.41395, 37.7018], - [58.72191, 37.76204], - [59.4218, 37.59896], - [59.63834, 37.17964], - [60.08422, 37.11653], - [60.37835, 36.70792], - [61.23424, 36.72619], - [61.37598, 35.51361], - [60.99608, 34.29808], - [60.63333, 34.05914], - [60.68847, 33.68779], - [61.01753, 33.53868], - [60.68833, 33.11604], - [60.98034, 32.20735], - [60.95577, 31.5572], - [61.7915, 31.4486], - [61.89696, 31.1188], - [61.90736, 30.81546], - [60.99448, 29.85451], - [61.42455, 29.4109], - [61.97206, 28.63509], - [62.8889, 28.33884], - [62.90715, 27.31879], - [63.29659, 27.35528], - [63.40209, 27.17648], - [63.2895, 26.57212], - [62.5891, 26.47058], - [62.29032, 26.24108], - [61.94822, 26.12877], - [61.62376, 24.73837], - [60.55845, 24.98624], - [58.03141, 25.27164], - [57.11051, 25.5495], - [56.54686, 26.57238], - [55.4988, 26.01213], - [55.28816, 25.6474], - [54.37853, 25.61961], - [53.90126, 26.2239], - [53.08217, 26.52934], - [51.26311, 27.61327], - [50.77328, 28.14996], - [50.48217, 27.81479], - [50.17456, 27.78564], - [49.93835, 27.81965], - [49.88342, 27.975], - [49.92187, 28.18825], - [50.33305, 28.67232], - [49.4197, 29.70202], - [48.58632, 29.62242], - [47.9928, 30.44356], - [47.98907, 30.97004], - [47.65869, 30.98703], - [47.65817, 31.39276], - [47.76361, 31.76875], - [47.30962, 32.37144], - [45.91075, 33.02471], - [46.06882, 33.24741], - [45.37024, 33.9384], - [45.40649, 34.48845], - [45.61523, 34.74162], - [45.84765, 35.07793], - [46.0613, 35.21211], - [45.91186, 35.63945], - [46.06018, 35.76881], - [45.75644, 35.74371], - [45.3092, 35.9317], - [45.19226, 36.33283], - [44.97802, 36.46548], - [44.95056, 36.68605], - [44.80224, 36.7609], - [44.83543, 36.92589], - [44.74731, 37.02887], - [44.71435, 37.2828], - [44.57153, 37.38762], - [44.51099, 37.70537], - [44.17537, 37.86225], - [44.29736, 38.30899], - [44.10461, 39.10449], - [43.93976, 39.34825], - [43.96643, 39.42704] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/japan/japan.geojson b/features/asia/japan/japan.geojson deleted file mode 100644 index ec3e81e01..000000000 --- a/features/asia/japan/japan.geojson +++ /dev/null @@ -1,59 +0,0 @@ -{ - "type": "Feature", - "id": "japan", - "properties": {"area": 1057773.51}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [141.11938, 45.69083], - [142.28497, 45.56863], - [145.39307, 44.48867], - [145.57983, 44.11125], - [145.27222, 43.79291], - [145.47821, 43.46289], - [145.68695, 43.4589], - [145.91217, 43.39108], - [145.44903, 42.69934], - [143.91094, 41.8376], - [142.48272, 39.3181], - [142.1751, 38.15265], - [141.38409, 35.69383], - [140.94463, 35.21056], - [140.55908, 32.1198], - [139.38457, 31.87843], - [138.98907, 33.1752], - [138.01025, 34.29807], - [135.99976, 33.17434], - [133.53882, 32.71336], - [132.48516, 32.06483], - [131.56128, 31.04352], - [131.03497, 29.53613], - [129.94629, 27.50827], - [127.78301, 25.4442], - [126.47461, 25.42343], - [125.86487, 24.52713], - [124.92657, 23.88678], - [123.37921, 23.82053], - [122.67883, 24.31456], - [122.7293, 24.64795], - [124.67834, 25.02588], - [125.36602, 25.52354], - [126.24493, 26.35342], - [127.56329, 27.13828], - [128.57403, 28.73003], - [128.74981, 31.46703], - [128.36426, 32.62087], - [128.92559, 33.76174], - [129.21021, 34.62417], - [129.56177, 34.84086], - [136.69739, 37.9312], - [139.1209, 38.85762], - [139.04297, 42.04929], - [140.13165, 43.58114], - [140.5711, 45.64549], - [141.11938, 45.69083] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/malaysia/malaysia.geojson b/features/asia/malaysia/malaysia.geojson deleted file mode 100644 index 3053821eb..000000000 --- a/features/asia/malaysia/malaysia.geojson +++ /dev/null @@ -1,185 +0,0 @@ -{ - "type": "Feature", - "id": "malaysia", - "properties": {"area": 519952.94}, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [109.538, 1.92671], - [109.62041, 1.98321], - [109.64501, 2.08141], - [113.8, 4.8], - [114.26015, 4.50701], - [114.33278, 4.34889], - [114.31645, 4.26363], - [114.45418, 4.24183], - [114.49579, 4.14668], - [114.6492, 4.00624], - [114.80762, 4.14929], - [114.85775, 4.26957], - [114.87758, 4.42656], - [114.82955, 4.42966], - [114.80229, 4.67536], - [114.85851, 4.79751], - [114.97133, 4.80824], - [115.02238, 4.74977], - [115.09879, 4.4685], - [115.15547, 4.38302], - [115.24582, 4.34118], - [115.28924, 4.60384], - [115.2375, 4.79584], - [115.15038, 4.87204], - [115.15825, 5.02512], - [115, 5.3], - [116.9, 7.6], - [117.5, 7.4], - [119.35011, 5.53088], - [119.43909, 5.11578], - [118.83773, 4.45269], - [118.26478, 4.09696], - [117.95861, 4.19058], - [117.8992, 4.16585], - [117.52934, 4.1615], - [117.28899, 4.31595], - [116.97351, 4.34488], - [116.89887, 4.36704], - [116.61942, 4.33622], - [116.53602, 4.37566], - [116.43275, 4.32567], - [116.34851, 4.39138], - [116.18028, 4.38255], - [116.07901, 4.27643], - [116.00607, 4.34818], - [115.8779, 4.39102], - [115.8296, 4.24118], - [115.70731, 4.19935], - [115.64991, 3.98828], - [115.58177, 3.88792], - [115.61864, 3.84247], - [115.57965, 3.74752], - [115.57652, 3.6094], - [115.6344, 3.45571], - [115.53779, 3.36201], - [115.51617, 3.26111], - [115.56423, 3.17109], - [115.48328, 3.01964], - [115.24912, 2.9667], - [115.15001, 2.90895], - [115.11387, 2.83327], - [115.14115, 2.74432], - [115.09278, 2.69409], - [115.23743, 2.50599], - [115.13965, 2.4776], - [115.09508, 2.41123], - [114.95039, 2.35132], - [114.90604, 2.25697], - [114.79949, 2.24936], - [114.78024, 2.14454], - [114.80632, 2.02438], - [114.87834, 1.91463], - [114.74372, 1.86954], - [114.69469, 1.81063], - [114.71115, 1.67148], - [114.61498, 1.57508], - [114.58583, 1.44665], - [114.52646, 1.44179], - [114.41581, 1.51111], - [114.2027, 1.4213], - [114.14945, 1.46149], - [113.97573, 1.45005], - [113.85093, 1.38715], - [113.81508, 1.30294], - [113.63068, 1.21597], - [113.53549, 1.32127], - [113.41908, 1.28549], - [113.35493, 1.35908], - [113.106, 1.44495], - [113.05767, 1.55877], - [112.87744, 1.58118], - [112.77536, 1.56153], - [112.5171, 1.57395], - [112.20003, 1.43709], - [112.22581, 1.39272], - [112.13391, 1.13752], - [111.934, 1.10284], - [111.82599, 0.98538], - [111.66704, 1.04281], - [111.52219, 0.95868], - [111.48916, 1.03442], - [111.40504, 1.0094], - [111.22607, 1.08799], - [111.19759, 1.06475], - [110.9055, 1.02835], - [110.85815, 0.94998], - [110.59486, 0.858], - [110.49064, 0.87637], - [110.39497, 0.99668], - [110.30096, 0.99575], - [110.1922, 1.18303], - [110.09758, 1.19756], - [109.97919, 1.29865], - [109.93117, 1.42466], - [109.82759, 1.48148], - [109.66224, 1.61881], - [109.68554, 1.78179], - [109.58606, 1.79192], - [109.538, 1.92671] - ] - ], - [ - [ - [99.45833, 6.30667], - [99.51167, 6.48167], - [99.68908, 6.47146], - [99.91691, 6.5233], - [100.07588, 6.40615], - [100.15906, 6.48065], - [100.17157, 6.69376], - [100.32605, 6.6597], - [100.36648, 6.53967], - [100.4962, 6.52128], - [100.66237, 6.45103], - [100.73937, 6.49207], - [100.81258, 6.44219], - [100.83515, 6.29654], - [100.90398, 6.23379], - [100.98414, 6.27884], - [101.0943, 6.26044], - [101.12667, 6.19264], - [101.0868, 5.9109], - [101.03707, 5.91804], - [100.98946, 5.78393], - [101.1192, 5.67031], - [101.25999, 5.71155], - [101.27615, 5.81155], - [101.39691, 5.87241], - [101.48454, 5.86993], - [101.58131, 5.93436], - [101.66236, 5.86871], - [101.69082, 5.75576], - [101.79332, 5.75066], - [101.94402, 5.87247], - [101.94265, 5.98109], - [102.05204, 6.0785], - [102.08029, 6.22537], - [102.2, 6.5], - [103.6, 5.8], - [104.8, 2.5], - [104.5, 1.5], - [104.31571, 1.28352], - [104.12518, 1.27582], - [104.07647, 1.43092], - [103.89786, 1.42794], - [103.81267, 1.47847], - [103.67389, 1.42814], - [103.56667, 1.1955], - [103, 1.325], - [99, 4.5], - [99.45833, 6.30667] - ] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/mongolia/mongolia.geojson b/features/asia/mongolia/mongolia.geojson deleted file mode 100644 index ab6881b31..000000000 --- a/features/asia/mongolia/mongolia.geojson +++ /dev/null @@ -1,87 +0,0 @@ -{ - "type": "Feature", - "id": "mongolia", - "properties": {"name": "Mongolia", "area": 1543736.23}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [87.75126, 49.2972], - [88.80557, 49.47052], - [90.71367, 50.33181], - [92.23471, 50.80217], - [93.10422, 50.49529], - [94.14757, 50.48054], - [94.81595, 50.01343], - [95.81403, 49.97747], - [97.25973, 49.72606], - [98.23176, 50.4224], - [97.82574, 51.011], - [98.86149, 52.04737], - [99.98173, 51.63401], - [100.88948, 51.51686], - [102.06522, 51.25992], - [102.25591, 50.51056], - [103.67655, 50.08997], - [104.62155, 50.27533], - [105.88659, 50.40602], - [106.8888, 50.2743], - [107.86818, 49.79371], - [108.47517, 49.28255], - [109.40245, 49.29296], - [110.66201, 49.13013], - [111.58123, 49.37797], - [112.89774, 49.54357], - [114.36246, 50.2483], - [114.96211, 50.14025], - [115.4857, 49.80518], - [116.6788, 49.88853], - [116.1918, 49.1346], - [115.48528, 48.13538], - [115.74284, 47.72655], - [116.30895, 47.85341], - [117.29551, 47.69771], - [118.06414, 48.06673], - [118.86657, 47.74706], - [119.77282, 47.04806], - [119.66327, 46.69268], - [118.87433, 46.80541], - [117.4217, 46.67273], - [116.71787, 46.3882], - [115.9851, 45.72724], - [114.46033, 45.33982], - [113.46391, 44.80889], - [112.43606, 45.01165], - [111.87331, 45.10208], - [111.34838, 44.45744], - [111.66774, 44.07318], - [111.82959, 43.74312], - [111.12968, 43.40683], - [110.4121, 42.87123], - [109.2436, 42.51945], - [107.74477, 42.48152], - [106.12932, 42.13433], - [104.96499, 41.59741], - [104.52228, 41.90835], - [103.31228, 41.90747], - [101.83304, 42.51487], - [100.84587, 42.6638], - [99.51582, 42.52469], - [97.45176, 42.74889], - [96.3494, 42.72563], - [95.76246, 43.31945], - [95.30688, 44.24133], - [94.68893, 44.35233], - [93.48073, 44.97547], - [92.13389, 45.11508], - [90.94554, 45.28607], - [90.58577, 45.71972], - [90.97081, 46.88815], - [90.28083, 47.69355], - [88.8543, 48.06908], - [88.01383, 48.59946], - [87.75126, 49.2972] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/myanmar/myanmar.geojson b/features/asia/myanmar/myanmar.geojson deleted file mode 100644 index 0eb959182..000000000 --- a/features/asia/myanmar/myanmar.geojson +++ /dev/null @@ -1,56 +0,0 @@ -{ - "type": "Feature", - "id": "myanmar", - "properties": {"name": "Myanmar", "area": 734123.47}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [92.10937, 20.85881], - [92.3291, 21.49396], - [92.68066, 21.28937], - [92.63672, 22.08564], - [92.98828, 22.06528], - [93.18604, 22.22809], - [93.14209, 23.09994], - [93.38379, 23.22115], - [93.36182, 24.1267], - [94.19678, 23.92601], - [94.70215, 25.04579], - [94.57031, 25.26457], - [95.20752, 26.03704], - [95.05371, 26.49024], - [97.66846, 28.51697], - [98.65723, 27.50827], - [98.56934, 25.85922], - [97.62451, 24.8665], - [97.73438, 23.88584], - [98.83301, 24.14675], - [98.85498, 23.18076], - [99.49219, 23.05952], - [99.1626, 22.04491], - [100.0415, 21.96342], - [100.32715, 21.49396], - [101.09619, 21.71868], - [101.16211, 21.41216], - [99.99756, 20.36523], - [97.91016, 19.49766], - [97.53662, 18.29195], - [98.83301, 16.21467], - [98.50342, 15.32657], - [98.21777, 15.11455], - [98.65723, 14.24309], - [99.18457, 13.66734], - [99.22852, 12.85465], - [99.66797, 11.65224], - [98.4375, 9.90392], - [97.77832, 14.34955], - [97.00928, 16.80454], - [95.42725, 15.55954], - [94.021, 16.04581], - [94.21875, 18.0832], - [92.10937, 20.85881] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/nepal/nepal.geojson b/features/asia/nepal/nepal.geojson deleted file mode 100644 index 508c0ca01..000000000 --- a/features/asia/nepal/nepal.geojson +++ /dev/null @@ -1,35 +0,0 @@ -{ - "type": "Feature", - "id": "nepal", - "properties": {"name": "Nepal", "area": 151278.45}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [88.12044, 27.87654], - [88.04313, 27.44582], - [88.1748, 26.8104], - [88.06024, 26.41462], - [87.22747, 26.3979], - [86.02439, 26.63098], - [85.25178, 26.7262], - [84.67502, 27.2349], - [83.30425, 27.36451], - [81.99999, 27.92548], - [81.0572, 28.41609], - [80.08843, 28.79447], - [80.47672, 29.72987], - [81.11126, 30.18348], - [81.5258, 30.42272], - [82.32751, 30.11527], - [83.33711, 29.46373], - [83.89899, 29.32023], - [84.23458, 28.83989], - [85.01164, 28.64277], - [85.82332, 28.20358], - [86.95452, 27.97426], - [88.12044, 27.87654] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/philippines/philippines.geojson b/features/asia/philippines/philippines.geojson deleted file mode 100644 index c3c387ec3..000000000 --- a/features/asia/philippines/philippines.geojson +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "Feature", - "id": "philippines", - "properties": {"area": 1356977.59}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [114.93896, 8.23324], - [122.01416, 21.71868], - [127.6062, 7.39515], - [125.50781, 5.14566], - [118.89954, 4.41761], - [119.49829, 5.28789], - [117.53174, 7.39515], - [114.93896, 8.23324] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/russia/russia.geojson b/features/asia/russia/russia.geojson deleted file mode 100644 index bb4393104..000000000 --- a/features/asia/russia/russia.geojson +++ /dev/null @@ -1,311 +0,0 @@ -{ - "type": "Feature", - "id": "russia", - "properties": {"area": 21507057.78}, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [22.7311, 54.32754], - [20.89224, 54.31253], - [19.66064, 54.42608], - [19.88848, 54.86616], - [21.26845, 55.19048], - [22.31572, 55.0153], - [22.75776, 54.85657], - [22.65105, 54.58274], - [22.7311, 54.32754] - ] - ], - [[[-180, 83], [-169, 66.5], [-171, 64], [-180, 64], [-180, 83]]], - [ - [ - [180, 83], - [180, 64.97971], - [179.99281, 64.97433], - [178.7072, 64.53493], - [177.41128, 64.60821], - [178.313, 64.07593], - [178.90825, 63.25197], - [179.37034, 62.98262], - [179.48636, 62.56894], - [179.22825, 62.3041], - [177.3643, 62.5219], - [174.56929, 61.76915], - [173.68013, 61.65261], - [172.15, 60.95], - [170.6985, 60.33618], - [170.33085, 59.88177], - [168.90046, 60.57355], - [166.29498, 59.78855], - [165.84, 60.16], - [164.87674, 59.7316], - [163.53929, 59.86871], - [163.21711, 59.21101], - [162.01733, 58.24328], - [162.05297, 57.83912], - [163.19191, 57.61503], - [163.05794, 56.15924], - [162.12958, 56.12219], - [161.70146, 55.28568], - [162.11749, 54.85514], - [160.36877, 54.34433], - [160.02173, 53.20257], - [158.53094, 52.95868], - [158.23118, 51.94269], - [156.78979, 51.01105], - [156.42, 51.7], - [155.99182, 53.15895], - [155.43366, 55.38103], - [155.91442, 56.76792], - [156.75815, 57.3647], - [156.81035, 57.83204], - [158.36433, 58.05575], - [160.15064, 59.31477], - [161.87204, 60.343], - [163.66969, 61.1409], - [164.47355, 62.55061], - [163.25842, 62.46627], - [162.65791, 61.6425], - [160.12148, 60.54423], - [159.30232, 61.77396], - [156.72068, 61.43442], - [154.21806, 59.75818], - [155.04375, 59.14495], - [152.81185, 58.88385], - [151.26573, 58.78089], - [151.33815, 59.50396], - [149.78371, 59.65573], - [148.54481, 59.16448], - [145.48722, 59.33637], - [142.19782, 59.03998], - [138.95848, 57.08805], - [135.12619, 54.72959], - [136.70171, 54.60355], - [137.19342, 53.97732], - [138.1647, 53.75501], - [138.80463, 54.25455], - [139.90151, 54.18968], - [141.34531, 53.08957], - [141.37923, 52.23877], - [140.59742, 51.23967], - [140.51308, 50.04553], - [140.06193, 48.44671], - [138.55472, 46.99965], - [138.21971, 46.30795], - [136.86232, 45.1435], - [135.51535, 43.989], - [134.86939, 43.39821], - [133.53687, 42.81147], - [132.90627, 42.79849], - [132.27807, 43.28456], - [130.93587, 42.55274], - [130.78, 42.22], - [130.64, 42.395], - [130.63387, 42.90302], - [131.14469, 42.92999], - [131.28856, 44.11152], - [131.02519, 44.96796], - [131.88345, 45.32116], - [133.09712, 45.14409], - [133.76964, 46.11693], - [134.11235, 47.21248], - [134.50081, 47.57845], - [135.02631, 48.47823], - [133.3736, 48.18344], - [132.50669, 47.78896], - [130.98726, 47.79013], - [130.58229, 48.72969], - [129.39782, 49.4406], - [127.6574, 49.76027], - [127.28746, 50.7398], - [126.93916, 51.35389], - [126.5644, 51.78426], - [125.94635, 52.7928], - [125.06821, 53.16105], - [123.57147, 53.4588], - [122.24575, 53.43173], - [121.00308, 53.2514], - [120.17709, 52.75389], - [120.72579, 52.51623], - [120.7382, 51.96411], - [120.18208, 51.64355], - [119.27939, 50.58292], - [119.28846, 50.14288], - [117.87924, 49.51098], - [116.6788, 49.88853], - [115.4857, 49.80518], - [114.96211, 50.14025], - [114.36246, 50.2483], - [112.89774, 49.54357], - [111.58123, 49.37797], - [110.66201, 49.13013], - [109.40245, 49.29296], - [108.47517, 49.28255], - [107.86818, 49.79371], - [106.8888, 50.2743], - [105.88659, 50.40602], - [104.62158, 50.27532], - [103.67655, 50.08997], - [102.25589, 50.51056], - [102.06521, 51.25991], - [100.88948, 51.51686], - [99.98173, 51.63401], - [98.86149, 52.04737], - [97.82574, 51.011], - [98.23176, 50.4224], - [97.25976, 49.72605], - [95.81402, 49.97746], - [94.81595, 50.01343], - [94.14757, 50.48054], - [93.10421, 50.49529], - [92.23471, 50.80217], - [90.71367, 50.33181], - [88.80557, 49.47052], - [87.75126, 49.2972], - [87.35997, 49.21498], - [86.82936, 49.82668], - [85.54127, 49.69286], - [85.11556, 50.1173], - [84.41638, 50.3114], - [83.93511, 50.88925], - [83.383, 51.06918], - [81.94599, 50.8122], - [80.56845, 51.38834], - [80.03556, 50.86475], - [77.80092, 53.40442], - [76.52518, 54.177], - [76.8911, 54.49052], - [74.38482, 53.54685], - [73.42568, 53.48981], - [73.50852, 54.03562], - [72.22415, 54.37665], - [71.18013, 54.13329], - [70.86527, 55.16973], - [69.06817, 55.38525], - [68.1691, 54.97039], - [65.66687, 54.60125], - [65.17853, 54.35423], - [61.4366, 54.00625], - [60.97807, 53.66499], - [61.69999, 52.98], - [60.73999, 52.71999], - [60.92727, 52.44755], - [59.96753, 51.96042], - [61.588, 51.27266], - [61.33742, 50.79907], - [59.93281, 50.84219], - [59.64228, 50.54544], - [58.36332, 51.06364], - [56.77798, 51.04355], - [55.71694, 50.62171], - [54.53288, 51.02624], - [52.32872, 51.71865], - [50.76665, 51.69276], - [48.70238, 50.60513], - [48.57784, 49.87476], - [47.54948, 50.4547], - [46.7516, 49.35601], - [47.04367, 49.15204], - [46.46645, 48.39415], - [47.31524, 47.71585], - [48.05725, 47.74377], - [48.69473, 47.07563], - [48.59325, 46.56104], - [49.10116, 46.39933], - [48.64541, 45.80629], - [47.67591, 45.64149], - [46.68201, 44.6092], - [47.59094, 43.66016], - [47.49252, 42.98658], - [48.58437, 41.80888], - [47.98728, 41.40582], - [47.81567, 41.15142], - [47.37331, 41.21973], - [46.68607, 41.82714], - [46.40495, 41.86068], - [45.7764, 42.09244], - [45.47028, 42.50278], - [44.53762, 42.71199], - [43.93121, 42.55496], - [43.75599, 42.74083], - [42.3944, 43.2203], - [40.92219, 43.38215], - [40.07697, 43.5531], - [39.95501, 43.435], - [38.68, 44.28], - [37.53912, 44.65721], - [36.67546, 45.24469], - [37.40317, 45.40451], - [38.23295, 46.24087], - [37.67372, 46.63657], - [39.14767, 47.04475], - [39.1212, 47.26336], - [38.22354, 47.10219], - [38.25511, 47.5464], - [38.77057, 47.82562], - [39.73828, 47.89894], - [39.89562, 48.23241], - [39.67465, 48.78382], - [40.08079, 49.30743], - [40.06904, 49.60105], - [38.59499, 49.92646], - [38.01063, 49.91566], - [37.39346, 50.38395], - [36.62617, 50.22559], - [35.35612, 50.5772], - [35.37791, 50.77394], - [35.02218, 51.20757], - [34.22482, 51.25599], - [34.14198, 51.56641], - [34.39173, 51.76888], - [33.7527, 52.33508], - [32.71576, 52.23846], - [32.41206, 52.28869], - [32.15944, 52.06125], - [31.78597, 52.10168], - [31.54002, 52.74205], - [31.3052, 53.074], - [31.49764, 53.16743], - [32.30452, 53.13273], - [32.69364, 53.35142], - [32.4056, 53.61805], - [31.73127, 53.79403], - [31.79142, 53.97464], - [31.38447, 54.15706], - [30.75753, 54.81177], - [30.97184, 55.08155], - [30.87391, 55.55098], - [29.89629, 55.78946], - [29.37157, 55.67009], - [29.22951, 55.91834], - [28.17671, 56.16913], - [27.85528, 56.75933], - [27.77002, 57.24426], - [27.28818, 57.47453], - [27.71669, 57.7919], - [27.42015, 58.72457], - [28.1317, 59.30083], - [27.98112, 59.47537], - [29.1177, 60.02805], - [28.07, 60.50352], - [30.21111, 61.78003], - [31.13999, 62.35769], - [31.51609, 62.86769], - [30.03587, 63.55281], - [30.44468, 64.20445], - [29.54443, 64.94867], - [30.21765, 65.80598], - [29.05459, 66.94429], - [29.97743, 67.6983], - [28.44594, 68.36461], - [28.59193, 69.06478], - [35, 71], - [40, 83], - [180, 83] - ] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/sri_lanka/sri_lanka.geojson b/features/asia/sri_lanka/sri_lanka.geojson deleted file mode 100644 index 414ea825e..000000000 --- a/features/asia/sri_lanka/sri_lanka.geojson +++ /dev/null @@ -1,22 +0,0 @@ -{ - "type": "Feature", - "id": "sri_lanka", - "properties": {"name": "Sri Lanka", "area": 65782.81}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [81.78796, 7.52306], - [81.63732, 6.48177], - [81.21802, 6.19714], - [80.34836, 5.96837], - [79.87247, 6.76346], - [79.69517, 8.20084], - [80.1478, 9.82408], - [80.83882, 9.26843], - [81.30432, 8.56421], - [81.78796, 7.52306] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/taiwan/taiwan.geojson b/features/asia/taiwan/taiwan.geojson deleted file mode 100644 index f1aca3a3e..000000000 --- a/features/asia/taiwan/taiwan.geojson +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "Feature", - "id": "taiwan", - "properties": {"area": 106714.83}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [[119, 23.5], [121.7, 26], [122.5, 25.5], [121.8, 21.8], [120, 21.5], [119, 23.5]] - ] - } -} \ No newline at end of file diff --git a/features/asia/thailand/thailand.geojson b/features/asia/thailand/thailand.geojson deleted file mode 100644 index b54c5ed5d..000000000 --- a/features/asia/thailand/thailand.geojson +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "Feature", - "id": "thailand", - "properties": {"area": 874326.44}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [97.50366, 8.39358], - [97.7124, 9.60075], - [99.47021, 11.8566], - [98.05298, 14.84923], - [98.32764, 16.15137], - [97.21802, 18.39623], - [97.38281, 19.73568], - [100.2832, 20.66363], - [101.37085, 19.69431], - [101.40381, 18.27109], - [104.08447, 18.58377], - [105.76538, 16.06693], - [105.52368, 14.15788], - [102.854, 13.82741], - [103.00781, 11.69527], - [102.12891, 5.81276], - [101.11542, 5.4875], - [100.66498, 6.42448], - [99.13788, 6.34806], - [97.50366, 8.39358] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/albania/albania.geojson b/features/europe/albania/albania.geojson deleted file mode 100644 index f5202a87b..000000000 --- a/features/europe/albania/albania.geojson +++ /dev/null @@ -1,64 +0,0 @@ -{ - "type": "Feature", - "id": "albania", - "properties": {"area": 28910.8}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [19.39087, 41.86138], - [19.40186, 42.09007], - [19.27002, 42.18376], - [19.69849, 42.67436], - [19.81384, 42.46399], - [20.07202, 42.55713], - [20.25879, 42.33824], - [20.34668, 42.32606], - [20.51697, 42.23665], - [20.61584, 41.92272], - [20.52795, 41.71803], - [20.56091, 41.57847], - [20.44556, 41.54559], - [20.56091, 41.40566], - [20.50049, 41.3397], - [20.58289, 41.09177], - [20.65979, 41.07521], - [20.71472, 40.90521], - [20.95642, 40.92181], - [20.98389, 40.7431], - [21.07178, 40.60978], - [20.95093, 40.47202], - [20.85205, 40.47202], - [20.68726, 40.10329], - [20.43457, 40.07387], - [20.33569, 39.99396], - [20.43457, 39.82119], - [20.38513, 39.77899], - [20.28625, 39.8001], - [20.31921, 39.72831], - [20.20386, 39.63954], - [19.97314, 39.69451], - [20.0116, 39.86759], - [19.86328, 40.04444], - [19.35791, 40.2921], - [19.25354, 40.51798], - [19.4458, 40.3298], - [19.50073, 40.43859], - [19.31396, 40.65564], - [19.41833, 40.90936], - [19.53918, 40.92181], - [19.4458, 41.00063], - [19.43481, 41.15384], - [19.50623, 41.2489], - [19.4458, 41.32733], - [19.41284, 41.4139], - [19.51721, 41.52092], - [19.45129, 41.60312], - [19.52271, 41.57847], - [19.58862, 41.62366], - [19.59961, 41.7836], - [19.39087, 41.86138] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/austria/austria.geojson b/features/europe/austria/austria.geojson deleted file mode 100644 index aaedede34..000000000 --- a/features/europe/austria/austria.geojson +++ /dev/null @@ -1,203 +0,0 @@ -{ - "type": "Feature", - "id": "austria", - "properties": {"area": 84686.54}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [16.50733, 46.99293], - [16.28342, 46.99293], - [16.13584, 46.8713], - [15.98317, 46.81909], - [16.04933, 46.65517], - [15.86104, 46.71801], - [15.75926, 46.69009], - [15.56079, 46.67962], - [15.57606, 46.63421], - [15.47937, 46.60276], - [15.43357, 46.65168], - [15.22493, 46.63421], - [15.04682, 46.64819], - [14.99084, 46.58877], - [14.9603, 46.62373], - [14.85344, 46.60276], - [14.83308, 46.50127], - [14.75166, 46.49776], - [14.68041, 46.43818], - [14.61426, 46.43818], - [14.57864, 46.37853], - [14.44124, 46.43116], - [14.16135, 46.42766], - [14.12573, 46.47674], - [14.01886, 46.47674], - [13.91199, 46.52578], - [13.82548, 46.50477], - [13.44381, 46.56078], - [13.30641, 46.55028], - [13.1283, 46.58877], - [12.84332, 46.61324], - [12.72628, 46.6412], - [12.51255, 46.66565], - [12.35988, 46.70405], - [12.36497, 46.77032], - [12.28863, 46.77729], - [12.27337, 46.88522], - [12.20721, 46.87478], - [12.13088, 46.90261], - [12.11561, 46.99987], - [12.25301, 47.06577], - [12.2123, 47.0935], - [11.9833, 47.04497], - [11.73394, 46.96168], - [11.63217, 47.01028], - [11.54057, 46.97557], - [11.49986, 47.00681], - [11.41843, 46.96515], - [11.25559, 46.97557], - [11.1131, 46.91304], - [11.04185, 46.76335], - [10.88919, 46.75986], - [10.74161, 46.78426], - [10.70599, 46.86435], - [10.57877, 46.83998], - [10.45663, 46.85043], - [10.47699, 46.92694], - [10.38539, 46.98946], - [10.23272, 46.86435], - [10.12076, 46.83302], - [9.86632, 46.94084], - [9.90194, 47.00334], - [9.68312, 47.05884], - [9.61188, 47.03804], - [9.63223, 47.12813], - [9.58134, 47.1662], - [9.54063, 47.26644], - [9.60679, 47.34926], - [9.67294, 47.36994], - [9.64241, 47.44571], - [9.56608, 47.48011], - [9.71365, 47.52824], - [9.7849, 47.59692], - [9.83579, 47.54542], - [9.94774, 47.53855], - [10.09023, 47.44915], - [10.11059, 47.36649], - [10.2429, 47.38717], - [10.18692, 47.2699], - [10.32432, 47.29751], - [10.48208, 47.44915], - [10.43119, 47.48699], - [10.44137, 47.59005], - [10.48717, 47.55229], - [10.54823, 47.53511], - [10.59912, 47.56602], - [10.75688, 47.53168], - [10.88919, 47.54542], - [10.94008, 47.48699], - [10.99605, 47.39061], - [11.23523, 47.44227], - [11.28103, 47.3975], - [11.42352, 47.51449], - [11.57619, 47.50762], - [11.60672, 47.59005], - [11.83572, 47.58662], - [12.00366, 47.62436], - [12.20721, 47.60378], - [12.16141, 47.69634], - [12.2581, 47.74427], - [12.25301, 47.67921], - [12.43112, 47.71004], - [12.49219, 47.63122], - [12.56852, 47.62779], - [12.62959, 47.68949], - [12.77208, 47.66893], - [12.83315, 47.54198], - [12.97564, 47.47323], - [13.04179, 47.49387], - [13.0367, 47.55572], - [13.09777, 47.64151], - [13.03161, 47.71004], - [12.90439, 47.72031], - [13.00617, 47.84683], - [12.9451, 47.93555], - [12.86368, 47.95941], - [12.86368, 48.00369], - [12.75172, 48.09894], - [12.87386, 48.21097], - [12.96037, 48.21097], - [13.04179, 48.2652], - [13.18428, 48.29907], - [13.26061, 48.2923], - [13.39801, 48.35659], - [13.44381, 48.41742], - [13.43872, 48.55234], - [13.50997, 48.58601], - [13.61175, 48.57255], - [13.72879, 48.5119], - [13.78477, 48.57255], - [13.82039, 48.62639], - [13.79495, 48.71713], - [13.85093, 48.77417], - [14.05957, 48.66338], - [14.01377, 48.63312], - [14.07484, 48.59274], - [14.21733, 48.59611], - [14.3649, 48.54897], - [14.46668, 48.64993], - [14.55828, 48.59611], - [14.59899, 48.62639], - [14.72113, 48.57591], - [14.72113, 48.6869], - [14.8229, 48.7272], - [14.81782, 48.77753], - [14.96472, 48.78518], - [14.98936, 49.01266], - [15.14859, 48.99503], - [15.19439, 48.93155], - [15.30635, 48.98501], - [15.39286, 48.98501], - [15.48446, 48.92821], - [15.74908, 48.8546], - [15.84068, 48.88807], - [16.00862, 48.78088], - [16.20708, 48.73391], - [16.39537, 48.73727], - [16.49206, 48.81105], - [16.69053, 48.77417], - [16.7058, 48.73391], - [16.89917, 48.71377], - [16.97551, 48.51527], - [16.84828, 48.45118], - [16.85337, 48.34644], - [16.95515, 48.25165], - [16.99077, 48.1499], - [17.09255, 48.13971], - [17.08237, 48.02412], - [17.17397, 48.02071], - [17.08237, 47.87414], - [16.98568, 47.86732], - [17.08237, 47.80925], - [17.09255, 47.70319], - [16.74142, 47.67921], - [16.7058, 47.75112], - [16.53786, 47.75454], - [16.54804, 47.70662], - [16.42082, 47.66893], - [16.57348, 47.6175], - [16.67017, 47.63122], - [16.71088, 47.53855], - [16.66, 47.44915], - [16.54295, 47.39406], - [16.46153, 47.39406], - [16.49206, 47.2768], - [16.42591, 47.19733], - [16.47171, 47.1489], - [16.54804, 47.1489], - [16.47679, 47.07964], - [16.52768, 47.05884], - [16.50733, 46.99293] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/belarus/belarus.geojson b/features/europe/belarus/belarus.geojson deleted file mode 100644 index 282d781f5..000000000 --- a/features/europe/belarus/belarus.geojson +++ /dev/null @@ -1,50 +0,0 @@ -{ - "type": "Feature", - "id": "belarus", - "properties": {"area": 227492.9}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [23.19351, 52.37811], - [23.38715, 52.57134], - [23.67554, 52.61806], - [23.87329, 52.72215], - [23.75656, 53.20027], - [23.42148, 53.83956], - [23.43521, 53.97467], - [24.33609, 53.99082], - [24.73022, 54.03762], - [24.70825, 54.16967], - [24.95682, 54.18253], - [25.48004, 54.37176], - [25.63385, 54.95239], - [26.53748, 55.24468], - [26.27655, 55.26973], - [26.48804, 55.71009], - [26.89728, 55.87993], - [27.56195, 55.82597], - [27.56195, 55.97226], - [27.98218, 56.20976], - [29.64935, 55.96304], - [30.28107, 55.89303], - [30.95398, 55.64815], - [31.20941, 54.67065], - [32.47009, 53.7617], - [32.83539, 53.3866], - [32.22839, 53.02635], - [31.51978, 53.16159], - [31.84662, 52.06262], - [30.8139, 51.93411], - [30.4953, 51.21032], - [27.71301, 51.46085], - [25.85083, 51.88666], - [24.5874, 51.81541], - [23.51898, 51.41634], - [23.45581, 51.99841], - [23.15918, 52.1874], - [23.19351, 52.37811] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/belgium/belgium.geojson b/features/europe/belgium/belgium.geojson deleted file mode 100644 index 1d3afee7b..000000000 --- a/features/europe/belgium/belgium.geojson +++ /dev/null @@ -1,200 +0,0 @@ -{ - "type": "Feature", - "id": "belgium", - "properties": {"area": 31752.99}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [3.33, 51.45], - [3.38379, 51.33404], - [3.35907, 51.31688], - [3.42499, 51.24644], - [3.52798, 51.24902], - [3.51151, 51.29198], - [3.59802, 51.30143], - [3.79028, 51.25762], - [3.79166, 51.21119], - [3.88779, 51.21205], - [4.16245, 51.29112], - [4.24347, 51.37521], - [4.33823, 51.3795], - [4.34509, 51.36406], - [4.42749, 51.37264], - [4.3808, 51.44887], - [4.53598, 51.48737], - [4.53049, 51.4249], - [4.66232, 51.43004], - [4.7612, 51.50703], - [5.0798, 51.46684], - [5.10864, 51.42747], - [5.07019, 51.38892], - [5.13199, 51.34691], - [5.25146, 51.30572], - [5.23361, 51.2602], - [5.41626, 51.26535], - [5.50278, 51.30229], - [5.56595, 51.22237], - [5.85846, 51.15351], - [5.68268, 50.88571], - [5.64697, 50.86924], - [5.65384, 50.81548], - [5.69366, 50.8068], - [5.68268, 50.75731], - [6.01501, 50.75644], - [6.0466, 50.72689], - [6.11664, 50.72255], - [6.17432, 50.66078], - [6.26633, 50.63553], - [6.20178, 50.5274], - [6.3501, 50.48547], - [6.34872, 50.38576], - [6.4119, 50.32793], - [6.31165, 50.32179], - [6.27869, 50.26915], - [6.1702, 50.22788], - [6.19217, 50.18305], - [6.14479, 50.17734], - [6.13586, 50.12938], - [6.10909, 50.17646], - [6.05209, 50.15623], - [6.02325, 50.18217], - [5.96626, 50.17294], - [5.95665, 50.12982], - [5.89485, 50.11485], - [5.80971, 49.96977], - [5.73761, 49.89773], - [5.78224, 49.87915], - [5.74379, 49.8309], - [5.75546, 49.79323], - [5.78911, 49.79722], - [5.83443, 49.73868], - [5.82893, 49.72492], - [5.86327, 49.7267], - [5.88661, 49.70938], - [5.86601, 49.69029], - [5.86258, 49.6774], - [5.90927, 49.66363], - [5.90652, 49.6374], - [5.88455, 49.62717], - [5.85022, 49.59513], - [5.87219, 49.58623], - [5.84267, 49.55462], - [5.8152, 49.54571], - [5.77057, 49.56085], - [5.75272, 49.53947], - [5.69641, 49.54125], - [5.66208, 49.55061], - [5.61813, 49.52699], - [5.60989, 49.5047], - [5.59616, 49.51986], - [5.55428, 49.52699], - [5.48424, 49.5047], - [5.47325, 49.49712], - [5.46432, 49.50069], - [5.46432, 49.50827], - [5.44716, 49.51674], - [5.46192, 49.52543], - [5.4669, 49.52599], - [5.46518, 49.53913], - [5.44081, 49.55228], - [5.45677, 49.56698], - [5.43755, 49.56998], - [5.42553, 49.59781], - [5.39429, 49.61627], - [5.34794, 49.63028], - [5.33627, 49.61449], - [5.31017, 49.61049], - [5.30331, 49.62873], - [5.32871, 49.65696], - [5.26897, 49.69584], - [5.21885, 49.6874], - [5.16289, 49.69295], - [5.16426, 49.71271], - [5.12272, 49.71693], - [5.12203, 49.7267], - [5.08839, 49.76574], - [5.06401, 49.76086], - [5.00599, 49.7837], - [4.99466, 49.799], - [4.949, 49.79744], - [4.92771, 49.7857], - [4.84978, 49.7908], - [4.87347, 49.81894], - [4.84497, 49.86698], - [4.88789, 49.90945], - [4.84222, 49.94813], - [4.78935, 49.95696], - [4.83742, 50.03906], - [4.81682, 50.06507], - [4.89647, 50.14039], - [4.81956, 50.1659], - [4.74678, 50.11265], - [4.69254, 50.08711], - [4.68842, 49.99538], - [4.54559, 49.96756], - [4.50645, 49.94459], - [4.44122, 49.93752], - [4.30664, 49.96491], - [4.19403, 49.95608], - [4.14322, 49.9817], - [4.13429, 50.02186], - [4.15833, 50.04832], - [4.23454, 50.07124], - [4.19403, 50.1307], - [4.12331, 50.13422], - [4.15077, 50.17206], - [4.14871, 50.21426], - [4.2215, 50.25686], - [4.20158, 50.2731], - [4.16313, 50.28539], - [4.14665, 50.25555], - [4.0258, 50.3586], - [3.89053, 50.32574], - [3.80127, 50.35335], - [3.74496, 50.34634], - [3.72299, 50.30995], - [3.68866, 50.31697], - [3.65707, 50.37131], - [3.67287, 50.39407], - [3.64883, 50.46625], - [3.5994, 50.49552], - [3.49983, 50.48984], - [3.51906, 50.52347], - [3.47374, 50.53263], - [3.44421, 50.50688], - [3.3728, 50.49159], - [3.28835, 50.52783], - [3.26981, 50.60982], - [3.23891, 50.65164], - [3.24165, 50.66905], - [3.26157, 50.67645], - [3.24715, 50.71081], - [3.20526, 50.71124], - [3.14896, 50.78857], - [3.12355, 50.7864], - [3.11325, 50.79292], - [3.0851, 50.77294], - [3.05351, 50.77989], - [2.93884, 50.74297], - [2.94296, 50.73124], - [2.92923, 50.72515], - [2.92099, 50.70385], - [2.90176, 50.69385], - [2.87979, 50.70429], - [2.84477, 50.72168], - [2.81113, 50.71646], - [2.71156, 50.81114], - [2.63535, 50.81418], - [2.59895, 50.85494], - [2.60239, 50.92554], - [2.62985, 50.94588], - [2.59895, 50.99301], - [2.56805, 51.00987], - [2.55844, 51.07117], - [2.4, 51.25], - [3.33, 51.45] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/bosnia_herzegovina/bosnia_herzegovina.geojson b/features/europe/bosnia_herzegovina/bosnia_herzegovina.geojson deleted file mode 100644 index bbaa8cf09..000000000 --- a/features/europe/bosnia_herzegovina/bosnia_herzegovina.geojson +++ /dev/null @@ -1,101 +0,0 @@ -{ - "type": "Feature", - "id": "bosnia_herzegovina", - "properties": {"area": 50742.34}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [18.4996, 42.58747], - [18.44437, 42.56076], - [18.3609, 42.61526], - [18.24898, 42.61375], - [17.90239, 42.81647], - [17.85896, 42.89458], - [17.80815, 42.92073], - [17.7903, 42.89961], - [17.67975, 42.92174], - [17.64267, 42.88351], - [17.53967, 42.93531], - [17.71339, 42.97351], - [17.63424, 43.09863], - [17.43805, 43.18365], - [17.44734, 43.1998], - [17.37488, 43.2502], - [17.26227, 43.39108], - [17.30151, 43.4393], - [17.282, 43.47769], - [17.22656, 43.49776], - [17.1476, 43.49677], - [16.39709, 44.06983], - [16.15253, 44.38405], - [16.14789, 44.48088], - [15.90458, 44.75089], - [15.82858, 44.72686], - [15.74818, 44.81311], - [15.78598, 44.84029], - [15.7338, 44.9371], - [15.78598, 44.96966], - [15.75505, 45.05587], - [15.80439, 45.1121], - [15.77283, 45.16143], - [15.81894, 45.2072], - [15.99747, 45.21978], - [16.11145, 45.08758], - [16.29175, 44.9865], - [16.36047, 44.99622], - [16.40374, 45.10639], - [16.46738, 45.13326], - [16.5105, 45.20898], - [16.81812, 45.17296], - [16.92275, 45.23503], - [17.16882, 45.13674], - [17.59713, 45.09425], - [17.66404, 45.12204], - [17.84756, 45.03242], - [17.93891, 45.07086], - [17.93745, 45.09903], - [18.0011, 45.14282], - [18.11746, 45.06832], - [18.2011, 45.0684], - [18.22841, 45.09274], - [18.41889, 45.09637], - [18.46602, 45.05359], - [18.66267, 45.04785], - [18.72157, 44.98326], - [18.77858, 44.98426], - [18.78491, 44.94261], - [18.75375, 44.95245], - [18.73803, 44.94119], - [18.75065, 44.90197], - [18.83764, 44.84591], - [19.01733, 44.85538], - [19.18213, 44.91036], - [19.37645, 44.8875], - [19.09973, 44.35135], - [19.32495, 44.24126], - [19.61746, 44.0338], - [19.52545, 43.95378], - [19.40048, 43.95872], - [19.21234, 44.01306], - [19.52271, 43.7061], - [19.50966, 43.5779], - [19.28787, 43.59929], - [19.23157, 43.5381], - [18.9267, 43.50523], - [19.01459, 43.44345], - [19.0757, 43.31319], - [19.01871, 43.26221], - [18.91365, 43.36063], - [18.84018, 43.34665], - [18.67126, 43.22519], - [18.66302, 43.03778], - [18.50441, 43.00967], - [18.46802, 42.75609], - [18.56689, 42.71877], - [18.54767, 42.62335], - [18.4996, 42.58747] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/croatia/croatia.geojson b/features/europe/croatia/croatia.geojson deleted file mode 100644 index 6170fcbb3..000000000 --- a/features/europe/croatia/croatia.geojson +++ /dev/null @@ -1,153 +0,0 @@ -{ - "type": "Feature", - "id": "croatia", - "properties": {"area": 104087.62}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [18.55316, 42.39709], - [18.487, 42.33], - [16, 42.2], - [13, 45], - [13.48, 45.55], - [13.6, 45.46], - [13.67282, 45.45244], - [13.78445, 45.47445], - [13.87695, 45.43477], - [13.98354, 45.46061], - [13.95607, 45.5049], - [13.99868, 45.52812], - [14.07402, 45.49231], - [14.19361, 45.48114], - [14.23361, 45.51383], - [14.33098, 45.47073], - [14.4841, 45.54339], - [14.55276, 45.65149], - [15.16462, 45.43061], - [15.36301, 45.48661], - [15.28061, 45.60731], - [15.34584, 45.65341], - [15.24587, 45.72718], - [15.55939, 45.85272], - [15.68573, 45.84315], - [15.71043, 46.04506], - [15.61913, 46.08657], - [15.60059, 46.16509], - [15.67131, 46.23068], - [15.78049, 46.21928], - [15.79422, 46.26439], - [16.073, 46.34266], - [16.04759, 46.3891], - [16.15145, 46.40378], - [16.30028, 46.38152], - [16.24191, 46.49508], - [16.36894, 46.55083], - [16.66077, 46.45725], - [16.72462, 46.39715], - [16.86058, 46.35783], - [16.97456, 46.22688], - [17.17232, 46.1551], - [17.31102, 45.97167], - [17.58087, 45.93874], - [17.66574, 45.84483], - [17.86118, 45.77993], - [18.15765, 45.79625], - [18.43522, 45.74655], - [18.68019, 45.91486], - [18.77838, 45.88666], - [18.82507, 45.91724], - [18.9164, 45.70714], - [18.96652, 45.66972], - [18.89717, 45.56551], - [18.94817, 45.54136], - [19.01686, 45.56369], - [19.10858, 45.5144], - [19.08125, 45.47585], - [19.00341, 45.48553], - [18.99315, 45.44969], - [19.03735, 45.40735], - [18.9792, 45.37883], - [19.09424, 45.3367], - [19.10972, 45.30469], - [19.2687, 45.24886], - [19.42108, 45.23622], - [19.45198, 45.16219], - [19.2041, 45.17236], - [19.14345, 45.119], - [19.09331, 45.13091], - [19.08464, 45.11852], - [19.11231, 45.08359], - [19.1011, 44.98811], - [19.16343, 44.94855], - [19.06865, 44.88961], - [18.99843, 44.89696], - [19.01991, 44.84386], - [18.83764, 44.84591], - [18.75065, 44.90197], - [18.73803, 44.94119], - [18.75375, 44.95245], - [18.78491, 44.94261], - [18.77858, 44.98426], - [18.72157, 44.98326], - [18.66267, 45.04785], - [18.46602, 45.05359], - [18.41889, 45.09637], - [18.22841, 45.09274], - [18.2011, 45.0684], - [18.11746, 45.06832], - [18.0011, 45.14282], - [17.93745, 45.09903], - [17.93891, 45.07086], - [17.84756, 45.03242], - [17.66404, 45.12204], - [17.59713, 45.09425], - [17.16882, 45.13674], - [16.92275, 45.23503], - [16.81812, 45.17296], - [16.5105, 45.20898], - [16.46738, 45.13326], - [16.40374, 45.10639], - [16.36047, 44.99622], - [16.29175, 44.9865], - [16.11145, 45.08758], - [15.99747, 45.21978], - [15.81894, 45.2072], - [15.77283, 45.16143], - [15.80439, 45.1121], - [15.75505, 45.05587], - [15.78598, 44.96966], - [15.7338, 44.9371], - [15.78598, 44.84029], - [15.74818, 44.81311], - [15.82858, 44.72686], - [15.90458, 44.75089], - [16.14789, 44.48088], - [16.15253, 44.38405], - [16.39709, 44.06983], - [17.1476, 43.49677], - [17.22656, 43.49776], - [17.282, 43.47769], - [17.30151, 43.4393], - [17.26227, 43.39108], - [17.37488, 43.2502], - [17.44734, 43.1998], - [17.43805, 43.18365], - [17.63424, 43.09863], - [17.71339, 42.97351], - [17.53967, 42.93531], - [17.64267, 42.88351], - [17.67975, 42.92174], - [17.7903, 42.89961], - [17.80815, 42.92073], - [17.85896, 42.89458], - [17.90239, 42.81647], - [18.24898, 42.61375], - [18.3609, 42.61526], - [18.44437, 42.56076], - [18.43575, 42.48273], - [18.55316, 42.39709] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/czech_republic/czechia.geojson b/features/europe/czech_republic/czechia.geojson deleted file mode 100644 index fd4fa6c9d..000000000 --- a/features/europe/czech_republic/czechia.geojson +++ /dev/null @@ -1,28 +0,0 @@ -{ - "type": "Feature", - "id": "czechia", - "properties": {"area": 93626.15}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [14.3811, 51.06902], - [15.13916, 51.08282], - [16.42456, 50.70863], - [16.68823, 50.32442], - [16.78711, 50.49246], - [17.75391, 50.35247], - [18.58887, 49.96536], - [18.92944, 49.51808], - [18.1604, 48.98022], - [17.00684, 48.61839], - [15.13916, 48.85749], - [14.67773, 48.55298], - [13.85376, 48.58206], - [12.00806, 50.05008], - [11.92017, 50.35948], - [14.3811, 51.06902] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/denmark/denmark.geojson b/features/europe/denmark/denmark.geojson deleted file mode 100644 index a9ec680f0..000000000 --- a/features/europe/denmark/denmark.geojson +++ /dev/null @@ -1,53 +0,0 @@ -{ - "type": "Feature", - "id": "denmark", - "properties": {"area": 89267.55}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.99805, 55.11608], - [7.9541, 56.94497], - [10.62378, 57.94401], - [12.65625, 56.01681], - [12.65625, 55.91535], - [12.82928, 55.5566], - [12.60956, 55.42122], - [12.66449, 55.25095], - [14.82605, 55.37911], - [15.28198, 55.22902], - [15.11719, 54.85448], - [12.87598, 54.85922], - [12.07672, 54.44769], - [10.849, 54.73414], - [10.67871, 54.58002], - [9.88083, 54.83708], - [9.73972, 54.82265], - [9.60823, 54.8525], - [9.63158, 54.87996], - [9.59038, 54.88668], - [9.4994, 54.83886], - [9.43176, 54.82601], - [9.41013, 54.84242], - [9.38198, 54.83827], - [9.37443, 54.82047], - [9.34422, 54.80108], - [9.25152, 54.80979], - [9.23985, 54.84993], - [9.13822, 54.87483], - [9.06338, 54.87048], - [8.90167, 54.90386], - [8.85532, 54.89517], - [8.82408, 54.90662], - [8.79765, 54.90445], - [8.77602, 54.893], - [8.72761, 54.89181], - [8.67645, 54.91195], - [8.66066, 54.90859], - [8.55698, 54.92063], - [8.47355, 55.05537], - [7.99805, 55.11608] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/finland/finland.geojson b/features/europe/finland/finland.geojson deleted file mode 100644 index 0ab3f3bac..000000000 --- a/features/europe/finland/finland.geojson +++ /dev/null @@ -1,71 +0,0 @@ -{ - "type": "Feature", - "id": "finland", - "properties": {"area": 388872.27}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [24.16992, 65.34851], - [23.90625, 66.14274], - [23.68652, 66.44311], - [23.99414, 66.80922], - [23.51074, 67.27204], - [23.37891, 67.44123], - [23.73047, 67.97463], - [20.74219, 69.03714], - [21.18164, 69.28726], - [21.70898, 69.27171], - [22.45605, 68.73638], - [23.15918, 68.65655], - [23.90625, 68.8318], - [25.00488, 68.59249], - [25.40039, 68.87936], - [25.75195, 68.95839], - [25.97168, 69.70287], - [26.45508, 69.96044], - [27.20215, 69.90012], - [27.50977, 70.0506], - [27.86133, 70.08056], - [28.38867, 69.82447], - [29.04785, 69.71811], - [29.26758, 69.53452], - [28.87207, 69.225], - [29.0918, 69.02141], - [28.52051, 68.89519], - [28.78418, 68.84767], - [28.52051, 68.56038], - [28.69629, 68.17156], - [29.26758, 68.0733], - [30.05859, 67.69277], - [29.17969, 67.0503], - [29.0918, 66.8956], - [30.14648, 65.73063], - [29.66309, 65.20147], - [29.70703, 64.79285], - [30.05859, 64.79285], - [30.10254, 64.41592], - [30.4541, 64.30182], - [30.05859, 63.74363], - [31.59668, 63.01511], - [30.27832, 61.89758], - [27.81738, 60.56538], - [27.33398, 60.19616], - [24.65332, 59.88894], - [21.84082, 59.46741], - [20.43457, 59.46741], - [19.11621, 60.19616], - [19.2041, 60.58697], - [20.08301, 60.75916], - [20.69824, 61.14324], - [20.96191, 61.73153], - [19.99512, 63.27318], - [21.44531, 63.66576], - [22.93945, 64.20638], - [23.24707, 64.51064], - [23.81836, 64.66152], - [24.16992, 65.34851] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/france/france.geojson b/features/europe/france/france.geojson deleted file mode 100644 index 8729fdee7..000000000 --- a/features/europe/france/france.geojson +++ /dev/null @@ -1,341 +0,0 @@ -{ - "type": "Feature", - "id": "france", - "properties": {"area": 763687.44}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [1.2, 50.9], - [2.4, 51.3], - [2.55981, 51.06772], - [2.56942, 51], - [2.60032, 50.98955], - [2.63122, 50.94242], - [2.60376, 50.92208], - [2.60032, 50.85147], - [2.63672, 50.81071], - [2.71293, 50.80767], - [2.8125, 50.71298], - [2.84614, 50.7182], - [2.88116, 50.70081], - [2.90313, 50.69037], - [2.92236, 50.70037], - [2.9306, 50.72167], - [2.94433, 50.72776], - [2.94021, 50.73949], - [3.05488, 50.77642], - [3.08647, 50.76947], - [3.11462, 50.78945], - [3.12492, 50.78293], - [3.15033, 50.7851], - [3.20663, 50.70776], - [3.24852, 50.70733], - [3.26294, 50.67297], - [3.24302, 50.66557], - [3.24028, 50.64816], - [3.27118, 50.60633], - [3.28972, 50.52434], - [3.37417, 50.4881], - [3.44558, 50.50339], - [3.47511, 50.52914], - [3.52043, 50.51998], - [3.5012, 50.48635], - [3.60077, 50.49203], - [3.6502, 50.46275], - [3.67424, 50.39057], - [3.65844, 50.36781], - [3.69003, 50.31346], - [3.72436, 50.30644], - [3.74633, 50.34283], - [3.80264, 50.34984], - [3.8919, 50.32223], - [4.02717, 50.3551], - [4.14802, 50.25204], - [4.1645, 50.28188], - [4.20295, 50.26959], - [4.22287, 50.25335], - [4.15008, 50.21074], - [4.15214, 50.16854], - [4.12468, 50.1307], - [4.1954, 50.12718], - [4.23591, 50.06771], - [4.1597, 50.04479], - [4.13566, 50.01833], - [4.14459, 49.97817], - [4.1954, 49.95255], - [4.30801, 49.96138], - [4.44259, 49.93398], - [4.50782, 49.94105], - [4.54696, 49.96403], - [4.68979, 49.99185], - [4.69391, 50.08359], - [4.74815, 50.10913], - [4.82093, 50.16238], - [4.89784, 50.13687], - [4.81819, 50.06154], - [4.83879, 50.03553], - [4.79072, 49.95343], - [4.84359, 49.9446], - [4.88926, 49.90591], - [4.84634, 49.86344], - [4.87484, 49.8154], - [4.85115, 49.78725], - [4.92908, 49.78215], - [4.95037, 49.79389], - [4.99603, 49.79545], - [5.00736, 49.78015], - [5.06538, 49.75731], - [5.08976, 49.76219], - [5.1234, 49.72315], - [5.12409, 49.71338], - [5.16563, 49.70916], - [5.16426, 49.6894], - [5.22022, 49.68385], - [5.27034, 49.69229], - [5.33008, 49.6534], - [5.30468, 49.62517], - [5.31154, 49.60693], - [5.33764, 49.61093], - [5.34931, 49.62672], - [5.39566, 49.61271], - [5.4269, 49.59425], - [5.43892, 49.56642], - [5.45814, 49.56342], - [5.44218, 49.54872], - [5.46655, 49.53557], - [5.46827, 49.52242], - [5.46329, 49.52186], - [5.44853, 49.51317], - [5.46569, 49.5047], - [5.46569, 49.49712], - [5.47462, 49.49355], - [5.48561, 49.50113], - [5.55565, 49.52342], - [5.59753, 49.51629], - [5.61126, 49.50113], - [5.6195, 49.52342], - [5.66345, 49.54705], - [5.69778, 49.53769], - [5.75409, 49.53591], - [5.77194, 49.55729], - [5.81657, 49.54215], - [5.87151, 49.49645], - [5.91408, 49.49779], - [5.97107, 49.48619], - [6.04317, 49.44648], - [6.12007, 49.46879], - [6.1338, 49.48842], - [6.17706, 49.50403], - [6.27319, 49.50047], - [6.36246, 49.45674], - [6.42632, 49.47102], - [6.5506, 49.42147], - [6.53961, 49.39824], - [6.57738, 49.38707], - [6.60278, 49.36069], - [6.57051, 49.35398], - [6.58836, 49.31863], - [6.66115, 49.28012], - [6.74423, 49.16015], - [6.8383, 49.15005], - [6.84242, 49.16801], - [6.8589, 49.17699], - [6.83624, 49.20975], - [6.8644, 49.22455], - [6.89529, 49.2093], - [6.92207, 49.22141], - [6.94267, 49.21872], - [6.96053, 49.20212], - [6.97906, 49.20885], - [7.01614, 49.19135], - [7.0388, 49.18686], - [7.03812, 49.15724], - [7.05048, 49.11411], - [7.06627, 49.11231], - [7.0903, 49.12714], - [7.08069, 49.1505], - [7.11365, 49.1514], - [7.10712, 49.14466], - [7.10815, 49.1359], - [7.1291, 49.14039], - [7.13493, 49.12759], - [7.15862, 49.12017], - [7.24686, 49.12602], - [7.29836, 49.11141], - [7.32376, 49.14241], - [7.36359, 49.14084], - [7.36599, 49.16981], - [7.4477, 49.1826], - [7.43946, 49.16285], - [7.49405, 49.16734], - [7.50744, 49.14983], - [7.49062, 49.13702], - [7.55173, 49.08219], - [7.67601, 49.04372], - [7.76836, 49.04507], - [7.79617, 49.06329], - [7.86861, 49.03179], - [7.89024, 49.04664], - [7.92046, 49.03989], - [7.9335, 49.05632], - [8.08594, 48.99283], - [8.14327, 48.97729], - [8.19683, 48.97503], - [8.2346, 48.96692], - [8.19889, 48.95475], - [8.1625, 48.9146], - [8.11512, 48.84822], - [8.10551, 48.81432], - [8.08937, 48.79872], - [8.0674, 48.78674], - [8.04234, 48.78764], - [8.02895, 48.78176], - [8.02311, 48.76253], - [8.01075, 48.75642], - [7.98122, 48.7589], - [7.97092, 48.75279], - [7.96886, 48.72155], - [7.89333, 48.66036], - [7.84492, 48.64221], - [7.80373, 48.58524], - [7.80819, 48.5116], - [7.77111, 48.48726], - [7.73266, 48.38385], - [7.74776, 48.32339], - [7.69558, 48.29781], - [7.66811, 48.21712], - [7.60872, 48.16128], - [7.57851, 48.11775], - [7.57198, 48.07441], - [7.57267, 48.04022], - [7.57087, 48.02989], - [7.62691, 47.98165], - [7.58915, 47.92946], - [7.56409, 47.83805], - [7.53078, 47.78064], - [7.54795, 47.7227], - [7.51465, 47.69775], - [7.52151, 47.66099], - [7.57095, 47.62028], - [7.59447, 47.59887], - [7.58554, 47.57224], - [7.56752, 47.57433], - [7.55774, 47.56888], - [7.55859, 47.5624], - [7.50607, 47.5405], - [7.49868, 47.53354], - [7.50298, 47.52508], - [7.52151, 47.53181], - [7.53319, 47.52694], - [7.52375, 47.51268], - [7.50074, 47.51569], - [7.51619, 47.4947], - [7.47997, 47.47638], - [7.43568, 47.4954], - [7.42229, 47.47881], - [7.45817, 47.46976], - [7.44598, 47.45932], - [7.43036, 47.45479], - [7.42161, 47.44295], - [7.40238, 47.43343], - [7.31964, 47.43389], - [7.24789, 47.41787], - [7.17064, 47.44132], - [7.18678, 47.47823], - [7.20257, 47.4896], - [7.16377, 47.48658], - [7.12841, 47.49818], - [7.07588, 47.48589], - [7.02129, 47.50143], - [6.98524, 47.48983], - [7.00172, 47.44945], - [6.94405, 47.42669], - [6.93787, 47.40555], - [6.91864, 47.39858], - [6.91383, 47.38185], - [6.88705, 47.37534], - [6.8795, 47.35185], - [7.02438, 47.35743], - [7.06421, 47.32672], - [6.95709, 47.23076], - [6.74835, 47.09818], - [6.72501, 47.03831], - [6.4476, 46.93057], - [6.45309, 46.76997], - [6.14273, 46.59756], - [6.06995, 46.41798], - [6.1647, 46.37346], - [6.10565, 46.28243], - [6.12694, 46.25442], - [6.10359, 46.2378], - [6.0569, 46.24113], - [5.97107, 46.21025], - [5.99167, 46.18458], - [5.95665, 46.13132], - [6.12625, 46.14226], - [6.25191, 46.2074], - [6.29791, 46.22783], - [6.31165, 46.25585], - [6.26427, 46.24825], - [6.23749, 46.27911], - [6.24985, 46.30093], - [6.22032, 46.31089], - [6.28967, 46.38389], - [6.51901, 46.45584], - [6.82388, 46.43407], - [6.7717, 46.34693], - [6.87057, 46.26724], - [6.78818, 46.13988], - [6.89529, 46.09419], - [7.05734, 45.90339], - [6.82114, 45.82497], - [6.8074, 45.70426], - [6.98868, 45.62172], - [6.99692, 45.51982], - [7.18643, 45.39459], - [7.10541, 45.23138], - [6.63986, 45.11715], - [6.74698, 44.90841], - [7.00516, 44.8364], - [6.88431, 44.35233], - [7.31827, 44.12703], - [7.65335, 44.17038], - [7.73575, 44.07575], - [7.49954, 43.86226], - [7.8, 43.2], - [9.6, 43.2], - [9.9, 41.9], - [9.3, 41.3], - [8, 41.3], - [3.3, 42.43], - [2.90451, 42.45386], - [2.57492, 42.34028], - [2.26181, 42.43157], - [2.00638, 42.34941], - [1.94046, 42.45487], - [1.73035, 42.4964], - [1.73378, 42.5551], - [1.78391, 42.57078], - [1.73859, 42.60111], - [1.55525, 42.64709], - [1.48041, 42.64659], - [1.44196, 42.59859], - [1.34995, 42.70666], - [0.72647, 42.84778], - [0.66055, 42.68445], - [-0.04257, 42.68849], - [-0.3035, 42.83167], - [-0.49026, 42.78532], - [-1.306, 43.10098], - [-1.36368, 43.03276], - [-1.47354, 43.07089], - [-1.38016, 43.2452], - [-1.73447, 43.2952], - [-6, 49.1], - [0, 50.3], - [1.2, 50.9] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/germany/germany.geojson b/features/europe/germany/germany.geojson deleted file mode 100644 index a1ecdf199..000000000 --- a/features/europe/germany/germany.geojson +++ /dev/null @@ -1,159 +0,0 @@ -{ - "type": "Feature", - "id": "germany", - "properties": {"area": 384279.97}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.05048, 52.62973], - [7.21252, 53.20274], - [6.56982, 53.61858], - [8.30772, 55.1467], - [8.6483, 54.96421], - [9.45305, 54.83313], - [9.95018, 54.82838], - [11.99913, 54.44689], - [13.3889, 54.89162], - [14.15245, 54.47562], - [14.26231, 53.78037], - [14.44359, 53.27096], - [14.36119, 53.0668], - [14.16344, 52.97097], - [14.13597, 52.84508], - [14.62486, 52.60555], - [14.5919, 52.35463], - [14.71825, 52.24042], - [14.74571, 52.06516], - [14.60838, 51.83153], - [14.74571, 51.69554], - [14.76768, 51.54206], - [14.98741, 51.43261], - [15.03136, 51.27824], - [14.94347, 51.04744], - [14.85558, 50.88138], - [14.77867, 50.81548], - [14.64684, 50.85017], - [14.5974, 50.99215], - [14.32823, 51.07506], - [14.32823, 50.88138], - [13.01537, 50.49508], - [12.48253, 50.38663], - [12.33421, 50.18305], - [12.1804, 50.30952], - [12.12547, 50.25686], - [12.22984, 50.09856], - [12.55394, 49.92912], - [12.4276, 49.75199], - [12.5045, 49.68807], - [12.77916, 49.35286], - [12.93297, 49.36002], - [13.03185, 49.28841], - [13.57018, 48.96489], - [13.80089, 48.81319], - [13.75694, 48.52297], - [13.52074, 48.58842], - [13.45482, 48.57388], - [13.40538, 48.36994], - [13.23509, 48.28959], - [12.99889, 48.24571], - [12.75169, 48.12118], - [12.9879, 47.86385], - [12.91649, 47.71623], - [13.04832, 47.72362], - [13.09776, 47.67186], - [13.0648, 47.50885], - [12.93846, 47.47173], - [12.77367, 47.5793], - [12.8286, 47.60894], - [12.70226, 47.70144], - [12.1859, 47.70514], - [12.16942, 47.62005], - [11.86729, 47.60524], - [11.63109, 47.59412], - [11.25755, 47.40114], - [10.98839, 47.40486], - [10.88402, 47.52369], - [10.67528, 47.55707], - [10.45006, 47.54594], - [10.46654, 47.41973], - [10.34019, 47.3081], - [10.19737, 47.27457], - [10.21385, 47.38998], - [10.10948, 47.3751], - [10.08202, 47.46431], - [9.84581, 47.55336], - [9.40636, 47.55336], - [9.09874, 47.68388], - [8.90236, 47.65521], - [8.85292, 47.70329], - [8.80348, 47.74025], - [8.76915, 47.71993], - [8.80486, 47.70329], - [8.79524, 47.68388], - [8.7307, 47.69867], - [8.73482, 47.7227], - [8.71284, 47.7384], - [8.7513, 47.76887], - [8.69637, 47.76425], - [8.65654, 47.8067], - [8.63594, 47.76518], - [8.61122, 47.80947], - [8.57002, 47.79286], - [8.48763, 47.77902], - [8.41621, 47.71808], - [8.41347, 47.68111], - [8.46428, 47.65891], - [8.53706, 47.67001], - [8.60985, 47.67741], - [8.63457, 47.64966], - [8.59886, 47.64319], - [8.61122, 47.6219], - [8.56865, 47.60061], - [8.56865, 47.6219], - [8.52745, 47.64041], - [8.45879, 47.60801], - [8.50273, 47.58672], - [8.38463, 47.57004], - [8.33107, 47.57375], - [8.29399, 47.61542], - [8.2061, 47.62653], - [8.10173, 47.56819], - [7.96852, 47.5617], - [7.92046, 47.55429], - [7.89024, 47.59505], - [7.8257, 47.58949], - [7.81197, 47.56726], - [7.6815, 47.54038], - [7.6403, 47.56448], - [7.69386, 47.5756], - [7.6815, 47.59412], - [7.64854, 47.60061], - [7.61421, 47.58394], - [7.50641, 47.70237], - [7.79205, 48.60749], - [8.22876, 48.97481], - [6.84174, 49.17093], - [6.37482, 49.48597], - [6.53961, 49.80963], - [6.1441, 50.01833], - [6.19835, 50.21119], - [6.41808, 50.35159], - [6.19835, 50.63117], - [6.02257, 50.77034], - [6.02257, 51.07506], - [6.24229, 51.37778], - [5.97862, 51.81456], - [6.1496, 51.90022], - [6.44073, 51.85105], - [6.828, 51.95611], - [6.68518, 52.05587], - [7.04773, 52.23957], - [6.99554, 52.45768], - [6.70166, 52.48445], - [6.72913, 52.64973], - [7.05048, 52.62973] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/hungary/hungary.geojson b/features/europe/hungary/hungary.geojson deleted file mode 100644 index 3d33d1ab4..000000000 --- a/features/europe/hungary/hungary.geojson +++ /dev/null @@ -1,78 +0,0 @@ -{ - "type": "Feature", - "id": "hungary", - "properties": {"area": 93206.18}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [18.43643, 45.73111], - [17.67426, 45.83454], - [17.57675, 45.92823], - [17.35153, 45.94303], - [17.14966, 46.16081], - [16.52756, 46.50028], - [16.3147, 46.86582], - [16.11969, 46.86582], - [16.28448, 46.99337], - [16.48224, 47.01584], - [16.5152, 47.1505], - [16.42731, 47.2177], - [16.43829, 47.41136], - [16.66763, 47.44852], - [16.67587, 47.60616], - [16.43829, 47.65614], - [16.54816, 47.75964], - [16.71844, 47.73563], - [16.75003, 47.68111], - [17.08099, 47.70791], - [17.04254, 47.86293], - [17.09473, 47.96234], - [17.20734, 48.02484], - [17.75665, 47.74486], - [18.71246, 47.76702], - [18.85529, 47.82606], - [18.77838, 47.87767], - [18.75641, 47.98808], - [18.82233, 48.04687], - [19.50348, 48.1056], - [19.55566, 48.25028], - [19.92096, 48.14227], - [20.34943, 48.30329], - [20.54718, 48.54389], - [20.82184, 48.58751], - [21.14044, 48.50751], - [21.47003, 48.58751], - [21.70074, 48.36902], - [21.8367, 48.34073], - [22.2171, 48.42282], - [22.38327, 48.24205], - [22.50549, 48.24845], - [22.61948, 48.1056], - [22.83371, 48.11843], - [22.90649, 47.95406], - [22.59064, 47.75779], - [22.48077, 47.81131], - [22.42584, 47.74486], - [22.32147, 47.75779], - [22.02759, 47.51442], - [22.03033, 47.38161], - [21.9397, 47.3658], - [21.48926, 46.75868], - [21.52908, 46.73233], - [21.4151, 46.61737], - [21.33133, 46.61549], - [21.10611, 46.23875], - [20.79575, 46.27863], - [20.7106, 46.15035], - [20.25055, 46.13227], - [19.82758, 46.16461], - [19.54742, 46.17793], - [19.51447, 46.1018], - [18.80997, 45.87567], - [18.70285, 45.91294], - [18.43643, 45.73111] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/iceland/iceland.geojson b/features/europe/iceland/iceland.geojson deleted file mode 100644 index 9878b207b..000000000 --- a/features/europe/iceland/iceland.geojson +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "Feature", - "id": "iceland", - "properties": {"area": 272273.78}, - "geometry": { - "type": "Polygon", - "coordinates": [[[-25, 67], [-12, 67], [-12, 63], [-25, 63], [-25, 67]]] - } -} \ No newline at end of file diff --git a/features/europe/ireland/ireland.geojson b/features/europe/ireland/ireland.geojson deleted file mode 100644 index 617423576..000000000 --- a/features/europe/ireland/ireland.geojson +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "Feature", - "id": "ireland", - "properties": {"area": 169589.93}, - "geometry": { - "type": "Polygon", - "coordinates": [[[-5, 54.4], [-5.4, 52.2], [-11, 50.7], [-11, 55.5], [-6.1, 55.5], [-5, 54.4]]] - } -} \ No newline at end of file diff --git a/features/europe/italy/italy.geojson b/features/europe/italy/italy.geojson deleted file mode 100644 index 54b819783..000000000 --- a/features/europe/italy/italy.geojson +++ /dev/null @@ -1,83 +0,0 @@ -{ - "type": "Feature", - "id": "italy", - "properties": {"area": 688027.24}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.6, 43.5], - [7.49542, 43.86523], - [7.69043, 44.0718], - [7.69043, 44.19796], - [7.42676, 44.15068], - [6.9873, 44.26094], - [6.85547, 44.55916], - [7.03125, 44.73113], - [7.00928, 44.87144], - [6.72363, 44.91814], - [6.5918, 45.12005], - [7.09717, 45.25942], - [7.14111, 45.41388], - [6.96533, 45.61404], - [6.76758, 45.79817], - [7.03125, 45.9053], - [7.55859, 45.9817], - [7.77832, 45.93587], - [8.12988, 46.13417], - [8.08594, 46.30141], - [8.48145, 46.46813], - [8.61328, 46.13417], - [8.81104, 46.10371], - [9.05273, 45.8288], - [9.07471, 46.11894], - [9.27246, 46.25585], - [9.25049, 46.43786], - [9.44824, 46.49839], - [9.49219, 46.31658], - [9.68994, 46.31658], - [9.95361, 46.36209], - [10.06348, 46.17983], - [10.17334, 46.25585], - [10.0415, 46.453], - [10.08545, 46.60417], - [10.26123, 46.66452], - [10.45898, 46.49839], - [10.50293, 46.61926], - [10.39307, 46.70974], - [10.41504, 46.86019], - [10.61279, 46.87521], - [11.03027, 46.76997], - [11.16211, 46.93526], - [11.27197, 46.99524], - [11.53564, 47.01023], - [11.7334, 46.99524], - [12.2168, 47.10004], - [12.15088, 46.93526], - [12.43652, 46.70974], - [12.96387, 46.61926], - [13.73291, 46.54375], - [13.71094, 46.42271], - [13.40332, 46.33176], - [13.40332, 46.22545], - [13.66699, 46.17983], - [13.51318, 46.05799], - [13.64502, 45.96642], - [13.5791, 45.85941], - [13.93066, 45.64477], - [13.82629, 45.5756], - [13.6, 45.6294], - [12.9, 45.4], - [12.8, 45], - [18.9, 40.3], - [18.5, 39], - [15, 36], - [8, 39], - [7.5, 41], - [10, 41.45], - [9.6, 43.2], - [7.6, 43.5] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/kosovo/kosovo.geojson b/features/europe/kosovo/kosovo.geojson deleted file mode 100644 index df6d067dd..000000000 --- a/features/europe/kosovo/kosovo.geojson +++ /dev/null @@ -1,192 +0,0 @@ -{ - "type": "Feature", - "id": "kosovo", - "properties": {"area": 11288.29}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [20.68323, 41.85101], - [20.64878, 41.8621], - [20.62895, 41.87788], - [20.59321, 41.87344], - [20.5834, 41.88906], - [20.57131, 41.92032], - [20.61548, 41.94279], - [20.61932, 41.97284], - [20.60727, 41.98358], - [20.58959, 42.03994], - [20.56682, 42.05515], - [20.55, 42.08081], - [20.5618, 42.12415], - [20.51171, 42.21912], - [20.4557, 42.26696], - [20.40232, 42.28017], - [20.39286, 42.29328], - [20.35016, 42.30573], - [20.34327, 42.32034], - [20.32919, 42.32272], - [20.30564, 42.30975], - [20.28975, 42.31841], - [20.25651, 42.31381], - [20.23897, 42.32339], - [20.24172, 42.33451], - [20.23137, 42.34709], - [20.24041, 42.36756], - [20.20299, 42.40034], - [20.2216, 42.42031], - [20.18897, 42.44976], - [20.18995, 42.46123], - [20.16241, 42.50248], - [20.09905, 42.52756], - [20.07781, 42.55062], - [20.05218, 42.55643], - [20.0611, 42.56636], - [20.07983, 42.63561], - [20.09833, 42.65387], - [20.02597, 42.70293], - [20.01357, 42.73718], - [20.0294, 42.76543], - [20.05828, 42.77918], - [20.17177, 42.77208], - [20.25749, 42.77015], - [20.26633, 42.81006], - [20.26709, 42.81838], - [20.40458, 42.85177], - [20.48421, 42.87209], - [20.52629, 42.8857], - [20.48117, 42.92979], - [20.48712, 42.94371], - [20.52036, 42.97599], - [20.538, 42.97944], - [20.54736, 42.96696], - [20.56759, 43.00047], - [20.59714, 43.01791], - [20.61815, 43.00738], - [20.63582, 43.01263], - [20.65529, 43.03791], - [20.66666, 43.05941], - [20.65555, 43.06668], - [20.65535, 43.07614], - [20.69024, 43.09046], - [20.68474, 43.11734], - [20.6571, 43.13426], - [20.60822, 43.17079], - [20.59313, 43.19966], - [20.59288, 43.20807], - [20.60326, 43.21586], - [20.61577, 43.20947], - [20.6759, 43.21404], - [20.71781, 43.23861], - [20.72976, 43.25396], - [20.78861, 43.2509], - [20.79902, 43.26973], - [20.82402, 43.27416], - [20.88056, 43.23237], - [20.89633, 43.2064], - [20.89185, 43.19741], - [20.86038, 43.18418], - [20.88322, 43.17221], - [20.968, 43.12786], - [20.97317, 43.13725], - [21.00171, 43.14304], - [21.02916, 43.13467], - [21.05505, 43.11374], - [21.0768, 43.12108], - [21.0795, 43.1332], - [21.09221, 43.14057], - [21.11813, 43.11808], - [21.14314, 43.11815], - [21.15722, 43.09497], - [21.14943, 43.08237], - [21.15915, 43.04152], - [21.17346, 43.02927], - [21.17228, 43.01229], - [21.18865, 43.01181], - [21.19528, 43.02655], - [21.20838, 43.03051], - [21.24098, 43.01253], - [21.25156, 42.98139], - [21.24127, 42.95446], - [21.27793, 42.90132], - [21.30679, 42.91192], - [21.33168, 42.90934], - [21.34717, 42.90549], - [21.36699, 42.87815], - [21.44, 42.87777], - [21.44185, 42.85103], - [21.43, 42.84464], - [21.42818, 42.80712], - [21.41748, 42.77388], - [21.39541, 42.75691], - [21.39835, 42.75158], - [21.45096, 42.75723], - [21.46671, 42.74511], - [21.48212, 42.7524], - [21.53015, 42.73143], - [21.56111, 42.74322], - [21.59623, 42.731], - [21.59439, 42.7097], - [21.67045, 42.68104], - [21.68037, 42.6972], - [21.73393, 42.71782], - [21.7767, 42.72243], - [21.77888, 42.69807], - [21.80449, 42.65599], - [21.77972, 42.64209], - [21.77173, 42.62838], - [21.77008, 42.60166], - [21.75125, 42.58434], - [21.75095, 42.55505], - [21.72961, 42.54235], - [21.70728, 42.54294], - [21.70222, 42.53272], - [21.71414, 42.51308], - [21.69423, 42.49888], - [21.67446, 42.49033], - [21.67458, 42.48071], - [21.62857, 42.45056], - [21.65142, 42.40951], - [21.62852, 42.37199], - [21.57112, 42.35813], - [21.5391, 42.36425], - [21.53133, 42.33801], - [21.56671, 42.3189], - [21.59596, 42.27006], - [21.58272, 42.25167], - [21.52186, 42.23975], - [21.50594, 42.2651], - [21.44573, 42.27489], - [21.43843, 42.25552], - [21.44638, 42.23142], - [21.43208, 42.22775], - [21.39412, 42.24212], - [21.3493, 42.20076], - [21.33667, 42.1989], - [21.33915, 42.18753], - [21.30895, 42.13871], - [21.32219, 42.10706], - [21.30296, 42.10363], - [21.29279, 42.10824], - [21.25722, 42.08817], - [21.23557, 42.08617], - [21.21595, 42.09461], - [21.20791, 42.12657], - [21.16719, 42.1714], - [21.16274, 42.19266], - [21.11303, 42.20093], - [21.05269, 42.16308], - [21.02143, 42.14681], - [20.92263, 42.12229], - [20.89259, 42.09216], - [20.83556, 42.08285], - [20.79199, 42.07669], - [20.76879, 42.04106], - [20.77208, 41.95756], - [20.77892, 41.91873], - [20.74544, 41.8779], - [20.68323, 41.85101] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/luxembourg/luxembourg.geojson b/features/europe/luxembourg/luxembourg.geojson deleted file mode 100644 index c3e87ba8f..000000000 --- a/features/europe/luxembourg/luxembourg.geojson +++ /dev/null @@ -1,138 +0,0 @@ -{ - "type": "Feature", - "id": "luxembourg", - "properties": {"area": 2614.92}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [5.80833, 49.54348], - [5.86945, 49.5751], - [5.86739, 49.58712], - [5.84885, 49.58757], - [5.84885, 49.59959], - [5.87769, 49.60893], - [5.87494, 49.62228], - [5.90378, 49.64273], - [5.90446, 49.66541], - [5.86121, 49.67696], - [5.88524, 49.71116], - [5.86258, 49.72714], - [5.82481, 49.72537], - [5.82756, 49.75066], - [5.78842, 49.79634], - [5.75615, 49.79279], - [5.73967, 49.83798], - [5.77744, 49.88269], - [5.73349, 49.89685], - [5.78087, 49.96271], - [5.84267, 49.98479], - [5.81795, 50.01392], - [5.86945, 50.04744], - [5.85503, 50.06772], - [5.88799, 50.0827], - [5.89348, 50.11221], - [5.96214, 50.13466], - [5.96352, 50.1747], - [6.02737, 50.18349], - [6.0363, 50.16326], - [6.06239, 50.15579], - [6.08093, 50.1703], - [6.12213, 50.16238], - [6.11183, 50.13819], - [6.13998, 50.1307], - [6.12282, 50.05978], - [6.16882, 49.9839], - [6.1805, 49.95255], - [6.22307, 49.94945], - [6.23131, 49.90702], - [6.31096, 49.86986], - [6.32401, 49.83621], - [6.34254, 49.84994], - [6.36623, 49.85082], - [6.40125, 49.82049], - [6.42666, 49.81628], - [6.4267, 49.81199], - [6.43082, 49.8103], - [6.43361, 49.81151], - [6.43623, 49.81315], - [6.44091, 49.81415], - [6.44292, 49.81182], - [6.45395, 49.81146], - [6.46854, 49.82226], - [6.47644, 49.82115], - [6.48228, 49.81694], - [6.48365, 49.81495], - [6.50648, 49.80897], - [6.5118, 49.80099], - [6.5209, 49.8134], - [6.53034, 49.80852], - [6.52639, 49.80243], - [6.50682, 49.79068], - [6.51678, 49.78315], - [6.50957, 49.77373], - [6.51781, 49.76885], - [6.51712, 49.75987], - [6.50047, 49.75366], - [6.50253, 49.73191], - [6.5173, 49.72448], - [6.51163, 49.72093], - [6.4979, 49.72847], - [6.49549, 49.72481], - [6.50751, 49.71405], - [6.47781, 49.69617], - [6.45773, 49.69051], - [6.42408, 49.66241], - [6.43833, 49.65918], - [6.43885, 49.65118], - [6.41756, 49.61638], - [6.39404, 49.60003], - [6.38666, 49.59992], - [6.37499, 49.59135], - [6.37705, 49.5839], - [6.38254, 49.58056], - [6.38014, 49.57677], - [6.3707, 49.57933], - [6.35765, 49.57366], - [6.38271, 49.55729], - [6.37739, 49.54805], - [6.35611, 49.53067], - [6.36829, 49.50281], - [6.36829, 49.45976], - [6.33345, 49.46902], - [6.31079, 49.48062], - [6.29482, 49.48129], - [6.27697, 49.50325], - [6.26307, 49.50426], - [6.24041, 49.51418], - [6.19457, 49.5057], - [6.17329, 49.50916], - [6.15406, 49.50158], - [6.16161, 49.49288], - [6.13981, 49.48764], - [6.129, 49.49311], - [6.1235, 49.47314], - [6.10376, 49.47069], - [6.10033, 49.45262], - [6.08248, 49.45752], - [6.07819, 49.46377], - [6.05639, 49.46589], - [6.04145, 49.44782], - [6.02669, 49.44927], - [6.02308, 49.45518], - [5.97965, 49.45217], - [5.98806, 49.46176], - [5.97691, 49.46344], - [5.97313, 49.49088], - [5.93674, 49.49957], - [5.90687, 49.50002], - [5.8667, 49.50002], - [5.8334, 49.52632], - [5.8437, 49.53011], - [5.83546, 49.54192], - [5.81657, 49.53746], - [5.80833, 49.54348] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/netherlands/netherlands.geojson b/features/europe/netherlands/netherlands.geojson deleted file mode 100644 index e45fe7692..000000000 --- a/features/europe/netherlands/netherlands.geojson +++ /dev/null @@ -1,128 +0,0 @@ -{ - "type": "Feature", - "id": "netherlands", - "properties": {"area": 57045.6}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [6.02737, 50.77512], - [6.0157, 50.75644], - [5.68337, 50.75731], - [5.69435, 50.8068], - [5.65453, 50.81548], - [5.64766, 50.86924], - [5.68337, 50.88571], - [5.85915, 51.15351], - [5.56664, 51.22237], - [5.50347, 51.30229], - [5.41695, 51.26535], - [5.2343, 51.2602], - [5.25215, 51.30572], - [5.13268, 51.34691], - [5.07088, 51.38892], - [5.10933, 51.42747], - [5.08049, 51.46684], - [5.00908, 51.47796], - [5.00496, 51.43946], - [4.91982, 51.39064], - [4.76601, 51.41377], - [4.77837, 51.43261], - [4.82368, 51.42661], - [4.83879, 51.47967], - [4.76189, 51.50703], - [4.66301, 51.43004], - [4.53118, 51.4249], - [4.53667, 51.48737], - [4.38149, 51.44887], - [4.42818, 51.37264], - [4.34578, 51.36406], - [4.33892, 51.3795], - [4.24416, 51.37521], - [4.16314, 51.29112], - [3.88848, 51.21205], - [3.79235, 51.21119], - [3.79097, 51.25762], - [3.59871, 51.30143], - [3.5122, 51.29198], - [3.52867, 51.24902], - [3.42568, 51.24644], - [3.35976, 51.31688], - [3.38448, 51.33404], - [3.3, 51.45], - [4, 53.7], - [6.25, 53.7], - [6.91658, 53.45862], - [6.97701, 53.34399], - [7.1981, 53.28738], - [7.22557, 53.18053], - [7.18163, 53.12782], - [7.2242, 52.98503], - [7.09099, 52.84094], - [7.04842, 52.63306], - [6.77376, 52.65473], - [6.71333, 52.61639], - [6.70097, 52.48278], - [6.94405, 52.43592], - [6.98799, 52.46689], - [7.06627, 52.35799], - [7.03194, 52.29504], - [7.06215, 52.23621], - [6.99211, 52.22359], - [6.95366, 52.18277], - [6.90765, 52.17477], - [6.85753, 52.12084], - [6.76346, 52.11831], - [6.75179, 52.0871], - [6.6893, 52.05165], - [6.82251, 51.99503], - [6.83006, 51.96754], - [6.8026, 51.95823], - [6.79058, 51.93093], - [6.72226, 51.89472], - [6.68724, 51.91801], - [6.46889, 51.85444], - [6.39336, 51.87225], - [6.40503, 51.82772], - [6.2677, 51.86759], - [6.21277, 51.86674], - [6.15509, 51.907], - [6.11183, 51.89641], - [6.16402, 51.8608], - [6.16814, 51.83917], - [6.06583, 51.86292], - [5.99648, 51.83196], - [5.94978, 51.82644], - [5.9951, 51.76657], - [5.96077, 51.74234], - [6.04385, 51.71724], - [6.02943, 51.67426], - [6.11526, 51.65594], - [6.09123, 51.60693], - [6.21071, 51.52284], - [6.22444, 51.44759], - [6.22032, 51.35892], - [6.07681, 51.23914], - [6.07132, 51.17289], - [6.1647, 51.19312], - [6.17157, 51.15695], - [6.09398, 51.13111], - [5.96832, 51.05952], - [5.9539, 51.03362], - [5.91476, 51.06513], - [5.86945, 51.05003], - [5.90515, 50.99647], - [5.89897, 50.97616], - [6.02119, 50.98221], - [6.01913, 50.9355], - [6.09604, 50.91559], - [6.07544, 50.84627], - [6.05072, 50.85451], - [6.01845, 50.8441], - [6.02737, 50.80854], - [5.97656, 50.79943], - [6.02737, 50.77512] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/norway/norway.geojson b/features/europe/norway/norway.geojson deleted file mode 100644 index 2fb0bcd59..000000000 --- a/features/europe/norway/norway.geojson +++ /dev/null @@ -1,46 +0,0 @@ -{ - "type": "Feature", - "id": "norway", - "properties": {"area": 2044029.2}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [25.98816, 69.6179], - [25.24109, 68.60752], - [20.42908, 68.97318], - [16.9519, 67.9499], - [13.77686, 64.59561], - [14.28223, 64.47279], - [14.08447, 63.99524], - [13.02979, 64.10101], - [12.00806, 63.2633], - [12.14813, 61.6586], - [12.87323, 61.31245], - [12.67548, 61.0636], - [12.26074, 61.00241], - [12.60681, 60.50593], - [12.49146, 60.08128], - [12.17285, 59.88756], - [11.87622, 59.84895], - [11.94214, 59.69547], - [11.6922, 59.58998], - [11.84601, 59.25044], - [11.64276, 58.89471], - [11.45325, 58.88194], - [11.44775, 59.00168], - [11.34888, 59.11254], - [11.18134, 59.08009], - [11.06186, 58.97054], - [8, 57.5], - [3, 57.5], - [3, 83], - [40, 83], - [35, 71], - [29.61365, 69.28629], - [27.98767, 69.99711], - [25.98816, 69.6179] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/poland/poland.geojson b/features/europe/poland/poland.geojson deleted file mode 100644 index 16287e88c..000000000 --- a/features/europe/poland/poland.geojson +++ /dev/null @@ -1,59 +0,0 @@ -{ - "type": "Feature", - "id": "poland", - "properties": {"area": 339252.64}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [14.03, 52.84], - [14.34, 53.26], - [14.13, 54.16], - [15.95, 54.52], - [16.31, 54.76], - [17.13, 54.97], - [18.29, 55.08], - [18.9, 54.98], - [19.69, 54.5], - [21.47, 54.37], - [22.9, 54.46], - [23.39, 54.3], - [24.01, 53.17], - [24.03, 52.71], - [23.29, 52.3], - [23.74, 52.09], - [23.64, 51.61], - [24.24, 50.86], - [24.11, 50.41], - [23.78, 50.34], - [22.77, 49.55], - [22.96, 48.97], - [22.18, 49.1], - [21.6, 49.38], - [20.93, 49.24], - [20.47, 49.34], - [20.12, 49.13], - [19.76, 49.14], - [19.45, 49.51], - [18.94, 49.34], - [18.48, 49.85], - [17.83, 49.92], - [17.54, 50.21], - [17.06, 50.35], - [17.08, 50.18], - [16.65, 50.05], - [16.11, 50.41], - [16.3, 50.6], - [16.01, 50.54], - [15.34, 50.73], - [15.14, 50.93], - [14.78, 50.82], - [14.94, 51.27], - [14.5, 51.81], - [14.66, 52.05], - [14.53, 52.57], - [14.03, 52.84] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/portugal/portugal.geojson b/features/europe/portugal/portugal.geojson deleted file mode 100644 index 843c72ae2..000000000 --- a/features/europe/portugal/portugal.geojson +++ /dev/null @@ -1,49 +0,0 @@ -{ - "type": "Feature", - "id": "portugal", - "properties": {"area": 595445.26}, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-8.87097, 41.863], - [-8.63678, 42.04749], - [-8.33189, 42.08383], - [-8.09392, 41.80804], - [-7.70414, 41.90734], - [-7.57391, 41.82972], - [-7.31532, 41.84255], - [-7.07696, 41.95194], - [-6.59946, 41.9483], - [-6.54827, 41.6856], - [-6.18916, 41.57483], - [-6.31541, 41.39007], - [-6.64838, 41.24755], - [-6.80893, 41.0365], - [-6.78122, 40.3638], - [-7.00889, 40.22732], - [-6.88093, 40.04168], - [-7.01552, 39.67043], - [-7.49982, 39.59116], - [-7.29426, 39.45683], - [-7.22161, 39.1933], - [-6.95113, 39.0236], - [-7.03302, 38.87882], - [-7.26003, 38.72294], - [-7.3179, 38.44009], - [-7.00719, 38.02075], - [-7.24557, 37.9918], - [-7.52267, 37.55307], - [-7.44048, 37.39102], - [-7.3, 36.7], - [-10, 36.7], - [-10, 41.86], - [-8.87097, 41.863] - ] - ], - [[[-32, 40], [-24, 40], [-24, 36], [-32, 36], [-32, 40]]], - [[[-18, 34], [-15, 34], [-15, 29.7], [-18, 29.7], [-18, 34]]] - ] - } -} \ No newline at end of file diff --git a/features/europe/slovenia/slovenia.geojson b/features/europe/slovenia/slovenia.geojson deleted file mode 100644 index f85726b85..000000000 --- a/features/europe/slovenia/slovenia.geojson +++ /dev/null @@ -1,189 +0,0 @@ -{ - "type": "Feature", - "id": "slovenia", - "properties": {"area": 21482.14}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [15.17101, 45.41273], - [15.06731, 45.4781], - [14.98353, 45.48726], - [14.93027, 45.51869], - [14.91295, 45.46869], - [14.81398, 45.45019], - [14.77755, 45.49724], - [14.71885, 45.52386], - [14.68383, 45.51924], - [14.68367, 45.57107], - [14.58902, 45.61966], - [14.59477, 45.65727], - [14.51653, 45.5974], - [14.49636, 45.52968], - [14.32388, 45.46048], - [14.28251, 45.47949], - [14.26083, 45.47352], - [14.2367, 45.49569], - [14.21022, 45.45962], - [14.1328, 45.46542], - [14.06694, 45.47615], - [14.01187, 45.50769], - [13.98752, 45.49945], - [14.00668, 45.4739], - [13.99154, 45.44854], - [13.91789, 45.44329], - [13.88867, 45.416], - [13.81063, 45.42531], - [13.7856, 45.45577], - [13.67553, 45.43241], - [13.37688, 45.56647], - [13.63953, 45.6426], - [13.72158, 45.60472], - [13.83759, 45.59226], - [13.89962, 45.63295], - [13.82754, 45.67917], - [13.82429, 45.70266], - [13.78961, 45.73525], - [13.66355, 45.79008], - [13.62279, 45.78613], - [13.58835, 45.80154], - [13.56531, 45.85522], - [13.62633, 45.93894], - [13.62975, 45.97662], - [13.59233, 45.97929], - [13.57124, 45.9591], - [13.52998, 45.95627], - [13.46729, 46.00147], - [13.49765, 46.03741], - [13.4896, 46.06574], - [13.58839, 46.11268], - [13.63712, 46.14524], - [13.65358, 46.17505], - [13.57147, 46.17434], - [13.54859, 46.19982], - [13.48189, 46.21479], - [13.42003, 46.19662], - [13.40026, 46.21037], - [13.40304, 46.23284], - [13.36653, 46.30266], - [13.43369, 46.33243], - [13.43247, 46.36779], - [13.56263, 46.40895], - [13.59357, 46.44846], - [13.68393, 46.44947], - [13.71321, 46.53296], - [13.79725, 46.5164], - [13.91305, 46.53108], - [14.00849, 46.49169], - [14.09406, 46.49538], - [14.12664, 46.4852], - [14.16569, 46.44341], - [14.28242, 46.45347], - [14.3259, 46.44111], - [14.43178, 46.4568], - [14.45113, 46.43239], - [14.52618, 46.43623], - [14.56677, 46.38549], - [14.58993, 46.44479], - [14.65658, 46.45447], - [14.71191, 46.50954], - [14.80818, 46.51778], - [14.81442, 46.55093], - [14.86094, 46.61239], - [14.9102, 46.61569], - [14.95398, 46.64257], - [14.98376, 46.61868], - [15.02973, 46.65796], - [15.10645, 46.66965], - [15.23727, 46.64973], - [15.41364, 46.66553], - [15.46237, 46.64732], - [15.47411, 46.6226], - [15.53427, 46.64346], - [15.53636, 46.6761], - [15.59201, 46.69952], - [15.62405, 46.69039], - [15.65624, 46.71643], - [15.767, 46.70899], - [15.83801, 46.73237], - [15.91476, 46.71958], - [16.02919, 46.67033], - [16.02955, 46.68778], - [15.99495, 46.71178], - [15.97505, 46.74967], - [15.98671, 46.84189], - [16.0553, 46.85049], - [16.11022, 46.87912], - [16.15425, 46.86525], - [16.23302, 46.88667], - [16.29431, 46.8824], - [16.34649, 46.85476], - [16.36058, 46.8278], - [16.34711, 46.79707], - [16.32245, 46.79068], - [16.33977, 46.7799], - [16.33186, 46.75896], - [16.38893, 46.70785], - [16.4383, 46.69655], - [16.42822, 46.65301], - [16.40159, 46.6439], - [16.51477, 46.57299], - [16.54136, 46.53627], - [16.5416, 46.50887], - [16.611, 46.48393], - [16.61889, 46.46203], - [16.52219, 46.45842], - [16.47451, 46.50108], - [16.36776, 46.53371], - [16.2582, 46.489], - [16.28533, 46.42441], - [16.3168, 46.40141], - [16.30574, 46.36921], - [16.18689, 46.36804], - [16.14548, 46.39515], - [16.06959, 46.38154], - [16.08614, 46.34087], - [16.04058, 46.32708], - [16.01819, 46.29964], - [15.80777, 46.25091], - [15.79649, 46.21296], - [15.77128, 46.19937], - [15.67996, 46.21707], - [15.65737, 46.20838], - [15.65639, 46.18456], - [15.62037, 46.16163], - [15.61899, 46.11595], - [15.63483, 46.09529], - [15.71869, 46.06873], - [15.74241, 46.04578], - [15.71612, 45.99489], - [15.71645, 45.9178], - [15.69237, 45.90013], - [15.69375, 45.87111], - [15.71776, 45.8416], - [15.6441, 45.81058], - [15.57467, 45.83999], - [15.52333, 45.81155], - [15.49115, 45.82041], - [15.47514, 45.78666], - [15.40343, 45.78216], - [15.28683, 45.73391], - [15.27435, 45.72408], - [15.29763, 45.70782], - [15.36329, 45.72191], - [15.41517, 45.65443], - [15.39705, 45.62929], - [15.31501, 45.62356], - [15.31503, 45.60696], - [15.29266, 45.60163], - [15.30852, 45.58653], - [15.31145, 45.5423], - [15.39496, 45.48325], - [15.34824, 45.44665], - [15.27515, 45.45599], - [15.22848, 45.41683], - [15.17101, 45.41273] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/spain/spain.geojson b/features/europe/spain/spain.geojson deleted file mode 100644 index 98d30f723..000000000 --- a/features/europe/spain/spain.geojson +++ /dev/null @@ -1,153 +0,0 @@ -{ - "type": "Feature", - "id": "spain", - "properties": {"area": 826232.89}, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [[[-19, 29], [-13, 30], [-13, 29], [-14, 27.8], [-19, 27], [-19, 29]]], - [ - [ - [-8.89106, 41.82289], - [-10, 44], - [-4, 44], - [-1.77005, 43.37605], - [-1.71005, 43.37569], - [-1.71135, 43.33125], - [-1.72259, 43.31318], - [-1.68904, 43.31291], - [-1.68811, 43.33413], - [-1.64467, 43.33372], - [-1.64498, 43.31332], - [-1.60299, 43.31295], - [-1.60344, 43.29266], - [-1.56359, 43.29212], - [-1.56305, 43.31338], - [-1.47799, 43.31284], - [-1.36677, 43.27614], - [-1.35688, 43.23815], - [-1.37037, 43.1713], - [-1.44231, 43.08336], - [-1.41983, 43.06036], - [-1.37307, 43.05117], - [-1.36407, 43.11159], - [-1.30203, 43.13522], - [-1.23549, 43.13325], - [-1.27955, 43.07744], - [-1.19232, 43.06496], - [-1.00619, 43.00778], - [-0.94234, 42.9749], - [-0.7562, 42.98213], - [-0.71484, 42.96108], - [-0.69685, 42.90314], - [-0.55118, 42.82207], - [-0.50442, 42.84845], - [-0.42889, 42.82009], - [-0.31648, 42.86558], - [-0.14563, 42.81086], - [-0.03143, 42.71249], - [0.18618, 42.7541], - [0.30218, 42.71777], - [0.36422, 42.74287], - [0.44875, 42.71447], - [0.62769, 42.7224], - [0.64118, 42.85767], - [0.71492, 42.88272], - [0.9676, 42.81811], - [1.10878, 42.79898], - [1.17532, 42.73429], - [1.36326, 42.74155], - [1.41137, 42.70939], - [1.48061, 42.71034], - [1.4813, 42.50107], - [1.64436, 42.50203], - [1.64328, 42.54245], - [1.73041, 42.54342], - [1.73164, 42.50118], - [2.06386, 42.50164], - [2.06456, 42.45902], - [2.39693, 42.45994], - [2.39768, 42.41784], - [2.48048, 42.41797], - [2.48098, 42.37594], - [2.64479, 42.37626], - [2.64448, 42.45924], - [2.81133, 42.45961], - [2.81126, 42.50104], - [3.06388, 42.50085], - [3.06388, 42.45915], - [3.23078, 42.45934], - [5, 40], - [4, 39], - [-2.2, 36.5], - [-5.6, 35.95], - [-6, 36], - [-7.37535, 37.15354], - [-7.40832, 37.16822], - [-7.4481, 37.39094], - [-7.46963, 37.40758], - [-7.4647, 37.45305], - [-7.50197, 37.51641], - [-7.51916, 37.52292], - [-7.52196, 37.57237], - [-7.45013, 37.66958], - [-7.4249, 37.75992], - [-7.31666, 37.83997], - [-7.26833, 37.98895], - [-7.15368, 38.01552], - [-7.11771, 38.05536], - [-7.0143, 38.02438], - [-6.99632, 38.10756], - [-6.96147, 38.20125], - [-7.08062, 38.15708], - [-7.34027, 38.44024], - [-7.26383, 38.73807], - [-7.04352, 38.87297], - [-7.06151, 38.90796], - [-6.96934, 39.01983], - [-7.00081, 39.08879], - [-7.15368, 39.09577], - [-7.15255, 39.16029], - [-7.24472, 39.19689], - [-7.25596, 39.28133], - [-7.33689, 39.35351], - [-7.3279, 39.45599], - [-7.51449, 39.58865], - [-7.55271, 39.67954], - [-7.05027, 39.67522], - [-6.99519, 39.81954], - [-6.92213, 39.87909], - [-6.88616, 40.02299], - [-7.04128, 40.13479], - [-7.01767, 40.26615], - [-6.8086, 40.34501], - [-6.86818, 40.44516], - [-6.85356, 40.60664], - [-6.83783, 40.87576], - [-6.9536, 41.03704], - [-6.80186, 41.03959], - [-6.76814, 41.13871], - [-6.64112, 41.26556], - [-6.56244, 41.26303], - [-6.21737, 41.5791], - [-6.31628, 41.64465], - [-6.51523, 41.64129], - [-6.58717, 41.68832], - [-6.54783, 41.85597], - [-6.62988, 41.91121], - [-7.13345, 41.94048], - [-7.16829, 41.87188], - [-7.42569, 41.78477], - [-7.95398, 41.84593], - [-8.13045, 41.78058], - [-8.25185, 41.90786], - [-8.12933, 42.03488], - [-8.24848, 42.1008], - [-8.36762, 42.05575], - [-8.60704, 42.03405], - [-8.89106, 41.82289] - ] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/sweden/sweden.geojson b/features/europe/sweden/sweden.geojson deleted file mode 100644 index 5f3884840..000000000 --- a/features/europe/sweden/sweden.geojson +++ /dev/null @@ -1,110 +0,0 @@ -{ - "type": "Feature", - "id": "sweden", - "properties": {"area": 565641.63}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [10.57159, 58.2445], - [10.63202, 58.9245], - [11.35712, 59.12804], - [11.53839, 58.91174], - [11.62079, 58.92308], - [11.75812, 59.24341], - [11.65649, 59.61777], - [11.85974, 59.7121], - [11.82129, 59.84481], - [11.95862, 59.91098], - [12.15363, 59.91235], - [12.44476, 60.0895], - [12.48322, 60.32151], - [12.56012, 60.50458], - [12.36511, 60.71217], - [12.19482, 61.01572], - [12.64801, 61.09415], - [12.82928, 61.34276], - [12.55463, 61.55018], - [12.42828, 61.54495], - [12.12341, 61.71331], - [12.28546, 62.26664], - [12.03278, 62.60851], - [12.10968, 62.74718], - [12.06024, 62.89772], - [12.18658, 62.99765], - [11.95587, 63.28183], - [12.18109, 63.47873], - [12.1344, 63.59012], - [12.659, 63.9856], - [12.90619, 64.0722], - [13.20831, 64.10461], - [13.9801, 64.03014], - [14.06525, 64.46214], - [13.60382, 64.56968], - [14.26025, 65.11608], - [14.31519, 65.23831], - [14.45251, 65.31412], - [14.47998, 65.62656], - [14.57886, 65.80953], - [14.49097, 66.15163], - [14.99634, 66.17161], - [15.4248, 66.29337], - [15.33691, 66.51107], - [16.04004, 66.93221], - [16.37512, 67.06743], - [16.35864, 67.21467], - [16.06201, 67.42015], - [16.1499, 67.52957], - [16.37512, 67.55266], - [16.70471, 67.91688], - [17.25952, 68.13067], - [17.88025, 67.99523], - [18.09448, 68.19809], - [18.06702, 68.54432], - [18.39661, 68.58848], - [19.00085, 68.52019], - [19.89075, 68.39109], - [20.13245, 68.48798], - [19.89075, 68.55637], - [20.28076, 68.78613], - [19.99512, 69.06268], - [20.62134, 69.08033], - [20.86853, 69.03518], - [21.24756, 68.8437], - [21.92322, 68.60652], - [22.90649, 68.39514], - [23.73596, 67.96639], - [23.5437, 67.8362], - [23.62061, 67.47492], - [23.79639, 67.44544], - [23.81287, 67.26992], - [23.63159, 67.23806], - [24.04358, 66.82868], - [23.91174, 66.57448], - [23.71399, 66.31986], - [24.22485, 65.97333], - [24.04358, 65.64469], - [21.00586, 63.63894], - [18.57239, 61.83023], - [19.18762, 60.53297], - [19.11346, 60.18387], - [19.66827, 59.82687], - [19.90173, 58.07788], - [18.78662, 56.9869], - [16.73218, 56.05977], - [15.0238, 55.72711], - [14.36462, 55.31977], - [13.1163, 55.22276], - [12.7002, 55.30414], - [12.82654, 55.57834], - [12.84851, 55.72402], - [12.79358, 55.83214], - [12.6123, 56.0751], - [12.49146, 56.13331], - [12.07947, 56.30435], - [11.35437, 57.67185], - [10.57159, 58.2445] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/switzerland/switzerland.geojson b/features/europe/switzerland/switzerland.geojson deleted file mode 100644 index 61fa1b77a..000000000 --- a/features/europe/switzerland/switzerland.geojson +++ /dev/null @@ -1,232 +0,0 @@ -{ - "type": "Feature", - "id": "switzerland", - "properties": {"area": 41651.39}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [6.10909, 46.57727], - [6.45584, 46.77702], - [6.42838, 46.80805], - [6.45996, 46.89633], - [6.4325, 46.92823], - [6.6433, 47.00929], - [6.71745, 47.05188], - [6.68999, 47.07106], - [6.74561, 47.10846], - [6.86096, 47.16638], - [6.8438, 47.17198], - [6.95641, 47.24241], - [6.94199, 47.29181], - [7.06352, 47.33975], - [7.01477, 47.3751], - [6.87332, 47.35418], - [6.94473, 47.43273], - [7.00104, 47.45642], - [6.9825, 47.49494], - [7.02026, 47.50421], - [7.07657, 47.49076], - [7.13356, 47.50236], - [7.16103, 47.48844], - [7.19879, 47.49494], - [7.17064, 47.44295], - [7.20634, 47.43552], - [7.26471, 47.42484], - [7.3217, 47.43877], - [7.3938, 47.43505], - [7.4556, 47.4722], - [7.42264, 47.48148], - [7.435, 47.49308], - [7.47757, 47.48148], - [7.51122, 47.49865], - [7.50572, 47.5172], - [7.52563, 47.52137], - [7.52632, 47.53343], - [7.5016, 47.53157], - [7.49886, 47.54316], - [7.55653, 47.56911], - [7.5634, 47.57884], - [7.58194, 47.57884], - [7.58812, 47.59088], - [7.60597, 47.58672], - [7.60597, 47.5793], - [7.62383, 47.57884], - [7.6458, 47.59876], - [7.68013, 47.59135], - [7.687, 47.56726], - [7.63481, 47.56402], - [7.67601, 47.53575], - [7.79823, 47.55938], - [7.81815, 47.58625], - [7.89711, 47.58672], - [7.91153, 47.55197], - [7.9226, 47.54687], - [7.93256, 47.54705], - [7.94432, 47.54421], - [7.95041, 47.54745], - [7.95178, 47.5551], - [7.9602, 47.55823], - [7.97951, 47.55463], - [8.00251, 47.55579], - [8.0195, 47.55046], - [8.04886, 47.55626], - [8.05984, 47.56344], - [8.06843, 47.56413], - [8.07186, 47.56413], - [8.08113, 47.55823], - [8.08954, 47.55799], - [8.09881, 47.56182], - [8.10242, 47.57108], - [8.10362, 47.5778], - [8.11031, 47.58301], - [8.12096, 47.58359], - [8.13641, 47.58463], - [8.13709, 47.58961], - [8.15014, 47.59551], - [8.16044, 47.59355], - [8.18859, 47.61021], - [8.19958, 47.62028], - [8.20936, 47.62121], - [8.22018, 47.6175], - [8.22481, 47.60501], - [8.22824, 47.60547], - [8.23803, 47.61288], - [8.24867, 47.61357], - [8.26069, 47.61542], - [8.26447, 47.60975], - [8.2806, 47.61183], - [8.29794, 47.60582], - [8.29502, 47.59274], - [8.30017, 47.58729], - [8.31184, 47.58324], - [8.32386, 47.57259], - [8.33639, 47.57062], - [8.35236, 47.57085], - [8.38326, 47.56587], - [8.3951, 47.5778], - [8.43184, 47.56668], - [8.45552, 47.57212], - [8.47836, 47.57757], - [8.48608, 47.5778], - [8.49432, 47.58127], - [8.48831, 47.58822], - [8.46651, 47.5844], - [8.45415, 47.60119], - [8.47939, 47.61311], - [8.50891, 47.61843], - [8.51784, 47.63416], - [8.55801, 47.62468], - [8.57449, 47.61056], - [8.56041, 47.60061], - [8.57964, 47.59575], - [8.60641, 47.61357], - [8.59371, 47.64319], - [8.60573, 47.65198], - [8.61294, 47.65082], - [8.61397, 47.64342], - [8.60401, 47.64087], - [8.60641, 47.63717], - [8.62289, 47.64018], - [8.62976, 47.65267], - [8.60641, 47.66677], - [8.59989, 47.67279], - [8.57689, 47.66215], - [8.56007, 47.66978], - [8.53191, 47.64827], - [8.46359, 47.64712], - [8.40557, 47.67371], - [8.41827, 47.68411], - [8.4042, 47.69844], - [8.4557, 47.72916], - [8.45673, 47.74879], - [8.48797, 47.7721], - [8.56865, 47.78779], - [8.56281, 47.79932], - [8.62015, 47.80139], - [8.61465, 47.78271], - [8.62289, 47.77671], - [8.62873, 47.75825], - [8.64967, 47.77348], - [8.65482, 47.80093], - [8.68332, 47.78479], - [8.69053, 47.75825], - [8.71353, 47.76448], - [8.74271, 47.75271], - [8.73825, 47.74602], - [8.71422, 47.73748], - [8.71593, 47.72478], - [8.73619, 47.71646], - [8.72726, 47.69266], - [8.76331, 47.6885], - [8.79559, 47.67625], - [8.79559, 47.70399], - [8.77121, 47.70907], - [8.77224, 47.71923], - [8.80486, 47.73655], - [8.81996, 47.71207], - [8.84674, 47.70514], - [8.87661, 47.65521], - [8.90236, 47.64897], - [8.96828, 47.66862], - [9.01978, 47.68596], - [9.26971, 47.64781], - [9.55124, 47.52647], - [9.65424, 47.44388], - [9.67072, 47.38347], - [9.6199, 47.35929], - [9.53888, 47.27457], - [9.48395, 47.18505], - [9.52103, 47.0907], - [9.47433, 47.06264], - [9.87534, 47.02053], - [9.87534, 46.93526], - [10.1239, 46.84141], - [10.40131, 46.99524], - [10.49469, 46.92963], - [10.40131, 46.64755], - [10.50293, 46.61171], - [10.45624, 46.53052], - [10.11566, 46.62492], - [10.04425, 46.45867], - [10.17334, 46.39999], - [10.11292, 46.33745], - [10.17609, 46.24825], - [10.05524, 46.21595], - [9.94537, 46.37536], - [9.55536, 46.29192], - [9.43451, 46.39431], - [9.34662, 46.50595], - [9.25049, 46.44353], - [9.28619, 46.31848], - [9.00604, 46.03702], - [9.08295, 45.89192], - [9.01154, 45.81157], - [8.91541, 45.84219], - [8.81927, 46.07704], - [8.58582, 46.13417], - [8.43475, 46.25964], - [8.45398, 46.45678], - [8.10516, 46.26724], - [8.17383, 46.17032], - [7.82227, 45.91868], - [7.09442, 45.87471], - [6.81427, 46.14749], - [6.85547, 46.28053], - [6.79504, 46.43029], - [6.50391, 46.4511], - [6.27869, 46.37915], - [6.22925, 46.309], - [6.3089, 46.23875], - [6.11938, 46.14559], - [5.95734, 46.13417], - [5.96283, 46.21215], - [6.1084, 46.25964], - [6.15784, 46.37725], - [6.06171, 46.41703], - [6.15234, 46.54564], - [6.10909, 46.57727] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/ukraine/ukraine.geojson b/features/europe/ukraine/ukraine.geojson deleted file mode 100644 index 2a3c407ca..000000000 --- a/features/europe/ukraine/ukraine.geojson +++ /dev/null @@ -1,196 +0,0 @@ -{ - "type": "Feature", - "id": "ukraine", - "properties": {"area": 614942.59}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [23.6193, 51.65491], - [24.09803, 51.64047], - [24.39723, 51.89353], - [25.19178, 51.95913], - [26.12263, 51.92224], - [26.49829, 51.80933], - [27.09005, 51.77026], - [27.62861, 51.62603], - [28.02422, 51.59093], - [28.28021, 51.68172], - [28.37662, 51.5806], - [28.82542, 51.5682], - [29.19111, 51.64253], - [29.41718, 51.4399], - [29.67316, 51.51238], - [29.82276, 51.47512], - [30.21837, 51.50824], - [30.54417, 51.30709], - [30.63726, 51.38599], - [30.51425, 51.63634], - [30.983, 52.09005], - [31.2822, 52.07984], - [31.48832, 52.13497], - [32.11, 52.05531], - [32.31279, 52.11864], - [32.43912, 52.32434], - [32.93114, 52.28368], - [33.29683, 52.39337], - [33.75561, 52.35277], - [34.35734, 51.78055], - [34.14457, 51.76409], - [34.05813, 51.67965], - [34.22103, 51.47098], - [34.25095, 51.30085], - [34.7197, 51.19056], - [35.11199, 51.21139], - [35.1818, 51.08626], - [35.38792, 51.03402], - [35.40787, 50.62878], - [35.62063, 50.38563], - [36.06944, 50.4513], - [36.21571, 50.41106], - [36.31212, 50.28802], - [36.4717, 50.32624], - [36.59138, 50.2519], - [37.46571, 50.45977], - [37.735, 50.11353], - [38.05747, 49.9384], - [38.19377, 49.95765], - [38.19045, 50.07514], - [38.35002, 50.08154], - [38.41651, 49.98972], - [38.73899, 49.97476], - [39.00827, 49.83344], - [39.14457, 49.89987], - [39.27755, 49.78195], - [39.54018, 49.74544], - [39.79949, 49.58406], - [40.18845, 49.6013], - [40.0588, 49.50424], - [40.20508, 49.24666], - [39.93247, 49.06185], - [39.71638, 49.01608], - [40.08872, 48.85448], - [39.79617, 48.78443], - [39.69311, 48.65283], - [39.86266, 48.5693], - [39.99231, 48.31348], - [39.83274, 47.92287], - [39.74297, 47.83144], - [39.57675, 47.81135], - [38.86532, 47.85153], - [38.77555, 47.68618], - [38.38327, 47.60106], - [38.30348, 47.52704], - [38.30016, 47.23891], - [38.13393, 47.05577], - [37.5455, 47.05124], - [37.31279, 46.87654], - [37.20973, 46.92651], - [36.96039, 46.83107], - [36.7443, 46.61685], - [36.72436, 46.7719], - [36.4451, 46.72407], - [36.10601, 46.4728], - [36.20574, 46.66022], - [35.92316, 46.64424], - [35.43114, 46.39948], - [35.10202, 45.97138], - [35.0455, 45.75145], - [35.47436, 45.33], - [35.86, 45.53297], - [35.9963, 45.43274], - [36.11598, 45.51899], - [36.66452, 45.4514], - [36.65454, 45.34168], - [36.50494, 45.31363], - [36.47502, 45.24111], - [36.48832, 45.04884], - [35.81013, 44.98539], - [35.5076, 45.11222], - [35.42782, 44.93364], - [35.12196, 44.76394], - [34.67649, 44.75686], - [33.985, 44.37078], - [33.68912, 44.38504], - [33.38327, 44.50608], - [33.35002, 44.589], - [33.55282, 44.93128], - [33.42981, 45.1263], - [33.19377, 45.14271], - [32.83141, 45.33935], - [32.60534, 45.30896], - [32.44577, 45.3557], - [32.50893, 45.47005], - [32.87795, 45.68181], - [33.57941, 45.90665], - [33.58938, 46.02681], - [33.25694, 46.07065], - [33.02422, 45.97138], - [31.61133, 46.19506], - [31.27555, 46.61457], - [30.87662, 46.56887], - [30.43446, 45.98756], - [29.69643, 45.55159], - [29.79284, 45.46306], - [29.73965, 45.15913], - [29.47369, 45.41407], - [29.18114, 45.38373], - [28.74896, 45.22004], - [28.56611, 45.23409], - [28.29018, 45.33], - [28.23367, 45.49103], - [28.31678, 45.56789], - [28.483, 45.54228], - [28.47303, 45.73753], - [28.95175, 46.03143], - [29.02489, 46.18125], - [28.9318, 46.49569], - [29.18779, 46.57116], - [29.59337, 46.45448], - [29.81944, 46.46593], - [29.95574, 46.68759], - [29.8959, 46.8197], - [29.56013, 46.96963], - [29.54683, 47.29982], - [29.14789, 47.50234], - [29.23101, 47.77562], - [29.17117, 47.934], - [28.86864, 47.99411], - [28.63593, 48.16513], - [28.44311, 48.06525], - [28.36332, 48.17178], - [28.25694, 48.15404], - [27.735, 48.43494], - [27.55547, 48.45258], - [26.92383, 48.34884], - [26.36532, 48.17178], - [26.1193, 47.97408], - [25.3846, 47.91618], - [24.91585, 47.70408], - [24.52024, 47.94291], - [24.18446, 47.90058], - [23.58274, 48.00523], - [23.43646, 47.96963], - [23.15388, 48.10522], - [23.07077, 47.98743], - [22.858, 47.9585], - [22.76824, 48.09856], - [22.58539, 48.103], - [22.51558, 48.2161], - [22.11332, 48.4217], - [22.49896, 49.06621], - [22.58872, 49.11193], - [22.87795, 49.04006], - [22.7217, 49.18151], - [22.71837, 49.64652], - [23.24364, 50.105], - [24.04484, 50.49785], - [24.05813, 50.68779], - [23.9451, 50.81399], - [24.10135, 50.85388], - [23.62928, 51.29462], - [23.6193, 51.65491] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/united_kingdom/united_kingdom.geojson b/features/europe/united_kingdom/united_kingdom.geojson deleted file mode 100644 index 4d6b64c1c..000000000 --- a/features/europe/united_kingdom/united_kingdom.geojson +++ /dev/null @@ -1,224 +0,0 @@ -{ - "type": "Feature", - "id": "united_kingdom", - "properties": {"name": "United Kingdom", "source": "OpenStreetMap", "area": 631309.53}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-7.24863, 55.06999], - [-6.96705, 55.19847], - [-6.59182, 55.36664], - [-9.93166, 58.01975], - [0.32957, 61.43878], - [2.43894, 51.64531], - [0.72508, 50.42953], - [-7.66848, 49.03788], - [-5.93264, 51.46771], - [-5.4053, 53.54032], - [-6.07527, 54.0096], - [-6.28173, 54.11135], - [-6.309, 54.10669], - [-6.31788, 54.09098], - [-6.33629, 54.09472], - [-6.33993, 54.11189], - [-6.3662, 54.11374], - [-6.36237, 54.0766], - [-6.37492, 54.06914], - [-6.37907, 54.06909], - [-6.37911, 54.06907], - [-6.37918, 54.06902], - [-6.39105, 54.05885], - [-6.41198, 54.06306], - [-6.44345, 54.05649], - [-6.45607, 54.07252], - [-6.47779, 54.07709], - [-6.4713, 54.0663], - [-6.51051, 54.05268], - [-6.53187, 54.05968], - [-6.55772, 54.04917], - [-6.58643, 54.05757], - [-6.59499, 54.04462], - [-6.62381, 54.03646], - [-6.66426, 54.06917], - [-6.66202, 54.09283], - [-6.64506, 54.096], - [-6.66127, 54.12266], - [-6.64886, 54.12138], - [-6.63961, 54.13187], - [-6.63436, 54.16317], - [-6.66539, 54.19316], - [-6.70601, 54.20005], - [-6.72106, 54.18197], - [-6.74076, 54.18192], - [-6.75617, 54.19926], - [-6.77562, 54.19895], - [-6.80097, 54.21317], - [-6.80042, 54.2211], - [-6.81617, 54.22302], - [-6.82774, 54.26149], - [-6.87804, 54.27924], - [-6.87229, 54.28794], - [-6.859, 54.28191], - [-6.85087, 54.29728], - [-6.87594, 54.34641], - [-6.90626, 54.3503], - [-6.91129, 54.37474], - [-6.93074, 54.37575], - [-6.9237, 54.38284], - [-6.95963, 54.39221], - [-6.98165, 54.40946], - [-6.99601, 54.40538], - [-7.0291, 54.42137], - [-7.05724, 54.41108], - [-7.07234, 54.38839], - [-7.10979, 54.36824], - [-7.10388, 54.35574], - [-7.15344, 54.33501], - [-7.18882, 54.33765], - [-7.17974, 54.32046], - [-7.17949, 54.30924], - [-7.19789, 54.31106], - [-7.21219, 54.29962], - [-7.17302, 54.28613], - [-7.17937, 54.2726], - [-7.16092, 54.27371], - [-7.14225, 54.25559], - [-7.15893, 54.24396], - [-7.14594, 54.23957], - [-7.14503, 54.22473], - [-7.17104, 54.2176], - [-7.18808, 54.22492], - [-7.1986, 54.21578], - [-7.22085, 54.21581], - [-7.23182, 54.20557], - [-7.24806, 54.20446], - [-7.24915, 54.19817], - [-7.233, 54.19784], - [-7.25942, 54.19225], - [-7.25828, 54.17737], - [-7.24028, 54.1697], - [-7.25812, 54.16451], - [-7.26296, 54.13741], - [-7.29195, 54.11911], - [-7.30891, 54.13211], - [-7.28551, 54.13626], - [-7.30149, 54.14421], - [-7.28379, 54.15386], - [-7.27997, 54.16797], - [-7.2913, 54.17196], - [-7.33956, 54.14672], - [-7.30533, 54.12336], - [-7.31867, 54.11329], - [-7.32713, 54.12458], - [-7.34602, 54.11645], - [-7.3632, 54.1316], - [-7.39181, 54.12013], - [-7.37279, 54.13963], - [-7.42078, 54.13705], - [-7.40959, 54.15646], - [-7.44192, 54.15409], - [-7.46841, 54.14081], - [-7.47919, 54.12227], - [-7.5281, 54.13574], - [-7.54738, 54.12214], - [-7.56576, 54.12659], - [-7.57454, 54.14151], - [-7.61043, 54.14378], - [-7.62966, 54.1703], - [-7.66425, 54.18797], - [-7.67659, 54.18196], - [-7.68829, 54.20197], - [-7.68543, 54.20776], - [-7.7394, 54.20353], - [-7.74858, 54.20942], - [-7.80368, 54.20707], - [-7.81173, 54.20073], - [-7.86017, 54.21728], - [-7.86046, 54.26026], - [-7.87322, 54.27945], - [-7.86187, 54.29343], - [-7.88087, 54.29188], - [-7.9017, 54.30143], - [-7.91095, 54.29595], - [-7.9616, 54.31247], - [-8.00093, 54.35846], - [-8.03129, 54.35671], - [-8.05733, 54.36572], - [-8.08416, 54.39741], - [-8.16026, 54.44028], - [-8.14291, 54.45092], - [-8.17751, 54.46476], - [-8.11467, 54.46903], - [-8.11324, 54.4764], - [-8.09148, 54.47653], - [-8.09868, 54.48433], - [-8.08933, 54.48708], - [-8.04265, 54.48763], - [-8.04185, 54.50638], - [-8.00601, 54.54594], - [-7.9703, 54.54705], - [-7.94973, 54.53363], - [-7.85055, 54.53313], - [-7.82402, 54.54427], - [-7.83325, 54.55223], - [-7.79659, 54.57163], - [-7.79341, 54.58188], - [-7.76212, 54.58588], - [-7.75151, 54.59878], - [-7.69725, 54.61007], - [-7.70877, 54.63495], - [-7.74165, 54.61797], - [-7.75797, 54.62503], - [-7.77236, 54.62149], - [-7.81366, 54.64411], - [-7.82828, 54.63305], - [-7.85213, 54.63078], - [-7.85669, 54.65057], - [-7.89164, 54.65594], - [-7.9099, 54.66828], - [-7.91381, 54.67596], - [-7.89766, 54.68701], - [-7.92089, 54.69596], - [-7.91804, 54.70282], - [-7.8796, 54.70269], - [-7.83665, 54.73642], - [-7.81761, 54.73378], - [-7.8047, 54.7186], - [-7.78875, 54.71964], - [-7.75006, 54.70428], - [-7.73551, 54.71683], - [-7.7116, 54.72611], - [-7.69723, 54.72356], - [-7.63657, 54.75151], - [-7.60944, 54.74415], - [-7.59117, 54.74438], - [-7.57919, 54.75047], - [-7.57865, 54.74191], - [-7.5698, 54.74384], - [-7.54826, 54.74101], - [-7.53859, 54.751], - [-7.54804, 54.75711], - [-7.54795, 54.78835], - [-7.52847, 54.80757], - [-7.47096, 54.8348], - [-7.44188, 54.87561], - [-7.45258, 54.89849], - [-7.44727, 54.93524], - [-7.39202, 54.94545], - [-7.4072, 54.95521], - [-7.4027, 54.96689], - [-7.40705, 54.98294], - [-7.39135, 54.99774], - [-7.40558, 55.00332], - [-7.37023, 55.03476], - [-7.34516, 55.05083], - [-7.31828, 55.04507], - [-7.29947, 55.0561], - [-7.28944, 55.04771], - [-7.27251, 55.06357], - [-7.24863, 55.06999] - ] - ] - } -} \ No newline at end of file diff --git a/features/middle-east/israel/israel.geojson b/features/middle-east/israel/israel.geojson deleted file mode 100644 index 3149cb8eb..000000000 --- a/features/middle-east/israel/israel.geojson +++ /dev/null @@ -1,49 +0,0 @@ -{ - "type": "Feature", - "id": "israel", - "properties": {"area": 35079.74}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [35.56824, 32.644], - [35.56686, 32.19886], - [35.5188, 32.03835], - [35.54901, 31.77021], - [35.45975, 31.3595], - [35.40619, 31.25742], - [35.46387, 31.11174], - [35.39246, 30.92343], - [35.25925, 30.65682], - [35.16037, 30.12019], - [34.93378, 29.41926], - [34.86511, 29.57823], - [34.8761, 29.66419], - [34.61243, 30.37051], - [34.54651, 30.40841], - [34.51904, 30.58827], - [34.17572, 31.41929], - [34.7, 33.11685], - [35.19779, 33.08924], - [35.21324, 33.09902], - [35.31384, 33.10362], - [35.3643, 33.05357], - [35.43091, 33.0691], - [35.44464, 33.09384], - [35.503, 33.09212], - [35.503, 33.11685], - [35.53116, 33.12548], - [35.5394, 33.22778], - [35.5648, 33.28577], - [35.6218, 33.27027], - [35.76462, 33.33397], - [35.83878, 33.17377], - [35.81749, 33.11167], - [35.84427, 33.10305], - [35.88547, 32.94242], - [35.75706, 32.74397], - [35.56824, 32.644] - ] - ] - } -} \ No newline at end of file diff --git a/features/middle-east/saudi_arabia/saudi_arabia.geojson b/features/middle-east/saudi_arabia/saudi_arabia.geojson deleted file mode 100644 index f2c248ea0..000000000 --- a/features/middle-east/saudi_arabia/saudi_arabia.geojson +++ /dev/null @@ -1,50 +0,0 @@ -{ - "type": "Feature", - "id": "saudi_arabia", - "properties": {"area": 2139114.31}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [39.26514, 32.2128], - [43.00049, 30.75128], - [42.97852, 30.52441], - [44.71436, 29.19053], - [47.48291, 28.99853], - [47.63672, 28.53627], - [49.59229, 28.49766], - [50.75684, 26.5099], - [50.58105, 25.18506], - [50.95459, 24.46715], - [51.61377, 24.76678], - [52.05322, 24.20689], - [51.72363, 23.96618], - [52.58057, 22.97862], - [55.32715, 22.69512], - [55.63477, 22.02455], - [54.97559, 20.03529], - [52.00928, 18.9998], - [49.13086, 18.62542], - [48.22998, 18.20848], - [47.37305, 17.11979], - [47.02148, 16.99376], - [46.75781, 17.30869], - [43.65967, 17.39258], - [43.37402, 17.60214], - [43.06641, 16.59408], - [41.63818, 15.96133], - [34.38721, 27.78077], - [34.82666, 29.40132], - [36.10107, 29.20971], - [36.45264, 29.49699], - [36.73828, 29.87876], - [37.48535, 30.01203], - [37.66113, 30.33495], - [37.96875, 30.46761], - [37.00195, 31.54109], - [39.00146, 31.98944], - [39.26514, 32.2128] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/canada/canada_full.geojson b/features/north-america/canada/canada_full.geojson deleted file mode 100644 index f590358bf..000000000 --- a/features/north-america/canada/canada_full.geojson +++ /dev/null @@ -1,169 +0,0 @@ -{ - "type": "Feature", - "id": "canada_full", - "properties": {"area": 13830848.16}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-140.99854, 69.64945], - [-120.9375, 78.7335], - [-91.05469, 82.7432], - [-75.58594, 83.40004], - [-63.45703, 83.15311], - [-59.32617, 82.37915], - [-63.76465, 81.42049], - [-67.19238, 80.79583], - [-73.21289, 78.85307], - [-74.9707, 76.33114], - [-61.34766, 70.75797], - [-50.1416, 46.67959], - [-65.98389, 42.85181], - [-66.95892, 44.48769], - [-66.9397, 44.81692], - [-67.13745, 45.15493], - [-67.26379, 45.18591], - [-67.31873, 45.1278], - [-67.43958, 45.21881], - [-67.44507, 45.58329], - [-67.79114, 45.67164], - [-67.78015, 47.07012], - [-68.19763, 47.35743], - [-68.39539, 47.35743], - [-68.37891, 47.29413], - [-68.90625, 47.17478], - [-69.06006, 47.23449], - [-69.08203, 47.43552], - [-69.22485, 47.46524], - [-70.00488, 46.70974], - [-70.05981, 46.41514], - [-70.18066, 46.36209], - [-70.3125, 46.21025], - [-70.24658, 46.14178], - [-70.3125, 45.97406], - [-70.26855, 45.91294], - [-70.42236, 45.80583], - [-70.42236, 45.72152], - [-70.71899, 45.49865], - [-70.62012, 45.38302], - [-70.80688, 45.4293], - [-70.85083, 45.22848], - [-71.00464, 45.3367], - [-71.1145, 45.25169], - [-71.26831, 45.29035], - [-71.41113, 45.24395], - [-71.5155, 45.0153], - [-74.81689, 45.0153], - [-75.31128, 44.84808], - [-75.7782, 44.51218], - [-75.82214, 44.4377], - [-76.43188, 44.09942], - [-76.79993, 43.63011], - [-78.68683, 43.63806], - [-79.19495, 43.45292], - [-79.07204, 43.26521], - [-79.05693, 43.25671], - [-79.04594, 43.13807], - [-79.06998, 43.12103], - [-79.06311, 43.11652], - [-79.05693, 43.10951], - [-79.07616, 43.08393], - [-79.07684, 43.07691], - [-79.01505, 43.06839], - [-78.99719, 43.05785], - [-79.02672, 43.02071], - [-79.01779, 42.98456], - [-78.98003, 42.97099], - [-78.96423, 42.95843], - [-78.93402, 42.95542], - [-78.91136, 42.93883], - [-78.90518, 42.90011], - [-78.93127, 42.82361], - [-80.07935, 42.38289], - [-81.27686, 42.20818], - [-82.39197, 41.68112], - [-82.68311, 41.67701], - [-83.07861, 41.86547], - [-83.15552, 42.03909], - [-83.12531, 42.12064], - [-83.13904, 42.23462], - [-83.07587, 42.31185], - [-82.98523, 42.33418], - [-82.81219, 42.37478], - [-82.63916, 42.56117], - [-82.59521, 42.54903], - [-82.52655, 42.61375], - [-82.41669, 43.00063], - [-82.13379, 43.59631], - [-82.51831, 45.34442], - [-83.59772, 45.82114], - [-83.43567, 45.99696], - [-83.57162, 46.10847], - [-83.65402, 46.12275], - [-83.76663, 46.10466], - [-83.82843, 46.11989], - [-83.89984, 46.06084], - [-83.95615, 46.05989], - [-83.974, 46.1018], - [-84.00833, 46.11609], - [-84.00696, 46.14559], - [-84.07974, 46.18934], - [-84.10995, 46.24065], - [-84.0976, 46.25585], - [-84.11545, 46.26724], - [-84.12094, 46.31564], - [-84.10309, 46.32038], - [-84.13467, 46.36115], - [-84.14841, 46.42082], - [-84.10995, 46.50359], - [-84.12781, 46.531], - [-84.14085, 46.53241], - [-84.17313, 46.52722], - [-84.19373, 46.54092], - [-84.226, 46.53525], - [-84.26582, 46.49603], - [-84.2926, 46.49225], - [-84.34135, 46.50595], - [-84.37225, 46.50879], - [-84.44023, 46.49036], - [-84.47662, 46.45489], - [-84.55353, 46.45867], - [-84.76776, 46.62492], - [-84.84741, 46.88272], - [-88.38501, 48.31243], - [-89.32983, 47.96786], - [-93.21899, 48.64743], - [-93.80127, 48.5166], - [-93.83423, 48.63291], - [-94.6637, 48.75257], - [-94.8175, 49.32691], - [-95.15259, 49.38595], - [-95.15533, 49.00184], - [-123.31879, 49.00004], - [-122.99469, 48.7761], - [-123.2666, 48.69096], - [-123.11279, 48.37815], - [-123.44238, 48.22467], - [-124.7168, 48.49477], - [-128.49609, 48.74895], - [-131.2207, 53.61858], - [-130.75928, 54.73731], - [-129.99023, 55.27912], - [-130.07813, 56.10881], - [-131.74805, 56.63206], - [-135.53833, 59.80063], - [-137.47192, 58.90465], - [-138.67493, 59.78958], - [-138.6969, 59.90822], - [-139.20227, 60.09772], - [-139.08142, 60.35141], - [-139.71863, 60.33239], - [-139.98779, 60.18523], - [-140.46021, 60.30791], - [-140.52063, 60.22618], - [-141.01501, 60.30519], - [-140.99854, 69.64945] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/cuba/cuba.geojson b/features/north-america/cuba/cuba.geojson deleted file mode 100644 index 2fbe0b3a0..000000000 --- a/features/north-america/cuba/cuba.geojson +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "Feature", - "id": "cuba", - "properties": {"area": 314422.89}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-85.5, 21.75], - [-83.5, 23.5], - [-80, 23.5], - [-73.5, 20.4], - [-74.5, 19.5], - [-78, 19.5], - [-85.5, 21.75] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/nicaragua/nicaragua.geojson b/features/north-america/nicaragua/nicaragua.geojson deleted file mode 100644 index ab12f93f0..000000000 --- a/features/north-america/nicaragua/nicaragua.geojson +++ /dev/null @@ -1,38 +0,0 @@ -{ - "type": "Feature", - "id": "nicaragua", - "properties": {"area": 173619.09}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-88, 13], - [-87.56104, 13.13298], - [-87.36877, 12.99921], - [-86.97876, 13.02597], - [-86.88538, 13.28272], - [-86.7041, 13.29876], - [-86.77002, 13.76873], - [-86.31409, 13.77407], - [-86.1438, 14.046], - [-86.01746, 14.05133], - [-85.75378, 13.89141], - [-85.16602, 14.31761], - [-84.96277, 14.80144], - [-84.4574, 14.63674], - [-83.39722, 15.03499], - [-82.5, 14.9], - [-82.8, 12], - [-83.676, 10.95], - [-83.66, 10.8], - [-83.92, 10.7], - [-84.688, 11.076], - [-84.91, 10.945], - [-85.615, 11.215], - [-85.7, 11.06], - [-86, 11.06], - [-88, 13] - ] - ] - } -} \ No newline at end of file diff --git a/features/north-america/united_states/usa_full.geojson b/features/north-america/united_states/usa_full.geojson deleted file mode 100644 index 2c39bf503..000000000 --- a/features/north-america/united_states/usa_full.geojson +++ /dev/null @@ -1,146 +0,0 @@ -{ - "type": "Feature", - "id": "usa_full", - "properties": {"area": 11645277.77}, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-124.76179, 48.41301], - [-123.22752, 48.18499], - [-123.32289, 49.00429], - [-96.01312, 49.00605], - [-95.11054, 49.412], - [-93.99811, 49.00671], - [-89.43531, 47.98378], - [-88.34922, 48.29633], - [-87.50645, 48.01427], - [-83.2814, 46.13885], - [-82.17616, 43.58854], - [-82.66248, 41.68895], - [-79.00601, 42.80053], - [-79.15798, 43.44626], - [-78.76239, 43.62496], - [-76.90231, 43.80246], - [-75.07988, 44.98029], - [-72.02225, 45.00598], - [-71.41227, 45.25488], - [-70.46149, 46.21766], - [-69.25051, 47.51223], - [-67.75966, 47.099], - [-66.94528, 44.71049], - [-69.84893, 43.26199], - [-69.87974, 40.99205], - [-72.00202, 40.99125], - [-74.02112, 39.57279], - [-75.41474, 35.05319], - [-80.02453, 32.01613], - [-79.89011, 26.85507], - [-80.02, 24.0071], - [-84.01601, 24.00527], - [-84.01656, 25.01258], - [-81.99666, 25.01349], - [-81.9972, 25.98268], - [-84.01879, 28.99618], - [-86.02775, 30.00475], - [-88.01625, 30.00389], - [-88.01567, 28.99443], - [-90.90285, 28.85645], - [-93.74053, 29.47421], - [-95.55633, 28.58761], - [-96.80617, 27.79782], - [-96.95553, 25.98216], - [-97.43502, 25.8266], - [-98.01091, 25.9928], - [-99.23511, 26.4476], - [-100.00624, 28.00822], - [-101.25529, 29.48105], - [-102.1514, 29.74757], - [-102.71736, 29.39206], - [-103.25189, 28.89087], - [-104.58819, 29.69979], - [-105.02053, 30.5361], - [-106.20525, 31.4467], - [-106.28689, 31.56133], - [-106.42932, 31.75206], - [-106.48421, 31.74645], - [-106.53072, 31.78209], - [-108.18711, 31.77551], - [-108.19927, 31.326], - [-111.00893, 31.33601], - [-114.86123, 32.47999], - [-117.67593, 32.46302], - [-119.97759, 33.00641], - [-122.53697, 36.85661], - [-124.99343, 40.05576], - [-124.60595, 45.90245], - [-124.76179, 48.41301] - ] - ], - [ - [ - [-160.57876, 22.50629], - [-159.00937, 22.50702], - [-157.50474, 21.9985], - [-156.29276, 21.22259], - [-154.68902, 19.88057], - [-154.62178, 18.7587], - [-155.99619, 18.77902], - [-157.50832, 20.9958], - [-158.74706, 21.24398], - [-160.57822, 21.49846], - [-160.57876, 22.50629] - ] - ], - [ - [ - [-167.1572, 68.722], - [-164.9717, 68.9947], - [-163.0218, 69.9707], - [-160.4136, 70.7398], - [-156.1769, 71.5633], - [-140.9684, 69.9535], - [-140.9874, 61.0119], - [-139.1716, 60.4127], - [-138.0072, 59.9918], - [-135.123, 59.7566], - [-131.9759, 56.9995], - [-130.0071, 57.0001], - [-130.0044, 54.0043], - [-133.9948, 54.0032], - [-138.515, 57.9986], - [-138.516, 58.9953], - [-151.5013, 58.992], - [-151.5003, 57.9988], - [-151.9963, 55.9992], - [-158.0191, 55.0028], - [-159.0076, 55.0025], - [-162.4025, 53.9567], - [-171.4689, 51.8215], - [-177.9993, 51.2554], - [-178.0001, 52.2446], - [-173.8197, 59.7401], - [-172.5143, 63.8767], - [-169.0075, 64.9988], - [-169.0087, 66.0015], - [-168.0022, 66.0018], - [-164.8554, 67.0255], - [-167.1572, 68.722] - ] - ], - [ - [ - [-68.2, 17.8], - [-67.9, 18.67], - [-65.33, 18.57], - [-64.64, 18.36], - [-64.32, 17.38], - [-68.2, 17.8] - ] - ], - [[[146.2, 15.4], [144.8, 12.9], [144.2, 13.2], [145.7, 15.6], [146.2, 15.4]]], - [[[180, 52.2], [180, 51], [172, 52.5], [172, 53.5], [180, 52.2]]] - ] - } -} \ No newline at end of file diff --git a/features/oceania/australia/australia_full.geojson b/features/oceania/australia/australia_full.geojson deleted file mode 100644 index 5af31ca12..000000000 --- a/features/oceania/australia/australia_full.geojson +++ /dev/null @@ -1,46 +0,0 @@ -{ - "type": "Feature", - "id": "australia_full", - "properties": {"area": 19340705.94}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [146.07422, -44.43378], - [131.66016, -44.65302], - [124.54102, -41.44273], - [116.45508, -39.36828], - [108.80859, -39.16414], - [103.18359, -27.60567], - [95.27344, -24.04646], - [96.30615, -11.15685], - [106.25977, -9.92557], - [116.47705, -13.98738], - [122.77222, -11.65224], - [126.43066, -11.48002], - [129.26514, -9.92557], - [134.89014, -9.92557], - [139.46045, -10.14193], - [141.55334, -9.99861], - [141.7868, -9.77132], - [142.229, -9.67115], - [142.72614, -9.552], - [143.30017, -9.39216], - [144.24774, -9.24851], - [144.44824, -9.59533], - [149.5459, -12.68321], - [154.90723, -18.02053], - [156.42334, -21.55528], - [158.02734, -24.68695], - [160.0708, -26.03704], - [167.34375, -26.6671], - [170.354, -29.11378], - [168.2666, -30.63791], - [160.15869, -34.03445], - [152.18262, -38.41056], - [149.94141, -43.51669], - [146.07422, -44.43378] - ] - ] - } -} \ No newline at end of file diff --git a/features/oceania/new_zealand/new_zealand_full.geojson b/features/oceania/new_zealand/new_zealand_full.geojson deleted file mode 100644 index c82fa10c5..000000000 --- a/features/oceania/new_zealand/new_zealand_full.geojson +++ /dev/null @@ -1,22 +0,0 @@ -{ - "type": "Feature", - "id": "new_zealand_full", - "properties": {"area": 3153468.28}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [170.55176, -33.54139], - [173.62793, -32.28713], - [181.3623, -36.80928], - [181.4502, -43.10098], - [181.95557, -47.45781], - [180.59326, -53.31775], - [171.5625, -56.70451], - [162.72949, -53.33087], - [160.7959, -46.70974], - [170.55176, -33.54139] - ] - ] - } -} \ No newline at end of file diff --git a/features/oceania/oceania_full.geojson b/features/oceania/oceania_full.geojson deleted file mode 100644 index b5b3fff17..000000000 --- a/features/oceania/oceania_full.geojson +++ /dev/null @@ -1,28 +0,0 @@ -{ - "type": "Feature", - "id": "oceania_full", - "properties": {"area": 52750511.11}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [94.92188, -18.47961], - [119.35547, -13.23995], - [128.4082, -10.27168], - [135.08789, -8.84165], - [140.67993, -9.57908], - [141.0157, -9.13193], - [140.99716, -2.58091], - [144.31641, 10.09867], - [156.97266, 16.88866], - [177.97852, 15.96133], - [193.44727, -2.81137], - [197.75391, -14.26438], - [193.18359, -40.71396], - [161.89453, -55.37911], - [102.65625, -45.58329], - [94.92188, -18.47961] - ] - ] - } -} \ No newline at end of file diff --git a/features/south-america/argentina/argentina.geojson b/features/south-america/argentina/argentina.geojson deleted file mode 100644 index e8132b3fa..000000000 --- a/features/south-america/argentina/argentina.geojson +++ /dev/null @@ -1,226 +0,0 @@ -{ - "type": "Feature", - "id": "argentina", - "properties": {"area": 3414619.96}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-73.14602, -49.18818], - [-72.91615, -48.93261], - [-72.53201, -48.80072], - [-72.58755, -48.48542], - [-72.22624, -48.32339], - [-72.49784, -47.96155], - [-72.33315, -47.44938], - [-71.86801, -47.23376], - [-71.94851, -46.80983], - [-71.64665, -46.68783], - [-71.79939, -46.19141], - [-71.6147, -45.97522], - [-71.79762, -45.62288], - [-71.46813, -45.4921], - [-71.32472, -45.306], - [-71.56043, -44.97863], - [-72.04094, -44.90019], - [-72.07396, -44.78023], - [-71.46969, -44.73753], - [-71.23704, -44.79082], - [-71.13226, -44.4711], - [-71.36469, -44.38958], - [-71.80731, -44.42036], - [-71.84736, -44.11002], - [-71.64902, -43.94552], - [-71.75129, -43.78527], - [-71.60784, -43.62836], - [-71.93082, -43.45685], - [-71.76157, -43.1645], - [-72.14281, -42.8979], - [-72.1812, -42.69735], - [-72.023, -42.41766], - [-72.17288, -42.14043], - [-71.72931, -42.12447], - [-71.91021, -41.34113], - [-71.8196, -41.06038], - [-71.96387, -40.71955], - [-71.8414, -40.4521], - [-71.65704, -40.36426], - [-71.82818, -40.20778], - [-71.59266, -39.90123], - [-71.67811, -39.56486], - [-71.39497, -39.34179], - [-71.42542, -38.92164], - [-70.92524, -38.76298], - [-70.84044, -38.54138], - [-70.97623, -38.44222], - [-70.98292, -38.10477], - [-71.21191, -37.68901], - [-71.11983, -37.4585], - [-71.21555, -37.27261], - [-71.09237, -37.11444], - [-71.11982, -36.69792], - [-71.03513, -36.47333], - [-70.71285, -36.42687], - [-70.70501, -36.27229], - [-70.42451, -36.15581], - [-70.38755, -35.60868], - [-70.43201, -35.31842], - [-70.58358, -35.27831], - [-70.36203, -35.13645], - [-70.21683, -34.61145], - [-70.01089, -34.41389], - [-70.03094, -34.28805], - [-69.79507, -34.24304], - [-69.90417, -33.77143], - [-69.7705, -33.3611], - [-70.00282, -33.32294], - [-70.08089, -33.02919], - [-70.00121, -32.8846], - [-70.17038, -32.62555], - [-70.14899, -32.46585], - [-70.31918, -32.27335], - [-70.35277, -32.0257], - [-70.2106, -31.95769], - [-70.46072, -31.84116], - [-70.56691, -31.60016], - [-70.49734, -31.12216], - [-70.40805, -31.16633], - [-70.23998, -30.61575], - [-70.11719, -30.43102], - [-69.89853, -30.35557], - [-69.87492, -29.7043], - [-70.01808, -29.38321], - [-69.78724, -29.13008], - [-69.68114, -28.47172], - [-69.45679, -28.18357], - [-69.17254, -27.97088], - [-68.94231, -27.52325], - [-68.8412, -27.15464], - [-68.29854, -27.0389], - [-68.2638, -26.91623], - [-68.58734, -26.49294], - [-68.55754, -26.2871], - [-68.38108, -26.17822], - [-68.57599, -25.42894], - [-68.4999, -25.16149], - [-68.34279, -25.1124], - [-68.56789, -24.79739], - [-68.26201, -24.40457], - [-67.32231, -24.0344], - [-66.99052, -23.00044], - [-67.18066, -22.8138], - [-67.02827, -22.54089], - [-66.78247, -22.43778], - [-66.73899, -22.23893], - [-66.28793, -22.08605], - [-66.24277, -21.79408], - [-66.07589, -21.83493], - [-65.74764, -22.10912], - [-64.99322, -22.08239], - [-64.53579, -22.29137], - [-64.29933, -22.86509], - [-64.24332, -22.56039], - [-63.93139, -22], - [-62.80617, -22], - [-62.7913, -22.16193], - [-62.3009, -22.48659], - [-62.20671, -22.70418], - [-61.73612, -23.23432], - [-61.08824, -23.61393], - [-60.9899, -23.81808], - [-60.37353, -24.024], - [-60.03941, -24.01156], - [-59.47554, -24.33261], - [-59.35397, -24.47821], - [-58.67243, -24.83192], - [-58.24167, -24.92801], - [-57.76089, -25.17193], - [-57.555, -25.4484], - [-57.74064, -25.65045], - [-57.89112, -25.9662], - [-58.08473, -26.11185], - [-58.22103, -26.41403], - [-58.18996, -26.64518], - [-58.31991, -26.85821], - [-58.64913, -27.12662], - [-58.59905, -27.29984], - [-57.87482, -27.27527], - [-57.48754, -27.44418], - [-56.96564, -27.50202], - [-56.84926, -27.6063], - [-56.60117, -27.42102], - [-56.3749, -27.58903], - [-56.29432, -27.42003], - [-56.06276, -27.306], - [-55.73692, -27.44516], - [-55.6057, -27.16241], - [-55.42284, -26.99528], - [-54.78695, -26.63111], - [-54.61874, -26.20893], - [-54.67933, -25.99524], - [-54.65698, -25.67619], - [-54.5842, -25.58952], - [-54.4812, -25.62543], - [-54.108, -25.495], - [-53.86217, -25.65902], - [-53.83619, -25.97166], - [-53.6411, -26.21559], - [-53.73094, -26.5097], - [-53.67249, -26.91252], - [-53.84355, -27.16453], - [-53.959, -27.15804], - [-54.21736, -27.38603], - [-54.673, -27.57], - [-54.814, -27.533], - [-54.936, -27.772], - [-55.38728, -27.98524], - [-55.76677, -28.23982], - [-55.69902, -28.42637], - [-55.88091, -28.4715], - [-56.29651, -28.80272], - [-56.42475, -29.07897], - [-56.59315, -29.12516], - [-56.70164, -29.35913], - [-57.328, -29.972], - [-57.64923, -30.20184], - [-57.63687, -30.33197], - [-57.85924, -30.47701], - [-57.8096, -30.91332], - [-58.08141, -31.45457], - [-57.98082, -31.58691], - [-58.20653, -31.86773], - [-58.10645, -32.24002], - [-58.20464, -32.46055], - [-58.0841, -32.99782], - [-58.36693, -33.12177], - [-58.49375, -33.57857], - [-58.29507, -34.17809], - [-57.9345, -34.4519], - [-55.9, -35.6], - [-57, -39], - [-61, -41], - [-63.5, -55], - [-66.67094, -55.11906], - [-67.27285, -54.90511], - [-67.95071, -54.87373], - [-68.60967, -54.91369], - [-68.60676, -52.65902], - [-68.41869, -52.3325], - [-69.19014, -52.15044], - [-69.48632, -52.15165], - [-69.9955, -52.00074], - [-71.92259, -51.99991], - [-72.29907, -51.69791], - [-72.28621, -50.65987], - [-72.72636, -50.61667], - [-73.06995, -50.78909], - [-73.32848, -50.5716], - [-73.52199, -50.15397], - [-73.44481, -49.79226], - [-73.53933, -49.49825], - [-73.47299, -49.20464], - [-73.14602, -49.18818] - ] - ] - } -} \ No newline at end of file diff --git a/features/south-america/bolivia/bolivia.geojson b/features/south-america/bolivia/bolivia.geojson deleted file mode 100644 index 7ae83a69f..000000000 --- a/features/south-america/bolivia/bolivia.geojson +++ /dev/null @@ -1,112 +0,0 @@ -{ - "type": "Feature", - "id": "bolivia", - "properties": {"area": 1091688.47}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-60.17487, -16.26675], - [-58.32092, -16.31948], - [-58.47336, -16.74472], - [-58.39371, -17.18081], - [-57.79152, -17.55501], - [-57.71187, -17.73103], - [-57.55463, -18.22348], - [-57.72079, -18.89914], - [-57.70775, -19.0381], - [-58.11768, -19.75313], - [-57.85675, -19.96754], - [-58.15338, -20.15201], - [-58.17535, -19.83066], - [-59.07074, -19.28846], - [-59.97025, -19.29494], - [-61.78848, -19.65358], - [-62.57401, -21.99972], - [-63.93082, -22.00736], - [-64.24942, -22.60957], - [-64.31808, -22.8806], - [-64.56528, -22.36595], - [-64.62021, -22.21856], - [-64.99649, -22.08628], - [-65.77446, -22.10027], - [-65.92552, -21.93222], - [-66.04774, -21.91884], - [-66.04225, -21.86022], - [-66.2273, -21.78437], - [-66.3121, -22.1219], - [-66.74057, -22.23635], - [-66.7955, -22.44213], - [-67.18002, -22.81353], - [-67.56351, -22.90085], - [-67.81174, -22.87934], - [-68.17566, -21.3252], - [-68.405, -20.9499], - [-68.54095, -20.92681], - [-68.55606, -20.7285], - [-68.43796, -20.63857], - [-68.74557, -20.46369], - [-68.72772, -20.08173], - [-68.56293, -20.05077], - [-68.53134, -19.85779], - [-68.69064, -19.74667], - [-68.41873, -19.41544], - [-68.9296, -18.97448], - [-69.12186, -18.14128], - [-69.46793, -17.50852], - [-69.46793, -17.37489], - [-69.63547, -17.27787], - [-69.01199, -16.66053], - [-69.03877, -16.58487], - [-68.93509, -16.2061], - [-69.16718, -16.22259], - [-69.40201, -15.62634], - [-69.13422, -15.23516], - [-69.35806, -14.96933], - [-68.97903, -14.21979], - [-68.87466, -12.88745], - [-68.65768, -12.49088], - [-69.57264, -10.94456], - [-68.74806, -11.00835], - [-68.75167, -11.01762], - [-68.75201, -11.03716], - [-68.76592, -11.04963], - [-68.70815, -11.14253], - [-68.54576, -11.11036], - [-68.24295, -10.95872], - [-68.08502, -10.69165], - [-67.86736, -10.64036], - [-67.71629, -10.71459], - [-67.6775, -10.60341], - [-67.65947, -10.61792], - [-67.58446, -10.50402], - [-67.43614, -10.44966], - [-67.40593, -10.38314], - [-67.31461, -10.37774], - [-67.32216, -10.32438], - [-67.1953, -10.32277], - [-67.18869, -10.33983], - [-67.17093, -10.33814], - [-66.57921, -9.90392], - [-65.86441, -9.75981], - [-65.56503, -9.82477], - [-65.44968, -9.67318], - [-65.29449, -9.85589], - [-65.39474, -10.54722], - [-65.35629, -10.78474], - [-65.2684, -10.88658], - [-65.29861, -11.32656], - [-65.14481, -11.70939], - [-64.36752, -12.4587], - [-63.67538, -12.46675], - [-61.64841, -13.53453], - [-61.06339, -13.52919], - [-60.4303, -13.88608], - [-60.23804, -15.09864], - [-60.57312, -15.09599], - [-60.24353, -15.47221], - [-60.17487, -16.26675] - ] - ] - } -} \ No newline at end of file diff --git a/features/south-america/brazil/brazil.geojson b/features/south-america/brazil/brazil.geojson deleted file mode 100644 index 4b3ea38d6..000000000 --- a/features/south-america/brazil/brazil.geojson +++ /dev/null @@ -1,78 +0,0 @@ -{ - "type": "Feature", - "id": "brazil", - "properties": {"area": 11177941.94}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-51.56433, 4.29711], - [-28.4491, 1.04914], - [-37.67761, -21.04862], - [-52.94861, -34.05721], - [-53.56384, -33.71063], - [-53.58581, -33.23409], - [-53.16833, -32.81036], - [-54.11316, -32.08723], - [-55.73914, -30.85036], - [-56.11267, -31.18931], - [-56.11267, -30.90694], - [-57.0575, -30.14988], - [-57.23328, -30.32073], - [-57.73865, -30.26381], - [-55.98083, -28.5411], - [-54.94812, -27.68839], - [-53.80554, -27.18136], - [-53.7616, -26.73089], - [-53.87146, -26.00249], - [-54.20105, -25.88394], - [-54.6405, -25.88394], - [-54.28894, -24.13171], - [-55.43701, -24.18685], - [-55.87647, -22.3704], - [-58.07373, -22.08564], - [-58.24402, -20.06109], - [-57.71668, -17.98396], - [-58.43628, -17.18278], - [-58.50769, -16.38866], - [-60.1831, -16.29905], - [-60.26001, -15.14637], - [-60.49072, -14.09396], - [-60.94116, -13.63531], - [-61.85303, -13.5926], - [-63.58887, -12.56529], - [-64.22058, -12.55992], - [-65.20386, -11.8996], - [-65.4126, -9.74154], - [-66.82983, -10.1203], - [-68.17566, -10.92501], - [-70.6366, -11.18379], - [-70.6366, -9.62783], - [-71.42761, -9.97426], - [-72.74597, -9.88769], - [-73.97644, -7.10634], - [-72.70752, -4.67498], - [-70.15869, -4.23686], - [-69.67529, -1.03266], - [-70.19714, 1.75205], - [-67.56042, 1.83989], - [-66.94519, 0.69761], - [-63.78113, 1.83989], - [-64.84131, 4.36832], - [-63.25378, 3.59566], - [-60.24353, 5.20584], - [-60.03479, 4.98698], - [-59.57886, 3.81493], - [-59.89746, 3.26118], - [-60.05676, 2.76199], - [-59.9469, 2.2626], - [-59.77661, 2.23515], - [-59.77661, 1.75754], - [-58.64502, 1.55987], - [-55.87647, 2.61384], - [-53.10791, 2.35041], - [-51.56433, 4.29711] - ] - ] - } -} \ No newline at end of file diff --git a/features/south-america/brazil/rs.geojson b/features/south-america/brazil/rs.geojson deleted file mode 100644 index 6a6cec0e1..000000000 --- a/features/south-america/brazil/rs.geojson +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "Feature", - "id": "rs", - "properties": {"area": 325696.77}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-50.56791, -28.32331], - [-49.64837, -28.40599], - [-49.62152, -28.67722], - [-49.82288, -28.81257], - [-49.86986, -29.14725], - [-49.40674, -29.43409], - [-50.66187, -31.5221], - [-51.51429, -32.07544], - [-52.0244, -32.51232], - [-52.32644, -33.22264], - [-53.199, -34.04411], - [-53.65541, -33.63156], - [-53.50103, -32.61414], - [-55.57503, -31.01726], - [-56.0113, -31.18392], - [-56.20595, -30.78112], - [-56.93084, -30.18535], - [-57.2463, -30.36505], - [-57.57519, -30.33029], - [-57.71614, -30.18535], - [-57.40068, -29.91811], - [-57.23959, -29.67347], - [-56.02473, -28.4178], - [-55.70255, -28.08671], - [-54.40043, -27.2008], - [-53.38022, -26.97372], - [-51.97071, -27.23661], - [-51.03103, -27.74271], - [-50.56791, -28.32331] - ] - ] - } -} \ No newline at end of file diff --git a/features/south-america/chile/chile.geojson b/features/south-america/chile/chile.geojson deleted file mode 100644 index 5dcfaa0af..000000000 --- a/features/south-america/chile/chile.geojson +++ /dev/null @@ -1,149 +0,0 @@ -{ - "type": "Feature", - "id": "chile", - "properties": {"area": 1952325.7}, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [[[-110, -28], [-110, -26], [-109, -26], [-109, -28], [-110, -28]]], - [ - [ - [-69.46999, -17.50394], - [-69.47205, -17.61065], - [-69.34708, -17.7343], - [-69.30794, -17.83956], - [-69.30931, -17.9121], - [-69.29352, -17.96698], - [-69.06143, -18.06231], - [-69.11087, -18.1328], - [-68.92548, -18.97253], - [-68.40225, -19.41091], - [-68.68309, -19.72793], - [-68.52997, -19.85262], - [-68.56842, -20.05658], - [-68.76549, -20.08237], - [-68.67279, -20.34591], - [-68.73322, -20.38454], - [-68.72772, -20.46948], - [-68.47504, -20.64949], - [-68.53546, -20.8524], - [-68.405, -20.93964], - [-68.19489, -21.27018], - [-67.81586, -22.86099], - [-67.55768, -22.89642], - [-67.17728, -22.81416], - [-66.98639, -23.00012], - [-67.32216, -24.03768], - [-68.24432, -24.39338], - [-68.46405, -24.62829], - [-68.5437, -24.79047], - [-68.32397, -25.09928], - [-68.48328, -25.15399], - [-68.37067, -26.17639], - [-68.5437, -26.27987], - [-68.57666, -26.49147], - [-68.25256, -26.96492], - [-68.56567, -27.17525], - [-68.78609, -27.10803], - [-69.94308, -29.24087], - [-69.93347, -30.10118], - [-69.81262, -30.14869], - [-69.88678, -30.35747], - [-70.07904, -30.38828], - [-70.53102, -31.3724], - [-70.46185, -31.84548], - [-70.22736, -31.93934], - [-70.3125, -32.12562], - [-70.08453, -33.03716], - [-69.99561, -33.3268], - [-69.86721, -33.28663], - [-69.78207, -33.33282], - [-69.8703, -33.57458], - [-69.87854, -34.15614], - [-70.3791, -35.17241], - [-70.53875, -35.20551], - [-70.58441, -35.27646], - [-70.43884, -35.32549], - [-70.37876, -36.04743], - [-70.95932, -36.50246], - [-71.04858, -36.49087], - [-71.189, -37.74167], - [-70.90816, -38.67251], - [-71.39465, -38.92843], - [-71.77643, -40.268], - [-71.66794, -40.30571], - [-71.70639, -40.425], - [-71.80252, -40.42081], - [-71.92612, -40.72332], - [-71.73051, -42.11516], - [-72.17194, -42.14686], - [-72.04182, -42.40546], - [-72.04765, -42.54322], - [-72.14344, -42.90363], - [-71.72596, -43.19066], - [-71.8856, -43.45765], - [-71.58417, -43.64303], - [-71.81213, -44.30714], - [-71.07056, -44.47985], - [-71.24908, -44.80425], - [-72.03495, -44.76989], - [-72.03323, -44.88409], - [-71.56494, -44.98326], - [-71.41148, -45.19486], - [-71.33354, -45.28286], - [-71.3895, -45.35287], - [-71.54383, -45.40436], - [-71.47104, -45.49829], - [-71.75291, -45.55168], - [-71.64459, -46.00936], - [-71.82037, -46.1256], - [-71.64974, -46.68289], - [-71.9426, -46.81204], - [-71.87325, -47.12505], - [-72.0504, -47.34557], - [-72.46788, -47.7451], - [-72.24472, -48.34986], - [-72.56195, -48.50569], - [-72.53174, -48.77746], - [-72.68005, -48.89271], - [-72.98733, -48.99351], - [-73.51742, -49.89065], - [-73.32687, -50.52827], - [-72.34531, -50.65403], - [-72.32412, -51.60426], - [-72.03255, -51.8118], - [-71.93324, -51.91854], - [-72.04212, -51.96756], - [-71.95221, -51.97896], - [-71.92097, -52.00391], - [-70.00412, -52.00423], - [-69.49016, -52.15561], - [-69.19421, -52.15445], - [-68.84205, -52.28181], - [-68.58833, -52.31016], - [-68.57786, -52.32931], - [-68.42268, -52.33665], - [-68.42212, -52.39063], - [-68.60412, -52.65417], - [-68.60412, -54.90395], - [-67.30412, -54.90395], - [-65.80412, -55.20392], - [-68, -58], - [-78, -53], - [-72.5, -18.3], - [-70.19165, -18.33106], - [-69.96918, -18.26065], - [-69.86618, -18.17325], - [-69.82018, -18.1191], - [-69.75494, -17.98135], - [-69.80919, -17.8023], - [-69.82704, -17.75196], - [-69.83047, -17.71337], - [-69.80164, -17.65253], - [-69.67049, -17.66692], - [-69.46999, -17.50394] - ] - ] - ] - } -} \ No newline at end of file diff --git a/features/south-america/colombia/colombia.geojson b/features/south-america/colombia/colombia.geojson deleted file mode 100644 index 3b11472c4..000000000 --- a/features/south-america/colombia/colombia.geojson +++ /dev/null @@ -1,149 +0,0 @@ -{ - "type": "Feature", - "id": "colombia", - "properties": {"area": 1322895.81}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-75.8, 11.8], - [-71.3, 12.7], - [-70.9, 11.9], - [-71.98242, 11.65762], - [-72.2406, 11.14607], - [-72.45483, 11.10295], - [-72.8833, 10.43379], - [-72.94922, 9.83898], - [-73.31177, 9.20514], - [-72.99866, 9.29189], - [-72.94373, 9.09125], - [-72.76245, 9.12379], - [-72.65259, 8.61633], - [-72.39716, 8.36098], - [-72.34497, 8.00484], - [-72.4054, 8.04563], - [-72.49054, 7.945], - [-72.4411, 7.89875], - [-72.45209, 7.53676], - [-72.43835, 7.40605], - [-72.18567, 7.38426], - [-72.14996, 7.32161], - [-72.18018, 7.24532], - [-72.03461, 7.0273], - [-71.12, 7.02457], - [-71.09528, 6.98641], - [-70.9964, 6.98641], - [-70.77942, 7.09817], - [-70.5542, 7.07636], - [-70.30701, 6.93461], - [-70.11475, 6.98095], - [-69.43016, 6.10778], - [-69.34914, 6.13987], - [-69.31, 6.0873], - [-69.23378, 6.08047], - [-69.17404, 6.15011], - [-69.03877, 6.22384], - [-68.66455, 6.14055], - [-67.80762, 6.288], - [-67.45056, 6.21155], - [-67.47803, 6.10232], - [-67.40662, 6.00946], - [-67.60437, 5.7909], - [-67.63184, 5.4629], - [-67.82959, 5.31524], - [-67.79114, 4.28068], - [-67.62085, 3.74915], - [-67.5, 3.78204], - [-67.29126, 3.36537], - [-67.86255, 2.82234], - [-67.58789, 2.79491], - [-67.1759, 2.33395], - [-66.85181, 1.23037], - [-67.08801, 1.16172], - [-67.16766, 1.83989], - [-67.34894, 1.97715], - [-67.36816, 2.22417], - [-67.44781, 2.21868], - [-67.56866, 2.054], - [-67.80487, 1.98813], - [-67.91199, 1.81793], - [-68.18939, 2.01009], - [-68.2663, 1.85087], - [-68.16193, 1.73008], - [-69.83459, 1.71361], - [-69.8291, 1.08209], - [-69.19739, 1.06561], - [-69.15344, 0.62621], - [-69.48303, 0.73057], - [-69.79065, 0.58776], - [-70.02686, 0.57128], - [-70.04059, -0.19226], - [-69.60937, -0.50262], - [-69.55719, -0.65367], - [-69.61212, -0.7498], - [-69.41986, -1.03541], - [-69.40338, -1.37041], - [-69.9321, -4.21974], - [-69.94995, -4.23275], - [-70.06531, -4.08071], - [-70.1841, -3.93893], - [-70.28641, -3.82246], - [-70.35027, -3.80054], - [-70.50613, -3.87796], - [-70.71075, -3.793], - [-70.04883, -2.75102], - [-70.8783, -2.23241], - [-71.41113, -2.37786], - [-71.75171, -2.19124], - [-72.36694, -2.48762], - [-72.63336, -2.36688], - [-72.67456, -2.4595], - [-72.93274, -2.4492], - [-73.1813, -2.22692], - [-73.10028, -2.0842], - [-73.14697, -1.79597], - [-73.55347, -1.69439], - [-73.47382, -1.55437], - [-73.64136, -1.26607], - [-73.85834, -1.22763], - [-74.27582, -0.97774], - [-74.42139, -0.51086], - [-74.79492, -0.23621], - [-75.20142, -0.06592], - [-75.27832, -0.12909], - [-75.80566, 0.04669], - [-76.09955, 0.32959], - [-76.32751, 0.42572], - [-76.40991, 0.37903], - [-76.41266, 0.23621], - [-76.96198, 0.27191], - [-77.11029, 0.36529], - [-77.53601, 0.40649], - [-77.48383, 0.65093], - [-77.69257, 0.73606], - [-77.66441, 0.81296], - [-77.7166, 0.85141], - [-77.74544, 0.83562], - [-77.77565, 0.83974], - [-77.80861, 0.82738], - [-77.8196, 0.80678], - [-77.96173, 0.82257], - [-78.19794, 0.94478], - [-78.19931, 0.99284], - [-78.28308, 1.05325], - [-78.2515, 1.08346], - [-78.31741, 1.19193], - [-78.43002, 1.1425], - [-78.55499, 1.2496], - [-78.61816, 1.24685], - [-80, 2.5], - [-77.7, 7.7], - [-77.55524, 7.51498], - [-77.32178, 7.87971], - [-77.17896, 7.93956], - [-77.5, 8.5], - [-75.8, 11.8] - ] - ] - } -} \ No newline at end of file diff --git a/features/south-america/ecuador/ecuador.geojson b/features/south-america/ecuador/ecuador.geojson deleted file mode 100644 index 37a47d9ba..000000000 --- a/features/south-america/ecuador/ecuador.geojson +++ /dev/null @@ -1,77 +0,0 @@ -{ - "type": "Feature", - "id": "ecuador", - "properties": {"area": 309097.28}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-82, -3], - [-80, 2.2], - [-77.86079, 0.80404], - [-77.72072, 0.85484], - [-77.66287, 0.81794], - [-77.66424, 0.80884], - [-77.67385, 0.80215], - [-77.67729, 0.79099], - [-77.66184, 0.78979], - [-77.68587, 0.77365], - [-77.6972, 0.74241], - [-77.67523, 0.73778], - [-77.5573, 0.65058], - [-77.47353, 0.6626], - [-77.52159, 0.44837], - [-76.47583, 0.20874], - [-76.32202, 0.4422], - [-76.0199, 0.30487], - [-75.81665, 0.09064], - [-75.26733, -0.1181], - [-75.31265, -0.16617], - [-75.50629, -0.21698], - [-75.22888, -0.56441], - [-75.20279, -0.97362], - [-75.28931, -0.99147], - [-75.36072, -0.95027], - [-75.64087, -1.62576], - [-76.63376, -2.59052], - [-77.84637, -3], - [-78.2872, -3.42158], - [-79.01917, -5.01844], - [-79.24301, -4.96581], - [-79.62753, -4.42656], - [-79.79233, -4.48954], - [-80.12535, -4.29784], - [-80.36018, -4.49775], - [-80.44584, -4.45086], - [-80.44739, -4.37692], - [-80.33409, -4.21841], - [-80.45013, -4.20968], - [-80.44928, -4.13024], - [-80.48035, -4.09445], - [-80.47297, -4.05079], - [-80.44739, -3.99719], - [-80.39915, -3.98281], - [-80.29701, -4.01843], - [-80.12878, -3.89718], - [-80.16106, -3.86704], - [-80.19264, -3.60256], - [-80.21633, -3.582], - [-80.20706, -3.54705], - [-80.21745, -3.5], - [-80.22878, -3.50181], - [-80.2335, -3.4899], - [-80.2456, -3.48759], - [-80.24545, -3.48481], - [-80.24416, -3.48461], - [-80.24386, -3.48247], - [-80.24313, -3.48142], - [-80.24393, -3.47881], - [-80.24079, -3.47723], - [-80.2438, -3.46463], - [-80.22217, -3.44047], - [-80.25238, -3.41], - [-82, -3] - ] - ] - } -} \ No newline at end of file diff --git a/features/south-america/paraguay/paraguay.geojson b/features/south-america/paraguay/paraguay.geojson deleted file mode 100644 index 541890c8b..000000000 --- a/features/south-america/paraguay/paraguay.geojson +++ /dev/null @@ -1,85 +0,0 @@ -{ - "type": "Feature", - "id": "paraguay", - "properties": {"area": 403607.46}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-54.25873, -24.35961], - [-54.58403, -25.58921], - [-54.65681, -25.67588], - [-54.67916, -25.99493], - [-54.61857, -26.20862], - [-54.78678, -26.6308], - [-55.42267, -26.99497], - [-55.60553, -27.1621], - [-55.73675, -27.44486], - [-55.78857, -27.44309], - [-55.89775, -27.34371], - [-55.97809, -27.35591], - [-56.06259, -27.30569], - [-56.29415, -27.41973], - [-56.37473, -27.58873], - [-56.601, -27.42072], - [-56.84909, -27.606], - [-56.96547, -27.50172], - [-57.48737, -27.44388], - [-57.87465, -27.27496], - [-58.59888, -27.29953], - [-58.64896, -27.12631], - [-58.31974, -26.8579], - [-58.18979, -26.64487], - [-58.22086, -26.41372], - [-58.08456, -26.11154], - [-57.89095, -25.96589], - [-57.74047, -25.65014], - [-57.55483, -25.44809], - [-57.76072, -25.17162], - [-58.2415, -24.9277], - [-58.67226, -24.83161], - [-59.3538, -24.4779], - [-59.47537, -24.3323], - [-60.03924, -24.01125], - [-60.37336, -24.02369], - [-60.98973, -23.81777], - [-61.08807, -23.61362], - [-61.73595, -23.234], - [-62.20654, -22.70386], - [-62.30073, -22.48627], - [-62.64387, -22.24906], - [-62.26072, -21.05983], - [-62.26622, -20.56305], - [-61.92152, -20.08915], - [-61.73647, -19.63289], - [-59.97488, -19.29332], - [-59.06988, -19.28619], - [-58.20814, -19.80515], - [-57.83186, -20.9842], - [-57.92507, -21.63334], - [-57.88113, -21.68734], - [-57.90602, -21.71294], - [-57.97194, -22.07832], - [-56.81013, -22.27099], - [-56.56363, -22.20044], - [-56.49462, -22.08659], - [-56.39677, -22.07641], - [-56.26631, -22.24811], - [-56.01774, -22.29259], - [-55.8526, -22.28227], - [-55.78935, -22.38413], - [-55.74034, -22.38913], - [-55.75132, -22.47989], - [-55.7472, -22.50653], - [-55.72347, -22.5514], - [-55.69845, -22.56298], - [-55.69365, -22.57788], - [-55.62361, -22.62986], - [-55.38191, -24.00601], - [-54.65973, -23.82806], - [-54.31366, -24.01762], - [-54.25873, -24.35961] - ] - ] - } -} \ No newline at end of file diff --git a/features/south-america/peru/peru.geojson b/features/south-america/peru/peru.geojson deleted file mode 100644 index 7ede49aa9..000000000 --- a/features/south-america/peru/peru.geojson +++ /dev/null @@ -1,95 +0,0 @@ -{ - "type": "Feature", - "id": "peru", - "properties": {"area": 1638173.5}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-83, -3], - [-80.25238, -3.41], - [-80.22217, -3.44047], - [-80.2438, -3.46463], - [-80.24079, -3.47723], - [-80.24393, -3.47881], - [-80.24313, -3.48142], - [-80.24386, -3.48247], - [-80.24416, -3.48461], - [-80.24545, -3.48481], - [-80.2456, -3.48759], - [-80.2335, -3.4899], - [-80.22878, -3.50181], - [-80.21745, -3.5001], - [-80.20706, -3.54705], - [-80.21633, -3.582], - [-80.19264, -3.60256], - [-80.16106, -3.86704], - [-80.12878, -3.89718], - [-80.29701, -4.01843], - [-80.39915, -3.98281], - [-80.44739, -3.99719], - [-80.47297, -4.05079], - [-80.48035, -4.09445], - [-80.44928, -4.13024], - [-80.45013, -4.20968], - [-80.33409, -4.21841], - [-80.44739, -4.37692], - [-80.44584, -4.45086], - [-80.36018, -4.49775], - [-80.12535, -4.29784], - [-79.79233, -4.48954], - [-79.62753, -4.42656], - [-79.24301, -4.96581], - [-79.01917, -5.01844], - [-78.2872, -3.42158], - [-77.84637, -3], - [-76.63376, -2.59052], - [-75.64087, -1.62576], - [-75.36072, -0.95027], - [-75.56534, -0.13806], - [-75.15884, -0.06665], - [-74.40628, -0.55553], - [-72.92862, -2.39505], - [-70.9552, -2.25162], - [-70.02686, -2.70987], - [-70.70595, -3.78478], - [-70.49789, -3.88142], - [-70.32349, -3.8088], - [-69.95819, -4.23211], - [-69.94446, -4.29784], - [-69.99802, -4.37316], - [-70.10376, -4.29164], - [-70.19028, -4.35946], - [-71.82999, -4.5662], - [-72.86133, -5.25507], - [-73.94348, -7.4932], - [-72.19116, -9.95803], - [-70.61188, -9.57638], - [-70.62149, -10.96681], - [-69.57161, -10.94557], - [-68.65494, -12.49629], - [-69.01886, -13.62196], - [-68.83896, -14.22445], - [-69.38141, -14.86251], - [-69.14795, -15.24444], - [-69.39926, -15.6151], - [-69.19189, -16.17449], - [-69.10177, -16.22555], - [-68.96152, -16.19456], - [-68.78952, -16.34254], - [-68.98865, -16.42357], - [-69.04015, -16.57368], - [-69.01886, -16.65198], - [-69.61075, -17.26542], - [-69.46896, -17.37423], - [-69.46827, -17.49919], - [-69.66654, -17.66071], - [-69.81262, -17.67281], - [-69.75, -18], - [-70, -18.27], - [-75, -19], - [-83, -3] - ] - ] - } -} \ No newline at end of file diff --git a/features/south-america/uruguay/uruguay.geojson b/features/south-america/uruguay/uruguay.geojson deleted file mode 100644 index 5fe103bd6..000000000 --- a/features/south-america/uruguay/uruguay.geojson +++ /dev/null @@ -1,48 +0,0 @@ -{ - "type": "Feature", - "id": "uruguay", - "properties": {"area": 211478.1}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-58.37, -33.12], - [-58.15, -33.07], - [-58.09, -33], - [-58.2, -32.48], - [-58.18, -32.37], - [-58.11, -32.33], - [-58.1, -32.25], - [-58.18, -32.16], - [-58.15, -32], - [-58.2, -31.86], - [-58.07, -31.81], - [-57.98, -31.58], - [-58.04, -31.5], - [-57.91, -31.23], - [-57.88, -30.97], - [-57.8, -30.9], - [-57.89, -30.5], - [-57.63, -30.34], - [-57.6, -30.2], - [-57.2, -30.3], - [-57.1, -30.1], - [-56.8, -30.1], - [-56, -30.8], - [-56, -31.1], - [-55.6, -30.85], - [-53.8, -32], - [-53.5, -32.5], - [-53.1, -32.7], - [-53.5, -33.1], - [-53.5, -33.7], - [-53, -34], - [-55, -36], - [-58, -34.6], - [-58.4, -34], - [-58.5, -33.6], - [-58.37, -33.12] - ] - ] - } -} \ No newline at end of file diff --git a/features/south-america/venezuela/venezuela.geojson b/features/south-america/venezuela/venezuela.geojson deleted file mode 100644 index 6ddb19ae6..000000000 --- a/features/south-america/venezuela/venezuela.geojson +++ /dev/null @@ -1,467 +0,0 @@ -{ - "type": "Feature", - "id": "venezuela", - "properties": {"area": 1133785.95}, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - [ - [ - [-73.42, 9.2], - [-73.42, 9.25], - [-73.36, 9.3], - [-73.36, 9.34], - [-73.33, 9.37], - [-73.31, 9.43], - [-73.27, 9.47], - [-73.26, 9.52], - [-73.18, 9.61], - [-73.14, 9.63], - [-73.12, 9.71], - [-73.07, 9.77], - [-73.05, 9.82], - [-73.07, 9.94], - [-73.03, 10.03], - [-73.03, 10.07], - [-72.99, 10.13], - [-72.97, 10.23], - [-72.98, 10.36], - [-72.96, 10.48], - [-72.91, 10.52], - [-72.9, 10.58], - [-72.8, 10.69], - [-72.78, 10.78], - [-72.74, 10.83], - [-72.71, 10.92], - [-72.67, 10.95], - [-72.64, 10.95], - [-72.61, 10.98], - [-72.57, 11.06], - [-72.56, 11.13], - [-72.53, 11.16], - [-72.46, 11.2], - [-72.4, 11.2], - [-72.37, 11.22], - [-72.29, 11.21], - [-72.04, 11.67], - [-72, 11.71], - [-71.8, 11.75], - [-71.45, 11.86], - [-71.44, 11.88], - [-71.36, 11.92], - [-71, 12], - [-71.1, 12.7], - [-68, 11.6], - [-67.9, 12.3], - [-64.5, 12.3], - [-61.7, 11], - [-62, 10], - [-61.6, 10], - [-59.49, 8.64], - [-59.87, 8.5], - [-59.74, 8.33], - [-59.73, 8.26], - [-59.76, 8.2], - [-59.81, 8.16], - [-59.9, 8.15], - [-59.93, 8.09], - [-59.93, 8.05], - [-59.98, 7.98], - [-60.05, 7.95], - [-60.08, 7.96], - [-60.1, 7.93], - [-60.17, 7.9], - [-60.24, 7.82], - [-60.26, 7.82], - [-60.33, 7.76], - [-60.47, 7.76], - [-60.5, 7.73], - [-60.52, 7.61], - [-60.54, 7.58], - [-60.57, 7.57], - [-60.57, 7.55], - [-60.61, 7.51], - [-60.57, 7.47], - [-60.53, 7.39], - [-60.52, 7.29], - [-60.55, 7.26], - [-60.54, 7.24], - [-60.49, 7.27], - [-60.33, 7.25], - [-60.25, 7.19], - [-60.22, 7.14], - [-60.22, 7.05], - [-60.25, 6.99], - [-60.3, 6.95], - [-60.31, 6.9], - [-60.36, 6.86], - [-60.43, 6.86], - [-60.46, 6.82], - [-60.5, 6.8], - [-60.62, 6.77], - [-60.63, 6.74], - [-60.69, 6.69], - [-60.73, 6.68], - [-60.82, 6.72], - [-60.92, 6.65], - [-61.05, 6.65], - [-61.08, 6.63], - [-61.11, 6.64], - [-61.11, 6.61], - [-61.13, 6.59], - [-61.07, 6.44], - [-61.09, 6.34], - [-61.05, 6.31], - [-61.04, 6.28], - [-61.06, 6.23], - [-61.05, 6.2], - [-61.07, 6.14], - [-61.12, 6.11], - [-61.17, 6.05], - [-61.22, 6.04], - [-61.26, 6], - [-61.29, 5.93], - [-60.7, 5.27], - [-60.62, 5.23], - [-60.57, 5.13], - [-60.57, 5.08], - [-60.51, 4.96], - [-60.53, 4.89], - [-60.68, 4.72], - [-60.86, 4.63], - [-60.87, 4.55], - [-60.97, 4.45], - [-61.08, 4.45], - [-61.1, 4.42], - [-61.13, 4.41], - [-61.17, 4.41], - [-61.21, 4.44], - [-61.3, 4.36], - [-61.44, 4.36], - [-61.45, 4.35], - [-61.44, 4.3], - [-61.46, 4.25], - [-61.54, 4.18], - [-61.71, 4.18], - [-61.74, 4.17], - [-61.75, 4.14], - [-61.81, 4.09], - [-61.87, 4.08], - [-61.91, 4.05], - [-61.95, 4.05], - [-62, 4.09], - [-62.05, 4.06], - [-62.08, 4.02], - [-62.12, 4.01], - [-62.17, 4.01], - [-62.22, 4.04], - [-62.31, 4.07], - [-62.36, 4.07], - [-62.41, 4.1], - [-62.46, 4.06], - [-62.47, 4.01], - [-62.51, 3.96], - [-62.6, 3.95], - [-62.63, 3.97], - [-62.67, 3.97], - [-62.7, 3.91], - [-62.66, 3.83], - [-62.66, 3.69], - [-62.68, 3.64], - [-62.73, 3.6], - [-62.76, 3.6], - [-62.83, 3.64], - [-62.94, 3.54], - [-63.03, 3.55], - [-63.08, 3.61], - [-63.12, 3.63], - [-63.15, 3.68], - [-63.15, 3.74], - [-63.22, 3.74], - [-63.26, 3.76], - [-63.3, 3.83], - [-63.3, 3.89], - [-63.35, 3.89], - [-63.37, 3.83], - [-63.4, 3.8], - [-63.45, 3.79], - [-63.47, 3.77], - [-63.59, 3.8], - [-63.65, 3.85], - [-63.72, 3.83], - [-63.82, 3.87], - [-63.88, 3.86], - [-63.94, 3.8], - [-63.99, 3.8], - [-64.11, 3.91], - [-64.18, 4.05], - [-64.38, 4.07], - [-64.48, 4.04], - [-64.6, 4.04], - [-64.57, 4], - [-64.52, 3.97], - [-64.5, 3.92], - [-64.44, 3.86], - [-64.34, 3.83], - [-64.23, 3.76], - [-64.21, 3.71], - [-64.14, 3.65], - [-64.1, 3.58], - [-64.11, 3.48], - [-64.16, 3.42], - [-64.16, 3.33], - [-64.13, 3.26], - [-64.14, 3.14], - [-64.01, 2.96], - [-64, 2.9], - [-63.96, 2.86], - [-63.91, 2.75], - [-63.92, 2.61], - [-63.97, 2.54], - [-63.81, 2.56], - [-63.74, 2.52], - [-63.56, 2.52], - [-63.52, 2.5], - [-63.47, 2.5], - [-63.44, 2.52], - [-63.38, 2.51], - [-63.31, 2.45], - [-63.29, 2.39], - [-63.31, 2.19], - [-63.33, 2.13], - [-63.37, 2.08], - [-63.49, 2.04], - [-63.53, 2.04], - [-63.55, 2.06], - [-63.64, 1.95], - [-63.69, 1.95], - [-63.81, 1.9], - [-63.96, 1.91], - [-63.99, 1.88], - [-63.98, 1.79], - [-64, 1.76], - [-63.99, 1.68], - [-64.01, 1.61], - [-64.07, 1.53], - [-64.13, 1.51], - [-64.17, 1.45], - [-64.25, 1.41], - [-64.27, 1.33], - [-64.3, 1.3], - [-64.32, 1.29], - [-64.38, 1.3], - [-64.45, 1.34], - [-64.47, 1.38], - [-64.54, 1.28], - [-64.64, 1.23], - [-64.69, 1.17], - [-64.78, 1.16], - [-64.81, 1.19], - [-64.84, 1.16], - [-64.91, 1.15], - [-64.92, 1.11], - [-64.99, 1.04], - [-65.09, 1.05], - [-65.08, 0.98], - [-65.1, 0.96], - [-65.11, 0.91], - [-65.17, 0.84], - [-65.23, 0.83], - [-65.25, 0.85], - [-65.29, 0.85], - [-65.29, 0.83], - [-65.33, 0.8], - [-65.33, 0.72], - [-65.42, 0.62], - [-65.45, 0.62], - [-65.51, 0.58], - [-65.57, 0.58], - [-65.66, 0.65], - [-65.68, 0.7], - [-65.64, 0.8], - [-65.58, 0.87], - [-65.58, 0.89], - [-65.62, 0.92], - [-65.72, 0.92], - [-65.74, 0.89], - [-65.79, 0.89], - [-65.83, 0.87], - [-65.9, 0.81], - [-65.93, 0.75], - [-66, 0.74], - [-66.06, 0.69], - [-66.17, 0.68], - [-66.21, 0.7], - [-66.34, 0.68], - [-66.9, 1.18], - [-66.95, 1.25], - [-66.95, 1.32], - [-66.93, 1.35], - [-66.96, 1.36], - [-66.98, 1.4], - [-66.98, 1.49], - [-67.03, 1.56], - [-67.03, 1.62], - [-67.1, 1.76], - [-67.12, 1.87], - [-67.19, 1.95], - [-67.19, 2.02], - [-67.17, 2.06], - [-67.23, 2.1], - [-67.29, 2.23], - [-67.29, 2.31], - [-67.27, 2.35], - [-67.35, 2.39], - [-67.4, 2.47], - [-67.53, 2.59], - [-67.57, 2.58], - [-67.61, 2.6], - [-67.64, 2.64], - [-67.65, 2.73], - [-67.7, 2.73], - [-67.78, 2.76], - [-67.82, 2.72], - [-67.88, 2.72], - [-67.93, 2.76], - [-67.92, 2.91], - [-67.39, 3.38], - [-67.39, 3.4], - [-67.43, 3.41], - [-67.46, 3.44], - [-67.48, 3.52], - [-67.51, 3.55], - [-67.52, 3.64], - [-67.54, 3.68], - [-67.63, 3.68], - [-67.7, 3.75], - [-67.71, 3.84], - [-67.76, 3.91], - [-67.79, 4.08], - [-67.83, 4.12], - [-67.87, 4.22], - [-67.88, 4.32], - [-67.85, 4.39], - [-67.93, 4.52], - [-67.91, 4.58], - [-67.92, 4.64], - [-67.89, 4.71], - [-67.9, 4.75], - [-67.89, 4.84], - [-67.91, 4.87], - [-67.89, 5.07], - [-67.92, 5.11], - [-67.92, 5.17], - [-67.9, 5.2], - [-67.9, 5.23], - [-67.92, 5.25], - [-67.92, 5.32], - [-67.84, 5.42], - [-67.77, 5.45], - [-67.76, 5.47], - [-67.69, 5.51], - [-67.68, 5.54], - [-67.71, 5.63], - [-67.71, 5.69], - [-67.67, 5.85], - [-67.57, 5.97], - [-67.53, 5.98], - [-67.51, 6.01], - [-67.56, 6.1], - [-67.56, 6.18], - [-67.64, 6.22], - [-67.72, 6.23], - [-67.78, 6.22], - [-67.82, 6.24], - [-67.88, 6.18], - [-67.99, 6.13], - [-68.07, 6.13], - [-68.1, 6.16], - [-68.14, 6.16], - [-68.16, 6.14], - [-68.21, 6.14], - [-68.29, 6.09], - [-68.34, 6.09], - [-68.37, 6.11], - [-68.48, 6.11], - [-68.51, 6.08], - [-68.6, 6.08], - [-68.62, 6.06], - [-68.82, 6.08], - [-68.84, 6.1], - [-69.03, 6.12], - [-69.06, 6.14], - [-69.11, 6.09], - [-69.15, 6.08], - [-69.17, 6.04], - [-69.2, 6.02], - [-69.29, 6.01], - [-69.37, 6.05], - [-69.45, 6.04], - [-69.49, 6.06], - [-70.15, 6.91], - [-70.19, 6.91], - [-70.28, 6.86], - [-70.32, 6.86], - [-70.38, 6.88], - [-70.41, 6.91], - [-70.53, 6.94], - [-70.59, 7], - [-70.62, 6.99], - [-70.69, 7.02], - [-70.79, 7.01], - [-71.02, 6.9], - [-71.1, 6.91], - [-71.17, 6.95], - [-71.25, 6.94], - [-71.29, 6.96], - [-71.41, 6.96], - [-71.49, 6.94], - [-71.52, 6.96], - [-71.72, 6.96], - [-71.77, 6.99], - [-71.84, 6.95], - [-71.98, 6.94], - [-72.07, 6.97], - [-72.11, 7], - [-72.24, 7.23], - [-72.24, 7.31], - [-72.36, 7.31], - [-72.37, 7.33], - [-72.45, 7.33], - [-72.49, 7.35], - [-72.51, 7.38], - [-72.51, 7.43], - [-72.54, 7.45], - [-72.55, 7.5], - [-72.53, 7.58], - [-72.55, 7.62], - [-72.55, 7.68], - [-72.54, 7.81], - [-72.52, 7.87], - [-72.56, 7.92], - [-72.56, 7.96], - [-72.54, 8], - [-72.49, 8.03], - [-72.48, 8.07], - [-72.44, 8.1], - [-72.46, 8.31], - [-72.71, 8.57], - [-72.83, 9.04], - [-72.84, 9.05], - [-72.92, 9.01], - [-72.97, 9.02], - [-73.05, 9.11], - [-73.06, 9.13], - [-73.05, 9.17], - [-73.1, 9.16], - [-73.15, 9.11], - [-73.22, 9.09], - [-73.36, 9.1], - [-73.41, 9.14], - [-73.42, 9.2] - ] - ], - [[[-63.3, 15.7], [-63.6, 15.4], [-63.9, 15.7], [-63.6, 15.9], [-63.3, 15.7]]] - ] - } -} \ No newline at end of file diff --git a/resources/africa/botswana/bw-facebook.json b/resources/africa/botswana/bw-facebook.json index fabc8b2ac..d2e8211a5 100644 --- a/resources/africa/botswana/bw-facebook.json +++ b/resources/africa/botswana/bw-facebook.json @@ -1,7 +1,7 @@ { "id": "bw-facebook", "type": "facebook", - "includeLocations": ["botswana.geojson"], + "includeLocations": ["bw"], "countryCodes": ["bw"], "languageCodes": ["en", "tn"], "name": "Mapping Botswana on Facebook", diff --git a/resources/africa/botswana/bw-twitter.json b/resources/africa/botswana/bw-twitter.json index 8b09b9d84..0e401b563 100644 --- a/resources/africa/botswana/bw-twitter.json +++ b/resources/africa/botswana/bw-twitter.json @@ -1,7 +1,7 @@ { "id": "bw-twitter", "type": "twitter", - "includeLocations": ["botswana.geojson"], + "includeLocations": ["bw"], "countryCodes": ["bw"], "languageCodes": ["en", "tn"], "name": "Mapping Botswana on Twitter", diff --git a/resources/africa/ghana/osm-gh-facebook.json b/resources/africa/ghana/osm-gh-facebook.json index 1443c6bc8..3bc5dbfa6 100644 --- a/resources/africa/ghana/osm-gh-facebook.json +++ b/resources/africa/ghana/osm-gh-facebook.json @@ -1,7 +1,7 @@ { "id": "osm-gh-facebook", "type": "facebook", - "includeLocations": ["ghana.geojson"], + "includeLocations": ["gh"], "countryCodes": ["gh"], "languageCodes": ["en"], "name": "OpenStreetMap Ghana on Facebook", diff --git a/resources/africa/ghana/osm-gh-twitter.json b/resources/africa/ghana/osm-gh-twitter.json index fbe2a81e8..77213ad48 100644 --- a/resources/africa/ghana/osm-gh-twitter.json +++ b/resources/africa/ghana/osm-gh-twitter.json @@ -1,7 +1,7 @@ { "id": "osm-gh-twitter", "type": "twitter", - "includeLocations": ["ghana.geojson"], + "includeLocations": ["gh"], "countryCodes": ["gh"], "languageCodes": ["en"], "name": "OpenStreetMap Ghana on Twitter", diff --git a/resources/africa/ghana/talk-gh.json b/resources/africa/ghana/talk-gh.json index 2d67998c0..a00ae394b 100644 --- a/resources/africa/ghana/talk-gh.json +++ b/resources/africa/ghana/talk-gh.json @@ -1,7 +1,7 @@ { "id": "talk-gh", "type": "mailinglist", - "includeLocations": ["ghana.geojson"], + "includeLocations": ["gh"], "countryCodes": ["gh"], "languageCodes": ["en"], "name": "Talk-gh Mailing List", diff --git a/resources/africa/kenya/osm-kenya.json b/resources/africa/kenya/osm-kenya.json index ae58ebfa2..b8bba1495 100644 --- a/resources/africa/kenya/osm-kenya.json +++ b/resources/africa/kenya/osm-kenya.json @@ -1,7 +1,7 @@ { "id": "osm-kenya", "type": "twitter", - "includeLocations": ["kenya.geojson"], + "includeLocations": ["ke"], "countryCodes": ["ke"], "languageCodes": ["en"], "name": "OSM Kenya", diff --git a/resources/africa/madagascar/osm-mg-facebook.json b/resources/africa/madagascar/osm-mg-facebook.json index 276187651..2adaa96fe 100644 --- a/resources/africa/madagascar/osm-mg-facebook.json +++ b/resources/africa/madagascar/osm-mg-facebook.json @@ -1,7 +1,7 @@ { "id": "osm-mg-facebook", "type": "facebook", - "includeLocations": ["madagascar.geojson"], + "includeLocations": ["mg"], "countryCodes": ["mg"], "languageCodes": ["fr", "mg"], "name": "OpenStreetMap Madagascar Facebook Group", diff --git a/resources/africa/madagascar/talk-mg.json b/resources/africa/madagascar/talk-mg.json index abc40ac10..9e40d992a 100644 --- a/resources/africa/madagascar/talk-mg.json +++ b/resources/africa/madagascar/talk-mg.json @@ -1,7 +1,7 @@ { "id": "talk-mg", "type": "mailinglist", - "includeLocations": ["madagascar.geojson"], + "includeLocations": ["mg"], "countryCodes": ["mg"], "languageCodes": ["fr", "mg"], "name": "Talk-mg Mailing List", diff --git a/resources/africa/osm-africa-telegram.json b/resources/africa/osm-africa-telegram.json index 91c05e997..3e1a523d8 100644 --- a/resources/africa/osm-africa-telegram.json +++ b/resources/africa/osm-africa-telegram.json @@ -1,7 +1,7 @@ { "id": "osm-africa-telegram", "type": "telegram", - "includeLocations": ["africa_full.geojson"], + "includeLocations": ["002"], "name": "OpenStreetMap Africa Telegram", "description": "OpenStreetMap Telegram for Africa", "url": "https://t.me/OSMAfrica", diff --git a/resources/asia/afghanistan/osm-afghanistan-facebook.json b/resources/asia/afghanistan/osm-afghanistan-facebook.json index 568b055b8..e8e384fbc 100644 --- a/resources/asia/afghanistan/osm-afghanistan-facebook.json +++ b/resources/asia/afghanistan/osm-afghanistan-facebook.json @@ -1,7 +1,7 @@ { "id": "osm-afghanistan-facebook", "type": "facebook", - "includeLocations": ["afghanistan.geojson"], + "includeLocations": ["af"], "countryCodes": ["af"], "languageCodes": ["en", "fa", "ps"], "name": "OpenStreetMap Afghanistan", diff --git a/resources/asia/bangladesh/osm-bangladesh-facebook.json b/resources/asia/bangladesh/osm-bangladesh-facebook.json index 0dd3b7755..6d314df38 100644 --- a/resources/asia/bangladesh/osm-bangladesh-facebook.json +++ b/resources/asia/bangladesh/osm-bangladesh-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-BGD-facebook", "type": "facebook", - "includeLocations": ["bangladesh.geojson"], + "includeLocations": ["bd"], "name": "OpenStreetMap Bangladesh", "description": "Improve OpenStreetMap in Bangladesh", "extendedDescription": "Mapping in Bangladesh? Have questions, want to connect with the community here? Join us at {url}. All are welcome!", diff --git a/resources/asia/india/osm-india-facebook.json b/resources/asia/india/osm-india-facebook.json index aff17c6e6..70cec5f6b 100644 --- a/resources/asia/india/osm-india-facebook.json +++ b/resources/asia/india/osm-india-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-India-facebook", "type": "facebook", - "includeLocations": ["india_full.geojson"], + "includeLocations": ["in"], "name": "OpenStreetMap India - Participatory neighborhood mapping", "description": "Improve OpenStreetMap in India", "extendedDescription": "Mapping in India? Have questions, want to connect with the community here? Join us at {url}. All are welcome!", diff --git a/resources/asia/india/osm-india-forum.json b/resources/asia/india/osm-india-forum.json index d78321b81..7f0d6ad24 100644 --- a/resources/asia/india/osm-india-forum.json +++ b/resources/asia/india/osm-india-forum.json @@ -1,7 +1,7 @@ { "id": "osm-india-forum", "type": "forum", - "includeLocations": ["india_full.geojson"], + "includeLocations": ["in"], "countryCodes": ["in"], "name": "OpenStreetMap India forum", "description": "OpenStreetMap India web forum", diff --git a/resources/asia/india/osm-india-github.json b/resources/asia/india/osm-india-github.json index d1371c8a1..5c69430e2 100644 --- a/resources/asia/india/osm-india-github.json +++ b/resources/asia/india/osm-india-github.json @@ -1,7 +1,7 @@ { "id": "osm-india-github", "type": "github", - "includeLocations": ["india_full.geojson"], + "includeLocations": ["in"], "name": "OpenStreetMap India GitHub", "description": "Code with us: {url}", "url": "https://github.com/osm-in", diff --git a/resources/asia/india/osm-india-mailing-list.json b/resources/asia/india/osm-india-mailing-list.json index fd18e3b91..eeefd8c51 100644 --- a/resources/asia/india/osm-india-mailing-list.json +++ b/resources/asia/india/osm-india-mailing-list.json @@ -1,7 +1,7 @@ { "id": "OSM-india-mailinglist", "type": "mailinglist", - "includeLocations": ["india_full.geojson"], + "includeLocations": ["in"], "name": "OpenStreetMap India Mailinglist", "description": "Talk-in is the official Mailinglist for Indian Community", "url": "https://lists.openstreetmap.org/listinfo/talk-in", diff --git a/resources/asia/india/osm-india-telegram.json b/resources/asia/india/osm-india-telegram.json index 81e430a27..14c059012 100644 --- a/resources/asia/india/osm-india-telegram.json +++ b/resources/asia/india/osm-india-telegram.json @@ -1,7 +1,7 @@ { "id": "osm-india-telegram", "type": "telegram", - "includeLocations": ["india_full.geojson"], + "includeLocations": ["in"], "name": "OpenStreetMap India Telegram", "description": "Join our family: {url}", "url": "https://t.me/OSMIndia", diff --git a/resources/asia/india/osm-india-twitter.json b/resources/asia/india/osm-india-twitter.json index 00147c554..ece55fef3 100644 --- a/resources/asia/india/osm-india-twitter.json +++ b/resources/asia/india/osm-india-twitter.json @@ -1,7 +1,7 @@ { "id": "OSM-india-twitter", "type": "twitter", - "includeLocations": ["india_full.geojson"], + "includeLocations": ["in"], "name": "OpenStreetMap India Twitter", "description": "We are just a tweet away: {url}", "url": "https://twitter.com/osm_in", diff --git a/resources/asia/india/osm-india-website.json b/resources/asia/india/osm-india-website.json index 41e80f3b6..ca1886371 100644 --- a/resources/asia/india/osm-india-website.json +++ b/resources/asia/india/osm-india-website.json @@ -1,7 +1,7 @@ { "id": "osm-india-website", "type": "osm", - "includeLocations": ["india_full.geojson"], + "includeLocations": ["in"], "countryCodes": ["in"], "name": "OpenStreetMap India", "description": "Mappers and OpenStreetMap users in India", diff --git a/resources/asia/india/osm-india-wiki.json b/resources/asia/india/osm-india-wiki.json index 767162582..446912585 100644 --- a/resources/asia/india/osm-india-wiki.json +++ b/resources/asia/india/osm-india-wiki.json @@ -1,7 +1,7 @@ { "id": "osm-india-wiki", "type": "wiki", - "includeLocations": ["india_full.geojson"], + "includeLocations": ["in"], "name": "OpenStreetMap Wikiproject India", "description": "Everything you need to know about mapping in India: {url}", "url": "https://wiki.openstreetmap.org/wiki/WikiProject_India", diff --git a/resources/asia/india/osm-india-youtube.json b/resources/asia/india/osm-india-youtube.json index a42415a76..61d0a4cfe 100644 --- a/resources/asia/india/osm-india-youtube.json +++ b/resources/asia/india/osm-india-youtube.json @@ -1,7 +1,7 @@ { "id": "osm-india-youtube", "type": "youtube", - "includeLocations": ["india_full.geojson"], + "includeLocations": ["in"], "name": "OpenStreetMap India Youtube", "description": "Subscribe to our channel: {url}", "url": "https://www.youtube.com/channel/UCu5sKaPU04x0RJkgGkoFORw", diff --git a/resources/asia/indonesia/indonesia.json b/resources/asia/indonesia/indonesia.json index d917a52f2..e5a0c8cc1 100644 --- a/resources/asia/indonesia/indonesia.json +++ b/resources/asia/indonesia/indonesia.json @@ -1,7 +1,7 @@ { "id": "OSM-IDN-facebook", "type": "facebook", - "includeLocations": ["indonesia.geojson"], + "includeLocations": ["id"], "name": "OpenStreetMap Indonesia", "description": "Improve OpenStreetMap in Indonesia", "extendedDescription": "Mapping in Indonesia? Have questions, want to connect with the community here? Join us at {Url}. All are welcome!", diff --git a/resources/asia/iran/osm-iran-aparat.json b/resources/asia/iran/osm-iran-aparat.json index 963482737..45c33eb6c 100644 --- a/resources/asia/iran/osm-iran-aparat.json +++ b/resources/asia/iran/osm-iran-aparat.json @@ -1,7 +1,7 @@ { "id": "osm-iran-aparat", "type": "aparat", - "includeLocations": ["iran.geojson"], + "includeLocations": ["ir"], "countryCodes": ["ir"], "languageCodes": ["fa"], "name": "OpenStreetMap Iran Aparat", diff --git a/resources/asia/iran/osm-iran-forum.json b/resources/asia/iran/osm-iran-forum.json index 131a1ffda..3a4e416aa 100644 --- a/resources/asia/iran/osm-iran-forum.json +++ b/resources/asia/iran/osm-iran-forum.json @@ -1,7 +1,7 @@ { "id": "osm-iran-forum", "type": "forum", - "includeLocations": ["iran.geojson"], + "includeLocations": ["ir"], "countryCodes": ["ir"], "languageCodes": ["fa"], "name": "OpenStreetMap Iran web forum", diff --git a/resources/asia/iran/osm-iran-telegram.json b/resources/asia/iran/osm-iran-telegram.json index 3e408333b..5cfcc8cd4 100644 --- a/resources/asia/iran/osm-iran-telegram.json +++ b/resources/asia/iran/osm-iran-telegram.json @@ -1,7 +1,7 @@ { "id": "osm-iran-telegram", "type": "telegram", - "includeLocations": ["iran.geojson"], + "includeLocations": ["ir"], "countryCodes": ["ir"], "languageCodes": ["fa"], "name": "OpenStreetMap Iran Telegram", diff --git a/resources/asia/japan/OSM-Japan-facebook.json b/resources/asia/japan/OSM-Japan-facebook.json index 14efc63fd..8f40d4a2d 100644 --- a/resources/asia/japan/OSM-Japan-facebook.json +++ b/resources/asia/japan/OSM-Japan-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-japan-facebook", "type": "facebook", - "includeLocations": ["japan.geojson"], + "includeLocations": ["jp"], "countryCodes": ["jp"], "languageCodes": ["ja"], "name": "OpenStreetMap Japan Community", diff --git a/resources/asia/japan/OSM-Japan-mailinglist.json b/resources/asia/japan/OSM-Japan-mailinglist.json index 309ce7ee9..752d18f6e 100644 --- a/resources/asia/japan/OSM-Japan-mailinglist.json +++ b/resources/asia/japan/OSM-Japan-mailinglist.json @@ -1,7 +1,7 @@ { "id": "OSM-japan-mailinglist", "type": "mailinglist", - "includeLocations": ["japan.geojson"], + "includeLocations": ["jp"], "countryCodes": ["jp"], "languageCodes": ["ja"], "name": "OpenStreetMap Japan Mailinglist", diff --git a/resources/asia/japan/OSM-Japan-telegram.json b/resources/asia/japan/OSM-Japan-telegram.json index d1dfb8222..2216f3dfb 100644 --- a/resources/asia/japan/OSM-Japan-telegram.json +++ b/resources/asia/japan/OSM-Japan-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-Japan-telegram", "type": "telegram", - "includeLocations": ["japan.geojson"], + "includeLocations": ["jp"], "countryCodes": ["jp"], "languageCodes": ["ja"], "name": "OpenStreetMap Japan Telegram", diff --git a/resources/asia/japan/OSM-Japan-twitter.json b/resources/asia/japan/OSM-Japan-twitter.json index beadfeb83..9ffcabd59 100644 --- a/resources/asia/japan/OSM-Japan-twitter.json +++ b/resources/asia/japan/OSM-Japan-twitter.json @@ -1,7 +1,7 @@ { "id": "OSM-japan-twitter", "type": "twitter", - "includeLocations": ["japan.geojson"], + "includeLocations": ["jp"], "countryCodes": ["jp"], "languageCodes": ["ja"], "name": "OpenStreetMap Japan Twitter", diff --git a/resources/asia/japan/OSM-Japan-website.json b/resources/asia/japan/OSM-Japan-website.json index 904ccccde..a3a4dd9fa 100644 --- a/resources/asia/japan/OSM-Japan-website.json +++ b/resources/asia/japan/OSM-Japan-website.json @@ -1,7 +1,7 @@ { "id": "OSM-japan-website", "type": "osm", - "includeLocations": ["japan.geojson"], + "includeLocations": ["jp"], "countryCodes": ["jp"], "languageCodes": ["ja"], "name": "OpenStreetMap Japan", diff --git a/resources/asia/malaysia/OSM-MY-facebook.json b/resources/asia/malaysia/OSM-MY-facebook.json index 152f05353..aeb0f71dd 100644 --- a/resources/asia/malaysia/OSM-MY-facebook.json +++ b/resources/asia/malaysia/OSM-MY-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-MY-facebook", "type": "facebook", - "includeLocations": ["malaysia.geojson"], + "includeLocations": ["my"], "countryCodes": ["my"], "languageCodes": ["en", "ms"], "name": "OpenStreetMap Malaysia on Facebook", diff --git a/resources/asia/malaysia/OSM-MY-forum.json b/resources/asia/malaysia/OSM-MY-forum.json index 73faf9591..7f6f670f5 100644 --- a/resources/asia/malaysia/OSM-MY-forum.json +++ b/resources/asia/malaysia/OSM-MY-forum.json @@ -1,7 +1,7 @@ { "id": "OSM-MY-forum", "type": "forum", - "includeLocations": ["malaysia.geojson"], + "includeLocations": ["my"], "countryCodes": ["my"], "languageCodes": ["en", "ms"], "name": "OpenStreetMap Malaysia Forum", diff --git a/resources/asia/malaysia/OSM-MY-matrix.json b/resources/asia/malaysia/OSM-MY-matrix.json index 1c9ca69f1..9798fadc5 100644 --- a/resources/asia/malaysia/OSM-MY-matrix.json +++ b/resources/asia/malaysia/OSM-MY-matrix.json @@ -1,7 +1,7 @@ { "id": "OSM-MY-matrix", "type": "matrix", - "includeLocations": ["malaysia.geojson"], + "includeLocations": ["my"], "countryCodes": ["my"], "languageCodes": ["en", "ms"], "name": "OpenStreetMap Malaysia Riot channel", diff --git a/resources/asia/mongolia/mongolia.json b/resources/asia/mongolia/mongolia.json index 6fa9b95e1..cc990307f 100644 --- a/resources/asia/mongolia/mongolia.json +++ b/resources/asia/mongolia/mongolia.json @@ -1,7 +1,7 @@ { "id": "OSM-MNG-facebook", "type": "facebook", - "includeLocations": ["mongolia.geojson"], + "includeLocations": ["mn"], "name": "OpenStreetMap Mongolia", "description": "Improve OpenStreetMap in Mongolia", "extendedDescription": "Mapping in Mongolia? Have questions, want to connect with the community here? Join us at {Url}. All are welcome!", diff --git a/resources/asia/myanmar/osm-myanmar-facebook.json b/resources/asia/myanmar/osm-myanmar-facebook.json index fb7b5765c..f6f6f88b2 100644 --- a/resources/asia/myanmar/osm-myanmar-facebook.json +++ b/resources/asia/myanmar/osm-myanmar-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-MMR-facebook", "type": "facebook", - "includeLocations": ["myanmar.geojson"], + "includeLocations": ["mm"], "name": "OpenStreetMap Myanmar", "description": "Improve OpenStreetMap in Myanmar", "extendedDescription": "Mapping in Myanmar? Have questions, want to connect with the community here? Join us at {Url}. All are welcome!", diff --git a/resources/asia/nepal/osm-nepal-facebook.json b/resources/asia/nepal/osm-nepal-facebook.json index 0a84bfa44..202e814cf 100644 --- a/resources/asia/nepal/osm-nepal-facebook.json +++ b/resources/asia/nepal/osm-nepal-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-Nepal-facebook", "type": "facebook", - "includeLocations": ["nepal.geojson"], + "includeLocations": ["np"], "name": "OpenStreetMap Nepal", "description": "Improve OpenStreetMap in Nepal", "extendedDescription": "Mapping in Nepal? Have questions, want to connect with the community here? Join us at {Url}. All are welcome!", diff --git a/resources/asia/osm-asia-mailing-list.json b/resources/asia/osm-asia-mailing-list.json index d5b890b80..227e3c081 100644 --- a/resources/asia/osm-asia-mailing-list.json +++ b/resources/asia/osm-asia-mailing-list.json @@ -1,7 +1,7 @@ { "id": "OSM-Asia-mailinglist", "type": "mailinglist", - "includeLocations": ["asia_full.geojson"], + "includeLocations": ["142"], "name": "OpenStreetMap Asia Mailinglist", "description": "Talk-asia is the official Mailinglist for Asian Community", "url": "https://lists.openstreetmap.org/listinfo/talk-asia", diff --git a/resources/asia/osm-asia-telegram.json b/resources/asia/osm-asia-telegram.json index 123c1be8e..b752cfde7 100644 --- a/resources/asia/osm-asia-telegram.json +++ b/resources/asia/osm-asia-telegram.json @@ -1,7 +1,7 @@ { "id": "osm-asia-telegram", "type": "telegram", - "includeLocations": ["asia_full.geojson"], + "includeLocations": ["142"], "name": "OpenStreetMap Asia Telegram", "description": "Join our family: {url}", "url": "https://t.me/OpenStreetMapAsia", diff --git a/resources/asia/philippines/OSM-PH-facebook.json b/resources/asia/philippines/OSM-PH-facebook.json index c0e14f680..4124affde 100644 --- a/resources/asia/philippines/OSM-PH-facebook.json +++ b/resources/asia/philippines/OSM-PH-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-PH-facebook", "type": "facebook", - "includeLocations": ["philippines.geojson"], + "includeLocations": ["ph"], "countryCodes": ["ph"], "name": "OpenStreetMap PH Facebook", "description": "Welcome to OpenStreetMap Philippines, where we encourage all fellow Filipinos to contribute to the OpenStreetMap project.", diff --git a/resources/asia/philippines/OSM-PH-mailinglist.json b/resources/asia/philippines/OSM-PH-mailinglist.json index 59671976e..c8d7afbc4 100644 --- a/resources/asia/philippines/OSM-PH-mailinglist.json +++ b/resources/asia/philippines/OSM-PH-mailinglist.json @@ -1,7 +1,7 @@ { "id": "OSM-PH-mailinglist", "type": "mailinglist", - "includeLocations": ["philippines.geojson"], + "includeLocations": ["ph"], "countryCodes": ["ph"], "name": "Talk-ph Mailing List", "description": "A mailing list to discuss OpenStreetMap in the Philippines", diff --git a/resources/asia/philippines/OSM-PH-slack.json b/resources/asia/philippines/OSM-PH-slack.json index 6460f3acd..7030d8746 100644 --- a/resources/asia/philippines/OSM-PH-slack.json +++ b/resources/asia/philippines/OSM-PH-slack.json @@ -1,7 +1,7 @@ { "id": "OSM-PH-slack", "type": "slack", - "includeLocations": ["philippines.geojson"], + "includeLocations": ["ph"], "countryCodes": ["ph"], "name": "OpenStreetMap PH Slack", "description": "All are welcome! Sign up at {signupUrl}", diff --git a/resources/asia/philippines/OSM-PH-telegram.json b/resources/asia/philippines/OSM-PH-telegram.json index ec0472e9a..ccb9580ce 100644 --- a/resources/asia/philippines/OSM-PH-telegram.json +++ b/resources/asia/philippines/OSM-PH-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-PH-telegram", "type": "telegram", - "includeLocations": ["philippines.geojson"], + "includeLocations": ["ph"], "countryCodes": ["ph"], "languageCodes": ["en", "tl"], "name": "OpenStreetMap PH Telegram", diff --git a/resources/asia/russia/OSM-RU-forum.json b/resources/asia/russia/OSM-RU-forum.json index eef495b60..cd560dd10 100644 --- a/resources/asia/russia/OSM-RU-forum.json +++ b/resources/asia/russia/OSM-RU-forum.json @@ -1,7 +1,7 @@ { "id": "OSM-RU-forum", "type": "forum", - "includeLocations": ["russia.geojson"], + "includeLocations": ["ru"], "countryCodes": ["ru"], "languageCodes": ["ru"], "name": "OpenStreetMap RU forum", diff --git a/resources/asia/russia/OSM-RU-telegram.json b/resources/asia/russia/OSM-RU-telegram.json index 798c0d725..6db2b1a56 100644 --- a/resources/asia/russia/OSM-RU-telegram.json +++ b/resources/asia/russia/OSM-RU-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-RU-telegram", "type": "telegram", - "includeLocations": ["russia.geojson"], + "includeLocations": ["ru"], "countryCodes": ["ru"], "languageCodes": ["ru"], "name": "OpenStreetMap RU telegram", diff --git a/resources/asia/sri_lanka/OSM-sri-lanka-facebook.json b/resources/asia/sri_lanka/OSM-sri-lanka-facebook.json index a6bbf0a03..4004a1aa0 100644 --- a/resources/asia/sri_lanka/OSM-sri-lanka-facebook.json +++ b/resources/asia/sri_lanka/OSM-sri-lanka-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-sri-lanka-facebook", "type": "facebook", - "includeLocations": ["sri_lanka.geojson"], + "includeLocations": ["lk"], "countryCodes": ["lk"], "name": "OpenStreetMap Sri Lanka", "description": "Improve OpenStreetMap in Sri Lanka", diff --git a/resources/asia/taiwan/OSM-TW-facebook.json b/resources/asia/taiwan/OSM-TW-facebook.json index 6118769ca..536671f85 100644 --- a/resources/asia/taiwan/OSM-TW-facebook.json +++ b/resources/asia/taiwan/OSM-TW-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-TW-facebook", "type": "facebook", - "includeLocations": ["taiwan.geojson"], + "includeLocations": ["tw"], "countryCodes": ["tw"], "languageCodes": ["zh-tw"], "name": "OpenStreetMap Taiwan Community", diff --git a/resources/asia/taiwan/OSM-TW-mailinglist.json b/resources/asia/taiwan/OSM-TW-mailinglist.json index e190b5986..88cf9d4cb 100644 --- a/resources/asia/taiwan/OSM-TW-mailinglist.json +++ b/resources/asia/taiwan/OSM-TW-mailinglist.json @@ -1,7 +1,7 @@ { "id": "OSM-TW-mailinglist", "type": "mailinglist", - "includeLocations": ["taiwan.geojson"], + "includeLocations": ["tw"], "countryCodes": ["tw"], "languageCodes": ["en", "zh-tw"], "name": "OpenStreetMap Taiwan Mailinglist", diff --git a/resources/asia/taiwan/OSM-TW-telegram.json b/resources/asia/taiwan/OSM-TW-telegram.json index e7ad46c60..303a78a4b 100644 --- a/resources/asia/taiwan/OSM-TW-telegram.json +++ b/resources/asia/taiwan/OSM-TW-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-TW-telegram", "type": "telegram", - "includeLocations": ["taiwan.geojson"], + "includeLocations": ["tw"], "countryCodes": ["tw"], "languageCodes": ["zh-tw"], "name": "OpenStreetMap Taiwan Telegram", diff --git a/resources/asia/thailand/OSM-TH-facebook.json b/resources/asia/thailand/OSM-TH-facebook.json index 964975b78..106bf9186 100644 --- a/resources/asia/thailand/OSM-TH-facebook.json +++ b/resources/asia/thailand/OSM-TH-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-TH-facebook", "type": "facebook", - "includeLocations": ["thailand.geojson"], + "includeLocations": ["th"], "countryCodes": ["th"], "languageCodes": ["en", "th"], "name": "OpenStreetMap TH Facebook group", diff --git a/resources/asia/thailand/OSM-TH-forum.json b/resources/asia/thailand/OSM-TH-forum.json index 57ece198b..ea353ee9b 100644 --- a/resources/asia/thailand/OSM-TH-forum.json +++ b/resources/asia/thailand/OSM-TH-forum.json @@ -1,7 +1,7 @@ { "id": "OSM-TH-forum", "type": "forum", - "includeLocations": ["thailand.geojson"], + "includeLocations": ["th"], "countryCodes": ["th"], "languageCodes": ["en", "th"], "name": "OpenStreetMap TH forum", diff --git a/resources/europe/albania/al-forum.json b/resources/europe/albania/al-forum.json index c92c1cdb0..d211e75a8 100644 --- a/resources/europe/albania/al-forum.json +++ b/resources/europe/albania/al-forum.json @@ -1,7 +1,7 @@ { "id": "al-forum", "type": "forum", - "includeLocations": ["albania.geojson"], + "includeLocations": ["al"], "countryCodes": ["al"], "languageCodes": ["en", "sq"], "name": "OSM Albania Forum", diff --git a/resources/europe/albania/al-telegram.json b/resources/europe/albania/al-telegram.json index affc4b3b0..e82271361 100644 --- a/resources/europe/albania/al-telegram.json +++ b/resources/europe/albania/al-telegram.json @@ -1,7 +1,7 @@ { "id": "al-telegram", "type": "telegram", - "includeLocations": ["albania.geojson"], + "includeLocations": ["al"], "countryCodes": ["al"], "languageCodes": ["en", "sq"], "name": "OSM Albania Telegram channel", diff --git a/resources/europe/austria/at-forum.json b/resources/europe/austria/at-forum.json index 72a4b94d2..5dbdaab4a 100644 --- a/resources/europe/austria/at-forum.json +++ b/resources/europe/austria/at-forum.json @@ -1,7 +1,7 @@ { "id": "at-forum", "type": "forum", - "includeLocations": ["austria.geojson"], + "includeLocations": ["at"], "countryCodes": ["at"], "languageCodes": ["de", "en"], "name": "OpenStreetMap Austria Forum", diff --git a/resources/europe/austria/at-mailinglist.json b/resources/europe/austria/at-mailinglist.json index 43337600f..1d00dcb1f 100644 --- a/resources/europe/austria/at-mailinglist.json +++ b/resources/europe/austria/at-mailinglist.json @@ -1,7 +1,7 @@ { "id": "at-mailinglist", "type": "mailinglist", - "includeLocations": ["austria.geojson"], + "includeLocations": ["at"], "countryCodes": ["at"], "languageCodes": ["de"], "name": "Talk-at Mailing List", diff --git a/resources/europe/austria/at-twitter.json b/resources/europe/austria/at-twitter.json index 6122aef52..00bd36e7e 100644 --- a/resources/europe/austria/at-twitter.json +++ b/resources/europe/austria/at-twitter.json @@ -1,7 +1,7 @@ { "id": "at-twitter", "type": "twitter", - "includeLocations": ["austria.geojson"], + "includeLocations": ["at"], "countryCodes": ["at"], "languageCodes": ["de"], "name": "OpenStreetMap Austria Twitter", diff --git a/resources/europe/austria/osm-at.json b/resources/europe/austria/osm-at.json index e888aa6d2..a362f76b1 100644 --- a/resources/europe/austria/osm-at.json +++ b/resources/europe/austria/osm-at.json @@ -1,7 +1,7 @@ { "id": "osm-at", "type": "osm", - "includeLocations": ["austria.geojson"], + "includeLocations": ["at"], "countryCodes": ["at"], "languageCodes": ["de"], "name": "OpenStreetMap Austria", diff --git a/resources/europe/belarus/byosm.json b/resources/europe/belarus/byosm.json index 7b537e3bb..3d1ed9a3b 100644 --- a/resources/europe/belarus/byosm.json +++ b/resources/europe/belarus/byosm.json @@ -1,7 +1,7 @@ { "id": "byosm", "type": "telegram", - "includeLocations": ["belarus.geojson"], + "includeLocations": ["by"], "languageCodes": ["be", "en", "ru"], "name": "OpenStreetMap Belarus", "description": "OpenStreetMap Belarus telegram chat", diff --git a/resources/europe/belgium/be-chapter.json b/resources/europe/belgium/be-chapter.json index d58b92837..c5e8b6e6b 100644 --- a/resources/europe/belgium/be-chapter.json +++ b/resources/europe/belgium/be-chapter.json @@ -1,7 +1,7 @@ { "id": "be-chapter", "type": "osm-lc", - "includeLocations": ["belgium.geojson"], + "includeLocations": ["be"], "countryCodes": ["be"], "languageCodes": ["de", "en", "fr", "nl"], "name": "OpenStreetMap Belgium Local Chapter", diff --git a/resources/europe/belgium/be-facebook.json b/resources/europe/belgium/be-facebook.json index 02e47fc95..47cb5b36f 100644 --- a/resources/europe/belgium/be-facebook.json +++ b/resources/europe/belgium/be-facebook.json @@ -1,7 +1,7 @@ { "id": "be-facebook", "type": "facebook", - "includeLocations": ["belgium.geojson"], + "includeLocations": ["be"], "countryCodes": ["be"], "languageCodes": ["de", "en", "fr", "nl"], "name": "OpenStreetMap BE Facebook Community", diff --git a/resources/europe/belgium/be-forum.json b/resources/europe/belgium/be-forum.json index ee84f5693..1bd3a75aa 100644 --- a/resources/europe/belgium/be-forum.json +++ b/resources/europe/belgium/be-forum.json @@ -1,7 +1,7 @@ { "id": "be-forum", "type": "forum", - "includeLocations": ["belgium.geojson"], + "includeLocations": ["be"], "countryCodes": ["be"], "languageCodes": ["de", "en", "fr", "nl"], "name": "OpenStreetMap BE forum", diff --git a/resources/europe/belgium/be-irc.json b/resources/europe/belgium/be-irc.json index c86bde072..e4c82f69f 100644 --- a/resources/europe/belgium/be-irc.json +++ b/resources/europe/belgium/be-irc.json @@ -1,7 +1,7 @@ { "id": "be-irc", "type": "irc", - "includeLocations": ["belgium.geojson"], + "includeLocations": ["be"], "countryCodes": ["be"], "languageCodes": ["de", "en", "fr", "nl"], "name": "OpenStreetMap Belgium IRC", diff --git a/resources/europe/belgium/be-mailinglist.json b/resources/europe/belgium/be-mailinglist.json index 1c9d8d32a..9aad1b662 100644 --- a/resources/europe/belgium/be-mailinglist.json +++ b/resources/europe/belgium/be-mailinglist.json @@ -1,7 +1,7 @@ { "id": "be-mailinglist", "type": "mailinglist", - "includeLocations": ["belgium.geojson"], + "includeLocations": ["be"], "countryCodes": ["be"], "languageCodes": ["de", "en", "fr", "nl"], "name": "Talk-be Mailing List", diff --git a/resources/europe/belgium/be-matrix.json b/resources/europe/belgium/be-matrix.json index 290a5e468..9a29f26de 100644 --- a/resources/europe/belgium/be-matrix.json +++ b/resources/europe/belgium/be-matrix.json @@ -1,7 +1,7 @@ { "id": "be-matrix", "type": "matrix", - "includeLocations": ["belgium.geojson"], + "includeLocations": ["be"], "countryCodes": ["be"], "languageCodes": ["de", "en", "fr", "nl"], "name": "OpenStreetMap BE Matrix channel", diff --git a/resources/europe/belgium/be-meetup.json b/resources/europe/belgium/be-meetup.json index fcc6932c2..2bb5c5f0e 100644 --- a/resources/europe/belgium/be-meetup.json +++ b/resources/europe/belgium/be-meetup.json @@ -1,7 +1,7 @@ { "id": "be-meetup", "type": "meetup", - "includeLocations": ["belgium.geojson"], + "includeLocations": ["be"], "countryCodes": ["be"], "languageCodes": ["de", "en", "fr", "nl"], "name": "OpenStreetMap Belgium Meetup", diff --git a/resources/europe/belgium/be-twitter.json b/resources/europe/belgium/be-twitter.json index 61262b36f..bc85c6c50 100644 --- a/resources/europe/belgium/be-twitter.json +++ b/resources/europe/belgium/be-twitter.json @@ -1,7 +1,7 @@ { "id": "be-twitter", "type": "twitter", - "includeLocations": ["belgium.geojson"], + "includeLocations": ["be"], "countryCodes": ["be"], "languageCodes": ["de", "en", "fr", "nl"], "name": "OpenStreetMap Belgium Twitter", diff --git a/resources/europe/bosnia_herzegovina/OSM-BiH-telegram.json b/resources/europe/bosnia_herzegovina/OSM-BiH-telegram.json index 69f1cb7fc..7da08cc83 100644 --- a/resources/europe/bosnia_herzegovina/OSM-BiH-telegram.json +++ b/resources/europe/bosnia_herzegovina/OSM-BiH-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-BiH-telegram", "type": "telegram", - "includeLocations": ["bosnia_herzegovina.geojson"], + "includeLocations": ["ba"], "countryCodes": ["ba"], "name": "OpenStreetMap BiH Telegram", "description": "A Telegram group for the OSM Bosnia and Herzegovina community: {url}", diff --git a/resources/europe/croatia/hr-facebook.json b/resources/europe/croatia/hr-facebook.json index 1b8c514ec..19d4b9f35 100644 --- a/resources/europe/croatia/hr-facebook.json +++ b/resources/europe/croatia/hr-facebook.json @@ -1,7 +1,7 @@ { "id": "hr-facebook", "type": "facebook", - "includeLocations": ["croatia.geojson"], + "includeLocations": ["hr"], "countryCodes": ["hr"], "languageCodes": ["hr"], "name": "OpenStreetMap Croatia Facebook group", diff --git a/resources/europe/croatia/hr-irc.json b/resources/europe/croatia/hr-irc.json index e27e8b90f..585e174e3 100644 --- a/resources/europe/croatia/hr-irc.json +++ b/resources/europe/croatia/hr-irc.json @@ -1,7 +1,7 @@ { "id": "hr-irc", "type": "irc", - "includeLocations": ["croatia.geojson"], + "includeLocations": ["hr"], "countryCodes": ["hr"], "languageCodes": ["hr"], "name": "OpenStreetMap Croatia on IRC", diff --git a/resources/europe/croatia/hr-mailinglist.json b/resources/europe/croatia/hr-mailinglist.json index 6d19382ca..3eff4148d 100644 --- a/resources/europe/croatia/hr-mailinglist.json +++ b/resources/europe/croatia/hr-mailinglist.json @@ -1,7 +1,7 @@ { "id": "hr-mailinglist", "type": "mailinglist", - "includeLocations": ["croatia.geojson"], + "includeLocations": ["hr"], "countryCodes": ["hr"], "languageCodes": ["hr"], "name": "Talk-hr Mailing List", diff --git a/resources/europe/czech_republic/czech-community.json b/resources/europe/czech_republic/czech-community.json index 8568b42eb..566711379 100644 --- a/resources/europe/czech_republic/czech-community.json +++ b/resources/europe/czech_republic/czech-community.json @@ -1,7 +1,7 @@ { "id": "czech-community", "type": "osm", - "includeLocations": ["czechia.geojson"], + "includeLocations": ["cz"], "countryCodes": ["cz"], "languageCodes": ["cs", "en", "sk"], "name": "Czech OSM community", diff --git a/resources/europe/czech_republic/osmcz-facebook.json b/resources/europe/czech_republic/osmcz-facebook.json index ff63d7e3d..70f6bb919 100644 --- a/resources/europe/czech_republic/osmcz-facebook.json +++ b/resources/europe/czech_republic/osmcz-facebook.json @@ -1,7 +1,7 @@ { "id": "osmcz-facebook", "type": "facebook", - "includeLocations": ["czechia.geojson"], + "includeLocations": ["cz"], "countryCodes": ["cz"], "languageCodes": ["cs", "en", "sk"], "name": "OpenStreetMap CZ on Facebook", diff --git a/resources/europe/czech_republic/osmcz-telegram.json b/resources/europe/czech_republic/osmcz-telegram.json index 02400cddb..f5a4057f2 100644 --- a/resources/europe/czech_republic/osmcz-telegram.json +++ b/resources/europe/czech_republic/osmcz-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-CZ-telegram", "type": "telegram", - "includeLocations": ["czechia.geojson"], + "includeLocations": ["cz"], "countryCodes": ["cz"], "languageCodes": ["cs", "en", "sk"], "name": "OpenStreetMap CZ Telegram", diff --git a/resources/europe/czech_republic/osmcz-twitter.json b/resources/europe/czech_republic/osmcz-twitter.json index ef4b492f2..d922aff66 100644 --- a/resources/europe/czech_republic/osmcz-twitter.json +++ b/resources/europe/czech_republic/osmcz-twitter.json @@ -1,7 +1,7 @@ { "id": "osmcz-twitter", "type": "twitter", - "includeLocations": ["czechia.geojson"], + "includeLocations": ["cz"], "countryCodes": ["cz"], "languageCodes": ["cs", "en", "sk"], "name": "Czech twitter @osmcz", diff --git a/resources/europe/czech_republic/talk-cz-mailinglist.json b/resources/europe/czech_republic/talk-cz-mailinglist.json index 17e933545..9b13b5291 100644 --- a/resources/europe/czech_republic/talk-cz-mailinglist.json +++ b/resources/europe/czech_republic/talk-cz-mailinglist.json @@ -1,7 +1,7 @@ { "id": "talk-cz-mailinglist", "type": "mailinglist", - "includeLocations": ["czechia.geojson"], + "includeLocations": ["cz"], "countryCodes": ["cz"], "languageCodes": ["cs", "en", "sk"], "name": "Czech mailing list (talk-cz)", diff --git a/resources/europe/denmark/dk-forum.json b/resources/europe/denmark/dk-forum.json index bc24755e8..c44730e75 100644 --- a/resources/europe/denmark/dk-forum.json +++ b/resources/europe/denmark/dk-forum.json @@ -1,7 +1,7 @@ { "id": "dk-forum", "type": "forum", - "includeLocations": ["denmark.geojson"], + "includeLocations": ["dk"], "countryCodes": ["dk"], "languageCodes": ["da"], "name": "OpenStreetMap Denmark Web Forum", diff --git a/resources/europe/denmark/dk-irc.json b/resources/europe/denmark/dk-irc.json index e5375a777..27e084f8c 100644 --- a/resources/europe/denmark/dk-irc.json +++ b/resources/europe/denmark/dk-irc.json @@ -1,7 +1,7 @@ { "id": "dk-irc", "type": "irc", - "includeLocations": ["denmark.geojson"], + "includeLocations": ["dk"], "countryCodes": ["dk"], "languageCodes": ["da"], "name": "OpenStreetMap Denmark IRC", diff --git a/resources/europe/denmark/dk-mailinglist.json b/resources/europe/denmark/dk-mailinglist.json index b43e95d1b..1a7ea5b72 100644 --- a/resources/europe/denmark/dk-mailinglist.json +++ b/resources/europe/denmark/dk-mailinglist.json @@ -1,7 +1,7 @@ { "id": "dk-mailinglist", "type": "mailinglist", - "includeLocations": ["denmark.geojson"], + "includeLocations": ["dk"], "countryCodes": ["dk"], "languageCodes": ["da"], "name": "Talk-dk Mailing List", diff --git a/resources/europe/finland/fi-forum.json b/resources/europe/finland/fi-forum.json index d5f1586b6..aca98c939 100644 --- a/resources/europe/finland/fi-forum.json +++ b/resources/europe/finland/fi-forum.json @@ -1,7 +1,7 @@ { "id": "fi-forum", "type": "forum", - "includeLocations": ["finland.geojson"], + "includeLocations": ["fi"], "countryCodes": ["fi"], "languageCodes": ["fi"], "name": "OpenStreetMap FI forum", diff --git a/resources/europe/finland/fi-irc.json b/resources/europe/finland/fi-irc.json index 24b8c9702..e37fdc6c4 100644 --- a/resources/europe/finland/fi-irc.json +++ b/resources/europe/finland/fi-irc.json @@ -1,7 +1,7 @@ { "id": "fi-irc", "type": "irc", - "includeLocations": ["finland.geojson"], + "includeLocations": ["fi"], "countryCodes": ["fi"], "languageCodes": ["fi"], "name": "OpenStreetMap Finland IRC", diff --git a/resources/europe/finland/fi-mailinglist.json b/resources/europe/finland/fi-mailinglist.json index 0bd62cbdc..6e5463240 100644 --- a/resources/europe/finland/fi-mailinglist.json +++ b/resources/europe/finland/fi-mailinglist.json @@ -1,7 +1,7 @@ { "id": "fi-mailinglist", "type": "mailinglist", - "includeLocations": ["finland.geojson"], + "includeLocations": ["fi"], "countryCodes": ["fi"], "languageCodes": ["fi"], "name": "Talk-fi Mailing List", diff --git a/resources/europe/france/fr-chapter.json b/resources/europe/france/fr-chapter.json index 9f8cd4d3f..0db076413 100644 --- a/resources/europe/france/fr-chapter.json +++ b/resources/europe/france/fr-chapter.json @@ -1,7 +1,7 @@ { "id": "fr-chapter", "type": "osm-lc", - "includeLocations": ["france.geojson"], + "includeLocations": ["fr"], "countryCodes": ["fr"], "languageCodes": ["fr"], "name": "OpenStreetMap France Local Chapter", diff --git a/resources/europe/france/fr-facebook.json b/resources/europe/france/fr-facebook.json index 29e43c01c..75b66bc80 100644 --- a/resources/europe/france/fr-facebook.json +++ b/resources/europe/france/fr-facebook.json @@ -1,7 +1,7 @@ { "id": "fr-facebook", "type": "facebook", - "includeLocations": ["france.geojson"], + "includeLocations": ["fr"], "countryCodes": ["fr"], "languageCodes": ["fr"], "name": "OpenStreetMap France Facebook page", diff --git a/resources/europe/france/fr-forum.json b/resources/europe/france/fr-forum.json index a47acbfb3..2f396597a 100644 --- a/resources/europe/france/fr-forum.json +++ b/resources/europe/france/fr-forum.json @@ -1,7 +1,7 @@ { "id": "fr-forum", "type": "forum", - "includeLocations": ["france.geojson"], + "includeLocations": ["fr"], "countryCodes": ["fr"], "languageCodes": ["fr"], "name": "OpenStreetMap France web forum", diff --git a/resources/europe/france/fr-irc.json b/resources/europe/france/fr-irc.json index 98340f599..26410a98a 100644 --- a/resources/europe/france/fr-irc.json +++ b/resources/europe/france/fr-irc.json @@ -1,7 +1,7 @@ { "id": "fr-irc", "type": "irc", - "includeLocations": ["france.geojson"], + "includeLocations": ["fr"], "countryCodes": ["fr"], "languageCodes": ["fr"], "name": "OpenStreetMap France on IRC", diff --git a/resources/europe/france/fr-mailinglist.json b/resources/europe/france/fr-mailinglist.json index 64a289bc6..fccee9cc3 100644 --- a/resources/europe/france/fr-mailinglist.json +++ b/resources/europe/france/fr-mailinglist.json @@ -1,7 +1,7 @@ { "id": "fr-mailinglist", "type": "mailinglist", - "includeLocations": ["france.geojson"], + "includeLocations": ["fr"], "countryCodes": ["fr"], "languageCodes": ["fr"], "name": "Talk-fr Mailing List", diff --git a/resources/europe/france/fr-telegram.json b/resources/europe/france/fr-telegram.json index a2cec1b8a..96a5ed1b6 100644 --- a/resources/europe/france/fr-telegram.json +++ b/resources/europe/france/fr-telegram.json @@ -1,7 +1,7 @@ { "id": "fr-telegram", "type": "telegram", - "includeLocations": ["france.geojson"], + "includeLocations": ["fr"], "countryCodes": ["fr"], "name": "OpenStreetMap France on Telegram", "description": "A Telegram group for the OSM France community: {url}", diff --git a/resources/europe/france/fr-twitter.json b/resources/europe/france/fr-twitter.json index ba6246ab3..43f3a8b1c 100644 --- a/resources/europe/france/fr-twitter.json +++ b/resources/europe/france/fr-twitter.json @@ -1,7 +1,7 @@ { "id": "fr-twitter", "type": "twitter", - "includeLocations": ["france.geojson"], + "includeLocations": ["fr"], "countryCodes": ["fr"], "languageCodes": ["fr"], "name": "OpenStreetMap France on Twitter", diff --git a/resources/europe/germany/de-forum.json b/resources/europe/germany/de-forum.json index fd2dfad0e..79e54b4ed 100644 --- a/resources/europe/germany/de-forum.json +++ b/resources/europe/germany/de-forum.json @@ -1,7 +1,7 @@ { "id": "de-forum", "type": "forum", - "includeLocations": ["germany.geojson"], + "includeLocations": ["de"], "countryCodes": ["de"], "languageCodes": ["de"], "name": "OpenStreetMap DE forum", diff --git a/resources/europe/germany/de-irc.json b/resources/europe/germany/de-irc.json index 00700e9d8..50de3af3f 100644 --- a/resources/europe/germany/de-irc.json +++ b/resources/europe/germany/de-irc.json @@ -1,7 +1,7 @@ { "id": "de-irc", "type": "irc", - "includeLocations": ["germany.geojson"], + "includeLocations": ["de"], "countryCodes": ["de"], "languageCodes": ["de"], "name": "OpenStreetMap Germany IRC", diff --git a/resources/europe/germany/de-mailinglist.json b/resources/europe/germany/de-mailinglist.json index f82546516..8752eea59 100644 --- a/resources/europe/germany/de-mailinglist.json +++ b/resources/europe/germany/de-mailinglist.json @@ -1,7 +1,7 @@ { "id": "de-mailinglist", "type": "mailinglist", - "includeLocations": ["germany.geojson"], + "includeLocations": ["de"], "countryCodes": ["de"], "languageCodes": ["de"], "name": "Talk-de Mailing List", diff --git a/resources/europe/germany/de-telegram.json b/resources/europe/germany/de-telegram.json index 4401c45f7..e8999f8aa 100644 --- a/resources/europe/germany/de-telegram.json +++ b/resources/europe/germany/de-telegram.json @@ -1,7 +1,7 @@ { "id": "de-telegram", "type": "telegram", - "includeLocations": ["germany.geojson"], + "includeLocations": ["de"], "countryCodes": ["de"], "languageCodes": ["de"], "name": "OpenStreetMap Germany Telegram", diff --git a/resources/europe/germany/osm-de.json b/resources/europe/germany/osm-de.json index aef8074c2..8138e790d 100644 --- a/resources/europe/germany/osm-de.json +++ b/resources/europe/germany/osm-de.json @@ -1,7 +1,7 @@ { "id": "osm-de", "type": "osm-lc", - "includeLocations": ["germany.geojson"], + "includeLocations": ["de"], "countryCodes": ["de"], "languageCodes": ["de"], "name": "OpenStreetMap Germany", diff --git a/resources/europe/hungary/hu-facebook.json b/resources/europe/hungary/hu-facebook.json index 427e5b6c6..c00833119 100644 --- a/resources/europe/hungary/hu-facebook.json +++ b/resources/europe/hungary/hu-facebook.json @@ -1,7 +1,7 @@ { "id": "hu-facebook", "type": "facebook", - "includeLocations": ["hungary.geojson"], + "includeLocations": ["hu"], "countryCodes": ["hu"], "languageCodes": ["hu"], "name": "OpenStreetMap HU on Facebook", diff --git a/resources/europe/hungary/hu-forum.json b/resources/europe/hungary/hu-forum.json index e8872431b..12439889c 100644 --- a/resources/europe/hungary/hu-forum.json +++ b/resources/europe/hungary/hu-forum.json @@ -1,7 +1,7 @@ { "id": "hu-forum", "type": "forum", - "includeLocations": ["hungary.geojson"], + "includeLocations": ["hu"], "countryCodes": ["hu"], "languageCodes": ["hu"], "name": "OpenStreetMap HU forum", diff --git a/resources/europe/hungary/hu-meetup.json b/resources/europe/hungary/hu-meetup.json index 32d2b06b7..bda82b79e 100644 --- a/resources/europe/hungary/hu-meetup.json +++ b/resources/europe/hungary/hu-meetup.json @@ -1,7 +1,7 @@ { "id": "hu-meetup", "type": "meetup", - "includeLocations": ["hungary.geojson"], + "includeLocations": ["hu"], "countryCodes": ["hu"], "languageCodes": ["hu"], "name": "OpenStreetMap Hungary Meetup", diff --git a/resources/europe/iceland/is-chapter.json b/resources/europe/iceland/is-chapter.json index 462517903..60b327a58 100644 --- a/resources/europe/iceland/is-chapter.json +++ b/resources/europe/iceland/is-chapter.json @@ -1,7 +1,7 @@ { "id": "is-chapter", "type": "osm-lc", - "includeLocations": ["iceland.geojson"], + "includeLocations": ["is"], "countryCodes": ["is"], "languageCodes": ["en", "is"], "name": "OpenStreetMap Iceland Local Chapter", diff --git a/resources/europe/iceland/is-facebook.json b/resources/europe/iceland/is-facebook.json index d41e775c5..24401be0f 100644 --- a/resources/europe/iceland/is-facebook.json +++ b/resources/europe/iceland/is-facebook.json @@ -1,7 +1,7 @@ { "id": "is-facebook", "type": "facebook", - "includeLocations": ["iceland.geojson"], + "includeLocations": ["is"], "countryCodes": ["is"], "languageCodes": ["en", "is"], "name": "OSM Iceland on Facebook", diff --git a/resources/europe/iceland/is-mailinglist.json b/resources/europe/iceland/is-mailinglist.json index 8c726b4cc..6a7f731c3 100644 --- a/resources/europe/iceland/is-mailinglist.json +++ b/resources/europe/iceland/is-mailinglist.json @@ -1,7 +1,7 @@ { "id": "is-mailinglist", "type": "mailinglist", - "includeLocations": ["iceland.geojson"], + "includeLocations": ["is"], "countryCodes": ["is"], "languageCodes": ["en", "is"], "name": "Talk-is Mailing List", diff --git a/resources/europe/iceland/is-twitter.json b/resources/europe/iceland/is-twitter.json index d5bf35ac5..a9a21e21f 100644 --- a/resources/europe/iceland/is-twitter.json +++ b/resources/europe/iceland/is-twitter.json @@ -1,7 +1,7 @@ { "id": "is-twitter", "type": "twitter", - "includeLocations": ["iceland.geojson"], + "includeLocations": ["is"], "countryCodes": ["is"], "languageCodes": ["en", "is"], "name": "OSM Iceland on Twitter", diff --git a/resources/europe/ireland/ireland-chapter.json b/resources/europe/ireland/ireland-chapter.json index a0c4d8165..f1f1966d7 100644 --- a/resources/europe/ireland/ireland-chapter.json +++ b/resources/europe/ireland/ireland-chapter.json @@ -1,7 +1,7 @@ { "id": "ireland-chapter", "type": "osm-lc", - "includeLocations": ["ireland.geojson"], + "includeLocations": ["ie"], "countryCodes": ["gb", "ie"], "languageCodes": ["en"], "name": "OpenStreetMap Ireland Local Chapter", diff --git a/resources/europe/ireland/ireland-facebook.json b/resources/europe/ireland/ireland-facebook.json index 7f1e19319..ad69ab8ac 100644 --- a/resources/europe/ireland/ireland-facebook.json +++ b/resources/europe/ireland/ireland-facebook.json @@ -1,7 +1,7 @@ { "id": "ireland-facebook", "type": "facebook", - "includeLocations": ["ireland.geojson"], + "includeLocations": ["ie"], "countryCodes": ["gb", "ie"], "languageCodes": ["en"], "name": "OpenStreetMap Ireland Facebook group", diff --git a/resources/europe/ireland/ireland-irc.json b/resources/europe/ireland/ireland-irc.json index 17183f353..3d39ab12a 100644 --- a/resources/europe/ireland/ireland-irc.json +++ b/resources/europe/ireland/ireland-irc.json @@ -1,7 +1,7 @@ { "id": "ireland-irc", "type": "irc", - "includeLocations": ["ireland.geojson"], + "includeLocations": ["ie"], "countryCodes": ["gb", "ie"], "languageCodes": ["en"], "name": "OpenStreetMap Ireland IRC", diff --git a/resources/europe/ireland/ireland-mailinglist.json b/resources/europe/ireland/ireland-mailinglist.json index bc1eff463..2a49c00d2 100644 --- a/resources/europe/ireland/ireland-mailinglist.json +++ b/resources/europe/ireland/ireland-mailinglist.json @@ -1,7 +1,7 @@ { "id": "ireland-mailinglist", "type": "mailinglist", - "includeLocations": ["ireland.geojson"], + "includeLocations": ["ie"], "countryCodes": ["gb", "ie"], "languageCodes": ["en"], "name": "Talk-ie Mailing List", diff --git a/resources/europe/ireland/ireland-telegram.json b/resources/europe/ireland/ireland-telegram.json index 47d24de9f..a9043883a 100644 --- a/resources/europe/ireland/ireland-telegram.json +++ b/resources/europe/ireland/ireland-telegram.json @@ -1,7 +1,7 @@ { "id": "ireland-telegram", "type": "telegram", - "includeLocations": ["ireland.geojson"], + "includeLocations": ["ie"], "countryCodes": ["gb", "ie"], "languageCodes": ["en"], "name": "OSM Ireland on Telegram", diff --git a/resources/europe/ireland/ireland-twitter.json b/resources/europe/ireland/ireland-twitter.json index f1d9bca66..b9e4a593b 100644 --- a/resources/europe/ireland/ireland-twitter.json +++ b/resources/europe/ireland/ireland-twitter.json @@ -1,7 +1,7 @@ { "id": "ireland-twitter", "type": "twitter", - "includeLocations": ["ireland.geojson"], + "includeLocations": ["ie"], "countryCodes": ["gb", "ie"], "languageCodes": ["en"], "name": "OpenStreetMap IE on Twitter", diff --git a/resources/europe/italy/it-chapter.json b/resources/europe/italy/it-chapter.json index 37ccb6d72..e6adfb94e 100644 --- a/resources/europe/italy/it-chapter.json +++ b/resources/europe/italy/it-chapter.json @@ -1,7 +1,7 @@ { "id": "it-chapter", "type": "osm-lc", - "includeLocations": ["italy.geojson"], + "includeLocations": ["it"], "countryCodes": ["it"], "languageCodes": ["it"], "name": "OpenStreetMap Italy Local Chapter", diff --git a/resources/europe/italy/it-facebook.json b/resources/europe/italy/it-facebook.json index c3c51c494..b06279e44 100644 --- a/resources/europe/italy/it-facebook.json +++ b/resources/europe/italy/it-facebook.json @@ -1,7 +1,7 @@ { "id": "it-facebook", "type": "facebook", - "includeLocations": ["italy.geojson"], + "includeLocations": ["it"], "countryCodes": ["it"], "languageCodes": ["it"], "name": "OpenStreetMap Italy Facebook", diff --git a/resources/europe/italy/it-irc.json b/resources/europe/italy/it-irc.json index 1063b2306..d29a38382 100644 --- a/resources/europe/italy/it-irc.json +++ b/resources/europe/italy/it-irc.json @@ -1,7 +1,7 @@ { "id": "it-irc", "type": "irc", - "includeLocations": ["italy.geojson"], + "includeLocations": ["it"], "countryCodes": ["it"], "languageCodes": ["it"], "name": "OpenStreetMap Italy IRC", diff --git a/resources/europe/italy/it-mailinglist.json b/resources/europe/italy/it-mailinglist.json index 92eae848f..d086f22bb 100644 --- a/resources/europe/italy/it-mailinglist.json +++ b/resources/europe/italy/it-mailinglist.json @@ -1,7 +1,7 @@ { "id": "it-mailinglist", "type": "mailinglist", - "includeLocations": ["italy.geojson"], + "includeLocations": ["it"], "countryCodes": ["it"], "languageCodes": ["it"], "name": "Talk-it Mailing List", diff --git a/resources/europe/italy/it-telegram.json b/resources/europe/italy/it-telegram.json index e05012aa6..d187364ee 100644 --- a/resources/europe/italy/it-telegram.json +++ b/resources/europe/italy/it-telegram.json @@ -1,7 +1,7 @@ { "id": "it-telegram", "type": "telegram", - "includeLocations": ["italy.geojson"], + "includeLocations": ["it"], "countryCodes": ["it"], "languageCodes": ["it"], "name": "@OpenStreetMapItalia on Telegram", diff --git a/resources/europe/italy/it-twitter.json b/resources/europe/italy/it-twitter.json index 92093abb2..cc6e5874e 100644 --- a/resources/europe/italy/it-twitter.json +++ b/resources/europe/italy/it-twitter.json @@ -1,7 +1,7 @@ { "id": "it-twitter", "type": "twitter", - "includeLocations": ["italy.geojson"], + "includeLocations": ["it"], "countryCodes": ["it"], "languageCodes": ["it"], "name": "OpenStreetMap Italy Twitter", diff --git a/resources/europe/kosovo/kosovo-telegram.json b/resources/europe/kosovo/kosovo-telegram.json index 6b0bb18fd..0644d4de5 100644 --- a/resources/europe/kosovo/kosovo-telegram.json +++ b/resources/europe/kosovo/kosovo-telegram.json @@ -1,7 +1,7 @@ { "id": "kosovo-telegram", "type": "telegram", - "includeLocations": ["kosovo.geojson"], + "includeLocations": ["xk"], "countryCodes": ["xk"], "languageCodes": ["en", "sq", "sr"], "name": "OpenStreetMap Kosovo on Telegram", diff --git a/resources/europe/luxembourg/lu-mailinglist.json b/resources/europe/luxembourg/lu-mailinglist.json index 522575ec8..15032a779 100644 --- a/resources/europe/luxembourg/lu-mailinglist.json +++ b/resources/europe/luxembourg/lu-mailinglist.json @@ -1,7 +1,7 @@ { "id": "lu-mailinglist", "type": "mailinglist", - "includeLocations": ["luxembourg.geojson"], + "includeLocations": ["lu"], "countryCodes": ["lu"], "languageCodes": ["de", "en", "fr", "lb"], "name": "Talk-lu Mailing List", diff --git a/resources/europe/netherlands/nl-forum.json b/resources/europe/netherlands/nl-forum.json index 319b66ef5..c6029420b 100644 --- a/resources/europe/netherlands/nl-forum.json +++ b/resources/europe/netherlands/nl-forum.json @@ -1,7 +1,7 @@ { "id": "nl-forum", "type": "forum", - "includeLocations": ["netherlands.geojson"], + "includeLocations": ["nl"], "countryCodes": ["nl"], "languageCodes": ["nl"], "name": "Netherlands OpenStreetMap forum", diff --git a/resources/europe/netherlands/nl-telegram.json b/resources/europe/netherlands/nl-telegram.json index bf0281bb6..a1b7b046f 100644 --- a/resources/europe/netherlands/nl-telegram.json +++ b/resources/europe/netherlands/nl-telegram.json @@ -1,7 +1,7 @@ { "id": "nl-telegram", "type": "telegram", - "includeLocations": ["netherlands.geojson"], + "includeLocations": ["nl"], "countryCodes": ["nl"], "languageCodes": ["nl"], "name": "Netherlands OpenStreetMap Telegram", diff --git a/resources/europe/norway/no-forum.json b/resources/europe/norway/no-forum.json index c32a2f51b..fb68b40f8 100644 --- a/resources/europe/norway/no-forum.json +++ b/resources/europe/norway/no-forum.json @@ -1,7 +1,7 @@ { "id": "no-forum", "type": "forum", - "includeLocations": ["norway.geojson"], + "includeLocations": ["no"], "countryCodes": ["no"], "languageCodes": ["no"], "name": "OpenStreetMap Norway Web Forum", diff --git a/resources/europe/norway/no-irc.json b/resources/europe/norway/no-irc.json index de37c3365..2bbb10b16 100644 --- a/resources/europe/norway/no-irc.json +++ b/resources/europe/norway/no-irc.json @@ -1,7 +1,7 @@ { "id": "no-irc", "type": "irc", - "includeLocations": ["norway.geojson"], + "includeLocations": ["no"], "countryCodes": ["no"], "languageCodes": ["no"], "name": "OpenStreetMap Norway on IRC", diff --git a/resources/europe/norway/no-mailinglist.json b/resources/europe/norway/no-mailinglist.json index 5a3ceb819..5ef9b731a 100644 --- a/resources/europe/norway/no-mailinglist.json +++ b/resources/europe/norway/no-mailinglist.json @@ -1,7 +1,7 @@ { "id": "no-mailinglist", "type": "mailinglist", - "includeLocations": ["norway.geojson"], + "includeLocations": ["no"], "countryCodes": ["no"], "languageCodes": ["no"], "name": "OpenStreetMap Norway mailing list", diff --git a/resources/europe/norway/no-telegram.json b/resources/europe/norway/no-telegram.json index c8b915df8..f2db9e5a3 100644 --- a/resources/europe/norway/no-telegram.json +++ b/resources/europe/norway/no-telegram.json @@ -1,7 +1,7 @@ { "id": "no-telegram", "type": "telegram", - "includeLocations": ["norway.geojson"], + "includeLocations": ["no"], "countryCodes": ["no"], "languageCodes": ["no"], "name": "@OSM_no on Telegram", diff --git a/resources/europe/poland/OSM-PL-facebook-group.json b/resources/europe/poland/OSM-PL-facebook-group.json index e506744e3..063fa213a 100644 --- a/resources/europe/poland/OSM-PL-facebook-group.json +++ b/resources/europe/poland/OSM-PL-facebook-group.json @@ -1,7 +1,7 @@ { "id": "OSM-PL-facebook-group", "type": "facebook", - "includeLocations": ["poland.geojson"], + "includeLocations": ["pl"], "countryCodes": ["pl"], "languageCodes": ["pl"], "name": "OpenStreetMap Poland Facebook group", diff --git a/resources/europe/poland/OSM-PL-forum.json b/resources/europe/poland/OSM-PL-forum.json index 2034c45c9..f8ae64137 100644 --- a/resources/europe/poland/OSM-PL-forum.json +++ b/resources/europe/poland/OSM-PL-forum.json @@ -1,7 +1,7 @@ { "id": "OSM-PL-forum", "type": "forum", - "includeLocations": ["poland.geojson"], + "includeLocations": ["pl"], "countryCodes": ["pl"], "languageCodes": ["en", "pl"], "name": "OpenStreetMap Poland Forum", diff --git a/resources/europe/portugal/pt-mailinglist.json b/resources/europe/portugal/pt-mailinglist.json index 3970d022b..f79e2503e 100644 --- a/resources/europe/portugal/pt-mailinglist.json +++ b/resources/europe/portugal/pt-mailinglist.json @@ -1,7 +1,7 @@ { "id": "pt-mailinglist", "type": "mailinglist", - "includeLocations": ["portugal.geojson"], + "includeLocations": ["pt"], "countryCodes": ["pt"], "languageCodes": ["pt"], "name": "Talk-pt Mailing List", diff --git a/resources/europe/portugal/pt-telegram.json b/resources/europe/portugal/pt-telegram.json index 1afb5c3eb..48215c1a4 100644 --- a/resources/europe/portugal/pt-telegram.json +++ b/resources/europe/portugal/pt-telegram.json @@ -1,7 +1,7 @@ { "id": "pt-telegram", "type": "telegram", - "includeLocations": ["portugal.geojson"], + "includeLocations": ["pt"], "countryCodes": ["pt"], "languageCodes": ["pt"], "name": "OpenStreetMap Portugal on Telegram", diff --git a/resources/europe/slovenia/si-forum.json b/resources/europe/slovenia/si-forum.json index 5d285d9d0..8154b7c29 100644 --- a/resources/europe/slovenia/si-forum.json +++ b/resources/europe/slovenia/si-forum.json @@ -1,7 +1,7 @@ { "id": "si-forum", "type": "forum", - "includeLocations": ["slovenia.geojson"], + "includeLocations": ["si"], "countryCodes": ["si"], "languageCodes": ["en", "sl"], "name": "OpenStreetMap Slovenia Forum", diff --git a/resources/europe/slovenia/si-mailinglist.json b/resources/europe/slovenia/si-mailinglist.json index 5265ec407..d7b5e8c9e 100644 --- a/resources/europe/slovenia/si-mailinglist.json +++ b/resources/europe/slovenia/si-mailinglist.json @@ -1,7 +1,7 @@ { "id": "si-mailinglist", "type": "mailinglist", - "includeLocations": ["slovenia.geojson"], + "includeLocations": ["si"], "countryCodes": ["si"], "languageCodes": ["en", "sl"], "name": "OpenStreetMap Slovenia mailing list", diff --git a/resources/europe/slovenia/si-twitter.json b/resources/europe/slovenia/si-twitter.json index fd53b1eb3..4f5459744 100644 --- a/resources/europe/slovenia/si-twitter.json +++ b/resources/europe/slovenia/si-twitter.json @@ -1,7 +1,7 @@ { "id": "si-twitter", "type": "twitter", - "includeLocations": ["slovenia.geojson"], + "includeLocations": ["si"], "countryCodes": ["si"], "languageCodes": ["en", "sl"], "name": "OpenStreetMap Slovenia Twitter", diff --git a/resources/europe/spain/OSM-ES-mailinglist.json b/resources/europe/spain/OSM-ES-mailinglist.json index c253c9d96..f4e8ebe77 100644 --- a/resources/europe/spain/OSM-ES-mailinglist.json +++ b/resources/europe/spain/OSM-ES-mailinglist.json @@ -1,7 +1,7 @@ { "id": "OSM-ES-mailinglist", "type": "mailinglist", - "includeLocations": ["spain.geojson"], + "includeLocations": ["es"], "languageCodes": ["es"], "name": "Talk-es mailing list", "description": "A mailing list to discuss OpenStreetMap in Spain", diff --git a/resources/europe/spain/OSM-ES-telegram.json b/resources/europe/spain/OSM-ES-telegram.json index e0f3f283c..f93eb204e 100644 --- a/resources/europe/spain/OSM-ES-telegram.json +++ b/resources/europe/spain/OSM-ES-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-ES-telegram", "type": "telegram", - "includeLocations": ["spain.geojson"], + "includeLocations": ["es"], "languageCodes": ["es"], "name": "@OSMes on Telegram", "description": "OpenStreetMap Spain Telegram chat", diff --git a/resources/europe/sweden/osm-se.json b/resources/europe/sweden/osm-se.json index d5a62df61..e6286ad15 100644 --- a/resources/europe/sweden/osm-se.json +++ b/resources/europe/sweden/osm-se.json @@ -1,7 +1,7 @@ { "id": "osm-se", "type": "osm", - "includeLocations": ["sweden.geojson"], + "includeLocations": ["se"], "countryCodes": ["se"], "languageCodes": ["sv"], "name": "OpenStreetMap.se", diff --git a/resources/europe/sweden/se-facebook.json b/resources/europe/sweden/se-facebook.json index cf8e37c23..2bc1fd23d 100644 --- a/resources/europe/sweden/se-facebook.json +++ b/resources/europe/sweden/se-facebook.json @@ -1,7 +1,7 @@ { "id": "se-facebook", "type": "facebook", - "includeLocations": ["sweden.geojson"], + "includeLocations": ["se"], "countryCodes": ["se"], "languageCodes": ["sv"], "name": "OpenStreetMap Sweden Facebook", diff --git a/resources/europe/sweden/se-forum.json b/resources/europe/sweden/se-forum.json index 21b0570e3..83416e37e 100644 --- a/resources/europe/sweden/se-forum.json +++ b/resources/europe/sweden/se-forum.json @@ -1,7 +1,7 @@ { "id": "se-forum", "type": "forum", - "includeLocations": ["sweden.geojson"], + "includeLocations": ["se"], "countryCodes": ["se"], "languageCodes": ["sv"], "name": "OpenStreetMap Sweden Web Forum", diff --git a/resources/europe/sweden/se-irc.json b/resources/europe/sweden/se-irc.json index 1cdacce81..81afe31c9 100644 --- a/resources/europe/sweden/se-irc.json +++ b/resources/europe/sweden/se-irc.json @@ -1,7 +1,7 @@ { "id": "se-irc", "type": "irc", - "includeLocations": ["sweden.geojson"], + "includeLocations": ["se"], "countryCodes": ["se"], "languageCodes": ["sv"], "name": "OpenStreetMap Sweden IRC", diff --git a/resources/europe/sweden/se-mailinglist.json b/resources/europe/sweden/se-mailinglist.json index 963319491..aabc94cbc 100644 --- a/resources/europe/sweden/se-mailinglist.json +++ b/resources/europe/sweden/se-mailinglist.json @@ -1,7 +1,7 @@ { "id": "se-mailinglist", "type": "mailinglist", - "includeLocations": ["sweden.geojson"], + "includeLocations": ["se"], "countryCodes": ["se"], "languageCodes": ["sv"], "name": "Talk-se Mailing List", diff --git a/resources/europe/sweden/se-twitter.json b/resources/europe/sweden/se-twitter.json index 5d934698a..204b0effb 100644 --- a/resources/europe/sweden/se-twitter.json +++ b/resources/europe/sweden/se-twitter.json @@ -1,7 +1,7 @@ { "id": "se-twitter", "type": "twitter", - "includeLocations": ["sweden.geojson"], + "includeLocations": ["se"], "countryCodes": ["se"], "languageCodes": ["sv"], "name": "OpenStreetMap Sweden on Twitter", diff --git a/resources/europe/switzerland/ch-irc.json b/resources/europe/switzerland/ch-irc.json index 06c04d052..f00f002c2 100644 --- a/resources/europe/switzerland/ch-irc.json +++ b/resources/europe/switzerland/ch-irc.json @@ -1,7 +1,7 @@ { "id": "ch-irc", "type": "irc", - "includeLocations": ["switzerland.geojson"], + "includeLocations": ["ch"], "countryCodes": ["ch"], "languageCodes": ["de", "en", "fr", "it"], "name": "OpenStreetMap Switzerland IRC", diff --git a/resources/europe/switzerland/ch-mailinglist.json b/resources/europe/switzerland/ch-mailinglist.json index d96876c8e..90b35b811 100644 --- a/resources/europe/switzerland/ch-mailinglist.json +++ b/resources/europe/switzerland/ch-mailinglist.json @@ -1,7 +1,7 @@ { "id": "ch-mailinglist", "type": "mailinglist", - "includeLocations": ["switzerland.geojson"], + "includeLocations": ["ch"], "countryCodes": ["ch"], "name": "Openstreetmap Schweiz/Suisse/Svizzera/Svizra Mailing List", "description": "Mailing list for Switzerland", diff --git a/resources/europe/switzerland/ch-twitter.json b/resources/europe/switzerland/ch-twitter.json index 06a695d61..d495b09a6 100644 --- a/resources/europe/switzerland/ch-twitter.json +++ b/resources/europe/switzerland/ch-twitter.json @@ -1,7 +1,7 @@ { "id": "ch-twitter", "type": "twitter", - "includeLocations": ["switzerland.geojson"], + "includeLocations": ["ch"], "countryCodes": ["ch"], "languageCodes": ["de", "en", "fr", "it"], "name": "OpenStreetMap Switzerland Twitter", diff --git a/resources/europe/switzerland/osm-ch.json b/resources/europe/switzerland/osm-ch.json index e1e5acfd4..7368c44a1 100644 --- a/resources/europe/switzerland/osm-ch.json +++ b/resources/europe/switzerland/osm-ch.json @@ -1,7 +1,7 @@ { "id": "osm-ch", "type": "osm-lc", - "includeLocations": ["switzerland.geojson"], + "includeLocations": ["ch"], "countryCodes": ["ch"], "languageCodes": ["de", "en", "fr", "it"], "name": "OpenStreetMap Switzerland", diff --git a/resources/europe/ukraine/ua-facebook.json b/resources/europe/ukraine/ua-facebook.json index 59b08929e..07bb9e021 100644 --- a/resources/europe/ukraine/ua-facebook.json +++ b/resources/europe/ukraine/ua-facebook.json @@ -1,7 +1,7 @@ { "id": "ua-facebook", "type": "facebook", - "includeLocations": ["ukraine.geojson"], + "includeLocations": ["ua"], "countryCodes": ["ua"], "languageCodes": ["uk"], "name": "OpenStreetMap Ukraine Facebook group", diff --git a/resources/europe/ukraine/ua-forum.json b/resources/europe/ukraine/ua-forum.json index 48c2adf5a..898556d9d 100644 --- a/resources/europe/ukraine/ua-forum.json +++ b/resources/europe/ukraine/ua-forum.json @@ -1,7 +1,7 @@ { "id": "ua-forum", "type": "forum", - "includeLocations": ["ukraine.geojson"], + "includeLocations": ["ua"], "countryCodes": ["ua"], "languageCodes": ["en", "ru", "uk"], "name": "OpenStreetMap Ukraine Forum", diff --git a/resources/europe/ukraine/ua-github.json b/resources/europe/ukraine/ua-github.json index e0fdbc68d..a9eef01a8 100644 --- a/resources/europe/ukraine/ua-github.json +++ b/resources/europe/ukraine/ua-github.json @@ -1,7 +1,7 @@ { "id": "ua-github", "type": "github", - "includeLocations": ["ukraine.geojson"], + "includeLocations": ["ua"], "countryCodes": ["ua"], "languageCodes": ["en", "uk"], "name": "OpenStreetMap Ukraine on GitHub", diff --git a/resources/europe/ukraine/ua-slack.json b/resources/europe/ukraine/ua-slack.json index e6c99f3cb..122d329b4 100644 --- a/resources/europe/ukraine/ua-slack.json +++ b/resources/europe/ukraine/ua-slack.json @@ -1,7 +1,7 @@ { "id": "ua-slack", "type": "slack", - "includeLocations": ["ukraine.geojson"], + "includeLocations": ["ua"], "countryCodes": ["ua"], "languageCodes": ["en", "ru", "uk"], "name": "OpenStreetMap Ukraine Slack", diff --git a/resources/europe/ukraine/ua-telegram.json b/resources/europe/ukraine/ua-telegram.json index de616d0df..3c2e19f55 100644 --- a/resources/europe/ukraine/ua-telegram.json +++ b/resources/europe/ukraine/ua-telegram.json @@ -1,7 +1,7 @@ { "id": "ua-telegram", "type": "telegram", - "includeLocations": ["ukraine.geojson"], + "includeLocations": ["ua"], "countryCodes": ["ua"], "languageCodes": ["en", "ru", "uk"], "name": "@osmUA on Telegram", diff --git a/resources/europe/ukraine/ua-twitter.json b/resources/europe/ukraine/ua-twitter.json index 0df0184e1..99b13e8d0 100644 --- a/resources/europe/ukraine/ua-twitter.json +++ b/resources/europe/ukraine/ua-twitter.json @@ -1,7 +1,7 @@ { "id": "ua-twitter", "type": "twitter", - "includeLocations": ["ukraine.geojson"], + "includeLocations": ["ua"], "countryCodes": ["ua"], "languageCodes": ["uk"], "name": "OpenStreetMap UA Twitter", diff --git a/resources/europe/ukraine/ua-website.json b/resources/europe/ukraine/ua-website.json index c1b896103..a8a00ff6d 100644 --- a/resources/europe/ukraine/ua-website.json +++ b/resources/europe/ukraine/ua-website.json @@ -1,7 +1,7 @@ { "id": "ua-osm", "type": "osm", - "includeLocations": ["ukraine.geojson"], + "includeLocations": ["ua"], "countryCodes": ["ua"], "languageCodes": ["uk"], "name": "OpenStreetMap Website Ukraine", diff --git a/resources/europe/united_kingdom/uk-irc.json b/resources/europe/united_kingdom/uk-irc.json index 1e876d193..f0aa15f96 100644 --- a/resources/europe/united_kingdom/uk-irc.json +++ b/resources/europe/united_kingdom/uk-irc.json @@ -1,7 +1,7 @@ { "id": "gb-irc", "type": "irc", - "includeLocations": ["united_kingdom.geojson"], + "includeLocations": ["gb"], "countryCodes": ["gb"], "languageCodes": ["cy", "en"], "name": "OpenStreetMap United Kingdom IRC", diff --git a/resources/europe/united_kingdom/uk-localchapter.json b/resources/europe/united_kingdom/uk-localchapter.json index 8011e92fb..3cbfaa9bc 100644 --- a/resources/europe/united_kingdom/uk-localchapter.json +++ b/resources/europe/united_kingdom/uk-localchapter.json @@ -1,7 +1,7 @@ { "id": "uk-localchapter", "type": "osm-lc", - "includeLocations": ["united_kingdom.geojson"], + "includeLocations": ["gb"], "countryCodes": ["gb"], "languageCodes": ["en"], "name": "OpenStreetMap UK", diff --git a/resources/europe/united_kingdom/uk-mailinglist.json b/resources/europe/united_kingdom/uk-mailinglist.json index 942a13474..2d003499d 100644 --- a/resources/europe/united_kingdom/uk-mailinglist.json +++ b/resources/europe/united_kingdom/uk-mailinglist.json @@ -1,7 +1,7 @@ { "id": "gb-mailinglist", "type": "mailinglist", - "includeLocations": ["united_kingdom.geojson"], + "includeLocations": ["gb"], "countryCodes": ["gb"], "languageCodes": ["en"], "name": "Talk-gb Mailing List", diff --git a/resources/europe/united_kingdom/uk-twitter.json b/resources/europe/united_kingdom/uk-twitter.json index f7c684461..fb30cf3cf 100644 --- a/resources/europe/united_kingdom/uk-twitter.json +++ b/resources/europe/united_kingdom/uk-twitter.json @@ -1,7 +1,7 @@ { "id": "uk-twitter", "type": "twitter", - "includeLocations": ["united_kingdom.geojson"], + "includeLocations": ["gb"], "countryCodes": ["gb"], "languageCodes": ["en"], "name": "OpenStreetMap UK on Twitter", diff --git a/resources/middle-east/israel/il-telegram.json b/resources/middle-east/israel/il-telegram.json index d17d3fa66..50be00257 100644 --- a/resources/middle-east/israel/il-telegram.json +++ b/resources/middle-east/israel/il-telegram.json @@ -1,7 +1,7 @@ { "id": "il-telegram", "type": "telegram", - "includeLocations": ["israel.geojson"], + "includeLocations": ["il"], "countryCodes": ["il"], "name": "OSM Israel on Telegram", "description": "A Telegram group for the OpenStreetMap community in Israel: {url}", diff --git a/resources/middle-east/saudi_arabia/sa-telegram.json b/resources/middle-east/saudi_arabia/sa-telegram.json index 275bcf6b5..16cfc3066 100644 --- a/resources/middle-east/saudi_arabia/sa-telegram.json +++ b/resources/middle-east/saudi_arabia/sa-telegram.json @@ -1,7 +1,7 @@ { "id": "sa-telegram", "type": "telegram", - "includeLocations": ["saudi_arabia.geojson"], + "includeLocations": ["sa"], "countryCodes": ["sa"], "name": "OSM Saudi Arabia on Telegram", "description": "A Telegram group for the OpenStreetMap community in Saudi Arabia: {url}", diff --git a/resources/north-america/canada/OSM-CA-Slack.json b/resources/north-america/canada/OSM-CA-Slack.json index 6444b42ba..a3d9f88b8 100644 --- a/resources/north-america/canada/OSM-CA-Slack.json +++ b/resources/north-america/canada/OSM-CA-Slack.json @@ -1,7 +1,7 @@ { "id": "OSM-CA-Slack", "type": "slack", - "includeLocations": ["canada_full.geojson"], + "includeLocations": ["ca"], "countryCodes": ["ca"], "languageCodes": ["en", "fr"], "name": "OSM-CA Slack", diff --git a/resources/north-america/cuba/OSM-CU-telegram.json b/resources/north-america/cuba/OSM-CU-telegram.json index 02188e603..de937859b 100644 --- a/resources/north-america/cuba/OSM-CU-telegram.json +++ b/resources/north-america/cuba/OSM-CU-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-CU-telegram", "type": "telegram", - "includeLocations": ["cuba.geojson"], + "includeLocations": ["cu"], "countryCodes": ["cu"], "languageCodes": ["es"], "name": "OSM Cuba on Telegram", diff --git a/resources/north-america/nicaragua/ni-facebook.json b/resources/north-america/nicaragua/ni-facebook.json index 62f038634..ac2de94db 100644 --- a/resources/north-america/nicaragua/ni-facebook.json +++ b/resources/north-america/nicaragua/ni-facebook.json @@ -1,7 +1,7 @@ { "id": "ni-facebook", "type": "facebook", - "includeLocations": ["nicaragua.geojson"], + "includeLocations": ["ni"], "countryCodes": ["ni"], "languageCodes": ["es"], "name": "OpenStreetMap NI Community", diff --git a/resources/north-america/nicaragua/ni-mailinglist.json b/resources/north-america/nicaragua/ni-mailinglist.json index 67e023840..d5fb79d2b 100644 --- a/resources/north-america/nicaragua/ni-mailinglist.json +++ b/resources/north-america/nicaragua/ni-mailinglist.json @@ -1,7 +1,7 @@ { "id": "ni-mailinglist", "type": "mailinglist", - "includeLocations": ["nicaragua.geojson"], + "includeLocations": ["ni"], "countryCodes": ["ni"], "languageCodes": ["es"], "name": "Talk-ni Mailing List", diff --git a/resources/north-america/nicaragua/ni-telegram.json b/resources/north-america/nicaragua/ni-telegram.json index b3969896e..2ffdb408d 100644 --- a/resources/north-america/nicaragua/ni-telegram.json +++ b/resources/north-america/nicaragua/ni-telegram.json @@ -1,7 +1,7 @@ { "id": "ni-telegram", "type": "telegram", - "includeLocations": ["nicaragua.geojson"], + "includeLocations": ["ni"], "countryCodes": ["ni"], "languageCodes": ["es"], "name": "OSM Nicaragua on Telegram", diff --git a/resources/north-america/nicaragua/ni-twitter.json b/resources/north-america/nicaragua/ni-twitter.json index e680fdaea..0ee9705ba 100644 --- a/resources/north-america/nicaragua/ni-twitter.json +++ b/resources/north-america/nicaragua/ni-twitter.json @@ -1,7 +1,7 @@ { "id": "ni-twitter", "type": "twitter", - "includeLocations": ["nicaragua.geojson"], + "includeLocations": ["ni"], "countryCodes": ["ni"], "languageCodes": ["es"], "name": "OpenStreetMap Nicaragua Twitter", diff --git a/resources/north-america/nicaragua/osm-ni.json b/resources/north-america/nicaragua/osm-ni.json index 0c454bc5f..58f5fd94e 100644 --- a/resources/north-america/nicaragua/osm-ni.json +++ b/resources/north-america/nicaragua/osm-ni.json @@ -1,7 +1,7 @@ { "id": "osm-ni", "type": "group", - "includeLocations": ["nicaragua.geojson"], + "includeLocations": ["ni"], "countryCodes": ["ni"], "languageCodes": ["es"], "name": "MapaNica.net", diff --git a/resources/north-america/united_states/OSM-US-Slack.json b/resources/north-america/united_states/OSM-US-Slack.json index 5ee81a730..69f6208a7 100644 --- a/resources/north-america/united_states/OSM-US-Slack.json +++ b/resources/north-america/united_states/OSM-US-Slack.json @@ -1,7 +1,7 @@ { "id": "OSM-US-Slack", "type": "slack", - "includeLocations": ["usa_full.geojson"], + "includeLocations": ["us"], "countryCodes": ["us"], "languageCodes": ["en"], "name": "OpenStreetMap US Slack", diff --git a/resources/north-america/united_states/OSM-US.json b/resources/north-america/united_states/OSM-US.json index ed371d357..43c2676f9 100644 --- a/resources/north-america/united_states/OSM-US.json +++ b/resources/north-america/united_states/OSM-US.json @@ -1,7 +1,7 @@ { "id": "OSM-US", "type": "group", - "includeLocations": ["usa_full.geojson"], + "includeLocations": ["us"], "countryCodes": ["us"], "languageCodes": ["en"], "name": "OpenStreetMap US", diff --git a/resources/oceania/Maptime-Oceania-Slack.json b/resources/oceania/Maptime-Oceania-Slack.json index bf3ebf4ee..0183a71ad 100644 --- a/resources/oceania/Maptime-Oceania-Slack.json +++ b/resources/oceania/Maptime-Oceania-Slack.json @@ -1,7 +1,7 @@ { "id": "Maptime-Oceania-Slack", "type": "slack", - "includeLocations": ["oceania_full.geojson"], + "includeLocations": ["009"], "countryCodes": ["au", "nz"], "languageCodes": ["en"], "name": "Maptime Oceania Slack", diff --git a/resources/oceania/australia/talk-au.json b/resources/oceania/australia/talk-au.json index 0f0c0bbc1..8aa0fad0b 100644 --- a/resources/oceania/australia/talk-au.json +++ b/resources/oceania/australia/talk-au.json @@ -1,7 +1,7 @@ { "id": "talk-au", "type": "mailinglist", - "includeLocations": ["australia_full.geojson"], + "includeLocations": ["au"], "countryCodes": ["au"], "languageCodes": ["en"], "name": "Talk-au Mailing List", diff --git a/resources/oceania/new_zealand/talk-nz.json b/resources/oceania/new_zealand/talk-nz.json index ddedcf1ba..9091ad4b9 100644 --- a/resources/oceania/new_zealand/talk-nz.json +++ b/resources/oceania/new_zealand/talk-nz.json @@ -1,7 +1,7 @@ { "id": "talk-nz", "type": "mailinglist", - "includeLocations": ["new_zealand_full.geojson"], + "includeLocations": ["nz"], "countryCodes": ["nz"], "languageCodes": ["en"], "name": "Talk-nz Mailing List", diff --git a/resources/south-america/argentina/OSM-AR-facebook.json b/resources/south-america/argentina/OSM-AR-facebook.json index c06d03df8..724273fc6 100644 --- a/resources/south-america/argentina/OSM-AR-facebook.json +++ b/resources/south-america/argentina/OSM-AR-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-AR-facebook", "type": "facebook", - "includeLocations": ["argentina.geojson"], + "includeLocations": ["ar"], "countryCodes": ["ar"], "languageCodes": ["es"], "name": "OpenStreetMap Argentina Facebook", diff --git a/resources/south-america/argentina/OSM-AR-forum.json b/resources/south-america/argentina/OSM-AR-forum.json index df3b94687..a6c8d050a 100644 --- a/resources/south-america/argentina/OSM-AR-forum.json +++ b/resources/south-america/argentina/OSM-AR-forum.json @@ -1,7 +1,7 @@ { "id": "OSM-AR-forum", "type": "forum", - "includeLocations": ["argentina.geojson"], + "includeLocations": ["ar"], "countryCodes": ["ar"], "languageCodes": ["es"], "name": "OpenStreetMap Argentina web forum", diff --git a/resources/south-america/argentina/OSM-AR-irc.json b/resources/south-america/argentina/OSM-AR-irc.json index df20dbc1f..4edb796f8 100644 --- a/resources/south-america/argentina/OSM-AR-irc.json +++ b/resources/south-america/argentina/OSM-AR-irc.json @@ -1,7 +1,7 @@ { "id": "OSM-AR-irc", "type": "irc", - "includeLocations": ["argentina.geojson"], + "includeLocations": ["ar"], "countryCodes": ["ar"], "languageCodes": ["es"], "name": "OpenStreetMap Argentina IRC", diff --git a/resources/south-america/argentina/OSM-AR-mailinglist.json b/resources/south-america/argentina/OSM-AR-mailinglist.json index ecd23e2c1..61ed1a621 100644 --- a/resources/south-america/argentina/OSM-AR-mailinglist.json +++ b/resources/south-america/argentina/OSM-AR-mailinglist.json @@ -1,7 +1,7 @@ { "id": "OSM-AR-mailinglist", "type": "mailinglist", - "includeLocations": ["argentina.geojson"], + "includeLocations": ["ar"], "countryCodes": ["ar"], "languageCodes": ["es"], "name": "Talk-ar Mailing List", diff --git a/resources/south-america/argentina/OSM-AR-telegram.json b/resources/south-america/argentina/OSM-AR-telegram.json index 967255894..75a0ed249 100644 --- a/resources/south-america/argentina/OSM-AR-telegram.json +++ b/resources/south-america/argentina/OSM-AR-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-AR-telegram", "type": "telegram", - "includeLocations": ["argentina.geojson"], + "includeLocations": ["ar"], "countryCodes": ["ar"], "languageCodes": ["es"], "name": "OpenStreetMap Argentina Telegram", diff --git a/resources/south-america/argentina/OSM-AR-twitter.json b/resources/south-america/argentina/OSM-AR-twitter.json index f60838248..e01e58992 100644 --- a/resources/south-america/argentina/OSM-AR-twitter.json +++ b/resources/south-america/argentina/OSM-AR-twitter.json @@ -1,7 +1,7 @@ { "id": "OSM-AR-twitter", "type": "twitter", - "includeLocations": ["argentina.geojson"], + "includeLocations": ["ar"], "countryCodes": ["ar"], "languageCodes": ["es"], "name": "OpenStreetMap Argentina Twitter", diff --git a/resources/south-america/bolivia/OSM-BO-mailinglist.json b/resources/south-america/bolivia/OSM-BO-mailinglist.json index 933fbeec9..849d22368 100644 --- a/resources/south-america/bolivia/OSM-BO-mailinglist.json +++ b/resources/south-america/bolivia/OSM-BO-mailinglist.json @@ -1,7 +1,7 @@ { "id": "OSM-BO-mailinglist", "type": "mailinglist", - "includeLocations": ["bolivia.geojson"], + "includeLocations": ["bo"], "countryCodes": ["bo"], "languageCodes": ["es"], "name": "Talk-bo Mailing List", diff --git a/resources/south-america/brazil/OSM-br-discord.json b/resources/south-america/brazil/OSM-br-discord.json index 032ba4e04..b2332d733 100644 --- a/resources/south-america/brazil/OSM-br-discord.json +++ b/resources/south-america/brazil/OSM-br-discord.json @@ -1,7 +1,7 @@ { "id": "OSM-br-discord", "type": "discord", - "includeLocations": ["brazil.geojson"], + "includeLocations": ["br"], "countryCodes": ["br"], "languageCodes": ["pt"], "name": "OpenStreetMap Brasil Discord", diff --git a/resources/south-america/brazil/OSM-br-mailinglist.json b/resources/south-america/brazil/OSM-br-mailinglist.json index 239663072..f5c1e2c31 100644 --- a/resources/south-america/brazil/OSM-br-mailinglist.json +++ b/resources/south-america/brazil/OSM-br-mailinglist.json @@ -1,7 +1,7 @@ { "id": "OSM-br-mailinglist", "type": "mailinglist", - "includeLocations": ["brazil.geojson"], + "includeLocations": ["br"], "countryCodes": ["br"], "languageCodes": ["pt"], "name": "Talk-br Mailing List", diff --git a/resources/south-america/brazil/OSM-br-telegram.json b/resources/south-america/brazil/OSM-br-telegram.json index fa1fcc9d8..a957b1efd 100644 --- a/resources/south-america/brazil/OSM-br-telegram.json +++ b/resources/south-america/brazil/OSM-br-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-br-telegram", "type": "telegram", - "includeLocations": ["brazil.geojson"], + "includeLocations": ["br"], "countryCodes": ["br"], "languageCodes": ["pt"], "name": "OpenStreetMap Brasil Telegram", diff --git a/resources/south-america/brazil/OSM-br-twitter.json b/resources/south-america/brazil/OSM-br-twitter.json index 44b3e6b58..eff99bd94 100644 --- a/resources/south-america/brazil/OSM-br-twitter.json +++ b/resources/south-america/brazil/OSM-br-twitter.json @@ -1,7 +1,7 @@ { "id": "OSM-br-twitter", "type": "twitter", - "includeLocations": ["brazil.geojson"], + "includeLocations": ["br"], "countryCodes": ["br"], "languageCodes": ["pt"], "name": "OpenStreetMap Brasil Twitter", diff --git a/resources/south-america/brazil/RS-telegram.json b/resources/south-america/brazil/RS-telegram.json index 26431cac4..ae4c91867 100644 --- a/resources/south-america/brazil/RS-telegram.json +++ b/resources/south-america/brazil/RS-telegram.json @@ -1,7 +1,7 @@ { "id": "RS-telegram", "type": "telegram", - "includeLocations": ["rs.geojson"], + "includeLocations": ["rs"], "countryCodes": ["br"], "languageCodes": ["pt"], "name": "OpenStreetMap Rio Grande do Sul Telegram Group", diff --git a/resources/south-america/chile/OSM-CL-facebook.json b/resources/south-america/chile/OSM-CL-facebook.json index 840fb1a78..2c61ec1b6 100644 --- a/resources/south-america/chile/OSM-CL-facebook.json +++ b/resources/south-america/chile/OSM-CL-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-CL-facebook", "type": "facebook", - "includeLocations": ["chile.geojson"], + "includeLocations": ["cl"], "countryCodes": ["cl"], "languageCodes": ["es"], "name": "OpenStreetMap Chile Facebook", diff --git a/resources/south-america/chile/OSM-CL-mailinglist.json b/resources/south-america/chile/OSM-CL-mailinglist.json index 08c6d5740..3a168ee53 100644 --- a/resources/south-america/chile/OSM-CL-mailinglist.json +++ b/resources/south-america/chile/OSM-CL-mailinglist.json @@ -1,7 +1,7 @@ { "id": "OSM-CL-mailinglist", "type": "mailinglist", - "includeLocations": ["chile.geojson"], + "includeLocations": ["cl"], "countryCodes": ["cl"], "languageCodes": ["es"], "name": "Talk-cl Mailing List", diff --git a/resources/south-america/chile/OSM-CL-telegram.json b/resources/south-america/chile/OSM-CL-telegram.json index 5c84af824..2565c8c14 100644 --- a/resources/south-america/chile/OSM-CL-telegram.json +++ b/resources/south-america/chile/OSM-CL-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-CL-telegram", "type": "telegram", - "includeLocations": ["chile.geojson"], + "includeLocations": ["cl"], "countryCodes": ["cl"], "languageCodes": ["es"], "name": "OpenStreetMap Chile Telegram", diff --git a/resources/south-america/chile/OSM-CL-twitter.json b/resources/south-america/chile/OSM-CL-twitter.json index a642e3ef9..a8ad7442e 100644 --- a/resources/south-america/chile/OSM-CL-twitter.json +++ b/resources/south-america/chile/OSM-CL-twitter.json @@ -1,7 +1,7 @@ { "id": "OSM-CL-twitter", "type": "twitter", - "includeLocations": ["chile.geojson"], + "includeLocations": ["cl"], "countryCodes": ["cl"], "languageCodes": ["es"], "name": "OpenStreetMap Chile Twitter", diff --git a/resources/south-america/colombia/OSM-CO-facebook.json b/resources/south-america/colombia/OSM-CO-facebook.json index bdd07ec8e..ff1d8296e 100644 --- a/resources/south-america/colombia/OSM-CO-facebook.json +++ b/resources/south-america/colombia/OSM-CO-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-CO-facebook", "type": "facebook", - "includeLocations": ["colombia.geojson"], + "includeLocations": ["co"], "countryCodes": ["co"], "languageCodes": ["es"], "name": "OpenStreetMap Colombia Facebook", diff --git a/resources/south-america/colombia/OSM-CO-mailinglist.json b/resources/south-america/colombia/OSM-CO-mailinglist.json index 4077b1d24..f78c6096d 100644 --- a/resources/south-america/colombia/OSM-CO-mailinglist.json +++ b/resources/south-america/colombia/OSM-CO-mailinglist.json @@ -1,7 +1,7 @@ { "id": "OSM-CO-mailinglist", "type": "mailinglist", - "includeLocations": ["colombia.geojson"], + "includeLocations": ["co"], "countryCodes": ["co"], "languageCodes": ["es"], "name": "Talk-co Mailing List", diff --git a/resources/south-america/colombia/OSM-CO-telegram.json b/resources/south-america/colombia/OSM-CO-telegram.json index 99210944d..5bb144449 100644 --- a/resources/south-america/colombia/OSM-CO-telegram.json +++ b/resources/south-america/colombia/OSM-CO-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-CO-telegram", "type": "telegram", - "includeLocations": ["colombia.geojson"], + "includeLocations": ["co"], "countryCodes": ["co"], "languageCodes": ["es"], "name": "OSM Colombia on Telegram", diff --git a/resources/south-america/colombia/OSM-CO-twitter.json b/resources/south-america/colombia/OSM-CO-twitter.json index 46899b22d..29d76aad0 100644 --- a/resources/south-america/colombia/OSM-CO-twitter.json +++ b/resources/south-america/colombia/OSM-CO-twitter.json @@ -1,7 +1,7 @@ { "id": "OSM-CO-twitter", "type": "twitter", - "includeLocations": ["colombia.geojson"], + "includeLocations": ["co"], "countryCodes": ["co"], "languageCodes": ["es"], "name": "OpenStreetMap Colombia Twitter", diff --git a/resources/south-america/colombia/OSM-CO.json b/resources/south-america/colombia/OSM-CO.json index be34bf0e1..650a5912b 100644 --- a/resources/south-america/colombia/OSM-CO.json +++ b/resources/south-america/colombia/OSM-CO.json @@ -1,7 +1,7 @@ { "id": "OSM-CO", "type": "group", - "includeLocations": ["colombia.geojson"], + "includeLocations": ["co"], "countryCodes": ["co"], "languageCodes": ["es"], "name": "OpenStreetMap Colombia", diff --git a/resources/south-america/ecuador/OSM-EC-telegram.json b/resources/south-america/ecuador/OSM-EC-telegram.json index 1351ccfe5..0d009367a 100644 --- a/resources/south-america/ecuador/OSM-EC-telegram.json +++ b/resources/south-america/ecuador/OSM-EC-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-EC-telegram", "type": "telegram", - "includeLocations": ["ecuador.geojson"], + "includeLocations": ["ec"], "countryCodes": ["ec"], "languageCodes": ["es"], "name": "OSM Ecuador on Telegram", diff --git a/resources/south-america/paraguay/OSM-PY-telegram.json b/resources/south-america/paraguay/OSM-PY-telegram.json index 16540d2d6..d1a70fdf9 100644 --- a/resources/south-america/paraguay/OSM-PY-telegram.json +++ b/resources/south-america/paraguay/OSM-PY-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-PY-telegram", "type": "telegram", - "includeLocations": ["paraguay.geojson"], + "includeLocations": ["py"], "countryCodes": ["py"], "languageCodes": ["es"], "name": "OSM Paraguay on Telegram", diff --git a/resources/south-america/peru/OSM-PE-facebook.json b/resources/south-america/peru/OSM-PE-facebook.json index c2cf0be28..3e3706ee9 100644 --- a/resources/south-america/peru/OSM-PE-facebook.json +++ b/resources/south-america/peru/OSM-PE-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-PE-facebook", "type": "facebook", - "includeLocations": ["peru.geojson"], + "includeLocations": ["pe"], "countryCodes": ["pe"], "languageCodes": ["es"], "name": "OpenStreetMap Peru Facebook", diff --git a/resources/south-america/peru/OSM-PE-mailinglist.json b/resources/south-america/peru/OSM-PE-mailinglist.json index cee739c28..42f36d96c 100644 --- a/resources/south-america/peru/OSM-PE-mailinglist.json +++ b/resources/south-america/peru/OSM-PE-mailinglist.json @@ -1,7 +1,7 @@ { "id": "OSM-PE-mailinglist", "type": "mailinglist", - "includeLocations": ["peru.geojson"], + "includeLocations": ["pe"], "countryCodes": ["pe"], "languageCodes": ["es"], "name": "Talk-pe Mailing List", diff --git a/resources/south-america/peru/OSM-PE-matrix.json b/resources/south-america/peru/OSM-PE-matrix.json index 7fb8b7ef6..17cb7d2e1 100644 --- a/resources/south-america/peru/OSM-PE-matrix.json +++ b/resources/south-america/peru/OSM-PE-matrix.json @@ -1,7 +1,7 @@ { "id": "OSM-PE-matrix", "type": "matrix", - "includeLocations": ["peru.geojson"], + "includeLocations": ["pe"], "countryCodes": ["pe"], "languageCodes": ["es"], "name": "OpenStreetMap Peru Matrix Chat", diff --git a/resources/south-america/peru/OSM-PE-telegram.json b/resources/south-america/peru/OSM-PE-telegram.json index 9231ac36d..e1dbfc268 100644 --- a/resources/south-america/peru/OSM-PE-telegram.json +++ b/resources/south-america/peru/OSM-PE-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-PE-telegram", "type": "telegram", - "includeLocations": ["peru.geojson"], + "includeLocations": ["pe"], "countryCodes": ["pe"], "languageCodes": ["es"], "name": "OpenStreetMap Peru Telegram", diff --git a/resources/south-america/peru/OSM-PE-twitter.json b/resources/south-america/peru/OSM-PE-twitter.json index 6372287de..8ab781e0d 100644 --- a/resources/south-america/peru/OSM-PE-twitter.json +++ b/resources/south-america/peru/OSM-PE-twitter.json @@ -1,7 +1,7 @@ { "id": "OSM-PE-twitter", "type": "twitter", - "includeLocations": ["peru.geojson"], + "includeLocations": ["pe"], "countryCodes": ["pe"], "languageCodes": ["es"], "name": "OpenStreetMap Peru Twitter", diff --git a/resources/south-america/peru/OSM-PE.json b/resources/south-america/peru/OSM-PE.json index 7da7957b9..64a3bea27 100644 --- a/resources/south-america/peru/OSM-PE.json +++ b/resources/south-america/peru/OSM-PE.json @@ -1,7 +1,7 @@ { "id": "OSM-PE", "type": "osm", - "includeLocations": ["peru.geojson"], + "includeLocations": ["pe"], "countryCodes": ["ar"], "languageCodes": ["es"], "name": "OpenStreetMap Peru", diff --git a/resources/south-america/uruguay/uy-forum.json b/resources/south-america/uruguay/uy-forum.json index 22f70bd3a..02f106ff3 100644 --- a/resources/south-america/uruguay/uy-forum.json +++ b/resources/south-america/uruguay/uy-forum.json @@ -1,7 +1,7 @@ { "id": "uy-forum", "type": "forum", - "includeLocations": ["uruguay.geojson"], + "includeLocations": ["uy"], "countryCodes": ["uy"], "languageCodes": ["es"], "name": "OpenStreetMap UY forum", diff --git a/resources/south-america/uruguay/uy-irc.json b/resources/south-america/uruguay/uy-irc.json index 55eb6a082..f3d507ece 100644 --- a/resources/south-america/uruguay/uy-irc.json +++ b/resources/south-america/uruguay/uy-irc.json @@ -1,7 +1,7 @@ { "id": "uy-irc", "type": "irc", - "includeLocations": ["uruguay.geojson"], + "includeLocations": ["uy"], "countryCodes": ["uy"], "languageCodes": ["es"], "name": "OpenStreetMap Uruguay on IRC", diff --git a/resources/south-america/uruguay/uy-mailinglist.json b/resources/south-america/uruguay/uy-mailinglist.json index 29e5c6b85..2a94e212c 100644 --- a/resources/south-america/uruguay/uy-mailinglist.json +++ b/resources/south-america/uruguay/uy-mailinglist.json @@ -1,7 +1,7 @@ { "id": "uy-mailinglist", "type": "mailinglist", - "includeLocations": ["uruguay.geojson"], + "includeLocations": ["uy"], "countryCodes": ["uy"], "languageCodes": ["es"], "name": "Talk-uy Mailing List", diff --git a/resources/south-america/venezuela/ve-forum.json b/resources/south-america/venezuela/ve-forum.json index bbd99b118..8f52039e7 100644 --- a/resources/south-america/venezuela/ve-forum.json +++ b/resources/south-america/venezuela/ve-forum.json @@ -1,7 +1,7 @@ { "id": "ve-forum", "type": "forum", - "includeLocations": ["venezuela.geojson"], + "includeLocations": ["ve"], "countryCodes": ["ve"], "languageCodes": ["es"], "name": "OpenStreetMap VE Forum", diff --git a/resources/south-america/venezuela/ve-mailinglist.json b/resources/south-america/venezuela/ve-mailinglist.json index 6172159d2..cff857544 100644 --- a/resources/south-america/venezuela/ve-mailinglist.json +++ b/resources/south-america/venezuela/ve-mailinglist.json @@ -1,7 +1,7 @@ { "id": "ve-mailinglist", "type": "mailinglist", - "includeLocations": ["venezuela.geojson"], + "includeLocations": ["ve"], "countryCodes": ["ve"], "languageCodes": ["es"], "name": "Talk-ve Mailing List", diff --git a/resources/south-america/venezuela/ve-telegram.json b/resources/south-america/venezuela/ve-telegram.json index 9b097efb9..fefcfbb82 100644 --- a/resources/south-america/venezuela/ve-telegram.json +++ b/resources/south-america/venezuela/ve-telegram.json @@ -1,7 +1,7 @@ { "id": "ve-telegram", "type": "telegram", - "includeLocations": ["venezuela.geojson"], + "includeLocations": ["ve"], "countryCodes": ["ve"], "languageCodes": ["es"], "name": "OpenStreetMap Venezuela Telegram", From 29075e987e4ea38adf2e47895c31d033976d5b00 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 14 Nov 2019 22:45:06 -0500 Subject: [PATCH 14/35] Remove conversion code --- build.js | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/build.js b/build.js index 9497731fb..72847bfd0 100644 --- a/build.js +++ b/build.js @@ -21,9 +21,6 @@ const resourceSchema = require('./schema/resource.json'); let v = new Validator(); v.addSchema(geojsonSchema, 'http://json.schemastore.org/geojson.json'); -const execSync = require('child_process').execSync; -let _featurefiles = {}; - buildAll(); @@ -111,7 +108,6 @@ function generateFeatures() { process.stdout.write(Object.keys(files).length + '\n'); -_featurefiles = files; return features; } @@ -121,8 +117,6 @@ function generateResources(tstrings, features) { let files = {}; process.stdout.write('Resources:'); -let _removals = new Set(); - glob.sync(__dirname + '/resources/**/*.json').forEach(file => { let contents = fs.readFileSync(file, 'utf8'); @@ -135,27 +129,6 @@ let _removals = new Set(); process.exit(1); } - - -// TRIVIAL GEOJSON -> COUNTRY-CODER REPLACEMENTS -let loc = resource.includeLocations[0]; -if (!Array.isArray(loc) && !/^\S+\.geojson$/i.test(loc)) { - let id = loc.replace('.geojson', ''); - let foundFile = _featurefiles[id]; - if (foundFile) { - let ccmatch = CountryCoder.feature(id.replace('_full', '')); - if (ccmatch) { - let replacement = ccmatch.properties.iso1A2 || ccmatch.properties.m49; - console.log(' Country Coder Match: ' - + id + ' -> ' - + ccmatch.properties.nameEn + ' (' + replacement + ')' - ); - resource.includeLocations[0] = replacement.toLowerCase(); - _removals.add(foundFile); - } - } -} - // sort keys let obj = {}; if (resource.id) { obj.id = resource.id; } @@ -245,12 +218,6 @@ if (!Array.isArray(loc) && !/^\S+\.geojson$/i.test(loc)) { process.stdout.write(Object.keys(files).length + '\n'); - -_removals.forEach(foundFile => { - console.log(' REMOVE "' + foundFile + '"'); - execSync('git rm "' + foundFile + '"'); -}); - return resources; } From fe2726ef48a2b0d2ebd864665c7d95c321b70969 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 15 Nov 2019 09:48:42 -0500 Subject: [PATCH 15/35] Remove korean, latam geojsons, use country coder for these too --- features/antarctica/.gitkeep | 0 features/asia/korea/korea.geojson | 34 ------ features/asia/north_korea/north_korea.geojson | 50 --------- features/asia/south_korea/south_korea.geojson | 35 ------ features/world/.gitkeep | 0 features/world/latam.geojson | 101 ------------------ .../asia/korea/OSM-Korea-mailinglist.json | 2 +- resources/asia/korea/OSM-Korea-telegram.json | 2 +- 8 files changed, 2 insertions(+), 222 deletions(-) delete mode 100644 features/antarctica/.gitkeep delete mode 100644 features/asia/korea/korea.geojson delete mode 100644 features/asia/north_korea/north_korea.geojson delete mode 100644 features/asia/south_korea/south_korea.geojson delete mode 100644 features/world/.gitkeep delete mode 100644 features/world/latam.geojson diff --git a/features/antarctica/.gitkeep b/features/antarctica/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/features/asia/korea/korea.geojson b/features/asia/korea/korea.geojson deleted file mode 100644 index 07bea872a..000000000 --- a/features/asia/korea/korea.geojson +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "Feature", - "id": "korea", - "properties": {"area": 545707.12}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [125, 33], - [123.5, 38.4], - [124.38, 40.12], - [124.87, 40.47], - [126.05, 40.95], - [126.6, 41.6], - [126.9, 41.8], - [127.25, 41.5], - [128.2, 41.4], - [128.3, 41.56], - [128.04, 42.03], - [128.95, 42.03], - [129.35, 42.44], - [129.69, 42.44], - [129.88, 43], - [130.2, 42.9], - [130.3, 42.66], - [130.5, 42.6], - [130.7, 42.3], - [132.2, 37.2], - [127.3, 33], - [125, 33] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/north_korea/north_korea.geojson b/features/asia/north_korea/north_korea.geojson deleted file mode 100644 index 681b64c64..000000000 --- a/features/asia/north_korea/north_korea.geojson +++ /dev/null @@ -1,50 +0,0 @@ -{ - "type": "Feature", - "id": "north_korea", - "properties": {"area": 219680.43}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [125, 37.2], - [123.5, 38.4], - [124.38, 40.12], - [124.87, 40.47], - [126.05, 40.95], - [126.6, 41.6], - [126.9, 41.8], - [127.25, 41.5], - [128.2, 41.4], - [128.3, 41.56], - [128.04, 42.03], - [128.95, 42.03], - [129.35, 42.44], - [129.69, 42.44], - [129.88, 43], - [130.2, 42.9], - [130.3, 42.66], - [130.5, 42.6], - [130.7, 42.3], - [131, 39], - [128.33, 38.61], - [128.28, 38.42], - [128.08, 38.32], - [127.14, 38.32], - [126.99, 38.21], - [126.95, 38.14], - [126.88, 38.1], - [126.82, 38], - [126.67, 37.95], - [126.69, 37.84], - [126.667, 37.828], - [126.66, 37.79], - [126.585, 37.76], - [126.474, 37.81], - [126.42, 37.845], - [126.2, 37.82], - [126.18, 37.74], - [125, 37.2] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/south_korea/south_korea.geojson b/features/asia/south_korea/south_korea.geojson deleted file mode 100644 index f88e2b1fa..000000000 --- a/features/asia/south_korea/south_korea.geojson +++ /dev/null @@ -1,35 +0,0 @@ -{ - "type": "Feature", - "id": "south_korea", - "properties": {"area": 262060.8}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [125, 33], - [125, 37.2], - [126.18, 37.74], - [126.2, 37.82], - [126.42, 37.845], - [126.474, 37.81], - [126.585, 37.76], - [126.66, 37.79], - [126.667, 37.828], - [126.69, 37.84], - [126.67, 37.95], - [126.82, 38], - [126.88, 38.1], - [126.95, 38.14], - [126.99, 38.21], - [127.14, 38.32], - [128.08, 38.32], - [128.28, 38.42], - [128.33, 38.61], - [131, 39], - [131.3, 36.6], - [127.3, 33], - [125, 33] - ] - ] - } -} \ No newline at end of file diff --git a/features/world/.gitkeep b/features/world/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/features/world/latam.geojson b/features/world/latam.geojson deleted file mode 100644 index 17063b8b6..000000000 --- a/features/world/latam.geojson +++ /dev/null @@ -1,101 +0,0 @@ -{ - "type": "Feature", - "id": "latam", - "properties": {"area": 61582904.13}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-123, 14], - [-117.45574, 32.58935], - [-117.23326, 32.52453], - [-116.43813, 32.58992], - [-115.96571, 32.62752], - [-115.48953, 32.66395], - [-114.71211, 32.7179], - [-114.7455, 32.65614], - [-114.79837, 32.6067], - [-114.81091, 32.49615], - [-111.06611, 31.33282], - [-109.5397, 31.33311], - [-108.86816, 31.33165], - [-108.2131, 31.33135], - [-108.21447, 31.78655], - [-106.52962, 31.78363], - [-106.51966, 31.77225], - [-106.50867, 31.76116], - [-106.4867, 31.74715], - [-106.4716, 31.75123], - [-106.46851, 31.75912], - [-106.45409, 31.76554], - [-106.43898, 31.75678], - [-106.41426, 31.75007], - [-106.37959, 31.7305], - [-106.37409, 31.71269], - [-106.35075, 31.69575], - [-106.33289, 31.65835], - [-106.30543, 31.6224], - [-106.28002, 31.56186], - [-106.24741, 31.54314], - [-106.21101, 31.47347], - [-106.17805, 31.45766], - [-106.14956, 31.43335], - [-106.00502, 31.38881], - [-105.76607, 31.16816], - [-105.38292, 30.84683], - [-104.9121, 30.63644], - [-104.67293, 29.91804], - [-104.39415, 29.56151], - [-103.20921, 28.98742], - [-102.4182, 29.81056], - [-101.4514, 29.77242], - [-100.96779, 29.34866], - [-100.9005, 29.31454], - [-100.69725, 29.14257], - [-100.62309, 28.91322], - [-100.51598, 28.749], - [-100.51186, 28.70474], - [-100.50293, 28.66227], - [-100.40337, 28.58271], - [-100.01472, 28.06956], - [-99.53957, 27.59837], - [-99.53339, 27.57859], - [-99.51279, 27.5655], - [-99.52103, 27.55607], - [-99.52824, 27.49731], - [-99.5018, 27.50066], - [-99.48601, 27.49426], - [-99.47777, 27.48299], - [-99.48498, 27.4635], - [-99.49596, 27.44857], - [-99.48669, 27.39067], - [-99.53476, 27.31321], - [-99.44344, 27.25951], - [-99.45717, 27.03222], - [-99.07127, 26.42692], - [-98.9978, 26.39248], - [-98.46771, 26.21028], - [-98.25966, 26.09194], - [-98.08388, 26.05061], - [-97.95067, 26.06172], - [-97.79205, 26.05185], - [-97.57919, 25.95002], - [-97.51328, 25.89073], - [-97.46315, 25.87899], - [-97.41783, 25.83821], - [-97.34367, 25.92594], - [-97, 26], - [-81, 24], - [-73.5, 20.5], - [-64, 20], - [-29, 0], - [-29, -20], - [-63, -51], - [-62, -57], - [-72, -57], - [-113, -30], - [-123, 14] - ] - ] - } -} \ No newline at end of file diff --git a/resources/asia/korea/OSM-Korea-mailinglist.json b/resources/asia/korea/OSM-Korea-mailinglist.json index 7e7128cf3..bb599b151 100644 --- a/resources/asia/korea/OSM-Korea-mailinglist.json +++ b/resources/asia/korea/OSM-Korea-mailinglist.json @@ -1,7 +1,7 @@ { "id": "OSM-Korea-mailinglist", "type": "mailinglist", - "includeLocations": ["korea.geojson"], + "includeLocations": ["kp", "kr"], "countryCodes": ["kp", "kr"], "languageCodes": ["en", "ko"], "name": "OpenStreetMap Korea Mailinglist", diff --git a/resources/asia/korea/OSM-Korea-telegram.json b/resources/asia/korea/OSM-Korea-telegram.json index e7c163ca4..6f2556c34 100644 --- a/resources/asia/korea/OSM-Korea-telegram.json +++ b/resources/asia/korea/OSM-Korea-telegram.json @@ -1,7 +1,7 @@ { "id": "OSM-Korea-telegram", "type": "telegram", - "includeLocations": ["korea.geojson"], + "includeLocations": ["kp", "kr"], "countryCodes": ["kp", "kr"], "languageCodes": ["en", "ko"], "name": "OSM Korea Telegram", From fe73b97a6602e52bedde6ceb71235c986dee47e1 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 15 Nov 2019 10:02:07 -0500 Subject: [PATCH 16/35] Adjust Northern Scotland boundary to exclude Faroe Islands This snaps it to the points that country-coder uses for the UK boundary (re: #297) --- features/europe/united_kingdom/scotland.geojson | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/features/europe/united_kingdom/scotland.geojson b/features/europe/united_kingdom/scotland.geojson index a5d971a19..ea6537f6e 100644 --- a/features/europe/united_kingdom/scotland.geojson +++ b/features/europe/united_kingdom/scotland.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "scotland", - "properties": {"area": 433889.66}, + "properties": {"area": 328409.28}, "geometry": { "type": "Polygon", "coordinates": [ @@ -11,9 +11,8 @@ [-3.21625, 54.96579], [-5, 54.4], [-6.1, 55.5], - [-9, 55.5], - [-9, 63], - [0, 63], + [-14.78497, 57.60709], + [-0.3751, 61.32236], [0, 56.6], [-2.08637, 55.79086], [-2.08569, 55.7619], From 8ef74bf97087cbf01add80a6aa4c479012dd88aa Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 15 Nov 2019 10:44:08 -0500 Subject: [PATCH 17/35] Remove antarctia folder --- resources/antarctica/.gitkeep | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 resources/antarctica/.gitkeep diff --git a/resources/antarctica/.gitkeep b/resources/antarctica/.gitkeep deleted file mode 100644 index e69de29bb..000000000 From 73085c58fb82c0beaaa60ceb7b89dfb73a2e522d Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 15 Nov 2019 11:11:47 -0500 Subject: [PATCH 18/35] Resource `includeLocations` can now be required --- build.js | 48 ++++++++++++------------ schema/resource.json | 89 ++++++++++++++++++++++---------------------- 2 files changed, 68 insertions(+), 69 deletions(-) diff --git a/build.js b/build.js index 72847bfd0..f9072cc95 100644 --- a/build.js +++ b/build.js @@ -83,12 +83,12 @@ function generateFeatures() { const id = path.basename(file, '.geojson').toLowerCase(); feature.id = id; - // sort keys + // sort properties let obj = {}; - if (feature.type) { obj.type = feature.type; } - if (feature.id) { obj.id = feature.id; } + if (feature.type) { obj.type = feature.type; } + if (feature.id) { obj.id = feature.id; } if (feature.properties) { obj.properties = feature.properties; } - if (feature.geometry) { obj.geometry = feature.geometry; } + if (feature.geometry) { obj.geometry = feature.geometry; } feature = obj; validateFile(file, feature, featureSchema); @@ -129,25 +129,30 @@ function generateResources(tstrings, features) { process.exit(1); } - // sort keys + // sort properties and array values let obj = {}; - if (resource.id) { obj.id = resource.id; } - if (resource.type) { obj.type = resource.type; } - if (resource.includeLocations) { obj.includeLocations = resource.includeLocations; } - if (resource.excludeLocations) { obj.excludeLocations = resource.excludeLocations; } - if (resource.countryCodes) { obj.countryCodes = resource.countryCodes.sort(); } - if (resource.languageCodes) { obj.languageCodes = resource.languageCodes.sort(); } - if (resource.name) { obj.name = resource.name; } - if (resource.description) { obj.description = resource.description; } + if (resource.id) { obj.id = resource.id; } + if (resource.type) { obj.type = resource.type; } + if (resource.includeLocations) { obj.includeLocations = resource.includeLocations; } + if (resource.excludeLocations) { obj.excludeLocations = resource.excludeLocations; } + if (resource.countryCodes) { obj.countryCodes = resource.countryCodes.sort(); } + if (resource.languageCodes) { obj.languageCodes = resource.languageCodes.sort(); } + if (resource.name) { obj.name = resource.name; } + if (resource.description) { obj.description = resource.description; } if (resource.extendedDescription) { obj.extendedDescription = resource.extendedDescription; } - if (resource.url) { obj.url = resource.url; } - if (resource.signupUrl) { obj.signupUrl = resource.signupUrl; } - if (resource.contacts) { obj.contacts = resource.contacts; } - if (resource.order) { obj.order = resource.order; } - if (resource.events) { obj.events = resource.events; } + if (resource.url) { obj.url = resource.url; } + if (resource.signupUrl) { obj.signupUrl = resource.signupUrl; } + if (resource.contacts) { obj.contacts = resource.contacts; } + if (resource.order) { obj.order = resource.order; } + if (resource.events) { obj.events = resource.events; } resource = obj; validateFile(file, resource, resourceSchema); + validateLocations(resource.includeLocations, file, features); + if (resource.excludeLocations) { + validateLocations(resource.excludeLocations, file, features); + } + prettifyFile(file, resource, contents); let resourceId = resource.id; @@ -158,13 +163,6 @@ function generateResources(tstrings, features) { process.exit(1); } - if (resource.includeLocations) { - validateLocations(resource.includeLocations, file, features); - } - if (resource.excludeLocations) { - validateLocations(resource.excludeLocations, file, features); - } - resources[resourceId] = resource; files[resourceId] = file; diff --git a/schema/resource.json b/schema/resource.json index f1fead577..9af972e91 100644 --- a/schema/resource.json +++ b/schema/resource.json @@ -6,6 +6,7 @@ "required": [ "id", "type", + "includeLocations", "name", "description", "url" @@ -43,6 +44,50 @@ "youtube" ] }, + "includeLocations": { + "$comment": "See country-coder documentation for compatible values: https://github.com/ideditor/country-coder#readme", + "description": "(required) Array of locations where the resource is available", + "type": "array", + "uniqueItems": true, + "items": { + "anyOf": [ + { "$ref": "#/definitions/locationCode" }, + { "$ref": "#/definitions/coordinatePair" }, + { "$ref": "#/definitions/geojsonFilename" } + ] + } + }, + "excludeLocations": { + "$comment": "See country-coder documentation for compatible values: https://github.com/ideditor/country-coder#readme", + "description": "(optional) Array of locations where the resource is unavailable (after applying includeLocations)", + "type": "array", + "uniqueItems": true, + "items": { + "anyOf": [ + { "$ref": "#/definitions/locationCode" }, + { "$ref": "#/definitions/coordinatePair" }, + { "$ref": "#/definitions/geojsonFilename" } + ] + } + }, + "countryCodes": { + "description": "(optional) Array of ISO 3166-1 alpha-2 two letter country codes in lowercase", + "type": "array", + "uniqueItems": true, + "items": { + "type": "string", + "pattern": "^[a-z]{2}$" + } + }, + "languageCodes": { + "description": "(optional) Array of ISO-639-1 (2 letter) or ISO-639-3 (3 letter) codes in lowercase", + "type": "array", + "uniqueItems": true, + "items": { + "type": "string", + "pattern": "^[a-z]{2,3}(-[a-zA-Z]{2})?$" + } + }, "name": { "$comment": "Assumed to be in English, this value will be sent to Transifex for translation", "description": "(required) Display name for this community resource", @@ -146,50 +191,6 @@ } } } - }, - "countryCodes": { - "description": "(optional) Array of ISO 3166-1 alpha-2 two letter country codes in lowercase", - "type": "array", - "uniqueItems": true, - "items": { - "type": "string", - "pattern": "^[a-z]{2}$" - } - }, - "includeLocations": { - "$comment": "See country-coder documentation for compatible values: https://github.com/ideditor/country-coder#readme", - "description": "(optional) Array of locations where the resource is available", - "type": "array", - "uniqueItems": true, - "items": { - "anyOf": [ - { "$ref": "#/definitions/locationCode" }, - { "$ref": "#/definitions/coordinatePair" }, - { "$ref": "#/definitions/geojsonFilename" } - ] - } - }, - "excludeLocations": { - "$comment": "See country-coder documentation for compatible values: https://github.com/ideditor/country-coder#readme", - "description": "(optional) Array of locations where the resource is unavailable (after applying includeLocations)", - "type": "array", - "uniqueItems": true, - "items": { - "anyOf": [ - { "$ref": "#/definitions/locationCode" }, - { "$ref": "#/definitions/coordinatePair" }, - { "$ref": "#/definitions/geojsonFilename" } - ] - } - }, - "languageCodes": { - "description": "(optional) Array of ISO-639-1 (2 letter) or ISO-639-3 (3 letter) codes in lowercase", - "type": "array", - "uniqueItems": true, - "items": { - "type": "string", - "pattern": "^[a-z]{2,3}(-[a-zA-Z]{2})?$" - } } }, From 5216b5763d3eed12678651187900df38f1741cfb Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 15 Nov 2019 12:26:19 -0500 Subject: [PATCH 19/35] Update documentation --- CONTRIBUTING.md | 101 +++++++++++++++++++++++++----------------------- README.md | 16 +++++--- 2 files changed, 63 insertions(+), 54 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e7007c561..d944744b8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,20 +4,20 @@ There are 2 kinds of files in this project: -* Under `features/` there are `.geojson` files to describe the areas where the communities are active * Under `resources/` there are `.json` files to describe the community resources +* Under `features/` there are `.geojson` files to describe the areas where the communities are active ##### tl;dr To add your community resource: -* Add a **feature** `.geojson` file under `features/` folder - * This is a boundary around where the resource is active - * You can use [geojson.io](http://geojson.io) or other tools to create these. -* Add a **resource** `.json` file under `resources/` folder +* (required) Add a **resource** `.json` file under `resources/` folder * This contains info about what the resource is (slack, forum, mailinglist, facebook, etc.) * You can just copy and change an existing one - * Several resources can share the same `.geojson` feature + * Each resource needs an `includeLocations` property to say where it is active. +* (optional) Add a **feature** `.geojson` file under `features/` folder + * This is a boundary around where the resource is active + * You can use [geojson.io](http://geojson.io) or other tools to create these. * `npm run test` * This will build and check for errors and make the files pretty @@ -30,56 +30,18 @@ To add your community resource: * Run `npm install` to install libraries -### Features - -These are `*.geojson` files found under the `features/` folder. Each feature file contains a single GeoJSON `Feature` for a region where a community resource is active. - -Feature files look like this: - -```js -{ - "type": "Feature", - "id": "usa_full", - "properties": { "area": 11645277.77 }, - "geometry": { - "type": "MultiPolygon", - "coordinates": [ - ... - ] - } -} -``` - -Note: A `FeatureCollection` containing a single `Feature` is ok too - the build script can handle this. - -There are many online tools to create or modify these `.geojson` files. A workflow could be: - -1. Create the shape with [geojson.io](http://geojson.io) from scratch. - -or - -1. Generate a precise file with the [Polygon creation](http://polygons.openstreetmap.fr/) from an OSM Relation. -1. Simplify the file with [Mapshaper](http://mapshaper.org/). Beware that the simplification probably cuts some border areas. -1. So load the file in [geojson.io](http://geojson.io) and include the border areas again and perhaps reduce the point count further. It is probably better to have the feature a bit larger than missing an area. - -Each feature must have a unique `id` property, for example `usa_full`. - -You do not need to supply an `area` property. The `npm run build` script will calculate the `area` property automatically. - - ### Resources These are `*.json` files found under the `resources/` folder. -Each resource file contains a single JSON object with information about -the community resource. +Each resource file contains a single JSON object with information about the community resource. Resource files look like this: ```js { "id": "OSM-US-slack", - "featureId": "usa_full", "type": "slack", + "includeLocations": ["us"], "countryCodes": ["us"], "languageCodes": ["en"], "name": "OpenStreetMap US Slack", @@ -111,14 +73,24 @@ Resource files look like this: Here are the properties that a resource file can contain: * __`id`__ - (required) A unique identifier for the resource. -* __`featureId`__ - (optional) A unique identifier for the feature. This `featureId` matches the resource to a .geojson feature. If null, this is a global resource. * __`type`__ - (required) Type of community resource (see below for list). +* __`includeLocations`__ - (required) Array of locations where the resource is active. May contain any of these: + * Any string recognized by the [country-coder library](https://github.com/ideditor/country-coder#readme). These should be [ISO 3166-1 2 or 3 letter country codes or UN M.49 numeric codes](https://en.wikipedia.org/wiki/List_of_countries_by_United_Nations_geoscheme). + Example: `"de"` + * Any filename for a `.geojson` file saved under the `/features` folder + Example: `"de-hamburg.geojson"` + * A `[longitude, latitude]` coordinate pair. A 15km radius circle will be computed around this point. + Example: `[8.67039, 49.41882]` +* __`excludeLocations`__ - (optional) Array of locations to exclude from `includeLocations` (specified in the same format): * __`name`__ - (required) Display name for this community resource +(in English, will be sent to Transifex for translation to other languages) * __`description`__ - (required) One line description of the community resource +(in English, will be sent to Transifex for translation to other languages) * __`extendedDescription`__ - (optional) Longer description of the community resource +(in English, will be sent to Transifex for translation to other languages) * __`url`__ - (required) A url link to visit the community resource * __`signupUrl`__ - (optional) A url link to sign up for the community resource -* __`countryCodes`__ - (optional) Array of [two letter country codes](https://en.wikipedia.org/wiki/ISO_3166-1#Current_codes) where the community is active +* __`countryCodes`__ - (optional) Array of [two letter country codes](https://en.wikipedia.org/wiki/List_of_countries_by_United_Nations_geoscheme) where the community is active * __`languageCodes`__ - (optional) Array of [two letter](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) or [three letter](https://en.wikipedia.org/wiki/List_of_ISO_639-3_codes) spoken by this community * __`order`__ - (optional) When several resources with same geography are present, this adjusts the display order (default = 0, higher numbers display more prominently) @@ -165,6 +137,39 @@ Resources may have events. These are optional. * __`url`__ - (optional) A url link for the event +### Features + +These are `*.geojson` files found under the `features/` folder. Each feature file contains a single GeoJSON `Feature` for a region where a community resource is active. + +Feature files look like this: + +```js +{ + "type": "Feature", + "id": "boston_metro", + "properties": {"area": 6992.97}, + "geometry": { + "type": "Polygon", + "coordinates": [...] + } +} +``` + +Note: A `FeatureCollection` containing a single `Feature` is ok too - the build script can handle this. + +There are many online tools to create or modify these `.geojson` files. A workflow could be: + +1. Create the shape with [geojson.io](http://geojson.io) from scratch. + +or + +1. Generate a precise file with the [Polygon creation](http://polygons.openstreetmap.fr/) from an OSM Relation. +1. Simplify the file with [Mapshaper](http://mapshaper.org/). Beware that the simplification probably cuts some border areas. +1. So load the file in [geojson.io](http://geojson.io) and include the border areas again and perhaps reduce the point count further. It is probably better to have the feature a bit larger than missing an area. + +You do not need to supply an `area` property or `id` property. The `npm run build` script will calculate these automatically. + + ### Building * Just `npm run test` diff --git a/README.md b/README.md index 62da85e47..3d4730fdd 100644 --- a/README.md +++ b/README.md @@ -24,8 +24,8 @@ might find interesting or helpful. #### Source files The source files for this index are stored in two kinds of files: -* Under `features/` there are `.geojson` files to describe the areas where the communities are active * Under `resources/` there are `.json` files to describe the community resources +* Under `features/` there are `.geojson` files to describe the areas where the communities are active :point_right: See [CONTRIBUTING.md](CONTRIBUTING.md) for info about how to add your community resource to this index. @@ -43,21 +43,23 @@ Several files are published under `dist/` ##### tl;dr -* Add a **feature** `.geojson` file under `features/` folder - * This is a boundary around where the resource is active - * You can use [geojson.io](http://geojson.io) to create these -* Add a **resource** `.json` file under `resources/` folder +* (required) Add a **resource** `.json` file under `resources/` folder * This contains info about what the resource is (slack, forum, mailinglist, facebook, etc.) * You can just copy and change an existing one - * Several resources can share the same `.geojson` feature + * Each resource needs an `includeLocations` property to define where it is active. +* (optional) Add a **feature** `.geojson` file under `features/` folder + * This is a boundary around where the resource is active + * You can use [geojson.io](http://geojson.io) or other tools to create these. * `npm run test` * This will build and check for errors and make the files pretty + #### Prerequisites * [Node.js](https://nodejs.org/) version 8 or newer * [`git`](https://www.atlassian.com/git/tutorials/install-git/) for your platform + #### Installing * Clone this project, for example: @@ -65,11 +67,13 @@ Several files are published under `dist/` * `cd` into the project folder, * Run `npm install` to install libraries + #### Building * Just `npm run test` * This will check the files for errors and make them pretty. + ### License osm-community-index is available under the [ISC License](https://opensource.org/licenses/ISC). From 4f6a953164f87943b2faa9d72316d0608dedaabc Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 15 Nov 2019 12:48:02 -0500 Subject: [PATCH 20/35] Warn if a geojson file has such small area it should instead be a point Also removes some geojson files that were like this. --- build.js | 5 + features/africa/kenya/nairobi.geojson | 22 ---- features/asia/india/india_puducherry.geojson | 31 ----- features/europe/albania/al-tirana.geojson | 123 ------------------ features/europe/austria/graz.geojson | 17 --- features/europe/belgium/brussels.geojson | 75 ----------- resources/africa/kenya/map-kibera.json | 2 +- .../asia/india/osm-puducherry-facebook.json | 2 +- .../india/osm-puducherry-mailing-list.json | 2 +- .../asia/india/osm-puducherry-matrix.json | 2 +- .../europe/albania/al-maptime-tirana.json | 2 +- resources/europe/austria/graz-meetup.json | 2 +- resources/europe/austria/graz-twitter.json | 2 +- 13 files changed, 12 insertions(+), 275 deletions(-) delete mode 100644 features/africa/kenya/nairobi.geojson delete mode 100644 features/asia/india/india_puducherry.geojson delete mode 100644 features/europe/albania/al-tirana.geojson delete mode 100644 features/europe/austria/graz.geojson delete mode 100644 features/europe/belgium/brussels.geojson diff --git a/build.js b/build.js index f9072cc95..3cd87452a 100644 --- a/build.js +++ b/build.js @@ -79,6 +79,11 @@ function generateFeatures() { props.area = Number(area.toFixed(2)); feature.properties = props; + if (props.area < 2000) { // warn if this feature is so small it would better be represented as a point. + console.error(colors.yellow('Warning - small area (' + props.area + '). Use a point `includeLocation` instead.')); + console.error(' ' + colors.yellow(file)); + } + // use the filename as the feature.id const id = path.basename(file, '.geojson').toLowerCase(); feature.id = id; diff --git a/features/africa/kenya/nairobi.geojson b/features/africa/kenya/nairobi.geojson deleted file mode 100644 index ba4871056..000000000 --- a/features/africa/kenya/nairobi.geojson +++ /dev/null @@ -1,22 +0,0 @@ -{ - "type": "Feature", - "id": "nairobi", - "properties": {"area": 687.96}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [36.64146, -1.31412], - [36.78566, -1.19193], - [36.83853, -1.20841], - [36.89896, -1.15349], - [36.94359, -1.18026], - [36.92368, -1.22008], - [36.99783, -1.22763], - [36.9175, -1.42739], - [36.73485, -1.38826], - [36.64146, -1.31412] - ] - ] - } -} \ No newline at end of file diff --git a/features/asia/india/india_puducherry.geojson b/features/asia/india/india_puducherry.geojson deleted file mode 100644 index 86d046755..000000000 --- a/features/asia/india/india_puducherry.geojson +++ /dev/null @@ -1,31 +0,0 @@ -{ - "type": "Feature", - "id": "india_puducherry", - "properties": {"name": "Puducherry", "area": 649.41}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [79.87782, 12.04973], - [79.84726, 11.95536], - [79.83593, 11.90229], - [79.81979, 11.85761], - [79.81464, 11.79006], - [79.79645, 11.7736], - [79.77036, 11.77191], - [79.74564, 11.78065], - [79.6804, 11.7988], - [79.61655, 11.82434], - [79.58702, 11.88549], - [79.65672, 11.93152], - [79.64745, 11.9594], - [79.6423, 12.0138], - [79.66599, 12.03865], - [79.72813, 12.04201], - [79.79885, 12.0457], - [79.8452, 12.05644], - [79.87782, 12.04973] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/albania/al-tirana.geojson b/features/europe/albania/al-tirana.geojson deleted file mode 100644 index d3e2ef946..000000000 --- a/features/europe/albania/al-tirana.geojson +++ /dev/null @@ -1,123 +0,0 @@ -{ - "type": "Feature", - "id": "al-tirana", - "properties": {"area": 40.04}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [19.77796, 41.36244], - [19.78028, 41.36267], - [19.78123, 41.36014], - [19.78004, 41.35915], - [19.78099, 41.35803], - [19.77752, 41.35682], - [19.78082, 41.35409], - [19.77658, 41.35122], - [19.78029, 41.34936], - [19.7832, 41.35026], - [19.7899, 41.34976], - [19.79536, 41.34793], - [19.80046, 41.3502], - [19.81074, 41.35213], - [19.81874, 41.35044], - [19.82238, 41.35173], - [19.83428, 41.35186], - [19.84174, 41.35434], - [19.84682, 41.3589], - [19.84829, 41.35842], - [19.85095, 41.36008], - [19.85159, 41.35903], - [19.8561, 41.35843], - [19.85488, 41.3545], - [19.85784, 41.35167], - [19.85518, 41.35228], - [19.85275, 41.35145], - [19.85276, 41.34956], - [19.85151, 41.34955], - [19.85462, 41.34419], - [19.85876, 41.33995], - [19.8642, 41.33947], - [19.86465, 41.33789], - [19.86829, 41.33772], - [19.86999, 41.33882], - [19.87262, 41.33794], - [19.87259, 41.33606], - [19.87543, 41.3355], - [19.87644, 41.33126], - [19.87554, 41.33042], - [19.87232, 41.33102], - [19.87095, 41.32999], - [19.86659, 41.33088], - [19.86535, 41.32664], - [19.86164, 41.32543], - [19.85813, 41.3214], - [19.85489, 41.32066], - [19.85575, 41.31876], - [19.84532, 41.314], - [19.84458, 41.31212], - [19.85095, 41.30156], - [19.84975, 41.29748], - [19.8457, 41.29559], - [19.83906, 41.29791], - [19.82955, 41.29568], - [19.82738, 41.29791], - [19.82504, 41.29827], - [19.82605, 41.29986], - [19.82333, 41.30509], - [19.82032, 41.30525], - [19.81821, 41.3037], - [19.81168, 41.30787], - [19.81162, 41.31002], - [19.80709, 41.31302], - [19.79827, 41.31487], - [19.79767, 41.31238], - [19.79374, 41.313], - [19.78954, 41.31035], - [19.7852, 41.31117], - [19.78057, 41.3142], - [19.77976, 41.31244], - [19.78765, 41.30887], - [19.78369, 41.30473], - [19.77721, 41.30247], - [19.77515, 41.30039], - [19.77077, 41.30363], - [19.76019, 41.29972], - [19.75706, 41.30651], - [19.75854, 41.30874], - [19.75473, 41.31208], - [19.75643, 41.31314], - [19.75571, 41.31548], - [19.76586, 41.3199], - [19.76813, 41.32266], - [19.77017, 41.32139], - [19.76811, 41.31882], - [19.76922, 41.31754], - [19.77559, 41.31854], - [19.77323, 41.32284], - [19.77378, 41.32422], - [19.77893, 41.32349], - [19.77968, 41.32518], - [19.78451, 41.32399], - [19.78734, 41.32541], - [19.78321, 41.33328], - [19.78343, 41.33578], - [19.77659, 41.33783], - [19.78083, 41.34567], - [19.76839, 41.35239], - [19.75832, 41.35489], - [19.76053, 41.35931], - [19.75484, 41.3598], - [19.75767, 41.36542], - [19.76169, 41.36185], - [19.76434, 41.36249], - [19.76411, 41.36393], - [19.76775, 41.36369], - [19.76857, 41.36459], - [19.77145, 41.364], - [19.77204, 41.36125], - [19.77796, 41.36244] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/austria/graz.geojson b/features/europe/austria/graz.geojson deleted file mode 100644 index b59487394..000000000 --- a/features/europe/austria/graz.geojson +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "Feature", - "id": "graz", - "properties": {"area": 703.82}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [15.26276, 46.94182], - [15.26276, 47.16918], - [15.62943, 47.16918], - [15.62943, 46.94182], - [15.26276, 46.94182] - ] - ] - } -} \ No newline at end of file diff --git a/features/europe/belgium/brussels.geojson b/features/europe/belgium/brussels.geojson deleted file mode 100644 index d8ca9be83..000000000 --- a/features/europe/belgium/brussels.geojson +++ /dev/null @@ -1,75 +0,0 @@ -{ - "type": "Feature", - "id": "brussels", - "properties": {"area": 175.91}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [4.37973, 50.76382], - [4.37853, 50.76811], - [4.34522, 50.77337], - [4.34205, 50.77164], - [4.32952, 50.77381], - [4.31621, 50.78624], - [4.31458, 50.79454], - [4.30282, 50.79709], - [4.29802, 50.80593], - [4.28901, 50.80691], - [4.2854, 50.80506], - [4.27579, 50.80696], - [4.27218, 50.81011], - [4.25802, 50.80935], - [4.25519, 50.8151], - [4.24403, 50.81548], - [4.24343, 50.82182], - [4.25227, 50.82697], - [4.25107, 50.83288], - [4.25467, 50.83695], - [4.27193, 50.84036], - [4.28094, 50.84215], - [4.28042, 50.85721], - [4.27802, 50.85911], - [4.27699, 50.86713], - [4.28274, 50.87227], - [4.29561, 50.88094], - [4.29553, 50.88262], - [4.29149, 50.88495], - [4.29004, 50.88982], - [4.30634, 50.89274], - [4.31647, 50.89605], - [4.32892, 50.90249], - [4.34025, 50.90411], - [4.34857, 50.90341], - [4.36213, 50.9033], - [4.3726, 50.90032], - [4.38119, 50.90319], - [4.38462, 50.91093], - [4.39578, 50.91407], - [4.41543, 50.91342], - [4.41655, 50.90757], - [4.4296, 50.90103], - [4.43595, 50.89502], - [4.43106, 50.89014], - [4.44007, 50.87845], - [4.43183, 50.87628], - [4.4253, 50.86615], - [4.44599, 50.85992], - [4.44968, 50.85591], - [4.46238, 50.85396], - [4.46899, 50.84573], - [4.46959, 50.83537], - [4.47972, 50.82036], - [4.45947, 50.81661], - [4.45921, 50.80626], - [4.48238, 50.79617], - [4.4817, 50.79134], - [4.46427, 50.78645], - [4.435, 50.775], - [4.43028, 50.77517], - [4.38917, 50.76377], - [4.37973, 50.76382] - ] - ] - } -} \ No newline at end of file diff --git a/resources/africa/kenya/map-kibera.json b/resources/africa/kenya/map-kibera.json index 82ab1865b..17c506daa 100644 --- a/resources/africa/kenya/map-kibera.json +++ b/resources/africa/kenya/map-kibera.json @@ -1,7 +1,7 @@ { "id": "map-kibera", "type": "group", - "includeLocations": ["nairobi.geojson"], + "includeLocations": [[36.8196, -1.2904]], "countryCodes": ["ke"], "languageCodes": ["en"], "name": "Map Kibera Trust", diff --git a/resources/asia/india/osm-puducherry-facebook.json b/resources/asia/india/osm-puducherry-facebook.json index 2ed290f81..7f78d2da0 100644 --- a/resources/asia/india/osm-puducherry-facebook.json +++ b/resources/asia/india/osm-puducherry-facebook.json @@ -1,7 +1,7 @@ { "id": "OSM-India-Puducherry-Facebook", "type": "facebook", - "includeLocations": ["india_puducherry.geojson"], + "includeLocations": [[79.7324, 11.9142]], "name": "Free Software Hardware Movement - Facebook", "description": "FSHM Facebook page to know about community events, activities", "extendedDescription": "FSHM organizes events relating to free software/hardware, technology, activism and OpenStreetMap. Its FB page is the best way to keep in contact with its events.", diff --git a/resources/asia/india/osm-puducherry-mailing-list.json b/resources/asia/india/osm-puducherry-mailing-list.json index 87fef5634..14d4390b2 100644 --- a/resources/asia/india/osm-puducherry-mailing-list.json +++ b/resources/asia/india/osm-puducherry-mailing-list.json @@ -1,7 +1,7 @@ { "id": "OSM-Puducherry-Mailing-List", "type": "mailinglist", - "includeLocations": ["india_puducherry.geojson"], + "includeLocations": [[79.7324, 11.9142]], "name": "Free Software Hardware Movement - Mailing List", "description": "FSHM Puducherry mailing list to discuss mapping in Puducherry and other things.", "extendedDescription": "FSHM organizes events relating to free software/hardware, technology, activism and OpenStreetMap.", diff --git a/resources/asia/india/osm-puducherry-matrix.json b/resources/asia/india/osm-puducherry-matrix.json index abf639d4a..cbf8558d5 100644 --- a/resources/asia/india/osm-puducherry-matrix.json +++ b/resources/asia/india/osm-puducherry-matrix.json @@ -1,7 +1,7 @@ { "id": "OSM-India-Puducherry-Matrix", "type": "matrix", - "includeLocations": ["india_puducherry.geojson"], + "includeLocations": [[79.7324, 11.9142]], "name": "Free Software Hardware Movement - Matrix", "description": "FSHM Riot group to discuss, share and update mapping activities, events in and around Puducherry", "extendedDescription": "FSHM community members share their OSM mapping updates / experiences through the Riot.im group, this group is also used to discuss things related to free software / hardware, technology and activism.", diff --git a/resources/europe/albania/al-maptime-tirana.json b/resources/europe/albania/al-maptime-tirana.json index f4b7f6a6e..2eeac70d5 100644 --- a/resources/europe/albania/al-maptime-tirana.json +++ b/resources/europe/albania/al-maptime-tirana.json @@ -1,7 +1,7 @@ { "id": "al-maptime-tirana", "type": "group", - "includeLocations": ["al-tirana.geojson"], + "includeLocations": [[19.8156, 41.3305]], "countryCodes": ["al"], "languageCodes": ["en", "sq"], "name": "Maptime Tirana", diff --git a/resources/europe/austria/graz-meetup.json b/resources/europe/austria/graz-meetup.json index 4377100d6..4ca9ac317 100644 --- a/resources/europe/austria/graz-meetup.json +++ b/resources/europe/austria/graz-meetup.json @@ -1,7 +1,7 @@ { "id": "osmgraz-meetup", "type": "meetup", - "includeLocations": ["graz.geojson"], + "includeLocations": [[15.4461, 47.0556]], "countryCodes": ["at"], "languageCodes": ["de", "en"], "name": "OSM community meetup Graz", diff --git a/resources/europe/austria/graz-twitter.json b/resources/europe/austria/graz-twitter.json index 85cb382ac..e8145e6c1 100644 --- a/resources/europe/austria/graz-twitter.json +++ b/resources/europe/austria/graz-twitter.json @@ -1,7 +1,7 @@ { "id": "osmgraz-twitter", "type": "twitter", - "includeLocations": ["graz.geojson"], + "includeLocations": [[15.4461, 47.0556]], "countryCodes": ["at"], "languageCodes": ["de", "en"], "name": "OSM community Graz on twitter", From 637a029b997aaba03c7bc6bf34c1116b9bbd58ad Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 15 Nov 2019 12:52:38 -0500 Subject: [PATCH 21/35] Rename `df` -> `brasilia_df` --- .../south-america/brazil/{df.geojson => brasilia_df.geojson} | 2 +- resources/south-america/brazil/DF-telegram.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename features/south-america/brazil/{df.geojson => brasilia_df.geojson} (97%) diff --git a/features/south-america/brazil/df.geojson b/features/south-america/brazil/brasilia_df.geojson similarity index 97% rename from features/south-america/brazil/df.geojson rename to features/south-america/brazil/brasilia_df.geojson index 3de9ebce1..ef1bed104 100644 --- a/features/south-america/brazil/df.geojson +++ b/features/south-america/brazil/brasilia_df.geojson @@ -1,6 +1,6 @@ { "type": "Feature", - "id": "df", + "id": "brasilia_df", "properties": {"area": 5794.12}, "geometry": { "type": "Polygon", diff --git a/resources/south-america/brazil/DF-telegram.json b/resources/south-america/brazil/DF-telegram.json index a1bfafaf6..d04a5df17 100644 --- a/resources/south-america/brazil/DF-telegram.json +++ b/resources/south-america/brazil/DF-telegram.json @@ -1,7 +1,7 @@ { "id": "DF-telegram", "type": "telegram", - "includeLocations": ["df.geojson"], + "includeLocations": ["brasilia_df.geojson"], "countryCodes": ["br"], "languageCodes": ["pt"], "name": "OpenStreetMap Brasília Telegram Group", From b3dd1560b6fe29647c089f6683dcf9fabab75d0f Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 15 Nov 2019 13:19:26 -0500 Subject: [PATCH 22/35] Add totals to `npm run stats` --- stats.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/stats.js b/stats.js index cd1c590b3..ccd5ee307 100644 --- a/stats.js +++ b/stats.js @@ -9,20 +9,43 @@ const Table = require('easy-table'); getStats(); function getStats() { + let featureSize = 0; + let resourceSize = 0; + let featureFiles = 0; + let resourceFiles = 0; + let currSize = 0; + let currFiles = 0; + let t = new Table; + currSize = 0; + currFiles = 0; glob.sync(__dirname + '/features/**/*.geojson').forEach(addRow); t.sort(['Size|des']); console.log(t.toString()); + featureSize = bytes(currSize, { unitSeparator: ' ' }); + featureFiles = currFiles; t = new Table; + currSize = 0; + currFiles = 0; glob.sync(__dirname + '/resources/**/*.json').forEach(addRow); t.sort(['Size|des']); console.log(t.toString()); + resourceSize = bytes(currSize, { unitSeparator: ' ' }); + resourceFiles = currFiles; + + console.info(`\nTotals:`); + console.info(`-------`); + console.info(colors.blue.bold(`Features: ${featureSize} in ${featureFiles} files.`)); + console.info(colors.blue.bold(`Resources: ${resourceSize} in ${resourceFiles} files.`)); + console.info(''); function addRow(file) { let stats = fs.statSync(file); let color = colorBytes(stats.size); + currSize += stats.size; + currFiles++; t.cell('Size', stats.size, function sizePrinter(val, width) { let displaySize = bytes(stats.size, { unitSeparator: ' ' }); From 16d34350cdd064726c2019f12ea1bebc8c8609f9 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 15 Nov 2019 14:07:24 -0500 Subject: [PATCH 23/35] Drop the single-quote eslint rule --- .eslintrc | 122 +++++++++++++++++++++++++++--------------------------- 1 file changed, 60 insertions(+), 62 deletions(-) diff --git a/.eslintrc b/.eslintrc index 8a06b2480..978e9b07d 100644 --- a/.eslintrc +++ b/.eslintrc @@ -1,64 +1,62 @@ { - "env": { - "node": true, - "es6": true - }, - "parserOptions": { - "ecmaVersion": 6, - "sourceType": "module" - }, - "extends": [ - "eslint:recommended" - ], - "rules": { - "dot-notation": "error", - "eqeqeq": ["error", "smart"], - "indent": ["off", 4], - "keyword-spacing": "error", - "linebreak-style": ["error", "unix"], - "no-caller": "error", - "no-catch-shadow": "error", - "no-console": "warn", - "no-div-regex": "error", - "no-extend-native": "error", - "no-extra-bind": "error", - "no-floating-decimal": "error", - "no-implied-eval": "error", - "no-invalid-this": "error", - "no-iterator": "error", - "no-labels": "error", - "no-label-var": "error", - "no-lone-blocks": "error", - "no-loop-func": "error", - "no-multi-str": "error", - "no-native-reassign": "error", - "no-new": "error", - "no-new-func": "error", - "no-new-wrappers": "error", - "no-octal": "error", - "no-octal-escape": "error", - "no-process-env": "error", - "no-proto": "error", - "no-prototype-builtins": "off", - "no-return-assign": "off", - "no-script-url": "error", - "no-self-compare": "error", - "no-sequences": "error", - "no-shadow": "off", - "no-shadow-restricted-names": "error", - "no-throw-literal": "error", - "no-unneeded-ternary": "error", - "no-unused-expressions": "error", - "no-unexpected-multiline": "error", - "no-unused-vars": "warn", - "no-void": "error", - "no-warning-comments": "warn", - "no-with": "error", - "no-use-before-define": ["off", "nofunc"], - "semi": ["error", "always"], - "semi-spacing": "error", - "space-unary-ops": "error", - "wrap-regex": "off", - "quotes": ["error", "single"] - } + "env": { + "node": true, + "es6": true + }, + "parserOptions": { + "ecmaVersion": 6, + "sourceType": "module" + }, + "extends": [ + "eslint:recommended" + ], + "rules": { + "dot-notation": "error", + "eqeqeq": ["error", "smart"], + "keyword-spacing": "error", + "linebreak-style": ["error", "unix"], + "no-caller": "error", + "no-catch-shadow": "error", + "no-console": "warn", + "no-div-regex": "error", + "no-extend-native": "error", + "no-extra-bind": "error", + "no-floating-decimal": "error", + "no-implied-eval": "error", + "no-invalid-this": "error", + "no-iterator": "error", + "no-labels": "error", + "no-label-var": "error", + "no-lone-blocks": "error", + "no-loop-func": "error", + "no-multi-str": "error", + "no-native-reassign": "error", + "no-new": "error", + "no-new-func": "error", + "no-new-wrappers": "error", + "no-octal": "error", + "no-octal-escape": "error", + "no-process-env": "error", + "no-proto": "error", + "no-prototype-builtins": "off", + "no-return-assign": "off", + "no-script-url": "error", + "no-self-compare": "error", + "no-sequences": "error", + "no-shadow": "off", + "no-shadow-restricted-names": "error", + "no-throw-literal": "error", + "no-unneeded-ternary": "error", + "no-unused-expressions": "error", + "no-unexpected-multiline": "error", + "no-unused-vars": "warn", + "no-void": "error", + "no-warning-comments": "warn", + "no-with": "error", + "no-use-before-define": ["off", "nofunc"], + "semi": ["error", "always"], + "semi-spacing": "error", + "space-unary-ops": "error", + "wrap-regex": "off" + } } From 6f525e42308b1f315c4f40090494964d5e7bfff0 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 15 Nov 2019 14:25:51 -0500 Subject: [PATCH 24/35] Markdown formatting --- CONTRIBUTING.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d944744b8..37427dc2a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -75,12 +75,9 @@ Here are the properties that a resource file can contain: * __`id`__ - (required) A unique identifier for the resource. * __`type`__ - (required) Type of community resource (see below for list). * __`includeLocations`__ - (required) Array of locations where the resource is active. May contain any of these: - * Any string recognized by the [country-coder library](https://github.com/ideditor/country-coder#readme). These should be [ISO 3166-1 2 or 3 letter country codes or UN M.49 numeric codes](https://en.wikipedia.org/wiki/List_of_countries_by_United_Nations_geoscheme). - Example: `"de"` - * Any filename for a `.geojson` file saved under the `/features` folder - Example: `"de-hamburg.geojson"` - * A `[longitude, latitude]` coordinate pair. A 15km radius circle will be computed around this point. - Example: `[8.67039, 49.41882]` + * Strings recognized by the [country-coder library](https://github.com/ideditor/country-coder#readme). These should be [ISO 3166-1 2 or 3 letter country codes or UN M.49 numeric codes](https://en.wikipedia.org/wiki/List_of_countries_by_United_Nations_geoscheme).
_Example: `"de"`_ + * Filenames for `.geojson` files saved under the `/features` folder
_Example: `"de-hamburg.geojson"`_ + * Points as `[longitude, latitude]` coordinate pairs. A 15km radius circle will be computed around the point.
_Example: `[8.67039, 49.41882]`_ * __`excludeLocations`__ - (optional) Array of locations to exclude from `includeLocations` (specified in the same format): * __`name`__ - (required) Display name for this community resource (in English, will be sent to Transifex for translation to other languages) From 5e16dfeafb18857932d17432939a84521ac46cbf Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 15 Nov 2019 15:24:35 -0500 Subject: [PATCH 25/35] Use console.warn for warning --- build.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.js b/build.js index 3cd87452a..1ea789f17 100644 --- a/build.js +++ b/build.js @@ -80,8 +80,8 @@ function generateFeatures() { feature.properties = props; if (props.area < 2000) { // warn if this feature is so small it would better be represented as a point. - console.error(colors.yellow('Warning - small area (' + props.area + '). Use a point `includeLocation` instead.')); - console.error(' ' + colors.yellow(file)); + console.warn(colors.yellow('Warning - small area (' + props.area + '). Use a point `includeLocation` instead.')); + console.warn(' ' + colors.yellow(file)); } // use the filename as the feature.id From 2afc0afafb9a3837d64c8b5d148c11e9314a07c3 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 15 Nov 2019 23:11:03 -0500 Subject: [PATCH 26/35] Add locationToFeature function --- CONTRIBUTING.md | 2 +- lib/locationToFeature.js | 41 ++++++++++++++++++++++++++++++++++++++++ package.json | 1 + 3 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 lib/locationToFeature.js diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 37427dc2a..e625f95c1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -77,7 +77,7 @@ Here are the properties that a resource file can contain: * __`includeLocations`__ - (required) Array of locations where the resource is active. May contain any of these: * Strings recognized by the [country-coder library](https://github.com/ideditor/country-coder#readme). These should be [ISO 3166-1 2 or 3 letter country codes or UN M.49 numeric codes](https://en.wikipedia.org/wiki/List_of_countries_by_United_Nations_geoscheme).
_Example: `"de"`_ * Filenames for `.geojson` files saved under the `/features` folder
_Example: `"de-hamburg.geojson"`_ - * Points as `[longitude, latitude]` coordinate pairs. A 15km radius circle will be computed around the point.
_Example: `[8.67039, 49.41882]`_ + * Points as `[longitude, latitude]` coordinate pairs. A 25km radius circle will be computed around the point.
_Example: `[8.67039, 49.41882]`_ * __`excludeLocations`__ - (optional) Array of locations to exclude from `includeLocations` (specified in the same format): * __`name`__ - (required) Display name for this community resource (in English, will be sent to Transifex for translation to other languages) diff --git a/lib/locationToFeature.js b/lib/locationToFeature.js new file mode 100644 index 000000000..3a558ffd7 --- /dev/null +++ b/lib/locationToFeature.js @@ -0,0 +1,41 @@ +const CountryCoder = require('country-coder'); +const circleToPolygon = require('circle-to-polygon'); + + +module.exports = (location, features) => { + features = features || {}; + + if (Array.isArray(location)) { // a [lon,lat] coordinate pair? + if (location.length === 2 && Number.isFinite(location[0]) && Number.isFinite(location[1]) && + location[0] >= -180 && location[0] <= 180 && location[1] >= -90 && location[1] <= 90 + ) { + const RADIUS = 25000; // meters + const EDGES = 10; + const AREA = Math.PI * RADIUS * RADIUS / 1e6; // m² to km² + const feature = { + type: 'Feature', + properties: { area: AREA }, + geometry: circleToPolygon(location, RADIUS, EDGES) }; + return { type: 'point', feature: feature }; + } else { + return null; + } + + } else if (/^\S+\.geojson$/i.test(location)) { // a .geojson filename? + let featureId = location.replace('.geojson', ''); + if (features[featureId]) { + return { type: 'geojson', feature: features[featureId] }; + } else { + return null; + } + + } else { // a country-coder string? + let ccmatch = CountryCoder.feature(location); + if (ccmatch) { + return { type: 'countrycoder', feature: ccmatch }; + } else { + return null; + } + } + +}; \ No newline at end of file diff --git a/package.json b/package.json index d1ea1aa45..7a15b010a 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ "txpush": "tx push -s" }, "dependencies": { + "circle-to-polygon": "^1.0.2", "country-coder": "^2.1.0" }, "devDependencies": { From 9eb21aeefbbc44e7ef897e30d808dd959a026409 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sat, 16 Nov 2019 21:14:25 -0500 Subject: [PATCH 27/35] Use locationToFeature in build script --- build.js | 37 +++++++------------------------------ 1 file changed, 7 insertions(+), 30 deletions(-) diff --git a/build.js b/build.js index 1ea789f17..38a8c59ab 100644 --- a/build.js +++ b/build.js @@ -14,6 +14,8 @@ const calcArea = require('@mapbox/geojson-area'); const precision = require('geojson-precision'); const rewind = require('geojson-rewind'); +const locationToFeature = require('./lib/locationToFeature.js'); + const geojsonSchema = require('./schema/geojson.json'); const featureSchema = require('./schema/feature.json'); const resourceSchema = require('./schema/resource.json'); @@ -227,36 +229,11 @@ function generateResources(tstrings, features) { function validateLocations(locations, file, features) { locations.forEach(location => { - if (Array.isArray(location)) { // a [lon,lat] coordinate pair? - if (location.length === 2 && Number.isFinite(location[0]) && Number.isFinite(location[1]) && - location[0] >= -180 && location[0] <= 180 && location[1] >= -90 && location[1] <= 90 - ) { - // console.log(' Lon,Lat: ' + colors.yellow(location)); - } else { - console.error(colors.red('Error - Invalid location: ') + colors.yellow(location)); - console.error(' ' + colors.yellow(file)); - process.exit(1); - } - - } else if (/^\S+\.geojson$/i.test(location)) { // a .geojson filename? - let featureId = location.replace('.geojson', ''); - if (features[featureId]) { - // console.log(' GeoJSON: ' + colors.yellow(location)); - } else { - console.error(colors.red('Error - Invalid location: ') + colors.yellow(location)); - console.error(' ' + colors.yellow(file)); - process.exit(1); - } - - } else { // a country-coder string? - let ccmatch = CountryCoder.feature(location); - if (ccmatch) { - // console.log(' Country Coder: ' + colors.yellow(ccmatch.properties.nameEn)); - } else { - console.error(colors.red('Error - Invalid location: ') + colors.yellow(location)); - console.error(' ' + colors.yellow(file)); - process.exit(1); - } + let feature = locationToFeature(location, features); + if (!feature) { + console.error(colors.red('Error - Invalid location: ') + colors.yellow(location)); + console.error(' ' + colors.yellow(file)); + process.exit(1); } }); } From 2d01c0a847e60c96c73cd7d76b8fb114f67f3aa2 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sat, 16 Nov 2019 22:39:12 -0500 Subject: [PATCH 28/35] Split `locationToFeature` and `isValidLocation` - `isValidLocation` returns quickly - `locationToFeature` - actually generates point buffers for point locations - uses countrycoder.aggregrateFeature to get full geometry --- lib/isValidLocation.js | 21 +++++++++++++++++++++ lib/locationToFeature.js | 19 ++++++++++++++++++- 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 lib/isValidLocation.js diff --git a/lib/isValidLocation.js b/lib/isValidLocation.js new file mode 100644 index 000000000..3650c8f77 --- /dev/null +++ b/lib/isValidLocation.js @@ -0,0 +1,21 @@ +const CountryCoder = require('country-coder'); + +module.exports = (location, features) => { + features = features || {}; + + if (Array.isArray(location)) { // a [lon,lat] coordinate pair? + return !!( + location.length === 2 && Number.isFinite(location[0]) && Number.isFinite(location[1]) && + location[0] >= -180 && location[0] <= 180 && location[1] >= -90 && location[1] <= 90 + ); + + } else if (/^\S+\.geojson$/i.test(location)) { // a .geojson filename? + let featureId = location.replace('.geojson', ''); + return !!features[featureId]; + + } else { // a country-coder string? + let ccmatch = CountryCoder.feature(location); + return !!ccmatch; + } + +}; \ No newline at end of file diff --git a/lib/locationToFeature.js b/lib/locationToFeature.js index 3a558ffd7..ae1dde8d4 100644 --- a/lib/locationToFeature.js +++ b/lib/locationToFeature.js @@ -30,7 +30,24 @@ module.exports = (location, features) => { } } else { // a country-coder string? - let ccmatch = CountryCoder.feature(location); + if (location === '001') { // waitfor https://github.com/ideditor/country-coder/issues/14 + const world = { + type: 'Feature', + properties: { + m49: '001', + wikidata: 'Q2', + nameEn: 'World', + id: '001', + area: 510072000 + }, + geometry: { + type: 'Polygon', + coordinates: [[[-180, -90], [-180, 90], [180, 90], [180, -90], [-180, -90]]] + } + } + return { type: 'countrycoder', feature: world } + } + let ccmatch = CountryCoder.aggregateFeature(location); if (ccmatch) { return { type: 'countrycoder', feature: ccmatch }; } else { From 5527f7601a7b28c0d1cf2deb69aa17feeb683fcc Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sat, 16 Nov 2019 22:41:20 -0500 Subject: [PATCH 29/35] Get combined.geojson working again, now with country coder data --- build.js | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/build.js b/build.js index 38a8c59ab..6d0c22fa0 100644 --- a/build.js +++ b/build.js @@ -4,7 +4,6 @@ const fs = require('fs'); const glob = require('glob'); const path = require('path'); -const CountryCoder = require('country-coder'); const Validator = require('jsonschema').Validator; const shell = require('shelljs'); const prettyStringify = require('json-stringify-pretty-compact'); @@ -14,6 +13,7 @@ const calcArea = require('@mapbox/geojson-area'); const precision = require('geojson-precision'); const rewind = require('geojson-rewind'); +const isValidLocation = require('./lib/isValidLocation.js'); const locationToFeature = require('./lib/locationToFeature.js'); const geojsonSchema = require('./schema/geojson.json'); @@ -36,11 +36,11 @@ function buildAll() { let tstrings = {}; // translation strings const features = generateFeatures(); const resources = generateResources(tstrings, features); - // const combined = generateCombined(features, resources); + const combined = generateCombined(features, resources); // Save individual data files - // fs.writeFileSync('dist/combined.geojson', prettyStringify(combined) ); - // fs.writeFileSync('dist/combined.min.geojson', JSON.stringify(combined) ); + fs.writeFileSync('dist/combined.geojson', prettyStringify(combined) ); + fs.writeFileSync('dist/combined.min.geojson', JSON.stringify(combined) ); fs.writeFileSync('dist/features.json', prettyStringify({ features: features }, { maxLength: 9999 })); fs.writeFileSync('dist/features.min.json', JSON.stringify({ features: features }) ); fs.writeFileSync('dist/resources.json', prettyStringify({ resources: resources }, { maxLength: 9999 })); @@ -229,8 +229,7 @@ function generateResources(tstrings, features) { function validateLocations(locations, file, features) { locations.forEach(location => { - let feature = locationToFeature(location, features); - if (!feature) { + if (!isValidLocation(location, features)) { console.error(colors.red('Error - Invalid location: ') + colors.yellow(location)); console.error(' ' + colors.yellow(file)); process.exit(1); @@ -307,22 +306,23 @@ function deepClone(obj) { // function generateCombined(features, resources) { let keepFeatures = {}; + Object.keys(resources).forEach(resourceId => { const resource = resources[resourceId]; - const featureId = resource.featureId; - if (!featureId) return; // note: this will exclude worldwide resources - const origFeature = features[featureId]; - if (!origFeature) return; + resource.includeLocations.forEach(location => { + const featureId = location.toString(); + const origFeature = locationToFeature(location, features).feature; - let keepFeature = keepFeatures[featureId]; - if (!keepFeature) { - keepFeature = deepClone(origFeature); - keepFeature.properties.resources = {}; - keepFeatures[featureId] = keepFeature; - } + let keepFeature = keepFeatures[featureId]; + if (!keepFeature) { + keepFeature = deepClone(origFeature); + keepFeature.properties.resources = {}; + keepFeatures[featureId] = keepFeature; + } - keepFeature.properties.resources[resourceId] = deepClone(resource); + keepFeature.properties.resources[resourceId] = deepClone(resource); + }); }); return { type: 'FeatureCollection', features: Object.values(keepFeatures) }; From 9af5aed777e11ef47379d73f948d827018a065a2 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 18 Nov 2019 09:37:46 -0500 Subject: [PATCH 30/35] Export isValidLocation and locationToFeature --- index.mjs | 13 ++++++++++--- lib/isValidLocation.js | 6 ++++-- lib/locationToFeature.js | 5 +++-- package.json | 2 ++ rollup.config.js | 22 +++++++++++++--------- 5 files changed, 32 insertions(+), 16 deletions(-) diff --git a/index.mjs b/index.mjs index f4a75dea7..144d5aef3 100644 --- a/index.mjs +++ b/index.mjs @@ -1,5 +1,12 @@ +/* DATA */ import { features } from './dist/features.json'; -export { features }; - import { resources } from './dist/resources.json'; -export { resources }; + +/* CODE */ +import locationToFeature from './lib/locationToFeature.js'; +import isValidLocation from './lib/isValidLocation.js'; + +export { + features, resources, + locationToFeature, isValidLocation +}; diff --git a/lib/isValidLocation.js b/lib/isValidLocation.js index 3650c8f77..fe3d0ba08 100644 --- a/lib/isValidLocation.js +++ b/lib/isValidLocation.js @@ -1,6 +1,7 @@ const CountryCoder = require('country-coder'); -module.exports = (location, features) => { + +function isValidLocation(location, features) { features = features || {}; if (Array.isArray(location)) { // a [lon,lat] coordinate pair? @@ -17,5 +18,6 @@ module.exports = (location, features) => { let ccmatch = CountryCoder.feature(location); return !!ccmatch; } +} -}; \ No newline at end of file +module.exports = isValidLocation; \ No newline at end of file diff --git a/lib/locationToFeature.js b/lib/locationToFeature.js index ae1dde8d4..86e4efc04 100644 --- a/lib/locationToFeature.js +++ b/lib/locationToFeature.js @@ -2,7 +2,7 @@ const CountryCoder = require('country-coder'); const circleToPolygon = require('circle-to-polygon'); -module.exports = (location, features) => { +function locationToFeature(location, features) { features = features || {}; if (Array.isArray(location)) { // a [lon,lat] coordinate pair? @@ -54,5 +54,6 @@ module.exports = (location, features) => { return null; } } +} -}; \ No newline at end of file +module.exports = locationToFeature; diff --git a/package.json b/package.json index 7a15b010a..469cb7987 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,9 @@ "json-stringify-pretty-compact": "^1.1.0", "jsonschema": "^1.1.0", "rollup": "^1.25.1", + "rollup-plugin-commonjs": "^10.0.0", "rollup-plugin-json": "^4.0.0", + "rollup-plugin-node-resolve": "^5.0.4", "shelljs": "^0.8.0", "tap": "^14.8.2" }, diff --git a/rollup.config.js b/rollup.config.js index ca122a19f..0bbc0a802 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -1,13 +1,17 @@ +import commonjs from 'rollup-plugin-commonjs'; import json from 'rollup-plugin-json'; +import nodeResolve from 'rollup-plugin-node-resolve'; export default { - input: 'index.mjs', - output: { - name: 'oci', - file: 'dist/index.js', - format: 'umd' - }, - plugins: [ - json({ indent: '' }) - ] + input: 'index.mjs', + output: { + name: 'oci', + file: 'dist/index.js', + format: 'umd' + }, + plugins: [ + nodeResolve(), + commonjs(), + json({ indent: '' }) + ] }; From 0dadd39e05b7903b59a8f8a6fe06d39cc2404fa5 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 18 Nov 2019 13:33:34 -0500 Subject: [PATCH 31/35] Add tests for locationToFeature and isValidLocation --- test/index.test.js | 61 +++++++++++++----------------- test/isValidLocation.test.js | 69 ++++++++++++++++++++++++++++++++++ test/locationToFeature.test.js | 55 +++++++++++++++++++++++++++ 3 files changed, 151 insertions(+), 34 deletions(-) create mode 100644 test/isValidLocation.test.js create mode 100644 test/locationToFeature.test.js diff --git a/test/index.test.js b/test/index.test.js index 56b3c8a37..376ea487c 100644 --- a/test/index.test.js +++ b/test/index.test.js @@ -5,47 +5,40 @@ const featuresJSON = require('../dist/features.json'); const resourcesJSON = require('../dist/resources.json'); -test('dist/features.json', function(t) { - - t.test('is an object', function(t) { - t.type(featuresJSON, 'object'); - t.end(); - }); - - t.test('has a features property', function(t) { - t.true(featuresJSON.hasOwnProperty('features')); - t.end(); - }); - +test('dist/features.json', t => { + t.test('is an object', t => { + t.type(featuresJSON, 'object'); t.end(); + }); + t.test('has a features property', t => { + t.true(featuresJSON.hasOwnProperty('features')); + t.end(); + }); + t.end(); }); -test('dist/resources.json', function(t) { - - t.test('is an object', function(t) { - t.type(resourcesJSON, 'object'); - t.end(); - }); - - t.test('has a resources property', function(t) { - t.true(resourcesJSON.hasOwnProperty('resources')); - t.end(); - }); +test('dist/resources.json', t => { + t.test('is an object', t => { + t.type(resourcesJSON, 'object'); + t.end(); + }); + t.test('has a resources property', t => { + t.true(resourcesJSON.hasOwnProperty('resources')); t.end(); + }); + t.end(); }); -test('index.js', function(t) { - - t.test('exports all features', function(t) { - t.deepEqual(oci.features, featuresJSON.features); - t.end(); - }); - - t.test('exports all resources', function(t) { - t.deepEqual(oci.resources, resourcesJSON.resources); - t.end(); - }); +test('index.js', t => { + t.test('exports all features', t => { + t.deepEqual(oci.features, featuresJSON.features); + t.end(); + }); + t.test('exports all resources', t => { + t.deepEqual(oci.resources, resourcesJSON.resources); t.end(); + }); + t.end(); }); diff --git a/test/isValidLocation.test.js b/test/isValidLocation.test.js new file mode 100644 index 000000000..2657c9078 --- /dev/null +++ b/test/isValidLocation.test.js @@ -0,0 +1,69 @@ +const test = require('tap').test; +const oci = require('../.'); + + +test('isValidLocation', t => { + + t.test('points', t => { + t.test('a valid [lon,lat] coordinate pair returns true', t => { + t.true(oci.isValidLocation([0, 0])); + t.true(oci.isValidLocation([-180, -90])); + t.true(oci.isValidLocation([-180, 90])); + t.true(oci.isValidLocation([180, -90])); + t.true(oci.isValidLocation([180, 90])); + t.end(); + }); + t.test('an invalid [lon,lat] coordinate pair returns false', t => { + t.false(oci.isValidLocation([])); + t.false(oci.isValidLocation(['a'])); + t.false(oci.isValidLocation([0])); + t.false(oci.isValidLocation([0, 0, 0])); + t.false(oci.isValidLocation([-181, -90])); + t.false(oci.isValidLocation([-180, 91])); + t.false(oci.isValidLocation([181, -90])); + t.false(oci.isValidLocation([180, 91])); + t.end(); + }); + t.end(); + }); + + + t.test('`.geojson` filenames', t => { + t.test('a valid `.geojson` filename in this project returns true', t => { + t.true(oci.isValidLocation('philly_metro.geojson', oci.features)); + t.end(); + }); + t.test('an invalid `.geojson` filename in this project returns false', t => { + t.false(oci.isValidLocation('philly_metro.geojson')); // no features to check it against + t.false(oci.isValidLocation('philly_metro', oci.features)); // missing .geojson + t.false(oci.isValidLocation('fake.geojson', oci.features)); // fake filename + t.end(); + }); + t.end(); + }); + + + t.test('country coder feature identifiers', t => { + t.test('a valid country coder feature identifier returns true', t => { + t.true(oci.isValidLocation('GB')); + t.true(oci.isValidLocation('gb')); + t.true(oci.isValidLocation('GBR')); + t.true(oci.isValidLocation('gbr')); + t.true(oci.isValidLocation('826')); + t.true(oci.isValidLocation(826)); + t.true(oci.isValidLocation('Q145')); + t.true(oci.isValidLocation('🇬🇧')); + t.true(oci.isValidLocation('united kingdom')); + t.end(); + }); + t.test('an invalid country coder feature identifier returns false', t => { + t.false(oci.isValidLocation('')); + t.false(oci.isValidLocation('false')); + t.false(oci.isValidLocation('null')); + t.end(); + }); + t.end(); + }); + + t.end(); +}); diff --git a/test/locationToFeature.test.js b/test/locationToFeature.test.js new file mode 100644 index 000000000..ad70e6cee --- /dev/null +++ b/test/locationToFeature.test.js @@ -0,0 +1,55 @@ +const test = require('tap').test; +const oci = require('../.'); + + +test('locationToFeature', t => { + + t.test('points', t => { + t.test('a valid [lon,lat] coordinate pair returns a feature match', t => { + let result = oci.locationToFeature([0, 0]); + t.notEqual(result, null); + t.equal(result.type, 'point'); + t.end(); + }); + t.test('an invalid [lon,lat] coordinate pair returns a null match', t => { + let result = oci.locationToFeature([]); + t.equal(result, null); + t.end(); + }); + t.end(); + }); + + + t.test('`.geojson` filenames', t => { + t.test('a valid `.geojson` filename in this project returns a feature match', t => { + let result = oci.locationToFeature('philly_metro.geojson', oci.features); + t.notEqual(result, null); + t.equal(result.type, 'geojson'); + t.end(); + }); + t.test('an invalid `.geojson` filename in this project returns a null match', t => { + let result = oci.locationToFeature('fake.geojson', oci.features); + t.equal(result, null); + t.end(); + }); + t.end(); + }); + + + t.test('country coder feature identifiers', t => { + t.test('a valid country coder feature identifier returns a feature match', t => { + let result = oci.locationToFeature('gb'); + t.notEqual(result, null); + t.equal(result.type, 'countrycoder'); + t.end(); + }); + t.test('an invalid country coder feature identifier returns a null match', t => { + let result = oci.locationToFeature('fake'); + t.equal(result, null); + t.end(); + }); + t.end(); + }); + + t.end(); +}); From f84369866d9bb1957b544db4a19347453d42d8aa Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 18 Nov 2019 14:13:48 -0500 Subject: [PATCH 32/35] Drop precision on generated 25km point-circle features --- lib/locationToFeature.js | 3 ++- package.json | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/locationToFeature.js b/lib/locationToFeature.js index 86e4efc04..74ac226a5 100644 --- a/lib/locationToFeature.js +++ b/lib/locationToFeature.js @@ -1,5 +1,6 @@ const CountryCoder = require('country-coder'); const circleToPolygon = require('circle-to-polygon'); +const precision = require('geojson-precision'); function locationToFeature(location, features) { @@ -16,7 +17,7 @@ function locationToFeature(location, features) { type: 'Feature', properties: { area: AREA }, geometry: circleToPolygon(location, RADIUS, EDGES) }; - return { type: 'point', feature: feature }; + return { type: 'point', feature: precision(feature, 3) }; } else { return null; } diff --git a/package.json b/package.json index 469cb7987..4d3c13393 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,8 @@ }, "dependencies": { "circle-to-polygon": "^1.0.2", - "country-coder": "^2.1.0" + "country-coder": "^2.1.0", + "geojson-precision": "^0.4.0" }, "devDependencies": { "@fortawesome/fontawesome-svg-core": "^1.2.25", @@ -34,7 +35,6 @@ "colors": "^1.1.2", "easy-table": "^1.1.1", "eslint": "^6.0.0", - "geojson-precision": "^0.4.0", "geojson-rewind": "^0.3.1", "glob": "^7.1.5", "js-yaml": "^3.13.1", From 2b82144df69cf3c43ecde6bd420d6f9ed3ca2560 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 18 Nov 2019 14:45:06 -0500 Subject: [PATCH 33/35] Make sure all features contain an area property We use this for sorting them --- build.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.js b/build.js index 6d0c22fa0..98ba780b2 100644 --- a/build.js +++ b/build.js @@ -317,6 +317,10 @@ function generateCombined(features, resources) { let keepFeature = keepFeatures[featureId]; if (!keepFeature) { keepFeature = deepClone(origFeature); + + let area = calcArea.geometry(keepFeature.geometry) / 1e6; // m² to km² + keepFeature.properties = keepFeatures.properties || {}; + keepFeature.properties.area = keepFeature.properties.area || Number(area.toFixed(2)); keepFeature.properties.resources = {}; keepFeatures[featureId] = keepFeature; } From 9752916b5cb168bff8f6cd0de778fe0e2a692420 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 18 Nov 2019 16:28:17 -0500 Subject: [PATCH 34/35] Remove area properties from geojsons - do this with code instead --- CONTRIBUTING.md | 4 +- build.js | 19 ++----- features/africa/ghana/cape_coast_gh.geojson | 2 +- .../asia/india/india_andhrapradesh.geojson | 2 +- features/asia/india/india_karnataka.geojson | 2 +- features/asia/india/india_kerala.geojson | 2 +- features/asia/india/india_maharashtra.geojson | 2 +- features/asia/india/india_tamilnadu.geojson | 2 +- features/asia/india/india_telengana.geojson | 2 +- features/asia/thailand/thailand_cnx.geojson | 2 +- features/europe/belgium/flanders.geojson | 2 +- features/europe/belgium/wallonia.geojson | 2 +- .../germany/de-berlin-brandenburg.geojson | 2 +- features/europe/germany/de-hamburg.geojson | 2 +- .../germany/de-ostwestfalen-lippe.geojson | 2 +- features/europe/italy/lazio.geojson | 2 +- features/europe/italy/roma-capitale.geojson | 2 +- features/europe/italy/south-tyrol.geojson | 2 +- features/europe/italy/trentino.geojson | 2 +- features/europe/spain/galicia.geojson | 2 +- .../united_kingdom/east_midlands.geojson | 2 +- .../england-west-midlands.geojson | 2 +- features/europe/united_kingdom/london.geojson | 2 +- .../europe/united_kingdom/scotland.geojson | 2 +- .../canada/ottawa_gatineau.geojson | 2 +- .../canada/vancouver_metro.geojson | 2 +- .../united_states/boston_metro.geojson | 2 +- .../united_states/central_pa.geojson | 2 +- .../united_states/chattanooga.geojson | 2 +- .../united_states/cleveland.geojson | 2 +- .../united_states/colorado.geojson | 2 +- .../united_states/dc_metro.geojson | 2 +- .../united_states/dfw_metro.geojson | 2 +- .../united_states/grand_junction_co.geojson | 2 +- .../north-america/united_states/hrva.geojson | 2 +- .../united_states/la_metro.geojson | 2 +- .../united_states/massachusetts.geojson | 2 +- .../minneapolis_st_paul_metro.geojson | 2 +- .../united_states/mt_vernon_wa.geojson | 2 +- .../united_states/nyc_metro.geojson | 2 +- .../united_states/philly_metro.geojson | 2 +- .../united_states/phoenix.geojson | 2 +- .../united_states/portland_me.geojson | 2 +- .../united_states/portland_or.geojson | 2 +- .../united_states/salt_lake_city.geojson | 2 +- .../united_states/seattle.geojson | 2 +- .../united_states/sf_bay_area.geojson | 2 +- .../united_states/south_sf_bay_area.geojson | 2 +- .../united_states/st_louis.geojson | 2 +- .../united_states/tampa_bay.geojson | 2 +- .../united_states/wyoming.geojson | 2 +- .../australia/western_australia.geojson | 2 +- features/south-america/brazil/bahia.geojson | 2 +- .../south-america/brazil/brasilia_df.geojson | 2 +- .../south-america/colombia/bogota.geojson | 2 +- lib/locationToFeature.js | 55 ++++++++++++++----- package.json | 2 +- 57 files changed, 101 insertions(+), 85 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e625f95c1..addfe3b89 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -144,7 +144,7 @@ Feature files look like this: { "type": "Feature", "id": "boston_metro", - "properties": {"area": 6992.97}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [...] @@ -164,8 +164,6 @@ or 1. Simplify the file with [Mapshaper](http://mapshaper.org/). Beware that the simplification probably cuts some border areas. 1. So load the file in [geojson.io](http://geojson.io) and include the border areas again and perhaps reduce the point count further. It is probably better to have the feature a bit larger than missing an area. -You do not need to supply an `area` property or `id` property. The `npm run build` script will calculate these automatically. - ### Building diff --git a/build.js b/build.js index 98ba780b2..f516167dd 100644 --- a/build.js +++ b/build.js @@ -75,14 +75,11 @@ function generateFeatures() { feature = fc[0]; } - // calculate area and set a property for it - let props = feature.properties || {}; + // warn if this feature is so small it would better be represented as a point. let area = calcArea.geometry(feature.geometry) / 1e6; // m² to km² - props.area = Number(area.toFixed(2)); - feature.properties = props; - - if (props.area < 2000) { // warn if this feature is so small it would better be represented as a point. - console.warn(colors.yellow('Warning - small area (' + props.area + '). Use a point `includeLocation` instead.')); + area = Number(area.toFixed(2)); + if (area < 2000) { + console.warn(colors.yellow('Warning - small area (' + area + ' km²). Use a point `includeLocation` instead.')); console.warn(' ' + colors.yellow(file)); } @@ -303,7 +300,6 @@ function deepClone(obj) { // ] // } // -// function generateCombined(features, resources) { let keepFeatures = {}; @@ -312,15 +308,10 @@ function generateCombined(features, resources) { resource.includeLocations.forEach(location => { const featureId = location.toString(); - const origFeature = locationToFeature(location, features).feature; - let keepFeature = keepFeatures[featureId]; if (!keepFeature) { + const origFeature = locationToFeature(location, features).feature; keepFeature = deepClone(origFeature); - - let area = calcArea.geometry(keepFeature.geometry) / 1e6; // m² to km² - keepFeature.properties = keepFeatures.properties || {}; - keepFeature.properties.area = keepFeature.properties.area || Number(area.toFixed(2)); keepFeature.properties.resources = {}; keepFeatures[featureId] = keepFeature; } diff --git a/features/africa/ghana/cape_coast_gh.geojson b/features/africa/ghana/cape_coast_gh.geojson index 7fcb655d5..36a1cbb5d 100644 --- a/features/africa/ghana/cape_coast_gh.geojson +++ b/features/africa/ghana/cape_coast_gh.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "cape_coast_gh", - "properties": {"area": 2961.84}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [[[-1.6, 5], [-1.6, 5.4], [-1, 5.4], [-1, 5], [-1.6, 5]]] diff --git a/features/asia/india/india_andhrapradesh.geojson b/features/asia/india/india_andhrapradesh.geojson index bd29f3fc0..c10816973 100644 --- a/features/asia/india/india_andhrapradesh.geojson +++ b/features/asia/india/india_andhrapradesh.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "india_andhrapradesh", - "properties": {"area": 229542.28}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/asia/india/india_karnataka.geojson b/features/asia/india/india_karnataka.geojson index 0d286429a..df21220b5 100644 --- a/features/asia/india/india_karnataka.geojson +++ b/features/asia/india/india_karnataka.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "india_karnataka", - "properties": {"area": 200460.96}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/asia/india/india_kerala.geojson b/features/asia/india/india_kerala.geojson index 02bf18a5b..c374e702c 100644 --- a/features/asia/india/india_kerala.geojson +++ b/features/asia/india/india_kerala.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "india_kerala", - "properties": {"area": 56032.32}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/asia/india/india_maharashtra.geojson b/features/asia/india/india_maharashtra.geojson index 7b59edd04..9c21b62f5 100644 --- a/features/asia/india/india_maharashtra.geojson +++ b/features/asia/india/india_maharashtra.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "india_maharashtra", - "properties": {"name": "Maharashtra", "area": 323369.3}, + "properties": {"name": "Maharashtra"}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/asia/india/india_tamilnadu.geojson b/features/asia/india/india_tamilnadu.geojson index 088db9f4f..1c5c11088 100644 --- a/features/asia/india/india_tamilnadu.geojson +++ b/features/asia/india/india_tamilnadu.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "india_tamilnadu", - "properties": {"area": 160506.91}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/asia/india/india_telengana.geojson b/features/asia/india/india_telengana.geojson index 30e447cb2..efa88ef40 100644 --- a/features/asia/india/india_telengana.geojson +++ b/features/asia/india/india_telengana.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "india_telengana", - "properties": {"area": 115460.77}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/asia/thailand/thailand_cnx.geojson b/features/asia/thailand/thailand_cnx.geojson index 323b8f61e..04e24cb6c 100644 --- a/features/asia/thailand/thailand_cnx.geojson +++ b/features/asia/thailand/thailand_cnx.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "thailand_cnx", - "properties": {"area": 12746.21}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/europe/belgium/flanders.geojson b/features/europe/belgium/flanders.geojson index f3789b69c..987b6c055 100644 --- a/features/europe/belgium/flanders.geojson +++ b/features/europe/belgium/flanders.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "flanders", - "properties": {"area": 15565.45}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/europe/belgium/wallonia.geojson b/features/europe/belgium/wallonia.geojson index f2eccf054..80b0c9f80 100644 --- a/features/europe/belgium/wallonia.geojson +++ b/features/europe/belgium/wallonia.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "wallonia", - "properties": {"area": 16809.63}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/europe/germany/de-berlin-brandenburg.geojson b/features/europe/germany/de-berlin-brandenburg.geojson index cfec58c6a..ab7fb6395 100644 --- a/features/europe/germany/de-berlin-brandenburg.geojson +++ b/features/europe/germany/de-berlin-brandenburg.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "de-berlin-brandenburg", - "properties": {"area": 30992.44}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/europe/germany/de-hamburg.geojson b/features/europe/germany/de-hamburg.geojson index 7e7595acd..09164f23a 100644 --- a/features/europe/germany/de-hamburg.geojson +++ b/features/europe/germany/de-hamburg.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "de-hamburg", - "properties": {"area": 2944.94}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [[[9.6, 53.8], [10.4, 53.8], [10.4, 53.3], [9.6, 53.3], [9.6, 53.8]]] diff --git a/features/europe/germany/de-ostwestfalen-lippe.geojson b/features/europe/germany/de-ostwestfalen-lippe.geojson index 2a86fa411..99ca19919 100644 --- a/features/europe/germany/de-ostwestfalen-lippe.geojson +++ b/features/europe/germany/de-ostwestfalen-lippe.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "de-ostwestfalen-lippe", - "properties": {"area": 8309.26}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/europe/italy/lazio.geojson b/features/europe/italy/lazio.geojson index 974ce293c..dbc436094 100644 --- a/features/europe/italy/lazio.geojson +++ b/features/europe/italy/lazio.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "lazio", - "properties": {"area": 31965.66}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/europe/italy/roma-capitale.geojson b/features/europe/italy/roma-capitale.geojson index 437c619f0..664345756 100644 --- a/features/europe/italy/roma-capitale.geojson +++ b/features/europe/italy/roma-capitale.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "roma-capitale", - "properties": {"area": 9122.36}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/europe/italy/south-tyrol.geojson b/features/europe/italy/south-tyrol.geojson index 349e03058..41e138d9f 100644 --- a/features/europe/italy/south-tyrol.geojson +++ b/features/europe/italy/south-tyrol.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "south-tyrol", - "properties": {"area": 8631.87}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/europe/italy/trentino.geojson b/features/europe/italy/trentino.geojson index e470ae67a..cbd096557 100644 --- a/features/europe/italy/trentino.geojson +++ b/features/europe/italy/trentino.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "trentino", - "properties": {"area": 7414.09}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/europe/spain/galicia.geojson b/features/europe/spain/galicia.geojson index 1d4b71089..e78f8de53 100644 --- a/features/europe/spain/galicia.geojson +++ b/features/europe/spain/galicia.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "galicia", - "properties": {"area": 37013.86}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/europe/united_kingdom/east_midlands.geojson b/features/europe/united_kingdom/east_midlands.geojson index c1b563c3a..99a7e6dd4 100644 --- a/features/europe/united_kingdom/east_midlands.geojson +++ b/features/europe/united_kingdom/east_midlands.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "east_midlands", - "properties": {"area": 15714.38}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/europe/united_kingdom/england-west-midlands.geojson b/features/europe/united_kingdom/england-west-midlands.geojson index 69e04c54e..00686dd16 100644 --- a/features/europe/united_kingdom/england-west-midlands.geojson +++ b/features/europe/united_kingdom/england-west-midlands.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "england-west-midlands", - "properties": {"area": 16886.07}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/europe/united_kingdom/london.geojson b/features/europe/united_kingdom/london.geojson index 60379b536..ef8ee1742 100644 --- a/features/europe/united_kingdom/london.geojson +++ b/features/europe/united_kingdom/london.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "london", - "properties": {"area": 2308.48}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/europe/united_kingdom/scotland.geojson b/features/europe/united_kingdom/scotland.geojson index ea6537f6e..910ad7ca2 100644 --- a/features/europe/united_kingdom/scotland.geojson +++ b/features/europe/united_kingdom/scotland.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "scotland", - "properties": {"area": 328409.28}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/canada/ottawa_gatineau.geojson b/features/north-america/canada/ottawa_gatineau.geojson index b19e4180d..1b463defe 100644 --- a/features/north-america/canada/ottawa_gatineau.geojson +++ b/features/north-america/canada/ottawa_gatineau.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "ottawa_gatineau", - "properties": {"area": 4073.81}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/canada/vancouver_metro.geojson b/features/north-america/canada/vancouver_metro.geojson index e8505a2a3..f4224cb83 100644 --- a/features/north-america/canada/vancouver_metro.geojson +++ b/features/north-america/canada/vancouver_metro.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "vancouver_metro", - "properties": {"area": 3553.36}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/united_states/boston_metro.geojson b/features/north-america/united_states/boston_metro.geojson index f2398e590..9f2ad0a7f 100644 --- a/features/north-america/united_states/boston_metro.geojson +++ b/features/north-america/united_states/boston_metro.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "boston_metro", - "properties": {"area": 6992.97}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/united_states/central_pa.geojson b/features/north-america/united_states/central_pa.geojson index 20bdf68f7..0c4b23127 100644 --- a/features/north-america/united_states/central_pa.geojson +++ b/features/north-america/united_states/central_pa.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "central_pa", - "properties": {"area": 43193.43}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/united_states/chattanooga.geojson b/features/north-america/united_states/chattanooga.geojson index c60f2ce20..c3643f5d1 100644 --- a/features/north-america/united_states/chattanooga.geojson +++ b/features/north-america/united_states/chattanooga.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "chattanooga", - "properties": {"area": 3834.83}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/united_states/cleveland.geojson b/features/north-america/united_states/cleveland.geojson index 8849b968d..516273270 100644 --- a/features/north-america/united_states/cleveland.geojson +++ b/features/north-america/united_states/cleveland.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "cleveland", - "properties": {"area": 10803}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [[[-82.5, 41.5], [-80.95, 42], [-80.95, 41], [-82.5, 41], [-82.5, 41.5]]] diff --git a/features/north-america/united_states/colorado.geojson b/features/north-america/united_states/colorado.geojson index 300a63464..a6528042e 100644 --- a/features/north-america/united_states/colorado.geojson +++ b/features/north-america/united_states/colorado.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "colorado", - "properties": {"area": 269596.87}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [[[-109.05, 37], [-109.05, 41], [-102.05, 41], [-102.05, 37], [-109.05, 37]]] diff --git a/features/north-america/united_states/dc_metro.geojson b/features/north-america/united_states/dc_metro.geojson index 2ef67fba5..c0e3d8808 100644 --- a/features/north-america/united_states/dc_metro.geojson +++ b/features/north-america/united_states/dc_metro.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "dc_metro", - "properties": {"area": 3371.08}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/united_states/dfw_metro.geojson b/features/north-america/united_states/dfw_metro.geojson index 38c9a9e2d..4dd9d143c 100644 --- a/features/north-america/united_states/dfw_metro.geojson +++ b/features/north-america/united_states/dfw_metro.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "dfw_metro", - "properties": {"area": 20956.61}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [[[-97.75, 32.25], [-97.75, 33.4], [-96, 33.4], [-96, 32.25], [-97.75, 32.25]]] diff --git a/features/north-america/united_states/grand_junction_co.geojson b/features/north-america/united_states/grand_junction_co.geojson index 00ba027bf..960c325ff 100644 --- a/features/north-america/united_states/grand_junction_co.geojson +++ b/features/north-america/united_states/grand_junction_co.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "grand_junction_co", - "properties": {"area": 7597.76}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/united_states/hrva.geojson b/features/north-america/united_states/hrva.geojson index c69ad0913..d476e70ff 100644 --- a/features/north-america/united_states/hrva.geojson +++ b/features/north-america/united_states/hrva.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "hrva", - "properties": {"area": 8418.99}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/united_states/la_metro.geojson b/features/north-america/united_states/la_metro.geojson index 33a515818..391322dc0 100644 --- a/features/north-america/united_states/la_metro.geojson +++ b/features/north-america/united_states/la_metro.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "la_metro", - "properties": {"area": 7875.76}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/united_states/massachusetts.geojson b/features/north-america/united_states/massachusetts.geojson index 77307a728..3138b84ec 100644 --- a/features/north-america/united_states/massachusetts.geojson +++ b/features/north-america/united_states/massachusetts.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "massachusetts", - "properties": {"area": 58665.67}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/united_states/minneapolis_st_paul_metro.geojson b/features/north-america/united_states/minneapolis_st_paul_metro.geojson index 12d6f0726..1ba099ba8 100644 --- a/features/north-america/united_states/minneapolis_st_paul_metro.geojson +++ b/features/north-america/united_states/minneapolis_st_paul_metro.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "minneapolis_st_paul_metro", - "properties": {"area": 7662.86}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/united_states/mt_vernon_wa.geojson b/features/north-america/united_states/mt_vernon_wa.geojson index 3f0324b01..2cb6f767a 100644 --- a/features/north-america/united_states/mt_vernon_wa.geojson +++ b/features/north-america/united_states/mt_vernon_wa.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "mt_vernon_wa", - "properties": {"area": 8116.36}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [[[-123.3, 49], [-122, 49], [-122, 48], [-123.2, 48.4], [-123.3, 49]]] diff --git a/features/north-america/united_states/nyc_metro.geojson b/features/north-america/united_states/nyc_metro.geojson index 707aa9ff0..33863bdde 100644 --- a/features/north-america/united_states/nyc_metro.geojson +++ b/features/north-america/united_states/nyc_metro.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "nyc_metro", - "properties": {"area": 7203.85}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/united_states/philly_metro.geojson b/features/north-america/united_states/philly_metro.geojson index 161dd50ef..7f7bcf4c4 100644 --- a/features/north-america/united_states/philly_metro.geojson +++ b/features/north-america/united_states/philly_metro.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "philly_metro", - "properties": {"area": 9339.06}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/united_states/phoenix.geojson b/features/north-america/united_states/phoenix.geojson index 2076ec87d..29d703166 100644 --- a/features/north-america/united_states/phoenix.geojson +++ b/features/north-america/united_states/phoenix.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "phoenix", - "properties": {"area": 25567.43}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [[[-113, 32.7], [-113, 34], [-111.1, 34], [-111.1, 32.7], [-113, 32.7]]] diff --git a/features/north-america/united_states/portland_me.geojson b/features/north-america/united_states/portland_me.geojson index 3f2272a2c..fcea8c6d3 100644 --- a/features/north-america/united_states/portland_me.geojson +++ b/features/north-america/united_states/portland_me.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "portland_me", - "properties": {"area": 17148.97}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/united_states/portland_or.geojson b/features/north-america/united_states/portland_or.geojson index 0b045efb2..9a1305fa5 100644 --- a/features/north-america/united_states/portland_or.geojson +++ b/features/north-america/united_states/portland_or.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "portland_or", - "properties": {"area": 37748.1}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/united_states/salt_lake_city.geojson b/features/north-america/united_states/salt_lake_city.geojson index 0a901a2fa..5cd4b0ba7 100644 --- a/features/north-america/united_states/salt_lake_city.geojson +++ b/features/north-america/united_states/salt_lake_city.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "salt_lake_city", - "properties": {"area": 15136}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/united_states/seattle.geojson b/features/north-america/united_states/seattle.geojson index d8a586731..d32179772 100644 --- a/features/north-america/united_states/seattle.geojson +++ b/features/north-america/united_states/seattle.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "seattle", - "properties": {"area": 5767.44}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/united_states/sf_bay_area.geojson b/features/north-america/united_states/sf_bay_area.geojson index 139c7c86e..596433c92 100644 --- a/features/north-america/united_states/sf_bay_area.geojson +++ b/features/north-america/united_states/sf_bay_area.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "sf_bay_area", - "properties": {"area": 26601.97}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/united_states/south_sf_bay_area.geojson b/features/north-america/united_states/south_sf_bay_area.geojson index 2db073a87..b175dda34 100644 --- a/features/north-america/united_states/south_sf_bay_area.geojson +++ b/features/north-america/united_states/south_sf_bay_area.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "south_sf_bay_area", - "properties": {"area": 4030.01}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/united_states/st_louis.geojson b/features/north-america/united_states/st_louis.geojson index 457817308..8877cab8b 100644 --- a/features/north-america/united_states/st_louis.geojson +++ b/features/north-america/united_states/st_louis.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "st_louis", - "properties": {"area": 15521.97}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/north-america/united_states/tampa_bay.geojson b/features/north-america/united_states/tampa_bay.geojson index 16b32bbf4..d87cf3907 100644 --- a/features/north-america/united_states/tampa_bay.geojson +++ b/features/north-america/united_states/tampa_bay.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "tampa_bay", - "properties": {"area": 5696.14}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [[[-83, 28.2], [-82.2, 28.2], [-82.2, 27.55], [-83, 27.55], [-83, 28.2]]] diff --git a/features/north-america/united_states/wyoming.geojson b/features/north-america/united_states/wyoming.geojson index c0cd1ed73..c3c1dd126 100644 --- a/features/north-america/united_states/wyoming.geojson +++ b/features/north-america/united_states/wyoming.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "wyoming", - "properties": {"area": 253711.25}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [[[-111.05, 41], [-111.05, 45], [-104.05, 45], [-104.05, 41], [-111.05, 41]]] diff --git a/features/oceania/australia/western_australia.geojson b/features/oceania/australia/western_australia.geojson index 347c446f6..d2f9bb664 100644 --- a/features/oceania/australia/western_australia.geojson +++ b/features/oceania/australia/western_australia.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "western_australia", - "properties": {"area": 8156753.18}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/south-america/brazil/bahia.geojson b/features/south-america/brazil/bahia.geojson index dcf9cc900..aec0c3e87 100644 --- a/features/south-america/brazil/bahia.geojson +++ b/features/south-america/brazil/bahia.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "bahia", - "properties": {"area": 640271.37}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/south-america/brazil/brasilia_df.geojson b/features/south-america/brazil/brasilia_df.geojson index ef1bed104..80c4b84c1 100644 --- a/features/south-america/brazil/brasilia_df.geojson +++ b/features/south-america/brazil/brasilia_df.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "brasilia_df", - "properties": {"area": 5794.12}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/features/south-america/colombia/bogota.geojson b/features/south-america/colombia/bogota.geojson index a4d182737..c4a42c129 100644 --- a/features/south-america/colombia/bogota.geojson +++ b/features/south-america/colombia/bogota.geojson @@ -1,7 +1,7 @@ { "type": "Feature", "id": "bogota", - "properties": {"area": 3842.38}, + "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ diff --git a/lib/locationToFeature.js b/lib/locationToFeature.js index 74ac226a5..67d656e8c 100644 --- a/lib/locationToFeature.js +++ b/lib/locationToFeature.js @@ -1,4 +1,6 @@ const CountryCoder = require('country-coder'); + +const calcArea = require('@mapbox/geojson-area'); const circleToPolygon = require('circle-to-polygon'); const precision = require('geojson-precision'); @@ -6,34 +8,52 @@ const precision = require('geojson-precision'); function locationToFeature(location, features) { features = features || {}; - if (Array.isArray(location)) { // a [lon,lat] coordinate pair? + // a [lon,lat] coordinate pair? + if (Array.isArray(location)) { if (location.length === 2 && Number.isFinite(location[0]) && Number.isFinite(location[1]) && location[0] >= -180 && location[0] <= 180 && location[1] >= -90 && location[1] <= 90 ) { const RADIUS = 25000; // meters const EDGES = 10; - const AREA = Math.PI * RADIUS * RADIUS / 1e6; // m² to km² - const feature = { + const id = location.toString(); + const area = Math.PI * RADIUS * RADIUS / 1e6; // m² to km² + + let feature = { type: 'Feature', - properties: { area: AREA }, - geometry: circleToPolygon(location, RADIUS, EDGES) }; + id: id, + properties: { + id: id, + area: Number(area.toFixed(2)) + }, + geometry: circleToPolygon(location, RADIUS, EDGES) + }; return { type: 'point', feature: precision(feature, 3) }; } else { return null; } - } else if (/^\S+\.geojson$/i.test(location)) { // a .geojson filename? + // a .geojson filename? + } else if (/^\S+\.geojson$/i.test(location)) { let featureId = location.replace('.geojson', ''); - if (features[featureId]) { - return { type: 'geojson', feature: features[featureId] }; + let feature = features[featureId]; + + if (feature) { + feature.properties = feature.properties || {}; + if (!feature.properties.area) { // ensure area property + let area = calcArea.geometry(feature.geometry) / 1e6; // m² to km² + feature.properties.area = Number(area.toFixed(2)); + } + return { type: 'geojson', feature: feature }; } else { return null; } - } else { // a country-coder string? + // a country-coder string? + } else { if (location === '001') { // waitfor https://github.com/ideditor/country-coder/issues/14 const world = { type: 'Feature', + id: '001', properties: { m49: '001', wikidata: 'Q2', @@ -47,12 +67,19 @@ function locationToFeature(location, features) { } } return { type: 'countrycoder', feature: world } - } - let ccmatch = CountryCoder.aggregateFeature(location); - if (ccmatch) { - return { type: 'countrycoder', feature: ccmatch }; + } else { - return null; + let feature = CountryCoder.aggregateFeature(location); + if (feature) { + feature.properties = feature.properties || {}; + if (!feature.properties.area) { // ensure area property + const area = calcArea.geometry(feature.geometry) / 1e6; // m² to km² + feature.properties.area = Number(area.toFixed(2)); + } + return { type: 'countrycoder', feature: feature }; + } else { + return null; + } } } } diff --git a/package.json b/package.json index 4d3c13393..8f5b02b96 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ "txpush": "tx push -s" }, "dependencies": { + "@mapbox/geojson-area": "^0.2.2", "circle-to-polygon": "^1.0.2", "country-coder": "^2.1.0", "geojson-precision": "^0.4.0" @@ -30,7 +31,6 @@ "@fortawesome/fontawesome-svg-core": "^1.2.25", "@fortawesome/free-brands-svg-icons": "^5.11.2", "@fortawesome/free-solid-svg-icons": "^5.11.2", - "@mapbox/geojson-area": "^0.2.2", "bytes": "^3.0.0", "colors": "^1.1.2", "easy-table": "^1.1.1", From d9ea5f7538448e3c846980d80e1939ad5283fffa Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 18 Nov 2019 16:37:33 -0500 Subject: [PATCH 35/35] Test that returned features have a numeric `area` property --- test/locationToFeature.test.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/locationToFeature.test.js b/test/locationToFeature.test.js index ad70e6cee..c4c36a329 100644 --- a/test/locationToFeature.test.js +++ b/test/locationToFeature.test.js @@ -9,6 +9,9 @@ test('locationToFeature', t => { let result = oci.locationToFeature([0, 0]); t.notEqual(result, null); t.equal(result.type, 'point'); + t.type(result.feature, 'object'); + t.type(result.feature.properties, 'object'); + t.match(result.feature.properties, { area: /\d+/ }); // has a numeric area property t.end(); }); t.test('an invalid [lon,lat] coordinate pair returns a null match', t => { @@ -25,6 +28,9 @@ test('locationToFeature', t => { let result = oci.locationToFeature('philly_metro.geojson', oci.features); t.notEqual(result, null); t.equal(result.type, 'geojson'); + t.type(result.feature, 'object'); + t.type(result.feature.properties, 'object'); + t.match(result.feature.properties, { area: /\d+/ }); // has a numeric area property t.end(); }); t.test('an invalid `.geojson` filename in this project returns a null match', t => { @@ -41,6 +47,9 @@ test('locationToFeature', t => { let result = oci.locationToFeature('gb'); t.notEqual(result, null); t.equal(result.type, 'countrycoder'); + t.type(result.feature, 'object'); + t.type(result.feature.properties, 'object'); + t.match(result.feature.properties, { area: /\d+/ }); // has a numeric area property t.end(); }); t.test('an invalid country coder feature identifier returns a null match', t => {