diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2021-11-02 13:27:35 +0100 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2021-11-02 13:27:35 +0100 |
| commit | 5a0e8ad01d8bc19c46cb7c2263513c1d7129a6a1 (patch) | |
| tree | c5e3573b3a087cadf0ea94e45b063bd6b2a0c197 /gui/scripts | |
| parent | 5922d4397fa6eb96123d918a7e6cfd80058e12ff (diff) | |
| parent | b7df03ec50c7ea4881342c18e6052803eca83ff9 (diff) | |
| download | mullvadvpn-5a0e8ad01d8bc19c46cb7c2263513c1d7129a6a1.tar.xz mullvadvpn-5a0e8ad01d8bc19c46cb7c2263513c1d7129a6a1.zip | |
Merge branch 'lower-map-resolution'
Diffstat (limited to 'gui/scripts')
| -rwxr-xr-x | gui/scripts/extract-geo-data.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/scripts/extract-geo-data.py b/gui/scripts/extract-geo-data.py index 2198a6f7e0..b80e07365b 100755 --- a/gui/scripts/extract-geo-data.py +++ b/gui/scripts/extract-geo-data.py @@ -41,7 +41,7 @@ LOCALE_MAPPING = { def extract_geometry(): - input_path = get_shape_path("ne_50m_admin_0_countries") + input_path = get_shape_path("ne_110m_admin_0_countries") output_path = path.join(OUT_DIR, "geometry.json") features = [] @@ -69,7 +69,7 @@ def extract_geometry(): def extract_provinces_and_states_lines(): - input_path = get_shape_path("ne_50m_admin_1_states_provinces_lines") + input_path = get_shape_path("ne_110m_admin_1_states_provinces_lines") output_path = path.join(OUT_DIR, "states-provinces-lines.json") features = [] @@ -342,7 +342,7 @@ class CountryTranslator: Private helper to build the index for the geo dataset, that can be used to speed up the translations lookup. """ - shape_path = get_shape_path("ne_50m_admin_0_countries") + shape_path = get_shape_path("ne_110m_admin_0_countries") dataset = dict() # build a hash map of the entire datasource in memory |
