diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2021-11-03 12:50:42 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2021-11-03 12:50:42 +0100 |
| commit | 07c72a8ac83c8c23f9d25d17576c2c8b72adf618 (patch) | |
| tree | bc346803a7f31292665cefb898a8cedabfd80838 /gui/scripts | |
| parent | b248ecb17aee733310848b2728d3d63fa76c1394 (diff) | |
| download | mullvadvpn-07c72a8ac83c8c23f9d25d17576c2c8b72adf618.tar.xz mullvadvpn-07c72a8ac83c8c23f9d25d17576c2c8b72adf618.zip | |
Revert "Use lower resolution maps"
This reverts commit 76199d0904eacca86fac0e33c93101707fe77c3c.
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 b80e07365b..2198a6f7e0 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_110m_admin_0_countries") + input_path = get_shape_path("ne_50m_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_110m_admin_1_states_provinces_lines") + input_path = get_shape_path("ne_50m_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_110m_admin_0_countries") + shape_path = get_shape_path("ne_50m_admin_0_countries") dataset = dict() # build a hash map of the entire datasource in memory |
