Update source of continentmap to original CSV file.

Now fetching from https://github.com/datasets/country-codes repository.
This commit is contained in:
Joachim Bauch 2024-03-11 10:36:38 +01:00
parent 1fa731f20e
commit b0f2e6ea33
No known key found for this signature in database
GPG key ID: 77C1D22D53E15F02
2 changed files with 7 additions and 6 deletions

View file

@ -1,7 +1,7 @@
package signaling
// This file has been automatically generated, do not modify.
// Source: https://datahub.io/core/country-codes/r/country-codes.json
// Source: https://github.com/datasets/country-codes/raw/master/data/country-codes.csv
var (
ContinentMap = map[string][]string{

View file

@ -26,11 +26,11 @@ try:
from cStringIO import StringIO
except ImportError:
from io import StringIO
import json
import csv
import subprocess
import sys
URL = 'https://datahub.io/core/country-codes/r/country-codes.json'
URL = 'https://github.com/datasets/country-codes/raw/master/data/country-codes.csv'
def tostr(s):
if isinstance(s, bytes) and not isinstance(s, str):
@ -55,12 +55,13 @@ def generate_map(filename):
'-L',
URL,
])
data = json.loads(tostr(data))
reader = csv.DictReader(StringIO(tostr(data)), delimiter=',')
continents = {}
for entry in data:
for entry in reader:
country = entry['ISO3166-1-Alpha-2']
continent = entry['Continent']
if country is None and continent is None:
if not country and not continent:
continue
continents.setdefault(country, []).append(continent)