diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2021-10-28 13:56:59 +0200 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2021-11-01 15:53:38 +0100 |
| commit | 76199d0904eacca86fac0e33c93101707fe77c3c (patch) | |
| tree | fa9ce033b5286dc67b29763925fdee120544babb | |
| parent | 5922d4397fa6eb96123d918a7e6cfd80058e12ff (diff) | |
| download | mullvadvpn-76199d0904eacca86fac0e33c93101707fe77c3c.tar.xz mullvadvpn-76199d0904eacca86fac0e33c93101707fe77c3c.zip | |
Use lower resolution maps
| -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 |
