You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by yj...@apache.org on 2022/01/12 16:43:20 UTC

[superset] branch master updated: feat(chart): add Mexico to country map viz (#18007)

This is an automated email from the ASF dual-hosted git repository.

yjc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new f451081  feat(chart): add Mexico to country map viz (#18007)
f451081 is described below

commit f45108116673d5810c238bb911058dc8ed05b75a
Author: Jesse Yang <je...@airbnb.com>
AuthorDate: Wed Jan 12 08:41:12 2022 -0800

    feat(chart): add Mexico to country map viz (#18007)
---
 .../scripts/Country Map GeoJSON Generator.ipynb    | 656 +++++++++++++--------
 .../src/countries.ts                               |   2 +
 .../src/countries/australia.geojson                | 136 +----
 .../src/countries/belgium.geojson                  |   8 +-
 .../src/countries/bulgaria.geojson                 |  12 +-
 .../src/countries/canada.geojson                   |   2 +-
 .../src/countries/china.geojson                    |  69 ++-
 .../src/countries/egypt.geojson                    |   8 +-
 .../src/countries/estonia.geojson                  |  22 +-
 .../src/countries/finland.geojson                  |  31 +-
 .../src/countries/france.geojson                   |   8 +-
 .../src/countries/germany.geojson                  |  18 +-
 .../src/countries/india.geojson                    |  71 +--
 .../src/countries/indonesia.geojson                |  66 +--
 .../src/countries/iran.geojson                     |   6 +-
 .../src/countries/italy.geojson                    |  12 +-
 .../src/countries/japan.geojson                    |  22 +-
 .../src/countries/korea.geojson                    |   8 +-
 .../src/countries/malaysia.geojson                 |  12 +-
 .../src/countries/mexico.geojson                   |  39 ++
 .../src/countries/morocco.geojson                  |  10 +-
 .../src/countries/myanmar.geojson                  |  10 +-
 .../src/countries/netherlands.geojson              |  10 +-
 .../src/countries/poland.geojson                   |   4 +-
 .../src/countries/portugal.geojson                 |  22 +-
 .../src/countries/russia.geojson                   | 171 +++---
 .../src/countries/slovenia.geojson                 |  56 +-
 .../src/countries/spain.geojson                    |  22 +-
 .../src/countries/sweden.geojson                   |   6 +-
 .../src/countries/switzerland.geojson              |  14 +-
 .../src/countries/syria.geojson                    |  16 +-
 .../src/countries/thailand.geojson                 |   6 +-
 .../src/countries/uk.geojson                       |  28 +-
 .../src/countries/ukraine.geojson                  |   8 +-
 .../src/countries/uruguay.geojson                  |  10 +-
 .../src/countries/zambia.geojson                   |   6 +-
 36 files changed, 860 insertions(+), 747 deletions(-)

diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/scripts/Country Map GeoJSON Generator.ipynb b/superset-frontend/plugins/legacy-plugin-chart-country-map/scripts/Country Map GeoJSON Generator.ipynb
index bde0b48..6f8b919 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/scripts/Country Map GeoJSON Generator.ipynb	
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/scripts/Country Map GeoJSON Generator.ipynb	
@@ -19,7 +19,7 @@
    "metadata": {},
    "source": [
     "```\n",
-    "pip install geopandas shapely\n",
+    "pip install geopandas shapely matplotlib\n",
     "```"
    ]
   },
@@ -29,13 +29,71 @@
    "source": [
     "## Download Data\n",
     "\n",
-    "Download the [Admin 1 – States, Provinces\n",
-    "](https://www.naturalearthdata.com/downloads/10m-cultural-vectors/10m-admin-1-states-provinces/) dataset from Natural Earch Data and provide the path to the downloaded file below."
+    "Download datasets (_Admin 0 - Countries_ in [1:10](https://www.naturalearthdata.com/downloads/10m-cultural-vectors/), and _Admin 1 – States, Provinces_ in 1:10 and [1:50](https://www.naturalearthdata.com/downloads/50m-cultural-vectors/)) from Natural Earch Data:"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 1,
+   "execution_count": 33,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Skip ne_10m_admin_0_countries.zip because it already exists\n",
+      "Skip ne_10m_admin_1_states_provinces.zip because it already exists\n",
+      "Skip ne_50m_admin_1_states_provinces.zip because it already exists\n",
+      "Done.                                                               \n"
+     ]
+    }
+   ],
+   "source": [
+    "import os\n",
+    "import requests\n",
+    "\n",
+    "data_dir = os.path.expanduser(\"~/Downloads\")\n",
+    "if not os.path.exists(data_dir):\n",
+    "    os.mkdir(data_dir)\n",
+    "\n",
+    "def download_files(skip_existing=True):\n",
+    "    for url in [\n",
+    "        \"https://www.naturalearthdata.com/http//www.naturalearthdata.com/download/10m/cultural/ne_10m_admin_0_countries.zip\",\n",
+    "        \"https://www.naturalearthdata.com/http//www.naturalearthdata.com/download/10m/cultural/ne_10m_admin_1_states_provinces.zip\",\n",
+    "        \"https://www.naturalearthdata.com/http//www.naturalearthdata.com/download/50m/cultural/ne_50m_admin_1_states_provinces.zip\"\n",
+    "    ]:\n",
+    "        file_name = url.split('/')[-1]\n",
+    "        full_file_name = f'{data_dir}/{file_name}'\n",
+    "        with requests.get(\n",
+    "            url,\n",
+    "            headers={\n",
+    "                \"accept-encoding\": \"gzip, deflate, br\",\n",
+    "                \"user-agent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36\"\n",
+    "            },\n",
+    "            stream=True,\n",
+    "        ) as res:\n",
+    "            file_size = int(res.headers['content-length'])\n",
+    "            if res.status_code != 200:\n",
+    "                print(\"Error downloading files. Please open the URL to download them from browser manually.\")\n",
+    "                break\n",
+    "            if (\n",
+    "                skip_existing and\n",
+    "                os.path.exists(full_file_name) and\n",
+    "                file_size == os.path.getsize(full_file_name)\n",
+    "            ):\n",
+    "                print(f\"Skip {file_name} because it already exists\")\n",
+    "                continue\n",
+    "            print(f\"Downloading {file_name}... \\r\", end=\"\")\n",
+    "            with open(full_file_name, \"wb\") as fh:\n",
+    "                fh.write(res.content)\n",
+    "    print(\"Done.                                                               \")\n",
+    "\n",
+    "download_files(skip_existing=True)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 34,
    "metadata": {},
    "outputs": [],
    "source": [
@@ -44,38 +102,28 @@
     "import matplotlib.pyplot as plt\n",
     "import shapely\n",
     "\n",
-    "df_admin0_10m = gpd.read_file(os.path.expanduser(\"ne_10m_admin_0_countries.zip\"))\n",
-    "df_10m = gpd.read_file(os.path.expanduser(\"ne_10m_admin_1_states_provinces.zip\"))\n",
-    "df_50m = gpd.read_file(os.path.expanduser(\"ne_50m_admin_1_states_provinces.zip\"))"
+    "df_admin0_10m = gpd.read_file(f\"{data_dir}/ne_10m_admin_0_countries.zip\")\n",
+    "df_10m = gpd.read_file(f\"{data_dir}/ne_10m_admin_1_states_provinces.zip\")\n",
+    "df_50m = gpd.read_file(f\"{data_dir}/ne_50m_admin_1_states_provinces.zip\")"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 2,
+   "execution_count": 35,
    "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
        "Index(['featurecla', 'scalerank', 'adm1_code', 'diss_me', 'iso_3166_2',\n",
-       "       'wikipedia', 'iso_a2', 'adm0_sr', 'name', 'name_alt', 'name_local',\n",
-       "       'type', 'type_en', 'code_local', 'code_hasc', 'note', 'hasc_maybe',\n",
-       "       'region', 'region_cod', 'provnum_ne', 'gadm_level', 'check_me',\n",
-       "       'datarank', 'abbrev', 'postal', 'area_sqkm', 'sameascity', 'labelrank',\n",
-       "       'name_len', 'mapcolor9', 'mapcolor13', 'fips', 'fips_alt', 'woe_id',\n",
-       "       'woe_label', 'woe_name', 'latitude', 'longitude', 'sov_a3', 'adm0_a3',\n",
-       "       'adm0_label', 'admin', 'geonunit', 'gu_a3', 'gn_id', 'gn_name',\n",
-       "       'gns_id', 'gns_name', 'gn_level', 'gn_region', 'gn_a1_code',\n",
-       "       'region_sub', 'sub_code', 'gns_level', 'gns_lang', 'gns_adm1',\n",
-       "       'gns_region', 'min_label', 'max_label', 'min_zoom', 'wikidataid',\n",
-       "       'name_ar', 'name_bn', 'name_de', 'name_en', 'name_es', 'name_fr',\n",
-       "       'name_el', 'name_hi', 'name_hu', 'name_id', 'name_it', 'name_ja',\n",
-       "       'name_ko', 'name_nl', 'name_pl', 'name_pt', 'name_ru', 'name_sv',\n",
-       "       'name_tr', 'name_vi', 'name_zh', 'ne_id', 'geometry'],\n",
-       "      dtype='object')"
+       "       'wikipedia', 'iso_a2', 'adm0_sr', 'name', 'name_alt',\n",
+       "       ...\n",
+       "       'FCLASS_TR', 'FCLASS_ID', 'FCLASS_PL', 'FCLASS_GR', 'FCLASS_IT',\n",
+       "       'FCLASS_NL', 'FCLASS_SE', 'FCLASS_BD', 'FCLASS_UA', 'geometry'],\n",
+       "      dtype='object', length=121)"
       ]
      },
-     "execution_count": 2,
+     "execution_count": 35,
      "metadata": {},
      "output_type": "execute_result"
     }
@@ -86,33 +134,21 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 3,
+   "execution_count": 36,
    "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
        "Index(['featurecla', 'scalerank', 'labelrank', 'sovereignt', 'sov_a3',\n",
-       "       'adm0_dif', 'level', 'type', 'admin', 'adm0_a3', 'geou_dif', 'geounit',\n",
-       "       'gu_a3', 'su_dif', 'subunit', 'su_a3', 'brk_diff', 'name', 'name_long',\n",
-       "       'brk_a3', 'brk_name', 'brk_group', 'abbrev', 'postal', 'formal_en',\n",
-       "       'formal_fr', 'name_ciawf', 'note_adm0', 'note_brk', 'name_sort',\n",
-       "       'name_alt', 'mapcolor7', 'mapcolor8', 'mapcolor9', 'mapcolor13',\n",
-       "       'pop_est', 'pop_rank', 'gdp_md_est', 'pop_year', 'lastcensus',\n",
-       "       'gdp_year', 'economy', 'income_grp', 'wikipedia', 'fips_10_', 'iso_a2',\n",
-       "       'iso_a3', 'iso_a3_eh', 'iso_n3', 'un_a3', 'wb_a2', 'wb_a3', 'woe_id',\n",
-       "       'woe_id_eh', 'woe_note', 'adm0_a3_is', 'adm0_a3_us', 'adm0_a3_un',\n",
-       "       'adm0_a3_wb', 'continent', 'region_un', 'subregion', 'region_wb',\n",
-       "       'name_len', 'long_len', 'abbrev_len', 'tiny', 'homepart', 'min_zoom',\n",
-       "       'min_label', 'max_label', 'ne_id', 'wikidataid', 'name_ar', 'name_bn',\n",
-       "       'name_de', 'name_en', 'name_es', 'name_fr', 'name_el', 'name_hi',\n",
-       "       'name_hu', 'name_id', 'name_it', 'name_ja', 'name_ko', 'name_nl',\n",
-       "       'name_pl', 'name_pt', 'name_ru', 'name_sv', 'name_tr', 'name_vi',\n",
-       "       'name_zh', 'geometry'],\n",
-       "      dtype='object')"
+       "       'adm0_dif', 'level', 'type', 'admin', 'adm0_a3',\n",
+       "       ...\n",
+       "       'fclass_tr', 'fclass_id', 'fclass_pl', 'fclass_gr', 'fclass_it',\n",
+       "       'fclass_nl', 'fclass_se', 'fclass_bd', 'fclass_ua', 'geometry'],\n",
+       "      dtype='object', length=162)"
       ]
      },
-     "execution_count": 3,
+     "execution_count": 36,
      "metadata": {},
      "output_type": "execute_result"
     }
@@ -124,7 +160,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 4,
+   "execution_count": 37,
    "metadata": {},
    "outputs": [
     {
@@ -159,15 +195,15 @@
        "      <th>name</th>\n",
        "      <th>name_alt</th>\n",
        "      <th>...</th>\n",
-       "      <th>name_nl</th>\n",
-       "      <th>name_pl</th>\n",
-       "      <th>name_pt</th>\n",
-       "      <th>name_ru</th>\n",
-       "      <th>name_sv</th>\n",
-       "      <th>name_tr</th>\n",
-       "      <th>name_vi</th>\n",
-       "      <th>name_zh</th>\n",
-       "      <th>ne_id</th>\n",
+       "      <th>FCLASS_TR</th>\n",
+       "      <th>FCLASS_ID</th>\n",
+       "      <th>FCLASS_PL</th>\n",
+       "      <th>FCLASS_GR</th>\n",
+       "      <th>FCLASS_IT</th>\n",
+       "      <th>FCLASS_NL</th>\n",
+       "      <th>FCLASS_SE</th>\n",
+       "      <th>FCLASS_BD</th>\n",
+       "      <th>FCLASS_UA</th>\n",
        "      <th>geometry</th>\n",
        "    </tr>\n",
        "    <tr>\n",
@@ -209,15 +245,15 @@
        "      <td>9</td>\n",
        "      <td>0</td>\n",
        "      <td>...</td>\n",
-       "      <td>9</td>\n",
-       "      <td>9</td>\n",
-       "      <td>9</td>\n",
-       "      <td>9</td>\n",
-       "      <td>9</td>\n",
-       "      <td>9</td>\n",
-       "      <td>9</td>\n",
-       "      <td>9</td>\n",
-       "      <td>9</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
        "      <td>9</td>\n",
        "    </tr>\n",
        "    <tr>\n",
@@ -233,15 +269,15 @@
        "      <td>27</td>\n",
        "      <td>13</td>\n",
        "      <td>...</td>\n",
-       "      <td>27</td>\n",
-       "      <td>27</td>\n",
-       "      <td>27</td>\n",
-       "      <td>27</td>\n",
-       "      <td>27</td>\n",
-       "      <td>27</td>\n",
-       "      <td>27</td>\n",
-       "      <td>27</td>\n",
-       "      <td>27</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
        "      <td>27</td>\n",
        "    </tr>\n",
        "    <tr>\n",
@@ -257,16 +293,136 @@
        "      <td>13</td>\n",
        "      <td>9</td>\n",
        "      <td>...</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
        "      <td>13</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>China</th>\n",
+       "      <td>31</td>\n",
+       "      <td>31</td>\n",
+       "      <td>31</td>\n",
+       "      <td>31</td>\n",
+       "      <td>31</td>\n",
+       "      <td>0</td>\n",
+       "      <td>31</td>\n",
+       "      <td>31</td>\n",
+       "      <td>31</td>\n",
+       "      <td>30</td>\n",
+       "      <td>...</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>31</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>India</th>\n",
+       "      <td>36</td>\n",
+       "      <td>36</td>\n",
+       "      <td>36</td>\n",
+       "      <td>36</td>\n",
+       "      <td>36</td>\n",
+       "      <td>0</td>\n",
+       "      <td>36</td>\n",
+       "      <td>36</td>\n",
+       "      <td>36</td>\n",
        "      <td>13</td>\n",
-       "      <td>13</td>\n",
-       "      <td>13</td>\n",
-       "      <td>13</td>\n",
-       "      <td>13</td>\n",
-       "      <td>13</td>\n",
-       "      <td>13</td>\n",
-       "      <td>13</td>\n",
-       "      <td>13</td>\n",
+       "      <td>...</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>36</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>Indonesia</th>\n",
+       "      <td>33</td>\n",
+       "      <td>33</td>\n",
+       "      <td>33</td>\n",
+       "      <td>33</td>\n",
+       "      <td>33</td>\n",
+       "      <td>0</td>\n",
+       "      <td>33</td>\n",
+       "      <td>33</td>\n",
+       "      <td>33</td>\n",
+       "      <td>30</td>\n",
+       "      <td>...</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>33</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>Russia</th>\n",
+       "      <td>85</td>\n",
+       "      <td>85</td>\n",
+       "      <td>85</td>\n",
+       "      <td>85</td>\n",
+       "      <td>85</td>\n",
+       "      <td>1</td>\n",
+       "      <td>85</td>\n",
+       "      <td>85</td>\n",
+       "      <td>85</td>\n",
+       "      <td>84</td>\n",
+       "      <td>...</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>85</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>South Africa</th>\n",
+       "      <td>9</td>\n",
+       "      <td>9</td>\n",
+       "      <td>9</td>\n",
+       "      <td>9</td>\n",
+       "      <td>9</td>\n",
+       "      <td>0</td>\n",
+       "      <td>9</td>\n",
+       "      <td>9</td>\n",
+       "      <td>9</td>\n",
+       "      <td>9</td>\n",
+       "      <td>...</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>9</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>United States of America</th>\n",
@@ -281,20 +437,20 @@
        "      <td>51</td>\n",
        "      <td>51</td>\n",
        "      <td>...</td>\n",
-       "      <td>51</td>\n",
-       "      <td>51</td>\n",
-       "      <td>51</td>\n",
-       "      <td>51</td>\n",
-       "      <td>51</td>\n",
-       "      <td>51</td>\n",
-       "      <td>51</td>\n",
-       "      <td>51</td>\n",
-       "      <td>51</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
        "      <td>51</td>\n",
        "    </tr>\n",
        "  </tbody>\n",
        "</table>\n",
-       "<p>4 rows × 83 columns</p>\n",
+       "<p>9 rows × 120 columns</p>\n",
        "</div>"
       ],
       "text/plain": [
@@ -303,6 +459,11 @@
        "Australia                          9          9          9        9   \n",
        "Brazil                            27         27         27       27   \n",
        "Canada                            13         13         13       13   \n",
+       "China                             31         31         31       31   \n",
+       "India                             36         36         36       36   \n",
+       "Indonesia                         33         33         33       33   \n",
+       "Russia                            85         85         85       85   \n",
+       "South Africa                       9          9          9        9   \n",
        "United States of America          51         51         51       51   \n",
        "\n",
        "                          iso_3166_2  wikipedia  iso_a2  adm0_sr  name  \\\n",
@@ -310,26 +471,53 @@
        "Australia                          9          0       9        9     9   \n",
        "Brazil                            27          0      27       27    27   \n",
        "Canada                            13         13      13       13    13   \n",
+       "China                             31          0      31       31    31   \n",
+       "India                             36          0      36       36    36   \n",
+       "Indonesia                         33          0      33       33    33   \n",
+       "Russia                            85          1      85       85    85   \n",
+       "South Africa                       9          0       9        9     9   \n",
        "United States of America          51         51      51       51    51   \n",
        "\n",
-       "                          name_alt  ...  name_nl  name_pl  name_pt  name_ru  \\\n",
-       "admin                               ...                                       \n",
-       "Australia                        0  ...        9        9        9        9   \n",
-       "Brazil                          13  ...       27       27       27       27   \n",
-       "Canada                           9  ...       13       13       13       13   \n",
-       "United States of America        51  ...       51       51       51       51   \n",
+       "                          name_alt  ...  FCLASS_TR  FCLASS_ID  FCLASS_PL  \\\n",
+       "admin                               ...                                    \n",
+       "Australia                        0  ...          0          0          0   \n",
+       "Brazil                          13  ...          0          0          0   \n",
+       "Canada                           9  ...          0          0          0   \n",
+       "China                           30  ...          0          0          0   \n",
+       "India                           13  ...          0          0          0   \n",
+       "Indonesia                       30  ...          0          0          0   \n",
+       "Russia                          84  ...          0          0          0   \n",
+       "South Africa                     9  ...          0          0          0   \n",
+       "United States of America        51  ...          0          0          0   \n",
+       "\n",
+       "                          FCLASS_GR  FCLASS_IT  FCLASS_NL  FCLASS_SE  \\\n",
+       "admin                                                                  \n",
+       "Australia                         0          0          0          0   \n",
+       "Brazil                            0          0          0          0   \n",
+       "Canada                            0          0          0          0   \n",
+       "China                             0          0          0          0   \n",
+       "India                             0          0          0          0   \n",
+       "Indonesia                         0          0          0          0   \n",
+       "Russia                            0          0          0          0   \n",
+       "South Africa                      0          0          0          0   \n",
+       "United States of America          0          0          0          0   \n",
        "\n",
-       "                          name_sv  name_tr  name_vi  name_zh  ne_id  geometry  \n",
-       "admin                                                                          \n",
-       "Australia                       9        9        9        9      9         9  \n",
-       "Brazil                         27       27       27       27     27        27  \n",
-       "Canada                         13       13       13       13     13        13  \n",
-       "United States of America       51       51       51       51     51        51  \n",
+       "                          FCLASS_BD  FCLASS_UA  geometry  \n",
+       "admin                                                     \n",
+       "Australia                         0          0         9  \n",
+       "Brazil                            0          0        27  \n",
+       "Canada                            0          0        13  \n",
+       "China                             0          0        31  \n",
+       "India                             0          0        36  \n",
+       "Indonesia                         0          0        33  \n",
+       "Russia                            0          0        85  \n",
+       "South Africa                      0          0         9  \n",
+       "United States of America          0          0        51  \n",
        "\n",
-       "[4 rows x 83 columns]"
+       "[9 rows x 120 columns]"
       ]
      },
-     "execution_count": 4,
+     "execution_count": 37,
      "metadata": {},
      "output_type": "execute_result"
     }
@@ -340,7 +528,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 5,
+   "execution_count": 38,
    "metadata": {},
    "outputs": [
     {
@@ -349,13 +537,13 @@
        "<AxesSubplot:>"
       ]
      },
-     "execution_count": 5,
+     "execution_count": 38,
      "metadata": {},
      "output_type": "execute_result"
     },
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAA04AAAI/CAYAAABAqYlRAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAACnzklEQVR4nOzdd3gc1bkG8Hdme99V79VFLnKV5YINptcAoV4IgZBACCE9uemk3PRCElIhAZIQCL33AMHGGFwk9yI39V52V1ptL3P/WFlYVpe2Su/vSR6s3dmZb2XLnnfPOd8RJEkCERERERERjU6MdwFERERERESJjsGJiIiIiIhoHAxORERERERE42BwIiIiIiIiGgeDExERERER0TgYnIiIiIiIiMYhj+XF0tLSpKKiolhekoiIiIiIaEKqq6u7JUlKH+m5mAanoqIiVFVVxfKSREREREREEyIIQsNoz3GqHhER [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAA04AAAI/CAYAAABAqYlRAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAACnzklEQVR4nOzdd3gc1bkG8Hdme99V79VFLnKV5YINptcAoV4IgZBACCE9uemk3PRCElIhAZIQCL33AMHGGFwk9yI39V52V1ptL3P/WFlYVpe2Su/vSR6s3dmZb2XLnnfPOd8RJEkCERERERERjU6MdwFERERERESJjsGJiIiIiIhoHAxORERERERE42BwIiIiIiIiGgeDExERERER0TgYnIiIiIiIiMYhj+XF0tLSpKKiolhekoiIiIiIaEKqq6u7JUlKH+m5mAanoqIiVFVVxfKSREREREREEyIIQsNoz3GqHhER [...]
       "text/plain": [
        "<Figure size 1440x720 with 1 Axes>"
       ]
@@ -379,17 +567,18 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 6,
+   "execution_count": 39,
    "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "array(['Australia', 'Brazil', 'Canada', 'United States of America'],\n",
+       "array(['Australia', 'Brazil', 'Canada', 'United States of America',\n",
+       "       'China', 'India', 'Indonesia', 'Russia', 'South Africa'],\n",
        "      dtype=object)"
       ]
      },
-     "execution_count": 6,
+     "execution_count": 39,
      "metadata": {},
      "output_type": "execute_result"
     }
@@ -400,7 +589,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 7,
+   "execution_count": 40,
    "metadata": {},
    "outputs": [],
    "source": [
@@ -420,7 +609,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 8,
+   "execution_count": 43,
    "metadata": {},
    "outputs": [],
    "source": [
@@ -448,6 +637,7 @@
     "  'korea',\n",
     "  'liechtenstein',\n",
     "  'malaysia',\n",
+    "  'mexico',\n",
     "  'morocco',\n",
     "  'myanmar',\n",
     "  'netherlands',\n",
@@ -476,34 +666,12 @@
     "    \"usa\": \"united states of america\",\n",
     "    \"korea\": \"south korea\",\n",
     "    \"timorleste\": \"east timor\",\n",
-    "}"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Make sure all country names are covered:"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 9,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "[]"
-      ]
-     },
-     "execution_count": 9,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "[x for x in countries if country_name_aliases.get(x, x) not in df[\"admin\"].str.lower().unique()]"
+    "}\n",
+    "\n",
+    "# Make sure all country names are covered:\n",
+    "invalid_countries = [x for x in countries if country_name_aliases.get(x, x) not in df[\"admin\"].str.lower().unique()]\n",
+    "if invalid_countries:\n",
+    "  print(f\"Following country names are not valid: {invalid_countries}\")"
    ]
   },
   {
@@ -515,16 +683,16 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 10,
+   "execution_count": 44,
    "metadata": {
     "scrolled": false
    },
    "outputs": [
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAABaIAAAT1CAYAAABWYaYFAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAAEAAElEQVR4nOzdd3hjV7Xw4d9W77Lk3u3pvc8kpJNeCQECIcAlARJy6eVSAlzKhfBx6XDpLRACKaRASO+9TO/VM+Nx75Zk9ba/PyQr9li25Tb2ePb7PPPMWNI52vb46Jyz9tprCSkliqIoiqIoiqIoiqIoiqIoijJVNNM9AEVRFEVRFEVRFEVRFEVRFGV2U4FoRVEURVEURVEURVEURVEUZUqpQLSiKIqiKIqiKIqiKIqiKIoypVQgWlEURVEURVEURVEURVEURZlSKhCtKIqiKIqiKIqiKIqiKIqiTCkViFYURVEU [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAABZYAAAWYCAYAAAAlZJN3AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAAEAAElEQVR4nOzdd3hlVbn48e86vaf3Pr33GTpIFQEFVFCsoFzLtd5r15/letWLDXsBCyKKgCiC9F6HYXrNtEx6r6f3c9bvj3OSSSYnyUlPZtbneeZhcs7e+6wM2dl7v+td7yuklCiKoiiKoiiKoiiKoiiKoihKujSzPQBFURRFURRFURRFURRFURRlflGBZUVRFEVRFEVRFEVRFEVRFGVcVGBZURRFURRFURRFURRFURRFGRcVWFYURVEURVEURVEURVEURVHGRQWWFUVRFEVRFEVRFEVRFEVRlHFRgWVFURRFURRF [...]
       "text/plain": [
-       "<Figure size 1440x1440 with 42 Axes>"
+       "<Figure size 1440x1440 with 43 Axes>"
       ]
      },
      "metadata": {
@@ -578,7 +746,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 11,
+   "execution_count": 45,
    "metadata": {},
    "outputs": [
     {
@@ -587,13 +755,13 @@
        "<AxesSubplot:>"
       ]
      },
-     "execution_count": 11,
+     "execution_count": 45,
      "metadata": {},
      "output_type": "execute_result"
     },
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAWcAAAD4CAYAAAAw/yevAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAAA+AklEQVR4nO3dd5xkVZn4/8+p2NXVOecwOceeGYacHRDBAAgqoOKX1UVX1FVYw67Lb4O6rmJalV0DiC6oqLCogJLzTE/OuXPOqbri+f1R1U33dKjQ1V1V3c/79eqZqntvVZ07t+epc094jtJaI4QQIr4YYl0AIYQQE0lwFkKIOCTBWQgh4pAEZyGEiEMSnIUQIg6Z5vLDcnJydEVFxVx+pBBCxK3du3d3aK1zJ9s3p8G5oqKC6urqufxIIYSIW0qp2qn2SbOGEELEIQnOQggRhyQ4CyFEHJLgLIQQcUiCsxBCxCEJ [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAWcAAAD4CAYAAAAw/yevAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAAA+AklEQVR4nO3dd5xkVZn4/8+p2NXVOecwOceeGYacHRDBAAgqoOKX1UVX1FVYw67Lb4O6rmJalV0DiC6oqLCogJLzTE/OuXPOqbri+f1R1U33dKjQ1V1V3c/79eqZqntvVZ07t+epc094jtJaI4QQIr4YYl0AIYQQE0lwFkKIOCTBWQgh4pAEZyGEiEMSnIUQIg6Z5vLDcnJydEVFxVx+pBBCxK3du3d3aK1zJ9s3p8G5oqKC6urqufxIIYSIW0qp2qn2SbOGEELEIQnOQggRhyQ4CyFEHJLgLIQQcUiCsxBCxCEJ [...]
       "text/plain": [
        "<Figure size 432x288 with 1 Axes>"
       ]
@@ -611,7 +779,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 12,
+   "execution_count": 46,
    "metadata": {},
    "outputs": [
     {
@@ -620,13 +788,13 @@
        "<AxesSubplot:>"
       ]
      },
-     "execution_count": 12,
+     "execution_count": 46,
      "metadata": {},
      "output_type": "execute_result"
     },
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAeAAAAEICAYAAACHwyd6AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAABovUlEQVR4nO3dd3ycV5Xw8d+dXqXRqHfJtmy5N1mO03ujJCQEEkISagIvLDVLX5aFZZe2tKWGTjaQRgkQQkggiVPdey/qvWs0kqbe948ZybKtMiNNle73E8XS1KtHM3Oe284RUkoURVEURUksTbIboCiKoigLkQrAiqIoipIEKgAriqIoShKoAKwoiqIoSaACsKIoiqIkgQrAiqIoipIEukQ+WU5OjqyoqEjkUyqKoihK0uzatatbSpk72XUJDcAVFRXs3LkzkU+pKIqiKEkjhGiY6rqIArAQoh5wAQHAL6WsEUI4 [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAeAAAAEICAYAAACHwyd6AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAABovUlEQVR4nO3dd3ycV5Xw8d+dXqXRqHfJtmy5N1mO03ujJCQEEkISagIvLDVLX5aFZZe2tKWGTjaQRgkQQkggiVPdey/qvWs0kqbe948ZybKtMiNNle73E8XS1KtHM3Oe284RUkoURVEURUksTbIboCiKoigLkQrAiqIoipIEKgAriqIoShKoAKwoiqIoSaACsKIoiqIkgQrAiqIoipIEukQ+WU5OjqyoqEjkUyqKoihK0uzatatbSpk72XUJDcAVFRXs3LkzkU+pKIqiKEkjhGiY6rqIArAQoh5wAQHAL6WsEUI4 [...]
       "text/plain": [
        "<Figure size 576x576 with 1 Axes>"
       ]
@@ -672,7 +840,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 13,
+   "execution_count": 47,
    "metadata": {},
    "outputs": [
     {
@@ -707,13 +875,13 @@
        "      <th>name</th>\n",
        "      <th>abbrev</th>\n",
        "      <th>...</th>\n",
-       "      <th>name_pl</th>\n",
-       "      <th>name_pt</th>\n",
-       "      <th>name_ru</th>\n",
        "      <th>name_sv</th>\n",
        "      <th>name_tr</th>\n",
+       "      <th>name_uk</th>\n",
+       "      <th>name_ur</th>\n",
        "      <th>name_vi</th>\n",
        "      <th>name_zh_x</th>\n",
+       "      <th>name_zht</th>\n",
        "      <th>geometry</th>\n",
        "      <th>name_zh_y</th>\n",
        "      <th>iso_3166_2</th>\n",
@@ -736,10 +904,10 @@
        "      <td>Hongkong</td>\n",
        "      <td>Hong Kong</td>\n",
        "      <td>Гонконг</td>\n",
-       "      <td>Hongkong</td>\n",
-       "      <td>Hong Kong</td>\n",
+       "      <td>ہانگ کانگ</td>\n",
        "      <td>Hồng Kông</td>\n",
        "      <td>香港</td>\n",
+       "      <td>香港</td>\n",
        "      <td>MULTIPOLYGON (((114.22983 22.55581, 114.23471 ...</td>\n",
        "      <td>香港特别行政区</td>\n",
        "      <td>CN-91</td>\n",
@@ -757,12 +925,12 @@
        "      <td>Taiwan</td>\n",
        "      <td>Taiwan</td>\n",
        "      <td>...</td>\n",
-       "      <td>Republika Chińska</td>\n",
-       "      <td>Taiwan</td>\n",
-       "      <td>Китайская Республика</td>\n",
        "      <td>Taiwan</td>\n",
        "      <td>Çin Cumhuriyeti</td>\n",
+       "      <td>Республіка Китай</td>\n",
+       "      <td>تائیوان</td>\n",
        "      <td>Đài Loan</td>\n",
+       "      <td>中华民国</td>\n",
        "      <td>中華民國</td>\n",
        "      <td>MULTIPOLYGON (((121.90577 24.95010, 121.83473 ...</td>\n",
        "      <td>中国台湾</td>\n",
@@ -781,12 +949,12 @@
        "      <td>Macao</td>\n",
        "      <td>Mac.</td>\n",
        "      <td>...</td>\n",
-       "      <td>Makau</td>\n",
-       "      <td>Macau</td>\n",
-       "      <td>Макао</td>\n",
        "      <td>Macao</td>\n",
        "      <td>Makao</td>\n",
+       "      <td>Аоминь</td>\n",
+       "      <td>مکاؤ</td>\n",
        "      <td>Ma Cao</td>\n",
+       "      <td>澳门</td>\n",
        "      <td>澳門</td>\n",
        "      <td>MULTIPOLYGON (((113.55860 22.16303, 113.56943 ...</td>\n",
        "      <td>澳门特别行政区</td>\n",
@@ -794,7 +962,7 @@
        "    </tr>\n",
        "  </tbody>\n",
        "</table>\n",
-       "<p>3 rows × 47 columns</p>\n",
+       "<p>3 rows × 51 columns</p>\n",
        "</div>"
       ],
       "text/plain": [
@@ -803,30 +971,30 @@
        "1  Admin-0 country          0          3    TWN  Sovereign country   \n",
        "2  Admin-0 country          0          4    CH1            Country   \n",
        "\n",
-       "              admin adm0_a3 gu_a3       name  abbrev  ...            name_pl  \\\n",
-       "0  Hong Kong S.A.R.     HKG   HKG  Hong Kong    H.K.  ...           Hongkong   \n",
-       "1            Taiwan     TWN   TWN     Taiwan  Taiwan  ...  Republika Chińska   \n",
-       "2       Macao S.A.R     MAC   MAC      Macao    Mac.  ...              Makau   \n",
+       "              admin adm0_a3 gu_a3       name  abbrev  ...   name_sv  \\\n",
+       "0  Hong Kong S.A.R.     HKG   HKG  Hong Kong    H.K.  ...  Hongkong   \n",
+       "1            Taiwan     TWN   TWN     Taiwan  Taiwan  ...    Taiwan   \n",
+       "2       Macao S.A.R     MAC   MAC      Macao    Mac.  ...     Macao   \n",
        "\n",
-       "     name_pt               name_ru   name_sv          name_tr    name_vi  \\\n",
-       "0  Hong Kong               Гонконг  Hongkong        Hong Kong  Hồng Kông   \n",
-       "1     Taiwan  Китайская Республика    Taiwan  Çin Cumhuriyeti   Đài Loan   \n",
-       "2      Macau                 Макао     Macao            Makao     Ma Cao   \n",
+       "           name_tr           name_uk    name_ur    name_vi  name_zh_x  \\\n",
+       "0        Hong Kong           Гонконг  ہانگ کانگ  Hồng Kông         香港   \n",
+       "1  Çin Cumhuriyeti  Республіка Китай    تائیوان   Đài Loan       中华民国   \n",
+       "2            Makao            Аоминь       مکاؤ     Ma Cao         澳门   \n",
        "\n",
-       "   name_zh_x                                           geometry  name_zh_y  \\\n",
-       "0         香港  MULTIPOLYGON (((114.22983 22.55581, 114.23471 ...    香港特别行政区   \n",
-       "1       中華民國  MULTIPOLYGON (((121.90577 24.95010, 121.83473 ...       中国台湾   \n",
-       "2         澳門  MULTIPOLYGON (((113.55860 22.16303, 113.56943 ...    澳门特别行政区   \n",
+       "   name_zht                                           geometry  name_zh_y  \\\n",
+       "0        香港  MULTIPOLYGON (((114.22983 22.55581, 114.23471 ...    香港特别行政区   \n",
+       "1      中華民國  MULTIPOLYGON (((121.90577 24.95010, 121.83473 ...       中国台湾   \n",
+       "2        澳門  MULTIPOLYGON (((113.55860 22.16303, 113.56943 ...    澳门特别行政区   \n",
        "\n",
        "   iso_3166_2  \n",
        "0       CN-91  \n",
        "1       CN-71  \n",
        "2       CN-92  \n",
        "\n",
-       "[3 rows x 47 columns]"
+       "[3 rows x 51 columns]"
       ]
      },
-     "execution_count": 13,
+     "execution_count": 47,
      "metadata": {},
      "output_type": "execute_result"
     }
@@ -849,7 +1017,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 14,
+   "execution_count": 48,
    "metadata": {
     "scrolled": false
    },
@@ -860,13 +1028,13 @@
        "<AxesSubplot:>"
       ]
      },
-     "execution_count": 14,
+     "execution_count": 48,
      "metadata": {},
      "output_type": "execute_result"
     },
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAr8AAAIWCAYAAABeCuXIAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAADXBUlEQVR4nOzdd3hkZ3U/8O97Z+70rt5H23vVao07LtimGAg1lEDohAQCIQFCQhr8Qu+h92CajQ0BY2Pj3littEXaKmnVe5ney31/f6h4tWpT7syd0ZzP8/jxajSaeySNZs5973nPYZxzEEIIIYQQUgoEpQMghBBCCCEkXyj5JYQQQgghJYOSX0IIIYQQUjIo+SWEEEIIISWDkl9CCCGEEFIyKPklhBBCCCElQ53Pg5WXl3On05nPQxJCCCGEkBLU0dExwzmvuPL2vCa/TqcT7e3t+TwkIYQQQggpQYyxwZVuT6ns [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAr8AAAH9CAYAAAATYRQUAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAADL+0lEQVR4nOzdd3hcZ5U/8O97Z+70rt41tty7JcuBJKRAKCGU0JYS+o/AUnfpsLDLsrDssiwsy9JCDS0BAiQQIIQ00i3LRXK3em+j6b3c+/tjZFmy2pQ7c6ecz/PkiS3N3HskSzPnvve85zBRFEEIIYQQQkg54OQOgBBCCCGEkHyh5JcQQgghhJQNSn4JIYQQQkjZoOSXEEIIIYSUDUp+CSGEEEJI2aDklxBCCCGElA1lKg9ijA0D8AFIAIiLotjBGPscgHcBmFt42KdFUfzTeseprKwUW1tbMw6WEEIIIYSQVBw7 [...]
       "text/plain": [
        "<Figure size 864x864 with 1 Axes>"
       ]
@@ -903,7 +1071,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 15,
+   "execution_count": 49,
    "metadata": {},
    "outputs": [],
    "source": [
@@ -922,7 +1090,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 16,
+   "execution_count": 50,
    "metadata": {},
    "outputs": [
     {
@@ -931,13 +1099,13 @@
        "<AxesSubplot:>"
       ]
      },
-     "execution_count": 16,
+     "execution_count": 50,
      "metadata": {},
      "output_type": "execute_result"
     },
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAWgAAAKrCAYAAADccRdSAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAACej0lEQVR4nOzdd3Qc5dUH4N9s7029r2TJRbLlItnGFNN7JwQIkARSII1A2pdKOiWkQEIqIQkJAUIogdBNC8XgIndZbrLVu7S9t/n+kCxLtsqW2Z2Z3fuckxMkrXaupdXdd95yL8OyLAghhAiPhO8ACCGEzIwSNCGECBQlaEIIEShK0IQQIlCUoAkhRKBkmbxYfn4+a7VaM3lJQggRpG3bto2yLFsw12MymqCtVitaWloyeUlCCBEkhmG65nsMTXEQQohAUYImhBCBogRNCCECRQmaEEIEihI0IYQIFCVoQggRKErQ [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAUwAAAKrCAYAAACax7T4AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAACW20lEQVR4nOzdd3ikZfU38O89vWZKek82W7K9ZbPsAktZuhQpIh0VBDsi9p9iV15REQsiKGIFBFFApHdYtmT7Zjdbsuk9md7b8/4xSUh2U2YmM/OUOZ/r4tJNJvOclDlzP3c5h3EcB0IIIbOT8R0AIYSIBSVMQghJECVMQghJECVMQghJECVMQghJkCKbFysoKOBqamqyeUlCCJnVzp07hzmOK5ztcVlNmDU1NWhqasrmJQkhZFaMsY5EHke35IQQkiBKmIQQkiBKmIQQkiBKmIQQkiBKmIQQkiBKmIQQkiBKmIQQ [...]
       "text/plain": [
        "<Figure size 864x864 with 1 Axes>"
       ]
@@ -967,7 +1135,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 17,
+   "execution_count": 51,
    "metadata": {},
    "outputs": [
     {
@@ -976,13 +1144,13 @@
        "<AxesSubplot:>"
       ]
      },
-     "execution_count": 17,
+     "execution_count": 51,
      "metadata": {},
      "output_type": "execute_result"
     },
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAG0AAAD4CAYAAADmU2imAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAAAP+klEQVR4nO2de3Bc5XXAf2d39ZYsybZkZEtGNrbxgzjYyARKoQ6QhNdAyDAUhqEhSUNCgELKDAkwncl0Sps2adJmGpK6xG06w4TwSmESE0OIacfTYGz5KT+EjWVsCb3fz12t9vSPezHClbGlvWvttzq/GY323rv3nm/mN9+9d7/7nXtEVTHcIjTdDTAmj0lzEJPmICbNQUyag0SmuwHjmTt3rlZXV093M9KC2traDlUtm2hbWkmrrq5mx44d092MtEBE3jvdNjs9OohJcxCT5iAmzUFMmoOYNAcJRJqIfFNE9otI [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAG0AAAD4CAYAAADmU2imAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAP+klEQVR4nO2de3Bc5XXAf2d39ZYsybZkZEtGNrbxgzjYyARKoQ6QhNdAyDAUhqEhSUNCgELKDAkwncl0Sps2adJmGpK6xG06w4TwSmESE0OIacfTYGz5KT+EjWVsCb3fz12t9vSPezHClbGlvWvttzq/GY323rv3nm/mN9+9d7/7nXtEVTHcIjTdDTAmj0lzEJPmICbNQUyag0SmuwHjmTt3rlZXV093M9KC2traDlUtm2hbWkmrrq5mx44d092MtEBE3jvdNjs9OohJcxCT5iAmzUFMmoOYNAcJRJqIfFNE9otI [...]
       "text/plain": [
        "<Figure size 432x288 with 1 Axes>"
       ]
@@ -1000,7 +1168,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 18,
+   "execution_count": 52,
    "metadata": {},
    "outputs": [
     {
@@ -1009,13 +1177,13 @@
        "<AxesSubplot:>"
       ]
      },
-     "execution_count": 18,
+     "execution_count": 52,
      "metadata": {},
      "output_type": "execute_result"
     },
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAT4AAAD4CAYAAAB1/ootAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAABQnUlEQVR4nO3ddXjc15no8e8ZBo2YWTIzyew4nAYabJqkSdtAmzSFlG4hbfaWbrvlbbO7bbZp0myahjmNG3LYiZlRli1mHM1oGM79Y0ZjyaKRLcmg83keP5YGfufMSHrn4HuElBJFUZTJRHOqK6AoijLRVOBTFGXSUYFPUZRJRwU+RVEmHRX4FEWZdHQTWVh6erosLi6eyCIVRZmktm/f3i6lzBjsvgkNfMXFxWzbtm0ii1QUZZISQtQMdZ/q6iqKMumowKcoyqSjAp+iKJOOCnyKokw6KvApijLpqMCnKMqkowKf [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAT4AAAD4CAYAAAB1/ootAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAABQnUlEQVR4nO3ddXjc15no8e8ZBo2YWTIzyew4nAYabJqkSdtAmzSFlG4hbfaWbrvlbbO7bbZp0myahjmNG3LYiZlRli1mHM1oGM79Y0ZjyaKRLcmg83keP5YGfufMSHrn4HuElBJFUZTJRHOqK6AoijLRVOBTFGXSUYFPUZRJRwU+RVEmHRX4FEWZdHQTWVh6erosLi6eyCIVRZmktm/f3i6lzBjsvgkNfMXFxWzbtm0ii1QUZZISQtQMdZ/q6iqKMumowKcoyqSjAp+iKJOOCnyKokw6KvApijLpqMCnKMqkowKf [...]
       "text/plain": [
        "<Figure size 432x288 with 1 Axes>"
       ]
@@ -1044,7 +1212,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 19,
+   "execution_count": 53,
    "metadata": {},
    "outputs": [
     {
@@ -1053,13 +1221,13 @@
        "<AxesSubplot:>"
       ]
      },
-     "execution_count": 19,
+     "execution_count": 53,
      "metadata": {},
      "output_type": "execute_result"
     },
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXcAAADnCAYAAADl0RYJAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAAAgBklEQVR4nO3deXTcZ33v8fdXM9p3WZIXSbbk2LHjOLGdCCdACCEQCIES0hJKob0USA29N924PfSm9JSy3ZZSCoUWaNpySdpwqVkCNAuXFJKGkBBHjpfEjh1vsi1btiRb+y7N9/4xY0eytpE0I41++rzO0Tkzv2Xm+3iSj3565vk9j7k7IiISLGnzXYCIiCSewl1EJIAU7iIiAaRwFxEJIIW7iEgAhefyzUpLS726unou31JEZMHbuXNni7uXTeecOQ336upq6urq5vItRUQWPDM7Pt1z1C0jIhJACncRkQBSuIuI [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXcAAADnCAYAAADl0RYJAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAgA0lEQVR4nO3deXTcZ33v8fdXM9p3WZIXSbbk2LGTOLGdKE4gEEIgEAIlpCWUQnvLkgZ6b7pxe+hN6Slla0sphUILadpySdpwqVlC2iyUFJKGkBAjx0vs2I432ZYtW5KtxdqX+d4/ZuxI1jaSZzSjnz6vc3TO6Ldovo9/yUc/PfP8nsfcHRERCZaMVBcgIiKJp3AXEQkghbuISAAp3EVEAkjhLiISQOG5fLPy8nKvra2dy7cUEZn3tm7d2ubuFTM5Z07Dvba2loaGhrl8SxGRec/Mjsz0HHXLiIgEkMJdRCSAFO4i [...]
       "text/plain": [
        "<Figure size 432x288 with 1 Axes>"
       ]
@@ -1077,7 +1245,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 20,
+   "execution_count": 54,
    "metadata": {},
    "outputs": [
     {
@@ -1086,13 +1254,13 @@
        "<AxesSubplot:>"
       ]
      },
-     "execution_count": 20,
+     "execution_count": 54,
      "metadata": {},
      "output_type": "execute_result"
     },
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAeAAAAFPCAYAAACVnh2uAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAABCUklEQVR4nO3dd3jcV5n3//eZJs2ojpolW7Il915iWYaEEBLIQ0ijhYUFQiewLLs88Ftgs8sW9vewLE92F9hl2SW00JcsvYRASCHdvTtusSXLkmxJVpdG0pTz/CFZlmyVGWmKNPq8rsvXpZn5lvsbx3PrfL/n3Lex1iIiIiLJ5Uh1ACIiIvORErCIiEgKKAGLiIikgBKwiIhICigBi4iIpIASsIiISAq4knmyoqIiW1lZmcxTioiIpMyePXtarbXF432W1ARcWVnJ7t27k3lKERGRlDHG1E30mW5Bi4iIpIASsIiI [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAeAAAAFPCAYAAACVnh2uAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAABCTElEQVR4nO3dd3zdZ333/9d1lnSO5tGyJEu25L1XZJkkhJBAbkIWKxQKhE2glJYbfgVKSwf93ZRypy3QUlrCCruk7BECIYNs7+14xZIsS7IlWXufcd1/SJYlW+Mc6Qzp6P18PPyIzjnf8fnGlj66vt/r+nyMtRYRERFJLEeyAxAREVmIlIBFRESSQAlYREQkCZSARUREkkAJWEREJAmUgEVERJLAlciTFRQU2IqKikSeUkREJGn27t3baq0tnOizhCbgiooK9uzZk8hTioiIJI0xpm6yz3QLWkREJAmUgEVERJJA [...]
       "text/plain": [
        "<Figure size 576x576 with 1 Axes>"
       ]
@@ -1119,7 +1287,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 21,
+   "execution_count": 55,
    "metadata": {},
    "outputs": [
     {
@@ -1128,13 +1296,13 @@
        "<AxesSubplot:>"
       ]
      },
-     "execution_count": 21,
+     "execution_count": 55,
      "metadata": {},
      "output_type": "execute_result"
     },
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAARgAAAD4CAYAAAA3vfm6AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAAA13klEQVR4nO3dd3jkZ3no/e8zvWqKepe29+LVrhs2NsYx2ARwQgsBw0lMCRAgIXAOvHmvhPaeExJaAoGXlpBQTCgGQjHGiRtge73V27ukXa20aiNpRjOa+pw/ZqSVNEWjMquy9+e6fHl35vebeWZXc+9T71tprRFCiFIwLHYDhBArlwQYIUTJSIARQpSMBBghRMlIgBFClIzpWr5ZRUWFbmlpuZZvKYQosf379/drrStzPXdNA0xLSwv79u27lm8phCgxpVRHvudkiCSEKBkJMEKIkpEAI4QomaIDjFLKqJQ6qJT6 [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAARgAAAD4CAYAAAA3vfm6AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAAA110lEQVR4nO3dd3zkd3ng8c93etFoinofbe/Fq103bGyMY7AJ4IQWAoZLTAkQICFwB5d7EdrdhYSWQOBoCQnFhGIgFGOcGNuA7fVWb++SVm3VRtJIM5r6vT9mpJU0RaMyq7LP+/Xyy7szv9/Md3Y1z37r8yitNUIIUQyGpW6AEGL1kgAjhCgaCTBCiKKRACOEKBoJMEKIojFdyzcrLy/Xfr//Wr6lEKLIDh482K+1rsj23DUNMH6/nwMHDlzLtxRCFJlSqi3XczJEEkIUjQQYIUTRSIARQhRNwQFGKWVUSh1WSv10 [...]
       "text/plain": [
        "<Figure size 432x288 with 1 Axes>"
       ]
@@ -1152,7 +1320,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 22,
+   "execution_count": 56,
    "metadata": {},
    "outputs": [
     {
@@ -1161,13 +1329,13 @@
        "<AxesSubplot:>"
       ]
      },
-     "execution_count": 22,
+     "execution_count": 56,
      "metadata": {},
      "output_type": "execute_result"
     },
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAeEAAAEtCAYAAAA/YNjBAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAABzhElEQVR4nO3dd3ykV3no8d+Z3pt6l7b3qtUa27hQDJhisKkBElogCQkhCeRCSCFAkstNoSSUEBJMC5BA6CWAsTFgs733ot6lKRpNL+/9Y0ZaaTWSps9o93w/n/2sNHrnnTOa0Tzvac8jFEVBkiRJkqTyU1W6AZIkSZJ0u5JBWJIkSZIqRAZhSZIkSaoQGYQlSZIkqUJkEJYkSZKkCtGU88Fqa2uVzs7Ocj6kJEmSJFXMsWPHphRFqVvu52UNwp2dnRw9erScDylJkiRJFSOE6F/p53I4WpIkSZIqRAZhSZIkSaqQ [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAeEAAAEtCAYAAAA/YNjBAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAABzkUlEQVR4nO3dd3yrZ3nw8d+tvZf3ts/e08cnJCGDESCMQMIs0LIKbWkpbaGF0kGBti9vB6NllJeWsAq0UPYoEBICJJy99/DetoZl7fG8f0j2sY9lW1vyOff388kntvTo0S1LR9dzr+sSiqIgSZIkSVL5qSrdAEmSJEm6XckgLEmSJEkVIoOwJEmSJFWIDMKSJEmSVCEyCEuSJElShWjK+WS1tbVKZ2dnOZ9SkiRJkirm2LFjU4qi1C13f1mDcGdnJ0ePHi3nU0qSJElSxQgh+le6Xw5HS5IkSVKFyCAsSZIkSRWS [...]
       "text/plain": [
        "<Figure size 576x576 with 1 Axes>"
       ]
@@ -1193,7 +1361,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 23,
+   "execution_count": 57,
    "metadata": {},
    "outputs": [
     {
@@ -1202,13 +1370,13 @@
        "<AxesSubplot:>"
       ]
      },
-     "execution_count": 23,
+     "execution_count": 57,
      "metadata": {},
      "output_type": "execute_result"
     },
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXAAAABuCAYAAAA+skhgAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAAAwMklEQVR4nO29d3xc1Z33/z7Tq0Yz6r1Y7t2WjQGHskBCIAFCgE0nCZv2hCd5NpvdzS7Ppu1vQ7JJNmXTHtgUIEvqppACIUDo4N5xt7rVZzSa3u75/XFHY8mqtiVLA+f9esmeOXPv3O9cjT733O/5FiGlRKFQKBT5h2G+DVAoFArF+aEEXKFQKPIUJeAKhUKRpygBVygUijxFCbhCoVDkKaaLebDi4mJZX19/MQ+pUCgUec+uXbsGpJQlZ49fVAGvr69n586dF/OQCoVCkfcIIdomGlcuFIVCochTlIArFApFnjIj [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXAAAABuCAYAAAA+skhgAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAvXklEQVR4nO2dd3ykV3X3v3d6l2Y06l27q+3Fu1qt1x0wa2NjDNjYYAMGTAghkBBCgonfxE7Im2ATDIRuTMB2IJgaG7/gAu5me+9VfdWl6X3mvn/MaFa9rXalse/389nPztzneWbOPDM6z33O/Z1zhJQShUKhUOQemvk2QKFQKBSzQzlwhUKhyFGUA1coFIocRTlwhUKhyFGUA1coFIocRXcx38ztdsuampqL+ZYKhUKR8+zevbtPSlk4evyiOvCamhp27dp1Md9SoVAoch4hRMt44yqEolAoFDmKcuAKhUKRo0zL [...]
       "text/plain": [
        "<Figure size 432x288 with 1 Axes>"
       ]
@@ -1233,22 +1401,30 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 24,
+   "execution_count": 58,
    "metadata": {},
    "outputs": [
     {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "/var/folders/cz/q6gftw510vngjvl1y67xxfxh0000gp/T/ipykernel_89191/127064943.py:6: ShapelyDeprecationWarning: Iteration over multi-part geometries is deprecated and will be removed in Shapely 2.0. Use the `geoms` property to access the constituent parts of a multi-part geometry.\n",
+      "  for item in splitted_geom:\n"
+     ]
+    },
+    {
      "data": {
       "text/plain": [
        "<AxesSubplot:>"
       ]
      },
-     "execution_count": 24,
+     "execution_count": 58,
      "metadata": {},
      "output_type": "execute_result"
     },
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAABH4AAAJKCAYAAABajoKYAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAAEAAElEQVR4nOzddXRc19X38e8dJo2YWZZsySQzhh3GBhpsmrRJU35Sesp90/YpU9qUKUmbNNgwg+MkhpgZZEm2mHGY575/yFGsWJLFkuX9WSvL0syFM440nvu75+ytqKqKEEIIIYQQQgghhJh+NJM9ACGEEEIIIYQQQggxPiT4EUIIIYQQQgghhJimJPgRQgghhBBCCCGEmKYk+BFCCCGEEEIIIYSYpiT4EUIIIYQQQgghhJimdBN5sqSkJDUvL28iTymEEEIIIYQQQggxre3YsaNdVdXk/p6b0OAnLy+P7du3T+Qp [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAABH4AAAJNCAYAAABHi7IgAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAAEAAElEQVR4nOzddXhb99XA8e8Vg5kZ4zBz0iaFNG3KK66wwoqjbmvXUd8xr1u3roNuZWZmStIwM9mxY2ZGsXTfP5y6dQ0xSJZjn8/z9EksXThObUn33PM7R1FVFSGEEEIIIYQQQggx9miCHYAQQgghhBBCCCGECAxJ/AghhBBCCCGEEEKMUZL4EUIIIYQQQgghhBijJPEjhBBCCCGEEEIIMUZJ4kcIIYQQQgghhBBijJLEjxBCCCGEEEIIIcQYpRvJk8XExKgZGRkjeUohhBBCCCGEEEKIMW3Xrl31qqrG9vbciCZ+ [...]
       "text/plain": [
        "<Figure size 1440x1440 with 1 Axes>"
       ]
@@ -1296,7 +1472,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 25,
+   "execution_count": 59,
    "metadata": {},
    "outputs": [
     {
@@ -1305,13 +1481,13 @@
        "<AxesSubplot:>"
       ]
      },
-     "execution_count": 25,
+     "execution_count": 59,
      "metadata": {},
      "output_type": "execute_result"
     },
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXsAAAD0CAYAAAB6r4ayAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAAAZ1ElEQVR4nO3de3Bc5Znn8e/TrbutqyXbsmVbMjZ2zGBuQpg4IRNgAglsTFLZrKlJ1plh15ssk2V2spXhsn/sTE1qyc5UEqaS2R1XIOOtIQsUE8cMEyDmkplAwEbGXHwBW/gu32Td763ufvaPPhCNLduou+WWdH6fKkp93nPU7/P6oJ9evX1Ot7k7IiIyvUVyXYCIiEw8hb2ISAgo7EVEQkBhLyISAgp7EZEQyMt1AaNVV1d7fX19rssQEZlStm/fftrda853zKQK+/r6epqbm3NdhojIlGJmhy50jJZxRERCQGEv [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXsAAAD0CAYAAAB6r4ayAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAZ1ElEQVR4nO3de3Bc5Znn8e/TrbutqyXbsmVbMjZ2zGBuQpg4IRNgAglsTFLZrKlJ1plh15ssk2V2spXhsn/sTE1qyc5UEqaS2R1XIOOtIQsUE8cMEyDmkplAwEbGXHwBW/gu32Td763ufvaPPhCNLduou+WWdH6fKkp93nPU7/P6oJ9evX1Ot7k7IiIyvUVyXYCIiEw8hb2ISAgo7EVEQkBhLyISAgp7EZEQyMt1AaNVV1d7fX19rssQEZlStm/fftrda853zKQK+/r6epqbm3NdhojIlGJmhy50jJZxRERCQGEv [...]
       "text/plain": [
        "<Figure size 432x288 with 1 Axes>"
       ]
@@ -1336,7 +1512,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 26,
+   "execution_count": 60,
    "metadata": {},
    "outputs": [
     {
@@ -1345,13 +1521,13 @@
        "<AxesSubplot:>"
       ]
      },
-     "execution_count": 26,
+     "execution_count": 60,
      "metadata": {},
      "output_type": "execute_result"
     },
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAeAAAAHKCAYAAADb45jFAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAADOuElEQVR4nOy9d5xkaV3v/z51Kueqzrl7Yu/k2LO75F1yUMkoQUEFvSpcc/ipV71eE4qCCoosAiJBCYIgGZZlWXZ6enKOnXN35ZzO74/qrulQ3V3hVJid5/16oTvd1aeerq463+f5hs9HUhQFgUAgEAgE1UVT6wUIBAKBQHA/IgKwQCAQCAQ1QARggUAgEAhqgAjAAoFAIBDUABGABQKBQCCoASIACwQCgUBQA7TVfLLGxkalt7e3mk8pEAgEAkHNOH369IKiKE35vlfVANzb28vQ0FA1n1IgEAgEgpohSdLoRt8T [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAeAAAAHKCAYAAADb45jFAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAADOuElEQVR4nOy9d5xkaV3v/z51Kueqzrl7Yu/k2LO75F1yUMkoQUEFvSpcc/ipV71eE4qCCoosAiJBCYIgGZZlWXZ6enKOnXN35ZzO74/qrulQ3V3hVJid5/16oTvd1aeerq463+f5hs9HUhQFgUAgEAgE1UVT6wUIBAKBQHA/IgKwQCAQCAQ1QARggUAgEAhqgAjAAoFAIBDUABGABQKBQCCoASIACwQCgUBQA7TVfLLGxkalt7e3mk8pEAgEAkHNOH369IKiKE35vlfVANzb28vQ0FA1n1IgEAgEgpohSdLoRt8T [...]
       "text/plain": [
        "<Figure size 576x576 with 1 Axes>"
       ]
@@ -1383,7 +1559,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 27,
+   "execution_count": 61,
    "metadata": {},
    "outputs": [
     {
@@ -1392,13 +1568,13 @@
        "<AxesSubplot:>"
       ]
      },
-     "execution_count": 27,
+     "execution_count": 61,
      "metadata": {},
      "output_type": "execute_result"
     },
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXQAAAD0CAYAAACLpN0/AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAAASsElEQVR4nO3dfZBd9X3f8fcHPYJ4kGQtqozAwgTHpfEgmEVxhtStce04xAM4k3rcug4dM6MkE7fO1LUNptM647oTp7FJOnWdyg+xmpBgYpviMHkwwdCMPQ32goUQBoyMYSxZ1i5YAoFgQdpv/7hH9UbZ1b272rt7dXi/Zu7sOb9zzt6PpKvPnvu75+5NVSFJOvGdtNABJElzw0KXpJaw0CWpJSx0SWoJC12SWsJCl6SW6KnQkzyW5P4k25KMNGMfSrK7GduW5PL+RpUkHcviGez7+qp64qixG6rqd+YykCRpdmZS [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXQAAAD0CAYAAACLpN0/AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAAASsElEQVR4nO3dfZBd9X3f8fcHPYJ4kGQtqozAwgTHpfEgmEVxhtStce04xAM4k3rcug4dM6MkE7fO1LUNptM647oTp7FJOnWdyg+xmpBgYpviMHkwwdCMPQ32goUQBoyMYSxZ1i5YAoFgQdpv/7hH9UbZ1b272rt7dXi/Zu7sOb9zzt6PpKvPnvu75+5NVSFJOvGdtNABJElzw0KXpJaw0CWpJSx0SWoJC12SWsJCl6SW6KnQkzyW5P4k25KMNGMfSrK7GduW5PL+RpUkHcviGez7+qp64qixG6rqd+YykCRpdmZS [...]
       "text/plain": [
        "<Figure size 432x288 with 1 Axes>"
       ]
@@ -1416,7 +1592,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 28,
+   "execution_count": 62,
    "metadata": {},
    "outputs": [
     {
@@ -1425,13 +1601,13 @@
        "<AxesSubplot:>"
       ]
      },
-     "execution_count": 28,
+     "execution_count": 62,
      "metadata": {},
      "output_type": "execute_result"
     },
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAZkAAAHSCAYAAAA+OrZhAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAAB3sUlEQVR4nO3dd3xkddU/8M93eslkSnovW5LtJdksuzSp0kEQBBQBRcSGor8He3nUx14f9VFQFKUruAgs0qS3zSbbsiW7m2x6T6b39v39kWxIspNkJlPunZnzfr1gN1PuPZlN5sz9lnMY5xyEEEJIMkiEDoAQQkjmoiRDCCEkaSjJEEIISRpKMoQQQpKGkgwhhJCkoSRDCCEkaWRCBxBJfn4+r66uFjoMQgghUWhtbR3nnBdEuk+USaa6uhotLS1Ch0EIISQKjLGe+e6j4TJCCCFJQ0mGEEJI0lCSIYQQkjSUZAgh [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAZkAAAHSCAYAAAA+OrZhAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAAB3sUlEQVR4nO3dd3xkddU/8M93eslkSnovW5LtJdksuzSp0kEQBBQBRcSGor8He3nUx14f9VFQFKUruAgs0qS3zSbbsiW7m2x6T6b39v39kWxIspNkJlPunZnzfr1gN1PuPZlN5sz9lnMY5xyEEEJIMkiEDoAQQkjmoiRDCCEkaSjJEEIISRpKMoQQQpKGkgwhhJCkoSRDCCEkaWRCBxBJfn4+r66uFjoMQgghUWhtbR3nnBdEuk+USaa6uhotLS1Ch0EIISQKjLGe+e6j4TJCCCFJQ0mGEEJI0lCSIYQQkjSUZAgh [...]
       "text/plain": [
        "<Figure size 576x576 with 1 Axes>"
       ]
@@ -1456,7 +1632,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 29,
+   "execution_count": 63,
    "metadata": {},
    "outputs": [
     {
@@ -1465,13 +1641,13 @@
        "<AxesSubplot:>"
       ]
      },
-     "execution_count": 29,
+     "execution_count": 63,
      "metadata": {},
      "output_type": "execute_result"
     },
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAANAAAAD4CAYAAACdW2gvAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAABGw0lEQVR4nO2dd3icV5m37zO9N/Uu2bLl3i2nOMU4jQRIIQllF0IIAT7YsCwsIQv77Qe7S4elLhBC2aWFEhJqeo9T3HuXLVm9jkbT+/n+mNFYI41kNVuS9d7XlcuamXdenVHeZ855n/M8v5+QUqKgoDA5VDM9AAWFuYwSQAoKU0AJIAWFKaAEkILCFFACSEFhCmgu5C/Lz8+X1dXVF/JXKihMC7t37+6VUhYMf/6CBlB1dTW7du26kL9SQWFaEEKcyfW8soRTUJgCSgApKEwBJYAUFKaAEkAKClNACSAFhSmgBJCC [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAANAAAAD4CAYAAACdW2gvAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAABGw0lEQVR4nO2dd3icV5m37zO9N/Uu2bLl3i2nOMU4jQRIIQllF0IIAT7YsCwsIQv77Qe7S4elLhBC2aWFEhJqeo9T3HuXLVm9jkbT+/n+mNFYI41kNVuS9d7XlcuamXdenVHeZ855n/M8v5+QUqKgoDA5VDM9AAWFuYwSQAoKU0AJIAWFKaAEkILCFFACSEFhCmgu5C/Lz8+X1dXVF/JXKihMC7t37+6VUhYMf/6CBlB1dTW7du26kL9SQWFaEEKcyfW8soRTUJgCSgApKEwBJYAUFKaAEkAKClNACSAFhSmgBJCC [...]
       "text/plain": [
        "<Figure size 432x288 with 1 Axes>"
       ]
@@ -1489,7 +1665,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 30,
+   "execution_count": 64,
    "metadata": {},
    "outputs": [
     {
@@ -1498,13 +1674,13 @@
        "<AxesSubplot:>"
       ]
      },
-     "execution_count": 30,
+     "execution_count": 64,
      "metadata": {},
      "output_type": "execute_result"
     },
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAASoAAAHSCAYAAABb+4ZbAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAAC2wklEQVR4nOyddXhj17W33yNmMrM9nvEweMbjyYQ5TZM0STFlTtv0lrm3vYVbbtp+5SbtbVOGtGnTcNIwTIaZx8wki1k63x+yNZIFltmeOe/z5IklHdjyWEt7r73W7yeIooiEhITEYka20AOQkJCQmAwpUElISCx6pEAlISGx6JEClYSExKJHClQSEhKLHilQSUhILHoU83mzwsJCsba2dj5vKSEhsYTYu3fvsCiKRROfn9dAVVtby549e+bzlhISEksIQRA6Mj0vLf0kJCQWPVKgkpCQWPRIgUpCQmLRIwUqCQmJ [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAASoAAAHSCAYAAABb+4ZbAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAAC2wklEQVR4nOyddXhj17W33yNmMrM9nvEweMbjyYQ5TZM0STFlTtv0lrm3vYVbbtp+5SbtbVOGtGnTcNIwTIaZx8wki1k63x+yNZIFltmeOe/z5IklHdjyWEt7r73W7yeIooiEhITEYka20AOQkJCQmAwpUElISCx6pEAlISGx6JEClYSExKJHClQSEhKLHilQSUhILHoU83mzwsJCsba2dj5vKSEhsYTYu3fvsCiKRROfn9dAVVtby549e+bzlhISEksIQRA6Mj0vLf0kJCQWPVKgkpCQWPRIgUpCQmLRIwUqCQmJ [...]
       "text/plain": [
        "<Figure size 576x576 with 1 Axes>"
       ]
@@ -1529,7 +1705,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 31,
+   "execution_count": 65,
    "metadata": {},
    "outputs": [],
    "source": [
@@ -1549,14 +1725,14 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 32,
+   "execution_count": 66,
    "metadata": {},
    "outputs": [
     {
      "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAABaIAAAT1CAYAAABWYaYFAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAAEAAElEQVR4nOzdd3hjV7Xw4d9W77Lk3u3pvc8kpJNeCQECIcAlARJy6eVSAlzKhfBx6XDpLRACKaRASO+9TO/VM+Nx75Zk9ba/PyQr9li25Tb2ePb7PPPMWNI52vb46Jyz9tprCSkliqIoiqIoiqIoiqIoiqIoijJVNNM9AEVRFEVRFEVRFEVRFEVRFGV2U4FoRVEURVEURVEURVEURVEUZUqpQLSiKIqiKIqiKIqiKIqiKIoypVQgWlEURVEURVEURVEURVEURZlSKhCtKIqiKIqiKIqiKIqiKIqiTCkViFYURVEU [...]
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAABZYAAAWYCAYAAAAlZJN3AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAAEAAElEQVR4nOzdd3hlVbn48e86vaf3Pr33GTpIFQEFVFCsoFzLtd5r15/letWLDXsBCyKKgCiC9F6HYXrNtEx6r6f3c9bvj3OSSSYnyUlPZtbneeZhcs7e+6wM2dl7v+td7yuklCiKoiiKoiiKoiiKoiiKoihKujSzPQBFURRFURRFURRFURRFURRlflGBZUVRFEVRFEVRFEVRFEVRFGVcVGBZURRFURRFURRFURRFURRFGRcVWFYURVEURVEURVEURVEURVHGRQWWFUVRFEVRFEVRFEVRFEVRlHFRgWVFURRFURRF [...]
       "text/plain": [
-       "<Figure size 1440x1440 with 42 Axes>"
+       "<Figure size 1440x1440 with 43 Axes>"
       ]
      },
      "metadata": {
@@ -1571,7 +1747,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 33,
+   "execution_count": 73,
    "metadata": {
     "scrolled": false
    },
@@ -1586,29 +1762,30 @@
       "brazil\tSaving geojson for brazil...\n",
       "bulgaria\tSize 18.715\tSaving geojson for bulgaria...\n",
       "canada\tSaving geojson for canada...\n",
-      "china\tSize 2311.875\tSaving geojson for china...\n",
+      "china\tSaving geojson for china...\n",
       "denmark\tSize 22.461\tSaving geojson for denmark...\n",
       "egypt\tSize 117.982\tSaving geojson for egypt...\n",
       "estonia\tSize 13.694\tSaving geojson for estonia...\n",
       "france\tSize 142.834\tSaving geojson for france...\n",
-      "finland\tSize 123.747\tSaving geojson for finland...\n",
+      "finland\tSize 112.354\tSaving geojson for finland...\n",
       "germany\tSize 71.47\tSaving geojson for germany...\n",
       "iceland\tSize 34.959\tSaving geojson for iceland...\n",
-      "india\tSize 840.038\tSaving geojson for india...\n",
-      "indonesia\tSize 773.715\tSaving geojson for indonesia...\n",
+      "india\tSaving geojson for india...\n",
+      "indonesia\tSaving geojson for indonesia...\n",
       "iran\tSize 284.014\tSaving geojson for iran...\n",
       "italy\tSize 138.162\tSaving geojson for italy...\n",
       "japan\tSize 661.569\tSaving geojson for japan...\n",
       "korea\tSize 34.227\tSaving geojson for korea...\n",
       "liechtenstein\tSize 0.029\tSaving geojson for liechtenstein...\n",
       "malaysia\tSize 127.7\tSaving geojson for malaysia...\n",
+      "mexico\tSize 575.302\tSaving geojson for mexico...\n",
       "morocco\tSize 231.84\tSaving geojson for morocco...\n",
       "myanmar\tSize 168.709\tSaving geojson for myanmar...\n",
       "netherlands\tSize 10.818\tSaving geojson for netherlands...\n",
       "norway\tSize 530.052\tSaving geojson for norway...\n",
       "portugal\tSize 105.727\tSaving geojson for portugal...\n",
       "poland\tSize 58.556\tSaving geojson for poland...\n",
-      "russia\tSize 6969.988\tSaving geojson for russia...\n",
+      "russia\tSaving geojson for russia...\n",
       "singapore\tSize 0.067\tSaving geojson for singapore...\n",
       "slovenia\tSize 4.537\tSaving geojson for slovenia...\n",
       "spain\tSize 178.488\tSaving geojson for spain...\n",
@@ -1663,13 +1840,20 @@
     "    simplify_if_needed(country, gdf)\n",
     "        \n",
     "    print(f'Saving geojson for {country}...')\n",
-    "    gdf[useful_columns].to_file(f\"../countries/{country}.geojson\", driver=\"GeoJSON\")\n",
+    "    gdf[useful_columns].to_file(f\"../src/countries/{country}.geojson\", driver=\"GeoJSON\")\n",
     "\n",
     "for country in countries:\n",
     "    save_geojson(country)\n",
     "    \n",
     "print(\"Done.                          \")"
    ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": []
   }
  ],
  "metadata": {
@@ -1688,7 +1872,7 @@
    "name": "python",
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython3",
-   "version": "3.8.9+"
+   "version": "3.8.11"
   }
  },
  "nbformat": 4,
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries.ts b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries.ts
index 8db9f85..e124116 100755
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries.ts
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries.ts
@@ -41,6 +41,7 @@ import korea from './countries/korea.geojson';
 import liechtenstein from './countries/liechtenstein.geojson';
 import norway from './countries/norway.geojson';
 import malaysia from './countries/malaysia.geojson';
+import mexico from './countries/mexico.geojson';
 import morocco from './countries/morocco.geojson';
 import myanmar from './countries/myanmar.geojson';
 import netherlands from './countries/netherlands.geojson';
@@ -88,6 +89,7 @@ export const countries = {
   korea,
   liechtenstein,
   malaysia,
+  mexico,
   morocco,
   myanmar,
   netherlands,
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/australia.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/australia.geojson
index a0dae96..3908fc9 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/australia.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/australia.geojson
@@ -1,125 +1,15 @@
 {
-  "type": "FeatureCollection",
-  "features": [
-    {
-      "type": "Feature",
-      "id": 0,
-      "properties": {
-        "STATE_CODE": "1",
-        "NAME_1": "New South Wales",
-		"ISO":"AU-NSW"
-      },
-      "geometry": {
-        "type": "MultiPolygon",
-        "coordinates": [
-          [ [ [ 159.105420, -31.563994 ], [ 159.097750, -31.564275 ], [ 159.099634, -31.573372 ], [ 159.094217, -31.570970 ], [ 159.074599, -31.597285 ], [ 159.068740, -31.595697 ], [ 159.077238, -31.543533 ], [ 159.056995, -31.519772 ], [ 159.038463, -31.522425 ], [ 159.037960, -31.512156 ], [ 159.064657, -31.509666 ], [ 159.063790, -31.517379 ], [ 159.081178, -31.526607 ], [ 159.081913, -31.539767 ], [ 159.094678, -31.545036 ], [ 159.105420, -31.563994 ] ] ], [ [ [ 151.145550, -33.8240 [...]
-        ]
-      }
-    },
-    {
-      "type": "Feature",
-      "id": 1,
-      "properties": {
-        "STATE_CODE": "2",
-        "NAME_1": "Victoria",
-		"ISO":"AU-VIC"
-      },
-      "geometry": {
-        "type": "MultiPolygon",
-        "coordinates": [
-          [ [ [ 145.131889, -38.390694 ], [ 145.129935, -38.390452 ], [ 145.096149, -38.402507 ], [ 145.076384, -38.425446 ], [ 145.050185, -38.430022 ], [ 145.025135, -38.475332 ], [ 145.032399, -38.486451 ], [ 145.010999, -38.479662 ], [ 144.976631, -38.490335 ], [ 144.948813, -38.488548 ], [ 144.937410, -38.497082 ], [ 144.918641, -38.497017 ], [ 144.911152, -38.489253 ], [ 144.887256, -38.498852 ], [ 144.886653, -38.477217 ], [ 144.838574, -38.430328 ], [ 144.741749, -38.353947 ], [  [...]
-        ]
-      }
-    },
-    {
-      "type": "Feature",
-      "id": 2,
-      "properties": {
-        "STATE_CODE": "3",
-        "NAME_1": "Queensland",
-		"ISO":"AU-QLD"
-      },
-      "geometry": {
-        "type": "MultiPolygon",
-        "coordinates": [
-          [ [ [ 141.663509, -15.003962 ], [ 141.590263, -14.857313 ], [ 141.566982, -14.740314 ], [ 141.553601, -14.592565 ], [ 141.525610, -14.487086 ], [ 141.552048, -14.375277 ], [ 141.601637, -14.242417 ], [ 141.593972, -14.155358 ], [ 141.599046, -14.101668 ], [ 141.568572, -14.051248 ], [ 141.481812, -13.953329 ], [ 141.468182, -13.923139 ], [ 141.467192, -13.864249 ], [ 141.523282, -13.572129 ], [ 141.550602, -13.506939 ], [ 141.593261, -13.459149 ], [ 141.625401, -13.378009 ], [  [...]
-        ]
-      }
-    },
-    {
-      "type": "Feature",
-      "id": 3,
-      "properties": {
-        "STATE_CODE": "4",
-        "NAME_1": "South Australia",
-		"ISO":"AU-SA"
-      },
-      "geometry": {
-        "type": "MultiPolygon",
-        "coordinates": [
-          [ [ [ 138.500217, -34.843571 ], [ 138.510797, -34.842304 ], [ 138.516160, -34.810835 ], [ 138.532889, -34.815026 ], [ 138.530822, -34.822573 ], [ 138.545732, -34.810610 ], [ 138.566280, -34.825093 ], [ 138.547525, -34.809537 ], [ 138.553914, -34.789902 ], [ 138.543501, -34.774809 ], [ 138.541428, -34.752951 ], [ 138.529750, -34.745246 ], [ 138.532602, -34.737353 ], [ 138.491739, -34.721322 ], [ 138.475866, -34.698481 ], [ 138.463876, -34.697038 ], [ 138.454697, -34.682072 ], [  [...]
-        ]
-      }
-    },
-    {
-      "type": "Feature",
-      "id": 4,
-      "properties": {
-        "STATE_CODE": "5",
-        "NAME_1": "Western Australia",
-		"ISO":"AU-WA"
-      },
-      "geometry": {
-        "type": "MultiPolygon",
-        "coordinates": [
-          [ [ [ 113.394175, -26.393030 ], [ 113.382303, -26.385244 ], [ 113.382563, -26.360994 ], [ 113.370693, -26.357564 ], [ 113.354662, -26.300853 ], [ 113.336382, -26.300353 ], [ 113.354172, -26.276373 ], [ 113.357451, -26.245352 ], [ 113.366341, -26.237572 ], [ 113.364601, -26.210722 ], [ 113.375871, -26.205202 ], [ 113.386501, -26.212652 ], [ 113.378510, -26.165042 ], [ 113.380540, -26.119591 ], [ 113.387300, -26.111471 ], [ 113.373429, -26.097131 ], [ 113.377939, -26.078641 ], [  [...]
-        ]
-      }
-    },
-    {
-      "type": "Feature",
-      "id": 5,
-      "properties": {
-        "STATE_CODE": "6",
-        "NAME_1": "Tasmania",
-		"ISO":"AU-TAS"
-      },
-      "geometry": {
-        "type": "MultiPolygon",
-        "coordinates": [
-          [ [ [ 148.481887, -40.434930 ], [ 148.472864, -40.442869 ], [ 148.437309, -40.439959 ], [ 148.430872, -40.465255 ], [ 148.413814, -40.462027 ], [ 148.400890, -40.473003 ], [ 148.397954, -40.489456 ], [ 148.377985, -40.476560 ], [ 148.350555, -40.492835 ], [ 148.336511, -40.482745 ], [ 148.336025, -40.464909 ], [ 148.309927, -40.426733 ], [ 148.293766, -40.434247 ], [ 148.273419, -40.428985 ], [ 148.274015, -40.436305 ], [ 148.226774, -40.466084 ], [ 148.195969, -40.435512 ], [  [...]
-        ]
-      }
-    },
-    {
-      "type": "Feature",
-      "id": 6,
-      "properties": {
-        "STATE_CODE": "7",
-        "NAME_1": "Northern Territory",
-		"ISO":"AU-NT"
-      },
-      "geometry": {
-        "type": "MultiPolygon",
-        "coordinates": [
-          [ [ [ 130.517887, -12.731048 ], [ 130.517526, -12.725616 ], [ 130.529386, -12.725046 ], [ 130.524326, -12.734086 ], [ 130.531006, -12.742166 ], [ 130.525246, -12.734316 ], [ 130.531106, -12.724936 ], [ 130.515446, -12.722686 ], [ 130.511416, -12.710256 ], [ 130.520625, -12.703496 ], [ 130.535765, -12.719026 ], [ 130.557274, -12.701995 ], [ 130.558615, -12.718586 ], [ 130.567234, -12.706375 ], [ 130.583254, -12.719245 ], [ 130.569915, -12.743776 ], [ 130.584645, -12.735286 ], [  [...]
-        ]
-      }
-    },
-    {
-      "type": "Feature",
-      "id": 7,
-      "properties": {
-        "STATE_CODE": "8",
-        "NAME_1": "Australian Capital Territory",
-		"ISO":"AU-ACT"
-      },
-      "geometry": {
-        "type": "Polygon",
-        "coordinates": [
-          [ [ 149.399284, -35.319175 ], [ 149.352134, -35.351317 ], [ 149.336502, -35.339914 ], [ 149.254815, -35.330079 ], [ 149.207546, -35.345305 ], [ 149.146586, -35.414836 ], [ 149.139052, -35.432543 ], [ 149.155134, -35.436628 ], [ 149.135550, -35.454422 ], [ 149.151279, -35.506926 ], [ 149.131376, -35.554173 ], [ 149.142510, -35.592570 ], [ 149.084514, -35.580594 ], [ 149.078043, -35.586127 ], [ 149.087612, -35.639697 ], [ 149.097495, -35.647313 ], [ 149.095379, -35.679285 ], [ 14 [...]
-        ]
-      }
-    }
-  ]
+"type": "FeatureCollection",
+"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
+"features": [
+{ "type": "Feature", "properties": { "ISO": "AU-WA", "NAME_1": "Western Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.13181294000367, -25.951992185759366 ], [ 113.148226514848602, -25.973833006905068 ], [ 113.183119094304743, -26.053022463050866 ], [ 113.156334425314299, -26.094418949005046 ], [ 112.964183539077908, -25.783022452751197 ], [ 112.908153263502982, -25.569733870396135 ], [ 112.947088811863296, -25.531479474405558 ], [ 112.982420844461103, -25 [...]
+{ "type": "Feature", "properties": { "ISO": "AU-NT", "NAME_1": "Northern Territory" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.00196002977691, -25.999013671928026 ], [ 129.00196002977691, -14.870741763043213 ], [ 129.058210031922499, -14.884474673723332 ], [ 129.165085035999596, -14.987526435466918 ], [ 129.175214430917208, -15.115099682520906 ], [ 129.215710037930762, -15.160319410808484 ], [ 129.23799031221813, -15.080229075722059 ], [ 129.233485917515054, -14. [...]
+{ "type": "Feature", "properties": { "ISO": "AU-SA", "NAME_1": "South Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.00196002977691, -31.692656467248355 ], [ 129.00196002977691, -25.999013671928026 ], [ 138.001960373099564, -25.999013671928026 ], [ 141.002106971921194, -25.999013671928026 ], [ 141.002106971921052, -28.998940544178744 ], [ 141.025727578290883, -34.043225404571686 ], [ 140.996943397505447, -34.015539856640487 ], [ 140.968137244062746, -34.00 [...]
+{ "type": "Feature", "properties": { "ISO": "AU-QLD", "NAME_1": "Queensland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.001960373099564, -25.999013671928026 ], [ 138.001740646528788, -16.556681768762928 ], [ 138.002421798898354, -16.555780889822358 ], [ 138.07148186012671, -16.616974739812974 ], [ 138.244955987837898, -16.718444470246197 ], [ 138.505727482160637, -16.789547988583649 ], [ 138.625654244547945, -16.777858535012683 ], [ 138.820288041035155, -16.86065 [...]
+{ "type": "Feature", "properties": { "ISO": "AU-TAS", "NAME_1": "Tasmania" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.312456333735668, -43.280376635847233 ], [ 147.342383092689715, -43.346294607111872 ], [ 147.356116003369721, -43.396919609043039 ], [ 147.308852817973047, -43.500872249727308 ], [ 147.23146511970856, -43.48309637014296 ], [ 147.153835722215945, -43.500191097357515 ], [ 147.105012478166032, -43.431131036129386 ], [ 147.104792751595028, -43.41289373 [...]
+{ "type": "Feature", "properties": { "ISO": "AU-VIC", "NAME_1": "Victoria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.966335486181606, -38.071406710578344 ], [ 140.968137244062746, -34.005190735151984 ], [ 140.996943397505447, -34.015539856640487 ], [ 141.025727578290883, -34.043225404571686 ], [ 141.094370159034355, -34.065725405429994 ], [ 141.192456100276075, -34.072690737726951 ], [ 141.317568409736168, -34.111626286087187 ], [ 141.469882868671533, -34.182949 [...]
+{ "type": "Feature", "properties": { "ISO": "AU-ACT", "NAME_1": "Australian Capital Territory" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 149.40383580804658, -35.329328969257645 ], [ 149.368064322306992, -35.356091665591059 ], [ 149.278965197814415, -35.347104848841994 ], [ 149.185141952047815, -35.382876334581567 ], [ 149.140581403472964, -35.440928094608566 ], [ 149.149370466308227, -35.507966671384636 ], [ 149.127090192020802, -35.583794310995977 ], [ 149.086814311578195 [...]
+{ "type": "Feature", "properties": { "ISO": "AU-X02~", "NAME_1": "Jervis Bay Territory" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.611870522098201, -35.190044295975603 ], [ 150.635930581609756, -35.14640659899846 ], [ 150.705452068636788, -35.120083355806806 ], [ 150.705693767864744, -35.119621930007959 ], [ 150.722107342709677, -35.134475446199573 ], [ 150.714680584613831, -35.15517368917665 ], [ 150.690378825874319, -35.177673690034958 ], [ 150.634590249527406, -35.17 [...]
+{ "type": "Feature", "properties": { "ISO": "AU-NSW", "NAME_1": "New South Wales" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.025727578290883, -34.043225404571686 ], [ 141.002106971921052, -28.998940544178744 ], [ 148.974314307286591, -28.998501091036985 ], [ 148.993210792382484, -28.986130485096325 ], [ 149.058008158135522, -28.92761729927048 ], [ 149.081409037934463, -28.87475108631628 ], [ 149.173891951618657, -28.806569931371655 ], [ 149.335215199960174, -28.72265635 [...]
+]
 }
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/belgium.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/belgium.geojson
index 98acae9..92a6c6a 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/belgium.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/belgium.geojson
@@ -4,12 +4,12 @@
 "features": [
 { "type": "Feature", "properties": { "ISO": "BE-VWV", "NAME_1": "West Flanders" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.650618123000044, 50.812248434000097 ], [ 2.642453247000049, 50.812455139000079 ], [ 2.627777140000148, 50.814418844 ], [ 2.620439087000136, 50.816485902000053 ], [ 2.615168091000015, 50.822170309000015 ], [ 2.606589803000077, 50.834831034000061 ], [ 2.602042277000066, 50.838086649000033 ], [ 2.589949992000072, 50.842014059000107 ], [ 2.586746053000098 [...]
 { "type": "Feature", "properties": { "ISO": "BE-WHT", "NAME_1": "Hainaut" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 2.886882772000149, 50.696648255000085 ], [ 2.87127648900011, 50.698766989000077 ], [ 2.866725884000061, 50.700091003000068 ], [ 2.86250199300008, 50.709552022000082 ], [ 2.842193154000086, 50.750841491000074 ], [ 2.868806517000053, 50.761228453000058 ], [ 2.87542110000004, 50.76246868800007 ], [ 2.889632120000044, 50.754148782000073 ], [ 2.918105834000 [...]
-{ "type": "Feature", "properties": { "ISO": "BE-WNA", "NAME_1": "Namur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.831363566000078, 50.143400371000084 ], [ 4.820098103000106, 50.146449280000112 ], [ 4.815550578000085, 50.161332092000052 ], [ 4.788575480000134, 50.153373922000085 ], [ 4.681915324000073, 50.083920797000118 ], [ 4.676127563000108, 50.076065980000081 ], [ 4.673440389000064, 50.066195781000019 ], [ 4.675817505000111, 50.060201315000072 ], [ 4.67953820800011, 5 [...]
-{ "type": "Feature", "properties": { "ISO": "BE-WLX", "NAME_1": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.192478475000087, 49.682808329000025 ], [ 5.169430786000135, 49.687200827000126 ], [ 5.151240682000093, 49.695985820000018 ], [ 5.13635787000004, 49.705339254000066 ], [ 5.093776489000078, 49.745336812000019 ], [ 5.081890909000037, 49.752726543000037 ], [ 5.04623417200014, 49.75939280200005 ], [ 5.026287068000045, 49.766730856000052 ], [ 4.989080037000122 [...]
-{ "type": "Feature", "properties": { "ISO": "BE-WLG", "NAME_1": "Liege" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.038628377000094, 50.148412985000036 ], [ 6.02736291500014, 50.149446513000029 ], [ 6.022966605624333, 50.150820360371313 ], [ 6.022971226340985, 50.150892646078717 ], [ 6.024934930202846, 50.18161428487133 ], [ 6.024056431059421, 50.183862210472626 ], [ 6.019870640017984, 50.194688421933108 ], [ 6.033823276223188, 50.204842840724496 ], [ 6.011912469085189, 50 [...]
+{ "type": "Feature", "properties": { "ISO": "BE-WNA", "NAME_1": "Namur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.831363566000078, 50.143400371000084 ], [ 4.820098103000106, 50.146449280000112 ], [ 4.815550578000085, 50.161332092000052 ], [ 4.788575480000134, 50.153373922000085 ], [ 4.681915324000073, 50.083920797000118 ], [ 4.676127563000108, 50.076065980000081 ], [ 4.673440389000064, 50.066195781000019 ], [ 4.675817505000111, 50.060201315000072 ], [ 4.67953820800011, 5 [...]
+{ "type": "Feature", "properties": { "ISO": "BE-WLX", "NAME_1": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.192478475000087, 49.682808329000025 ], [ 5.169430786000135, 49.687200827000126 ], [ 5.151240682000093, 49.695985820000018 ], [ 5.13635787000004, 49.705339254000066 ], [ 5.093776489000078, 49.745336812000019 ], [ 5.081890909000037, 49.752726543000037 ], [ 5.04623417200014, 49.75939280200005 ], [ 5.026287068000045, 49.766730856000052 ], [ 4.989080037000122 [...]
+{ "type": "Feature", "properties": { "ISO": "BE-WLG", "NAME_1": "Liege" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.038628377000094, 50.148412985000036 ], [ 6.02736291500014, 50.149446513000029 ], [ 6.022966605624333, 50.150820360371313 ], [ 6.022971226340985, 50.150892646078717 ], [ 6.024934930202846, 50.18161428487133 ], [ 6.024056431059421, 50.183862210472626 ], [ 6.019870640017984, 50.194688421933108 ], [ 6.033823276223188, 50.204842840724496 ], [ 6.011912469085189, 50 [...]
 { "type": "Feature", "properties": { "ISO": "BE-VOV", "NAME_1": "East Flanders" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.398798476568402, 51.24469829349141 ], [ 3.421940552000109, 51.237984720999989 ], [ 3.45387658700011, 51.235633444000044 ], [ 3.501212199000065, 51.240284323000097 ], [ 3.504106079000053, 51.249741110000073 ], [ 3.501522258000136, 51.262401836000024 ], [ 3.503382609000141, 51.273951518000061 ], [ 3.514338012000024, 51.281031188999989 ], [ 3.52901412000 [...]
 { "type": "Feature", "properties": { "ISO": "BE-VAN", "NAME_1": "Antwerp" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.764184204000117, 51.496237691000047 ], [ 4.778653605000045, 51.495359192000123 ], [ 4.796843709000086, 51.491018372000028 ], [ 4.813586873000133, 51.484119569000072 ], [ 4.823922159000062, 51.475644633000073 ], [ 4.826092570000128, 51.460555115000048 ], [ 4.819891398000067, 51.446214905000076 ], [ 4.815447224000138, 51.431073711000053 ], [ 4.822681925000012 [...]
-{ "type": "Feature", "properties": { "ISO": "BE-VLI", "NAME_1": "Limburg" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.551406597000096, 51.216767134000108 ], [ 5.568372843000134, 51.207650655000052 ], [ 5.62501021300011, 51.196901957000122 ], [ 5.638549438000098, 51.19090749100009 ], [ 5.648161255000105, 51.183957011000089 ], [ 5.659013306000048, 51.179073588000065 ], [ 5.676169881000106, 51.179176941000023 ], [ 5.718027791000083, 51.184602967000089 ], [ 5.7308435470 [...]
+{ "type": "Feature", "properties": { "ISO": "BE-VLI", "NAME_1": "Limburg" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.551406597000096, 51.216767134000108 ], [ 5.568372843000134, 51.207650655000052 ], [ 5.62501021300011, 51.196901957000122 ], [ 5.638549438000098, 51.19090749100009 ], [ 5.648161255000105, 51.183957011000089 ], [ 5.659013306000048, 51.179073588000065 ], [ 5.676169881000106, 51.179176941000023 ], [ 5.718027791000083, 51.184602967000089 ], [ 5.7308435470 [...]
 { "type": "Feature", "properties": { "ISO": "BE-BRU", "NAME_1": "Brussels" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.479745550000075, 50.795422745000053 ], [ 4.398428913000089, 50.767791360000047 ], [ 4.377241576000074, 50.764639098000032 ], [ 4.355279092000046, 50.767145405000065 ], [ 4.327632201000085, 50.778979308000032 ], [ 4.30122554400009, 50.814403503000051 ], [ 4.283035439000059, 50.808409036000057 ], [ 4.245570027000042, 50.821638203000077 ], [ 4.257455606000065 [...]
 { "type": "Feature", "properties": { "ISO": "BE-VBR", "NAME_1": "Flemish Brabant" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.09973913500005, 50.707123229000047 ], [ 4.072712360000082, 50.712910990000069 ], [ 4.058501342000056, 50.696012796000048 ], [ 4.051473347000069, 50.702834085000063 ], [ 4.02801224600006, 50.695030944000052 ], [ 4.008995320000054, 50.698984191000079 ], [ 3.988841511000089, 50.688726419000034 ], [ 3.928225056000088, 50.689811624000072 ], [ 3.906934365 [...]
 { "type": "Feature", "properties": { "ISO": "BE-WBR", "NAME_1": "Walloon Brabant" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.09973913500005, 50.707123229000047 ], [ 4.107490599000073, 50.717200133000063 ], [ 4.131830199000092, 50.716941751000036 ], [ 4.13911657500006, 50.727948831000049 ], [ 4.149038451000081, 50.730377623000038 ], [ 4.158598591000043, 50.727845479000052 ], [ 4.180251016000057, 50.708725199000071 ], [ 4.207432819000076, 50.709086934000084 ], [ 4.239988972 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/bulgaria.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/bulgaria.geojson
index 781c30b..43536b5 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/bulgaria.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/bulgaria.geojson
@@ -4,21 +4,21 @@
 "features": [
 { "type": "Feature", "properties": { "ISO": "BG-02", "NAME_1": "Burgas" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.546411173000109, 41.901164449000092 ], [ 27.533182007000107, 41.908063253000094 ], [ 27.509462524000071, 41.933177999000108 ], [ 27.494321330000048, 41.942841492000028 ], [ 27.420837443000096, 41.973718160000018 ], [ 27.396859578000061, 41.989324443000058 ], [ 27.374845418000092, 42.008703105000038 ], [ 27.332470744000091, 42.057433981000074 ], [ 27.30528894 [...]
 { "type": "Feature", "properties": { "ISO": "BG-28", "NAME_1": "Yambol" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.047903040892606, 42.082919649022585 ], [ 27.046545044000084, 42.0829363000001 ], [ 27.022618856000094, 42.073892924000049 ], [ 27.000397990000067, 42.042809550000086 ], [ 26.981071004000086, 42.032861837 ], [ 26.967170044000113, 42.028495179000103 ], [ 26.958230021000105, 42.018237406000125 ], [ 26.950065144000064, 42.006170960000034 ], [ 26.938903035000038, [...]
-{ "type": "Feature", "properties": { "ISO": "BG-26", "NAME_1": "Haskovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.552894853000026, 41.88164332500007 ], [ 26.552053263000118, 41.874447734000043 ], [ 26.547815796000094, 41.856283468000115 ], [ 26.539547567000028, 41.837990011000059 ], [ 26.526111694000093, 41.824244080000099 ], [ 26.478362671000099, 41.813288676000028 ], [ 26.37552657100008, 41.816621806000043 ], [ 26.334185425000044, 41.78954335499999 ], [ 26.3200260820 [...]
-{ "type": "Feature", "properties": { "ISO": "BG-05", "NAME_1": "Vidin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.575190064000083, 44.061394348000064 ], [ 22.592966757000113, 44.063926494000057 ], [ 22.604748982000018, 44.079377747000038 ], [ 22.604645630000107, 44.088162740000129 ], [ 22.598134399000116, 44.109298401000061 ], [ 22.597100871000038, 44.119065247000023 ], [ 22.599064575000085, 44.130330709000091 ], [ 22.609399861000099, 44.159941305000032 ], [ 22.607952921 [...]
-{ "type": "Feature", "properties": { "ISO": "BG-14", "NAME_1": "Pernik" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.666243937000047, 42.871932068000078 ], [ 22.696629680000086, 42.877409770000057 ], [ 22.727015422000136, 42.886892395000032 ], [ 22.738797648000059, 42.89738271099999 ], [ 22.739578617958841, 42.89885754334091 ], [ 22.744896275043061, 42.894798081865986 ], [ 22.76680708218106, 42.880432034510761 ], [ 22.78396365659745, 42.860743312753641 ], [ 22.789338006044 [...]
+{ "type": "Feature", "properties": { "ISO": "BG-26", "NAME_1": "Haskovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.552894853000026, 41.88164332500007 ], [ 26.552053263000118, 41.874447734000043 ], [ 26.547815796000094, 41.856283468000115 ], [ 26.539547567000028, 41.837990011000059 ], [ 26.526111694000093, 41.824244080000099 ], [ 26.478362671000099, 41.813288676000028 ], [ 26.37552657100008, 41.816621806000043 ], [ 26.334185425000044, 41.789543355 ], [ 26.320026082000084 [...]
+{ "type": "Feature", "properties": { "ISO": "BG-05", "NAME_1": "Vidin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.575190064000083, 44.061394348000064 ], [ 22.592966757000113, 44.063926494000057 ], [ 22.604748982000018, 44.079377747000038 ], [ 22.604645630000107, 44.088162740000129 ], [ 22.598134399000116, 44.109298401000061 ], [ 22.597100871000038, 44.119065247000023 ], [ 22.599064575000085, 44.130330709000091 ], [ 22.609399861000099, 44.159941305000032 ], [ 22.607952921 [...]
+{ "type": "Feature", "properties": { "ISO": "BG-14", "NAME_1": "Pernik" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.666243937000047, 42.871932068000078 ], [ 22.696629680000086, 42.877409770000057 ], [ 22.727015422000136, 42.886892395000032 ], [ 22.738797648000059, 42.897382711 ], [ 22.739578617958841, 42.89885754334091 ], [ 22.744896275043061, 42.894798081865986 ], [ 22.76680708218106, 42.880432034510761 ], [ 22.78396365659745, 42.860743312753641 ], [ 22.789338006044147,  [...]
 { "type": "Feature", "properties": { "ISO": "BG-23", "NAME_1": "Sofia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.739578617958841, 42.89885754334091 ], [ 22.74551558400006, 42.910069275000026 ], [ 22.763188924000076, 42.958645121000032 ], [ 22.769390096000052, 42.971280009000068 ], [ 22.776418091000068, 42.97972910600005 ], [ 22.788096964000147, 42.984896749000072 ], [ 22.815795532000067, 42.98970265700008 ], [ 22.828817993000115, 42.993449198000079 ], [ 22.8289213460001 [...]
-{ "type": "Feature", "properties": { "ISO": "BG-12", "NAME_1": "Montana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.982901934576603, 43.187317918886833 ], [ 22.981366822000069, 43.198992208000035 ], [ 22.964727010000047, 43.204418234000016 ], [ 22.915531046000069, 43.212247213000055 ], [ 22.897754353000039, 43.220334574000034 ], [ 22.88380171700004, 43.230592347000126 ], [ 22.857343384000046, 43.25694732699999 ], [ 22.833158814000086, 43.274646505000092 ], [ 22.826957642 [...]
+{ "type": "Feature", "properties": { "ISO": "BG-12", "NAME_1": "Montana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.982901934576603, 43.187317918886833 ], [ 22.981366822000069, 43.198992208000035 ], [ 22.964727010000047, 43.204418234000016 ], [ 22.915531046000069, 43.212247213000055 ], [ 22.897754353000039, 43.220334574000034 ], [ 22.88380171700004, 43.230592347000126 ], [ 22.857343384000046, 43.256947327 ], [ 22.833158814000086, 43.274646505000092 ], [ 22.82695764200011 [...]
 { "type": "Feature", "properties": { "ISO": "BG-10", "NAME_1": "Kyustendil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.345023234000053, 42.313439026000125 ], [ 22.364143514000148, 42.320983785000081 ], [ 22.405794718000067, 42.321552226000037 ], [ 22.423984822000108, 42.325893047000093 ], [ 22.438454223000036, 42.340052388000046 ], [ 22.454370565000147, 42.376768494000132 ], [ 22.46977014100014, 42.391702983000087 ], [ 22.485066365000108, 42.397154846000078 ], [ 22.49757 [...]
 { "type": "Feature", "properties": { "ISO": "BG-01", "NAME_1": "Blagoevgrad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.916977986000063, 41.335772604000098 ], [ 22.94085249800014, 41.349828593000026 ], [ 22.944469849000114, 41.368432109000068 ], [ 22.939405558000146, 41.389412740000054 ], [ 22.937338501000085, 41.410755107000071 ], [ 22.940542440000058, 41.416904602000031 ], [ 22.952117960000095, 41.427704976000072 ], [ 22.954598429000072, 41.432407532000056 ], [ 22.9533 [...]
 { "type": "Feature", "properties": { "ISO": "BG-19", "NAME_1": "Silistra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.027476441000118, 44.177046204000092 ], [ 27.100236857000084, 44.144490052000052 ], [ 27.20555342600008, 44.129245504 ], [ 27.226740763000066, 44.120718893000074 ], [ 27.251132039000083, 44.122372539000125 ], [ 27.252662457806139, 44.12151886650247 ], [ 27.269012085000043, 44.11239898700002 ], [ 27.264309530000048, 44.089764710000068 ], [ 27.285341838000079 [...]
 { "type": "Feature", "properties": { "ISO": "BG-18", "NAME_1": "Ruse" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.533820841000079, 43.668679301000068 ], [ 25.556558472000063, 43.670358785000118 ], [ 25.575058634000072, 43.67738678000002 ], [ 25.593868856000086, 43.680668234 ], [ 25.616503134000141, 43.687747904000034 ], [ 25.637897176000138, 43.697282207000043 ], [ 25.653503458000102, 43.708134257000083 ], [ 25.671383504000062, 43.717358500000088 ], [ 25.732947936597952,  [...]
-{ "type": "Feature", "properties": { "ISO": "BG-08", "NAME_1": "Dobrich" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.682514975685535, 43.987256009757004 ], [ 27.72169763100004, 43.948739726000056 ], [ 27.787326701000069, 43.960418600000125 ], [ 27.856469767000135, 43.988633932000099 ], [ 27.912073608000071, 43.993336487000064 ], [ 27.912073608000071, 43.99323313400005 ], [ 27.935844767000106, 43.964397685 ], [ 27.981009969000098, 43.849340109000039 ], [ 28.014806355000076 [...]
+{ "type": "Feature", "properties": { "ISO": "BG-08", "NAME_1": "Dobrich" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.682514975685535, 43.987256009757004 ], [ 27.72169763100004, 43.948739726000056 ], [ 27.787326701000069, 43.960418600000125 ], [ 27.856469767000135, 43.988633932000099 ], [ 27.912073608000071, 43.993336487000064 ], [ 27.912073608000071, 43.99323313400005 ], [ 27.935844767000106, 43.964397685 ], [ 27.981009969000098, 43.849340109000039 ], [ 28.014806355000076 [...]
 { "type": "Feature", "properties": { "ISO": "BG-06", "NAME_1": "Vratsa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.620853516000068, 43.834009930000022 ], [ 23.636107219000053, 43.832157695000078 ], [ 23.720753215000059, 43.845826111000079 ], [ 23.742870727000053, 43.842699687000035 ], [ 23.799921509000058, 43.818463440000059 ], [ 24.149605832000134, 43.754719949000062 ], [ 24.159382772000129, 43.752937724000063 ], [ 24.336705386944061, 43.759250924690377 ], [ 24.32898562 [...]
 { "type": "Feature", "properties": { "ISO": "BG-15", "NAME_1": "Pleven" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.46634077900012, 43.802417908000095 ], [ 24.500137166000115, 43.799498190000108 ], [ 24.661763224000083, 43.755656716000047 ], [ 24.705602661000057, 43.743765158000045 ], [ 24.752628215000101, 43.738804220000091 ], [ 24.963674764000075, 43.749604594000047 ], [ 25.08160038200009, 43.718934631000096 ], [ 25.211308227000131, 43.711880799000099 ], [ 25.2523393150 [...]
 { "type": "Feature", "properties": { "ISO": "BG-04", "NAME_1": "Veliko Tarnovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.285404774710571, 43.690391315007162 ], [ 25.288719523000083, 43.688962301000075 ], [ 25.323032674000103, 43.669712830000051 ], [ 25.359619588000044, 43.654287415000042 ], [ 25.403131144000071, 43.650049948000103 ], [ 25.426075480000094, 43.654390767000066 ], [ 25.467416626000045, 43.6677491250001 ], [ 25.482450034641374, 43.669714752733626 ], [ 25.48 [...]
 { "type": "Feature", "properties": { "ISO": "BG-09", "NAME_1": "Kardzhali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.05948958500008, 41.643776770000059 ], [ 26.066914917000105, 41.63549591100012 ], [ 26.08117761200009, 41.630457459000056 ], [ 26.095233602000121, 41.628390401 ], [ 26.106705770000133, 41.624282125000079 ], [ 26.115284057000054, 41.616634013000109 ], [ 26.121071818000132, 41.608210755000115 ], [ 26.130270223000139, 41.582682597000073 ], [ 26.13099369300002 [...]
-{ "type": "Feature", "properties": { "ISO": "BG-21", "NAME_1": "Smolyan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.296118612000072, 41.515244853000056 ], [ 24.286816854000051, 41.517621969000103 ], [ 24.285059855000071, 41.523151347000109 ], [ 24.287333618000105, 41.531626282 ], [ 24.286403442000051, 41.54035959900007 ], [ 24.26686975100003, 41.549764710000048 ], [ 24.250746704000051, 41.563458964000048 ], [ 24.23328007, 41.561805318 ], [ 24.214366496000082, 41.55575917 [...]
+{ "type": "Feature", "properties": { "ISO": "BG-21", "NAME_1": "Smolyan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.296118612000072, 41.515244853000056 ], [ 24.286816854000051, 41.517621969000103 ], [ 24.285059855000071, 41.523151347000109 ], [ 24.287333618000105, 41.531626282 ], [ 24.286403442000051, 41.54035959900007 ], [ 24.26686975100003, 41.549764710000048 ], [ 24.250746704000051, 41.563458964000048 ], [ 24.23328007, 41.561805318 ], [ 24.214366496000082, 41.55575917 [...]
 { "type": "Feature", "properties": { "ISO": "BG-03", "NAME_1": "Varna" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.086997312875667, 43.35523474928425 ], [ 28.031097852000073, 43.248968817000048 ], [ 28.017588738000086, 43.23273346600007 ], [ 28.000173373000052, 43.223211981000077 ], [ 27.931976759000065, 43.209784247000073 ], [ 27.920583530000044, 43.204046942000048 ], [ 27.91382897200009, 43.202337958000044 ], [ 27.90398196700005, 43.202337958000044 ], [ 27.9039819670000 [...]
 { "type": "Feature", "properties": { "ISO": "BG-16", "NAME_1": "Plovdiv" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.011527947556715, 42.748269557893764 ], [ 25.006360303685028, 42.713052069697255 ], [ 25.022896763175083, 42.641557726108147 ], [ 25.013491652317896, 42.622101549247077 ], [ 24.994371372241005, 42.616985582218831 ], [ 25.018659295290206, 42.57667796541574 ], [ 25.018245884140242, 42.563293769092127 ], [ 25.025997348598764, 42.541331285110687 ], [ 25.04274051 [...]
 { "type": "Feature", "properties": { "ISO": "BG-24", "NAME_1": "Stara Zagora" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.126559686380403, 42.501721300297731 ], [ 25.081601189643152, 42.502548123497093 ], [ 25.042740512764453, 42.524278063481802 ], [ 25.025997348598764, 42.541331285110687 ], [ 25.018245884140242, 42.563293769092127 ], [ 25.018659295290206, 42.57667796541574 ], [ 24.994371372241005, 42.616985582218831 ], [ 25.013491652317896, 42.622101549247077 ], [ 25.022 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/canada.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/canada.geojson
index 9d801a7..1636bdc 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/canada.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/canada.geojson
@@ -6,7 +6,7 @@
 { "type": "Feature", "properties": { "ISO": "CA-BC", "NAME_1": "British Columbia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.000006866355378, 60.001087264965378 ], [ -120.000083770655181, 59.616258148722835 ], [ -120.000138702297903, 59.231429032480264 ], [ -120.000188140776359, 58.846588929909132 ], [ -120.000243072419082, 58.461759813666589 ], [ -120.000292510897523, 58.076919711095456 ], [ -120.000369415197326, 57.692090594852914 ], [ -120.000446319497144, 57 [...]
 { "type": "Feature", "properties": { "ISO": "CA-MB", "NAME_1": "Manitoba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.948495061717026, 56.851306871373311 ], [ -89.205223587135436, 56.694839580248299 ], [ -89.463687952463815, 56.535252171816779 ], [ -89.722141331463661, 56.375675749713793 ], [ -89.980572737806412, 56.216099327610806 ], [ -90.330036862465533, 55.991341018255696 ], [ -90.679500987124655, 55.766571722572053 ], [ -91.028987084440871, 55.541780454231343 ], [ - [...]
 { "type": "Feature", "properties": { "ISO": "CA-NB", "NAME_1": "New Brunswick" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.030941620953413, 46.012667541896406 ], [ -64.051354219388344, 45.9778628530687 ], [ -64.159591528204771, 45.964789122101223 ], [ -64.216467751077545, 45.900793758331872 ], [ -64.272838602837297, 45.849861139201437 ], [ -64.314652569276134, 45.835677789051033 ], [ -64.404048324639433, 45.82692168520137 ], [ -64.482238024887764, 45.8063552781668 [...]
-{ "type": "Feature", "properties": { "ISO": "CA-NL", "NAME_1": "Newfoundland and Labrador" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.100128368282626, 51.44334157718518 ], [ -57.100974315580515, 51.710693882305719 ], [ -57.101029247223238, 52.001117477368894 ], [ -57.507622280311651, 52.001084518383237 ], [ -57.914215313400078, 52.001062545726171 ], [ -58.320797360159943, 52.001062545726171 ], [ -58.727412365905451, 52.001040573069076 ], [ -59.134038357979506, 52 [...]
+{ "type": "Feature", "properties": { "ISO": "CA-NL", "NAME_1": "Newfoundland and Labrador" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.100128368282626, 51.44334157718518 ], [ -57.100974315580515, 51.710693882305719 ], [ -57.101029247223238, 52.001117477368894 ], [ -57.507622280311651, 52.001084518383237 ], [ -57.914215313400078, 52.001062545726171 ], [ -58.320797360159943, 52.001062545726171 ], [ -58.727412365905451, 52.001040573069076 ], [ -59.134038357979506, 52 [...]
 { "type": "Feature", "properties": { "ISO": "CA-NS", "NAME_1": "Nova Scotia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.314652569276134, 45.835677789051033 ], [ -64.272838602837297, 45.849861139201437 ], [ -64.216467751077545, 45.900793758331872 ], [ -64.159591528204771, 45.964789122101223 ], [ -64.051354219388344, 45.9778628530687 ], [ -64.030941620953413, 46.012667541896406 ], [ -63.87470504272784, 45.959208067200819 ], [ -63.702878864298185, 45.858023981309714 [...]
 { "type": "Feature", "properties": { "ISO": "CA-NT", "NAME_1": "Northwest Territories" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -110.000025405784797, 60.001087264965378 ], [ -110.625026650329829, 60.001087264965378 ], [ -111.250027894874862, 60.001087264965378 ], [ -111.875023646255613, 60.001087264965378 ], [ -112.500024890800645, 60.001087264965378 ], [ -113.125026135345678, 60.001087264965378 ], [ -113.75002737989071, 60.001087264965378 ], [ -114.375028624435743 [...]
 { "type": "Feature", "properties": { "ISO": "CA-NU", "NAME_1": "Nunavut" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.771886397143021, 60.001768417335114 ], [ -95.252785463339421, 60.001087264965378 ], [ -95.702708576205751, 60.001087264965378 ], [ -96.152626195907814, 60.001087264965378 ], [ -96.602549308774144, 60.001087264965378 ], [ -97.052466928476207, 60.001087264965378 ], [ -97.502390041342537, 60.001087264965378 ], [ -97.952335126865947, 60.001087264965378  [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/china.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/china.geojson
index 2e946a6..8d9208b 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/china.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/china.geojson
@@ -2,40 +2,39 @@
 "type": "FeatureCollection",
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
-{ "type": "Feature", "properties": { "ISO": "CN-65", "NAME_1": "Xinjiang" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.883131958000035, 35.431068420000045 ], [ 77.800346314000137, 35.495405579000121 ], [ 77.383730916000047, 35.47199615500007 ], [ 77.281101522000085, 35.528013408000092 ], [ 76.896422160000043, 35.589611715000032 ], [ 76.570757284000138, 35.751255595000131 ], [ 76.537167603000114, 35.902512513000048 ], [ 76.403118937000102, 35.830992330000086 ], [ 76.1660274 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-54", "NAME_1": "Xizang" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.917694132000122, 33.386257833000045 ], [ 78.781371704000094, 33.552785136000082 ], [ 78.79408410700006, 33.743910421000024 ], [ 78.730108684000072, 34.079264629000036 ], [ 78.976191854000035, 34.2171631880001 ], [ 78.956939515746001, 34.339960905571331 ], [ 79.037687616090579, 34.384671536562166 ], [ 79.48112308136507, 34.471177883552457 ], [ 79.793972202055 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-15", "NAME_1": "Inner Mongol" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.914505656000131, 47.683912252000127 ], [ 115.575714966000078, 47.909738261000072 ], [ 115.514220011000077, 48.131636862000065 ], [ 115.7999906820001, 48.242327779000036 ], [ 115.8004040940001, 48.530372213000092 ], [ 116.028193808000083, 48.767463685000038 ], [ 116.0378056240001, 48.870144755000027 ], [ 116.684277792000159, 49.823264873000099 ], [ 117 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-62", "NAME_1": "Gansu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.366339900965613, 42.722922619283452 ], [ 97.190679733982506, 42.787061492393946 ], [ 97.846875441048724, 41.619268703887542 ], [ 97.659083286764258, 41.483876451536958 ], [ 97.658979933976752, 41.413441474244621 ], [ 97.950538365153363, 41.119815986418644 ], [ 98.320593296443462, 40.891922919107401 ], [ 98.234448683759695, 40.528172512351546 ], [ 98.600679559 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-53", "NAME_1": "Yunnan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.867921183000078, 22.378841858000058 ], [ 101.713150268000106, 22.491548157000082 ], [ 101.654549195000072, 22.446124573000034 ], [ 101.601219117000085, 22.276987610000091 ], [ 101.515746298000067, 22.245361634000105 ], [ 101.606800171000032, 21.967600810000121 ], [ 101.751080770000101, 21.816137187000081 ], [ 101.728549845000089, 21.717538554000086 ], [ 101 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-23", "NAME_1": "Heilongjiang" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.27731205300006, 53.569444479000069 ], [ 123.481537313000103, 53.5180781050001 ], [ 123.514403525000034, 53.562416484000053 ], [ 123.541895386000135, 53.514099020000018 ], [ 123.614294068000106, 53.563346660000022 ], [ 123.876551962000065, 53.488674215000017 ], [ 124.121808309000016, 53.35268768400006 ], [ 124.253066447000037, 53.375502828000052 ], [ 1 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-22", "NAME_1": "Jilin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.252848462686302, 43.469168591257471 ], [ 131.280906210000069, 43.380221456000086 ], [ 131.16907841, 43.201705221000068 ], [ 131.183961223000097, 43.120805766 ], [ 131.078334595, 43.031818950000016 ], [ 131.103035929000043, 42.910431010000039 ], [ 130.992448365000087, 42.848729350000056 ], [ 130.769516236000129, 42.865808411 ], [ 130.407161092000081, 42.73537 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-21", "NAME_1": "Liaoning" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.7040896919857, 40.859194624832071 ], [ 125.644816121000076, 40.810585023 ], [ 125.682643270000085, 40.768882141000049 ], [ 125.571745647000057, 40.784901836000117 ], [ 125.413254029000086, 40.631784566000093 ], [ 125.293313029000103, 40.648579407000071 ], [ 125.025112345000025, 40.534374492000055 ], [ 125.041287069000134, 40.461097310000028 ], [ 12 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-45", "NAME_1": "Guangxi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.664950399000134, 23.043374939000032 ], [ 105.551572307000129, 23.05967885400004 ], [ 105.52728519135843, 23.197576606375264 ], [ 105.631723260919728, 23.351701565175063 ], [ 105.692391392148977, 23.347360745402057 ], [ 105.693114861661513, 23.396143297075469 ], [ 105.843389927103431, 23.516885281230714 ], [ 106.004878777633451, 23.469963079732338 ], [...]
-{ "type": "Feature", "properties": { "ISO": "CN-44", "NAME_1": "Guangdong" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.183035116000042, 22.55619537400004 ], [ 114.055267774000072, 22.50694407800006 ], [ 113.963796420000108, 22.538112697000088 ], [ 113.89034489800008, 22.452712399000063 ], [ 113.893890821000014, 22.521144924000055 ], [ 113.758067254000025, 22.753404039000088 ], [ 113.65357506600003, 22.758734442000048 ], [ 113.592295769000089, 22.889064846000053 ], [...]
-{ "type": "Feature", "properties": { "ISO": "CN-46", "NAME_1": "Hainan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.010508660000028, 19.683783270000049 ], [ 111.034678582000026, 19.642238674000055 ], [ 110.965830925000034, 19.635972398000035 ], [ 110.876475457000026, 19.53978099200009 ], [ 110.821787957000026, 19.567775783000059 ], [ 110.847666863000029, 19.622463283000059 ], [ 110.794444207000026, 19.601263739000046 ], [ 110.79623457100007, 19.484605210000041 ], [ 110.6 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-35", "NAME_1": "Fujian" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.468900667000071, 23.753090464000081 ], [ 117.526660765000088, 23.740106905000061 ], [ 117.421149445000083, 23.64646441900004 ], [ 117.431558644, 23.582630235000067 ], [ 117.320482728, 23.574015926000072 ], [ 117.393728061000047, 23.679185289000088 ], [ 117.340505405000044, 23.688950914000088 ], [ 117.37273196700005, 23.766750393000052 ], [ 117.468900 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-33", "NAME_1": "Zhejiang" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.25553061200003, 28.140000892000046 ], [ 121.279144727000016, 28.085435289000088 ], [ 121.151572802000032, 28.041232470000068 ], [ 121.12037194100003, 28.135687567000048 ], [ 121.230587604000107, 28.219732518000058 ], [ 121.25553061200003, 28.140000892000046 ] ] ], [ [ [ 122.238780144000089, 30.31313711100006 ], [ 122.202321811000047, 30.24192942900 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-31", "NAME_1": "Shanghai" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.837738477000016, 31.375148830000057 ], [ 121.881846550000091, 31.336615302000041 ], [ 121.834727410000028, 31.292547919000071 ], [ 121.79420006600003, 31.368801174000055 ], [ 121.837738477000016, 31.375148830000057 ] ] ], [ [ [ 121.340912306000064, 31.49095286700009 ], [ 121.725163995, 31.281567150000058 ], [ 121.950820062000048, 30.982080909000047 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-32", "NAME_1": "Jiangsu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.880707227000016, 32.125189520000049 ], [ 119.901866082000083, 32.073391018000052 ], [ 119.792002800000091, 32.121771552000041 ], [ 119.819346550000091, 32.20376211100006 ], [ 119.716156446000014, 32.272650458000044 ], [ 119.814300977000016, 32.275580145000049 ], [ 119.880707227000016, 32.125189520000049 ] ] ], [ [ [ 119.280284050000091, 35.076605536 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-37", "NAME_1": "Shandong" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.837159029465624, 38.270907582019277 ], [ 118.084808790000011, 38.138739325000074 ], [ 118.542979363000086, 38.068345445000034 ], [ 118.654870943000105, 38.145694596000055 ], [ 118.840098504000025, 38.152573960000041 ], [ 118.950036761000092, 38.097261868000089 ], [ 118.924815300000091, 38.057766018000052 ], [ 118.996592644000089, 37.963120835000041 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-13", "NAME_1": "Hebei" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.543549024000072, 38.621323960000041 ], [ 117.837159029465624, 38.270907582019277 ], [ 117.775168085438736, 38.235805975964979 ], [ 117.754084099701345, 38.128163967293233 ], [ 117.568669061328023, 38.048918159245659 ], [ 117.413174676969675, 37.843685207905992 ], [ 116.781947055612136, 37.83384084747712 ], [ 116.425172967858089, 37.480709947506057 ],  [...]
-{ "type": "Feature", "properties": { "ISO": "CN-12", "NAME_1": "Tianjin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.009563314133601, 39.21855181175426 ], [ 117.715424024000072, 39.111395575000074 ], [ 117.775263945, 38.981058362000056 ], [ 117.701914910000028, 38.995306708000044 ], [ 117.583994988000086, 38.811590887000079 ], [ 117.543549024000072, 38.621323960000041 ], [ 117.248533563273327, 38.563150336119122 ], [ 117.07273034133209, 38.62415436503187 ], [ 117.0356266 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-X01~", "NAME_1": "Paracel Islands" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 111.19654381600003, 15.775376695000091 ], [ 111.196299675000034, 15.785711981000077 ], [ 111.207530144000032, 15.789292710000041 ], [ 111.207530144000032, 15.782171942000048 ], [ 111.19654381600003, 15.775376695000091 ] ] ], [ [ [ 111.76335696700005, 16.043443101000037 ], [ 111.753103061000047, 16.044663804000038 ], [ 111.753428582000026, 16.0 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-11", "NAME_1": "Beijing" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.356795688670104, 40.257026272444477 ], [ 117.370800001718635, 40.194032701248148 ], [ 117.301088494838154, 40.104322415147294 ], [ 116.76499718587138, 40.018952948819503 ], [ 116.784427525210049, 39.885627753118285 ], [ 116.928708123581032, 39.801395169251634 ], [ 116.875636428078678, 39.686466783215451 ], [ 116.793419224017953, 39.602311712815265 ], [ 116 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-51", "NAME_1": "Sichuan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.518368767904292, 32.197569892036881 ], [ 108.361169061203157, 32.167184150028504 ], [ 108.416876255035106, 32.089333604162505 ], [ 108.344735956299303, 32.073546454405346 ], [ 108.260193313170817, 31.954638983802056 ], [ 108.480851679061686, 31.810823473424534 ], [ 108.516198357568101, 31.708271593359314 ], [ 108.352332391126879, 31.517404690274191 ], [ 10 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-50", "NAME_1": "Chongqing" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.811538527181256, 30.798017076426902 ], [ 107.94920454265548, 30.899923001345428 ], [ 107.932926467382515, 30.956379503111577 ], [ 108.006772089360368, 31.038622544694647 ], [ 108.037364536943755, 31.229799506142285 ], [ 108.175909051561462, 31.306125596818845 ], [ 108.232236363017705, 31.481282864512593 ], [ 108.352332391126879, 31.517404690274191 ], [ 1 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-52", "NAME_1": "Guizhou" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.496105585004727, 29.246096300303975 ], [ 107.579924757721358, 29.178270982020194 ], [ 107.777587110856416, 29.145947374571676 ], [ 107.78983442561821, 29.04019155539595 ], [ 107.850037469753374, 28.982598171168661 ], [ 108.054572789102906, 29.064505316866871 ], [ 108.296160109301582, 29.075925808429304 ], [ 108.375948520607722, 28.794366767312454 ], [ 108. [...]
-{ "type": "Feature", "properties": { "ISO": "CN-43", "NAME_1": "Hunan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.258375278596191, 28.505908922458786 ], [ 109.285091994399977, 28.584637966568891 ], [ 109.213210077183248, 28.628795478528502 ], [ 109.281061232989487, 28.720882880540501 ], [ 109.240391880081177, 28.8827076278547 ], [ 109.285712111125008, 29.030269679701917 ], [ 109.206595494286603, 29.104244492888995 ], [ 109.436348911772825, 29.54031606733264 ], [ 109.586 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-64", "NAME_1": "Ningxia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.773772413566007, 39.372997544900727 ], [ 106.808240594727636, 39.19905467403396 ], [ 106.981718377600998, 39.014621486692249 ], [ 106.708918492194641, 38.645290024914686 ], [ 106.644994745011445, 38.45920319297295 ], [ 106.470121698157811, 38.290686347496944 ], [ 106.829169549934761, 38.150384832793804 ], [ 107.162637566570424, 38.138602606924735 ], [ 107. [...]
-{ "type": "Feature", "properties": { "ISO": "CN-61", "NAME_1": "Shaanxi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.335993279566139, 31.705248521402098 ], [ 109.11766035364235, 31.905727240919418 ], [ 108.663166132011327, 32.112458808127485 ], [ 108.463591750059152, 32.256610216188506 ], [ 108.064649692629189, 32.23108205789066 ], [ 107.990494012288821, 32.145221666047007 ], [ 107.659196405089972, 32.388617662275294 ], [ 107.459622024037117, 32.408642279917274 ], [ 107. [...]
-{ "type": "Feature", "properties": { "ISO": "CN-63", "NAME_1": "Qinghai" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.923868442974197, 39.153114326265097 ], [ 93.275629917386766, 39.188719387189963 ], [ 93.733844842965084, 39.308531196257661 ], [ 94.149891798867372, 39.324266669171436 ], [ 94.631051060358118, 39.295379543930778 ], [ 95.005963576258011, 39.151202298347357 ], [ 95.313696730819458, 39.181277981093956 ], [ 95.70282026624227, 38.883234158229811 ], [ 96.01861494 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-14", "NAME_1": "Shanxi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.154097120985284, 40.74257803055167 ], [ 114.156267531321419, 40.663874823963909 ], [ 114.256209750579501, 40.557473048742168 ], [ 114.295122105200903, 40.366787013709711 ], [ 114.510664504063584, 40.324980781038164 ], [ 114.099630162402036, 40.196823229208633 ], [ 114.060821160568025, 40.086674913416516 ], [ 113.995967238297339, 40.131814277307058 ], [ 113. [...]
-{ "type": "Feature", "properties": { "ISO": "CN-36", "NAME_1": "Jiangxi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.984805129153301, 25.422324530952324 ], [ 113.927547641710248, 25.448111069869981 ], [ 113.982428013242156, 25.581668810467193 ], [ 113.902846306611764, 25.740186265883437 ], [ 114.014570754436704, 25.916842149445642 ], [ 114.026352981205036, 26.049624741888294 ], [ 114.215230341107258, 26.180572822577687 ], [ 114.149239537274752, 26.222068996886662 ], [ 11 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-41", "NAME_1": "Henan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.867292921631019, 36.365299994499139 ], [ 114.004493850011158, 36.353311062155797 ], [ 114.156267531321419, 36.246676743836645 ], [ 114.343077833675011, 36.244713039974783 ], [ 114.560635614142257, 36.134383857029377 ], [ 114.842272169624835, 36.148646552496359 ], [ 114.930690546331562, 36.056559150484361 ], [ 115.112436557600972, 36.186008613506715 ], [ 115. [...]
-{ "type": "Feature", "properties": { "ISO": "CN-42", "NAME_1": "Hubei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.022307977131391, 30.822770087469564 ], [ 110.127676222679497, 30.906408393032905 ], [ 110.104835239554632, 31.110892035538996 ], [ 110.175476923321298, 31.198406073781257 ], [ 110.146744825912947, 31.331111151858124 ], [ 109.968151076011281, 31.503426214748004 ], [ 109.732609897928398, 31.561122951762798 ], [ 109.703257683795016, 31.6737000603095 ], [ 109.58 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-34", "NAME_1": "Anhui" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.629783562561329, 31.132880357042836 ], [ 119.578262159770816, 30.855197047705587 ], [ 119.451448195078115, 30.648129583713285 ], [ 119.360290969052926, 30.680453192960442 ], [ 119.242933791161477, 30.556584784060533 ], [ 119.326287875884759, 30.514959418542333 ], [ 119.392382033404033, 30.36843089457011 ], [ 119.237817824133231, 30.298641873323788 ], [ 118.9 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-91", "NAME_1": "Hong Kong" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.229828321000014, 22.555812893000052 ], [ 114.209320509, 22.523708401000079 ], [ 114.254567905000044, 22.550970770000049 ], [ 114.335134311000047, 22.506415106000077 ], [ 114.167491082000083, 22.448065497000073 ], [ 114.209320509, 22.398667710000041 ], [ 114.323741082000083, 22.480047919000071 ], [ 114.347585483000103, 22.422919012000079 ], [ 114.3 [...]
-{ "type": "Feature", "properties": { "ISO": "CN-71", "NAME_1": "Taiwan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.905772332000083, 24.950100002000056 ], [ 121.806813998000052, 24.77875397300005 ], [ 121.814952019000089, 24.644354559000078 ], [ 121.881846550000091, 24.597805080000057 ], [ 121.840830925000091, 24.590318101000037 ], [ 121.840017123000052, 24.481350002000056 ], [ 121.780039910000028, 24.432684637000079 ], [ 121.77271569100003, 24.30923086100006 ], [ [...]
-{ "type": "Feature", "properties": { "ISO": "CN-92", "NAME_1": "Macao" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.558604363000086, 22.163031317000048 ], [ 113.587494337000066, 22.12486399900007 ], [ 113.546804233000103, 22.105373440000051 ], [ 113.532237175000091, 22.152614651000079 ], [ 113.558604363000086, 22.163031317000048 ] ] ], [ [ [ 113.536468946000014, 22.217067776000079 ], [ 113.557139519000089, 22.202460028000075 ], [ 113.524750196000014, 22.17373281500 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-GS", "NAME_1": "Gansu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.372543147588459, 42.730676677562009 ], [ 96.385465936267508, 42.720338446618769 ], [ 96.625296258534092, 42.743851223311566 ], [ 96.83298383991513, 42.760232652348094 ], [ 97.205674269604117, 42.789791571619034 ], [ 97.846875441048724, 41.619268703887542 ], [ 97.679598829922043, 41.502324937146113 ], [ 97.647611119257704, 41.455531927756226 ], [ 97.7084859560 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-QH", "NAME_1": "Qinghai" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.777539911137922, 33.530046699095863 ], [ 101.691085240091695, 33.420285956032046 ], [ 101.665143670643829, 33.320395412718085 ], [ 101.726948684334275, 33.267788805209193 ], [ 101.643646274655794, 33.127771511346168 ], [ 101.445157098321374, 33.235852768690279 ], [ 101.220002883026609, 33.170611273691293 ], [ 101.16414065956377, 33.128081569708627 ], [ 101 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-GX", "NAME_1": "Guangxi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.51214726508465, 23.152334030504889 ], [ 105.618804151690199, 23.284651394146522 ], [ 105.628932732959242, 23.347283230136952 ], [ 105.701693150218659, 23.359298000902015 ], [ 105.848040806138272, 23.519391588351084 ], [ 105.983019647338836, 23.469032905544111 ], [ 106.128127068909066, 23.540656440342445 ], [ 106.152156610439192, 23.750411077709032 ], [ 106 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-GZ", "NAME_1": "Guizhou" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.382426791862883, 28.572494005493922 ], [ 106.488725214297176, 28.540971381024406 ], [ 106.56241580574482, 28.767133287571141 ], [ 106.626494581659585, 28.63739960370873 ], [ 106.56241580574482, 28.510740667747598 ], [ 106.750001255353595, 28.502162380089771 ], [ 106.761990187696938, 28.590890815158957 ], [ 106.828962844359751, 28.608693346520681 ], [ 106.8 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-CQ", "NAME_1": "Chongqing" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.258375278596191, 28.505908922458786 ], [ 109.155332473015164, 28.435525621110514 ], [ 109.094974400148431, 28.205203761944063 ], [ 108.942942336419662, 28.199855251818406 ], [ 108.728485142275474, 28.242229926170126 ], [ 108.783727248113962, 28.426094671831606 ], [ 108.730035434987315, 28.475445665185305 ], [ 108.582757603080893, 28.374159857891129 ], [  [...]
+{ "type": "Feature", "properties": { "ISO": "CN-BJ", "NAME_1": "Beijing" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.793419224017953, 39.602311712815265 ], [ 116.604386835384048, 39.611174221313263 ], [ 116.428273554181146, 39.521412258369025 ], [ 116.386622349341906, 39.442140611000355 ], [ 116.249783156167723, 39.505805975765156 ], [ 116.210405715351385, 39.571900133284487 ], [ 116.000599400242095, 39.557611599395784 ], [ 115.945408970347671, 39.575388292335788 ], [ 11 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-FJ", "NAME_1": "Fujian" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.423805379932489, 27.202522191431161 ], [ 120.384570312499989, 27.155517578125 ], [ 120.278710937500023, 27.097070312499994 ], [ 120.138574218750023, 26.886132812499994 ], [ 120.097460937499989, 26.780664062499994 ], [ 120.086718749999989, 26.671582031249997 ], [ 120.04296875, 26.633837890624996 ], [ 119.9677734375, 26.586376953124997 ], [ 119.8822265 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-AH", "NAME_1": "Anhui" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.147257115423486, 29.788776352846412 ], [ 116.125553012961177, 29.904686590813469 ], [ 116.078062371581154, 29.96871369078417 ], [ 116.08085289864232, 30.046796779747581 ], [ 116.040493605895108, 30.221437283503803 ], [ 115.912025994803798, 30.315591742165168 ], [ 115.876782668185569, 30.38979909934892 ], [ 115.946649204696996, 30.48829437958193 ], [ 115.8330 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-GD", "NAME_1": "Guangdong" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.464941406250034, 22.904541015625 ], [ 113.5205078125, 22.85205078125 ], [ 113.555273437500034, 22.80419921875 ], [ 113.563671875000011, 22.757910156249991 ], [ 113.485644531249989, 22.828320312499997 ], [ 113.46337890625, 22.832373046874991 ], [ 113.426074218749989, 22.85859375 ], [ 113.404394531250034, 22.90283203125 ], [ 113.464941406250034, 22. [...]
+{ "type": "Feature", "properties": { "ISO": "CN-XZ", "NAME_1": "Xizang" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.947317095691233, 34.335972471962073 ], [ 79.204499139223856, 34.43944855440725 ], [ 79.338392774806664, 34.430818589905982 ], [ 79.512645704935323, 34.471694648389303 ], [ 79.717336053016425, 34.412783515446847 ], [ 79.793972202055443, 34.431025296380312 ], [ 79.956287875784824, 34.68475657855322 ], [ 79.883837517787185, 34.919600125545344 ], [ 80.0469283387 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-XJ", "NAME_1": "Xinjiang" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.947317095691233, 34.335972471962073 ], [ 78.93640180859353, 34.351960354137375 ], [ 78.864829949869289, 34.390355943330235 ], [ 78.763079054686585, 34.452936102835693 ], [ 78.67078494661331, 34.518151760388037 ], [ 78.515755649737685, 34.557942613252777 ], [ 78.326929966143183, 34.606389268526414 ], [ 78.281971470049257, 34.653931586234933 ], [ 78.23618615 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-HI", "NAME_1": "Hainan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.970703125, 19.88330078125 ], [ 110.997656250000034, 19.764697265625003 ], [ 111.013671875, 19.65546875 ], [ 110.912695312500034, 19.586083984374994 ], [ 110.822265625, 19.557910156250003 ], [ 110.640917968749989, 19.291210937499997 ], [ 110.603125, 19.20703125 ], [ 110.572167968750023, 19.171875 ], [ 110.5625, 19.13515625 ], [ 110.566015625000034, 19.098535 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-NX", "NAME_1": "Ningxia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.657646112378131, 37.85293528913229 ], [ 107.606744826312649, 37.765731310151807 ], [ 107.50943810358558, 37.764284369328152 ], [ 107.436057569601132, 37.663463650027381 ], [ 107.317201775841227, 37.590186468830439 ], [ 107.322162714137903, 37.527632148105113 ], [ 107.238033482159437, 37.301366888770872 ], [ 107.324953241199069, 37.163571682087422 ], [ 107. [...]
+{ "type": "Feature", "properties": { "ISO": "CN-SN", "NAME_1": "Shaanxi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.285472446696019, 37.068461209017585 ], [ 107.324953241199069, 37.163571682087422 ], [ 107.238033482159437, 37.301366888770872 ], [ 107.322162714137903, 37.527632148105113 ], [ 107.317201775841227, 37.590186468830439 ], [ 107.436057569601132, 37.663463650027381 ], [ 107.50943810358558, 37.764284369328152 ], [ 107.606744826312649, 37.765731310151807 ], [ 107 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-SX", "NAME_1": "Shanxi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.336035597864509, 34.615846056450323 ], [ 110.252268101091943, 34.663259182565184 ], [ 110.237436964843994, 34.80139028603287 ], [ 110.259657831243885, 34.94476654683865 ], [ 110.335415481139478, 35.198006904395129 ], [ 110.424815707978496, 35.294228421504442 ], [ 110.619842563683335, 35.597259020187607 ], [ 110.575607538257259, 35.712549140530371 ], [ 110.5 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-HB", "NAME_1": "Hubei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.902381220416942, 29.066339830418826 ], [ 113.772828403707763, 29.125302639305346 ], [ 113.711230095592441, 29.072928574893808 ], [ 113.654902785035461, 29.12403656743362 ], [ 113.641363559980277, 29.22175670041139 ], [ 113.587723422797694, 29.293793647259008 ], [ 113.729368523738344, 29.437092393699004 ], [ 113.672576125188016, 29.544786078314871 ], [ 113.63 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-HN", "NAME_1": "Hunan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.206595494286603, 29.104244492888995 ], [ 109.269227330277033, 29.24234975793496 ], [ 109.338163689902331, 29.289685370583356 ], [ 109.432318150362278, 29.533908189111628 ], [ 109.472212356015348, 29.568169663798926 ], [ 109.700002068740446, 29.655735378884629 ], [ 109.783201124732102, 29.734929510988138 ], [ 110.103905063567765, 29.78541738500428 ], [ 110.22 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-SC", "NAME_1": "Sichuan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.498553094849399, 32.907397366295413 ], [ 105.568264601729936, 32.730457261893093 ], [ 105.633273552732248, 32.707461249137339 ], [ 105.724482455600821, 32.759783636705436 ], [ 105.813417596245017, 32.762109075773196 ], [ 105.875480992353857, 32.844713853461542 ], [ 106.08234174987183, 32.873523464336415 ], [ 106.056503534110789, 32.713559068096515 ], [ 106 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-YN", "NAME_1": "Yunnan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.099453384540325, 28.140021134075152 ], [ 98.23015953993081, 28.202878322876302 ], [ 98.299767694023842, 28.354807033817565 ], [ 98.409993524181743, 28.250601508252998 ], [ 98.489885288275389, 28.248069362710908 ], [ 98.575823195384146, 28.317548326494034 ], [ 98.6404187361357, 28.424130967969802 ], [ 98.589207390808383, 28.670291652837477 ], [ 98.67814253055 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-HE", "NAME_1": "Hebei" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.875636428078678, 39.686466783215451 ], [ 116.922196892572515, 39.773593247830092 ], [ 116.78143029167461, 39.889658515428096 ], [ 116.74422326119452, 39.959008287102733 ], [ 116.829386021047981, 40.036677964916123 ], [ 116.987670933366871, 40.034352524949043 ], [ 117.239076775572698, 40.092617702744747 ], [ 117.147506138397489, 39.948001206690321 ], [ [...]
+{ "type": "Feature", "properties": { "ISO": "CN-HA", "NAME_1": "Henan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.374022657919227, 31.417539985382007 ], [ 115.28622439973617, 31.395138250929506 ], [ 115.218528273560878, 31.44748647691938 ], [ 115.213463983376073, 31.545594184424033 ], [ 115.128559605041687, 31.594531764829071 ], [ 115.076883172620228, 31.515544339199892 ], [ 114.998851759600939, 31.477613837408626 ], [ 114.766566196572626, 31.490481268895451 ], [ 114.63 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-LN", "NAME_1": "Liaoning" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.70851476185581, 40.852873096446196 ], [ 125.688225132348293, 40.838670355790924 ], [ 125.659234653832527, 40.795882269853252 ], [ 125.645075311384574, 40.778958238277667 ], [ 125.593812290551, 40.778958238277667 ], [ 125.542549269717483, 40.742578029944184 ], [ 125.416872186383671, 40.659895738277186 ], [ 125.314449497581165, 40.644625352534945 ], [ 125.1 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-SD", "NAME_1": "Shandong" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.83893488467568, 38.27434437223166 ], [ 118.014941406249989, 38.183398437499996 ], [ 118.543261718749989, 38.094921875 ], [ 118.667089843750034, 38.126367187499994 ], [ 118.8, 38.126660156249997 ], [ 118.940039062500034, 38.042773437499996 ], [ 119.027539062500011, 37.904003906249997 ], [ 119.03564453125, 37.809179687499999 ], [ 119.038476562500023, 37.776 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-TJ", "NAME_1": "Tianjin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.009538827137177, 39.220399775723926 ], [ 117.86572265625, 39.191259765624999 ], [ 117.78466796875, 39.134472656249997 ], [ 117.61669921875, 38.852880859374999 ], [ 117.553808593750034, 38.691455078124996 ], [ 117.557812500000011, 38.625146484374994 ], [ 117.271322869554751, 38.5592487659178 ], [ 117.189415724755804, 38.605809231310957 ], [ 117.094899529989 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-JX", "NAME_1": "Jiangxi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.927547641710248, 25.448111069869981 ], [ 113.982428013242156, 25.581668810467193 ], [ 113.917935826177427, 25.660191148102967 ], [ 113.907187128183409, 25.749772243893915 ], [ 114.018291456585416, 25.934618842385646 ], [ 114.04144249897206, 26.06884837475269 ], [ 114.213525017865209, 26.169772446840909 ], [ 114.162158644705642, 26.221371364896527 ], [ 114. [...]
+{ "type": "Feature", "properties": { "ISO": "CN-JS", "NAME_1": "Jiangsu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.295127160960433, 35.07083789647222 ], [ 119.2158203125, 35.011767578124996 ], [ 119.165332031249989, 34.848828125 ], [ 119.200976562499989, 34.7484375 ], [ 119.351367187499989, 34.749414062499994 ], [ 119.4267578125, 34.714160156249996 ], [ 119.582910156250023, 34.582226562499997 ], [ 119.769726562500011, 34.496191406249999 ], [ 119.963671874999989, 34.447 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-SH", "NAME_1": "Shanghai" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.350976562500023, 31.4853515625 ], [ 121.66064453125, 31.319726562499994 ], [ 121.785937499999989, 31.162890625 ], [ 121.83447265625, 31.061621093749999 ], [ 121.8779296875, 30.9169921875 ], [ 121.769433593750023, 30.870361328125 ], [ 121.675195312500023, 30.86376953125 ], [ 121.527539062500011, 30.840966796874994 ], [ 121.4189453125, 30.78979492187 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-ZJ", "NAME_1": "Zhejiang" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.205468750000023, 28.204394531249996 ], [ 121.234375, 28.181298828124994 ], [ 121.2509765625, 28.145214843749997 ], [ 121.251367187500023, 28.08642578125 ], [ 121.164257812500011, 28.0625 ], [ 121.131542968750011, 28.062597656249999 ], [ 121.133984375000011, 28.13525390625 ], [ 121.205468750000023, 28.204394531249996 ] ] ], [ [ [ 121.277609438505891 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-JL", "NAME_1": "Jilin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.245072584641491, 43.466681333078924 ], [ 131.261786737188288, 43.433059800788286 ], [ 131.257342564011196, 43.378076076829728 ], [ 131.239359165573603, 43.337665106777479 ], [ 131.211867303594317, 43.257773342454243 ], [ 131.175642124557726, 43.142199001633472 ], [ 131.135592889531551, 43.097628078781725 ], [ 131.108979526901237, 43.062436428390967 ], [ 131. [...]
+{ "type": "Feature", "properties": { "ISO": "CN-NM", "NAME_1": "Inner Mongol" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.205674269604117, 42.789791571619034 ], [ 97.718924595127021, 42.736280625980811 ], [ 98.24824629109267, 42.684500840824356 ], [ 98.716279738360157, 42.638741360029897 ], [ 98.946859979246511, 42.616210435550641 ], [ 99.467861769613165, 42.568203029951491 ], [ 99.757456496176843, 42.629465440433506 ], [ 99.983799269615247, 42.677343654951926 ], [ 100.08 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-HL", "NAME_1": "Heilongjiang" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.405437453294695, 53.317055975958027 ], [ 121.743918084806467, 53.383615220749959 ], [ 122.024345820935153, 53.438784776868779 ], [ 122.088806593922413, 53.451466376349188 ], [ 122.337783644704672, 53.485004380906616 ], [ 122.380158319184005, 53.462525132859653 ], [ 122.515860630382463, 53.456995754604421 ], [ 122.744787225435459, 53.468519599005504 ], [...]
+{ "type": "Feature", "properties": { "ISO": "CN-91", "NAME_1": "Hong Kong" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.229828321000014, 22.555812893000052 ], [ 114.234711134, 22.55617910400008 ], [ 114.227224155000044, 22.547064520000049 ], [ 114.222178582000083, 22.541449286000045 ], [ 114.214854363000086, 22.534491278000075 ], [ 114.209971550000091, 22.534491278000075 ], [ 114.209320509, 22.523708401000079 ], [ 114.217946811000047, 22.52602773600006 ], [ 114.218 [...]
+{ "type": "Feature", "properties": { "ISO": "CN-71", "NAME_1": "Taiwan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.905772332000083, 24.950100002000056 ], [ 121.834727410000028, 24.871527411000045 ], [ 121.82349694100003, 24.85492584800005 ], [ 121.814626498000052, 24.831732489000046 ], [ 121.808848504000025, 24.805161851000037 ], [ 121.806813998000052, 24.77875397300005 ], [ 121.807790561000047, 24.753119208000044 ], [ 121.820323113000086, 24.699652411000045 ], [ [...]
+{ "type": "Feature", "properties": { "ISO": "CN-92", "NAME_1": "Macao" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.558604363000086, 22.163031317000048 ], [ 113.569427931000064, 22.160752671000068 ], [ 113.574066602000016, 22.160752671000068 ], [ 113.574066602000016, 22.15611399900007 ], [ 113.571787957000083, 22.152899481000077 ], [ 113.567881707000083, 22.150580145000049 ], [ 113.563243035000028, 22.150580145000049 ], [ 113.56023196700005, 22.141546942000048 ], [ [...]
 ]
 }
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/egypt.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/egypt.geojson
index 2078f80..2ce3628 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/egypt.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/egypt.geojson
@@ -3,14 +3,14 @@
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
 { "type": "Feature", "properties": { "ISO": "EG-SIN", "NAME_1": "Shamal Sina'" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 34.248350857000048, 31.211448958000076 ], [ 34.480406535000043, 30.651205139000027 ], [ 34.504384400000049, 30.530333965000082 ], [ 34.536217081000075, 30.482171530000088 ], [ 34.526915324000072, 30.409617818000086 ], [ 34.599469035000084, 30.344505513000072 ], [ 34.733207642000082, 30.012587789000108 ], [ 34.741372518000048, 29.940240784000039 ], [...]
-{ "type": "Feature", "properties": { "ISO": "EG-ASN", "NAME_1": "Aswan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.435476115000085, 21.995351054000068 ], [ 31.490563192000081, 22.148209941000104 ], [ 31.482915080000055, 22.195442200000045 ], [ 31.442504110000073, 22.224174296000044 ], [ 31.3853499760001, 22.214459127000097 ], [ 31.314388101000134, 22.102273188000041 ], [ 31.232336866852904, 22.175390936942165 ], [ 31.228306105442414, 22.210608425138673 ], [ 31.2640145200 [...]
-{ "type": "Feature", "properties": { "ISO": "EG-WAD", "NAME_1": "Al Wadi at Jadid" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.314388101000134, 22.102273188000041 ], [ 31.248407430000043, 21.994369202000101 ], [ 24.981244751000133, 21.995351054000068 ], [ 24.981244750744622, 27.666502793968732 ], [ 30.687822299859249, 27.667639675530609 ], [ 30.671234165324449, 27.634024155990005 ], [ 30.67030398933764, 27.568085029000883 ], [ 30.790865106339538, 27.337453111471916 ], [ 3 [...]
+{ "type": "Feature", "properties": { "ISO": "EG-ASN", "NAME_1": "Aswan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.494719175649436, 21.995386529364794 ], [ 31.435476115000085, 21.995351054000068 ], [ 31.490563192000081, 22.148209941000104 ], [ 31.482915080000055, 22.195442200000045 ], [ 31.460900919000096, 22.21549265600008 ], [ 31.423280477000105, 22.226964823000102 ], [ 31.3853499760001, 22.214459127000097 ], [ 31.314388101000134, 22.102273188000041 ], [ 31.22505049038 [...]
 { "type": "Feature", "properties": { "ISO": "EG-BA", "NAME_1": "Al Bahr al Ahmar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.524518789710385, 21.995402731550826 ], [ 31.494719175649436, 21.995386529364794 ], [ 31.524360386022977, 22.05043732332382 ], [ 31.569525588335239, 22.09128754338542 ], [ 31.798555536308925, 22.19383942345064 ], [ 31.86030887225661, 22.264894518367328 ], [ 31.944593132966702, 22.27858877215408 ], [ 31.996114535757215, 22.312023424541394 ], [ [...]
-{ "type": "Feature", "properties": { "ISO": "EG-MT", "NAME_1": "Matruh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.981244750744622, 28.096700612842994 ], [ 24.974320109000047, 29.238939922 ], [ 24.86383589700003, 29.502903137000104 ], [ 24.870657185000084, 29.638347066000037 ], [ 24.804924764000134, 29.754799907000049 ], [ 24.798206827000087, 29.796425273000082 ], [ 24.811642701000068, 29.890889791000049 ], [ 24.697334432000105, 30.122606913000098 ], [ 24.688652792000141 [...]
+{ "type": "Feature", "properties": { "ISO": "EG-MT", "NAME_1": "Matruh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.981244750744622, 28.096700612842994 ], [ 24.974320109000047, 29.238939922 ], [ 24.86383589700003, 29.502903137000104 ], [ 24.870657185000084, 29.638347066000037 ], [ 24.804924764000134, 29.754799907000049 ], [ 24.798206827000087, 29.796425273000082 ], [ 24.811642701000068, 29.890889791000049 ], [ 24.697334432000105, 30.122606913000098 ], [ 24.688652792000141 [...]
+{ "type": "Feature", "properties": { "ISO": "EG-WAD", "NAME_1": "Al Wadi at Jadid" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.981244750744622, 27.049239432553748 ], [ 24.981244750744622, 27.666502793968732 ], [ 30.687822299859249, 27.667639675530609 ], [ 30.671234165324449, 27.634024155990005 ], [ 30.67030398933764, 27.568085029000883 ], [ 30.790865106339538, 27.337453111471916 ], [ 30.939383171696022, 27.208985501279869 ], [ 31.080408155911641, 27.149505927556504 ], [ 3 [...]
 { "type": "Feature", "properties": { "ISO": "EG-SUZ", "NAME_1": "As Suways" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.651774816136211, 29.790019194924447 ], [ 32.604502800000034, 29.824164130000042 ], [ 32.625498894000089, 29.84634023600006 ], [ 32.625336134000065, 29.874253648000035 ], [ 32.571543816000087, 29.928900458000044 ], [ 32.585459832000083, 29.952460028000075 ], [ 32.561615431000064, 29.976385809000078 ], [ 32.57781009200005, 29.983547268000052 ], [ 32.571543 [...]
 { "type": "Feature", "properties": { "ISO": "EG-JS", "NAME_1": "Janub Sina'" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 34.885509286712626, 29.48949557787477 ], [ 34.736582879000082, 29.31126536700009 ], [ 34.745290561000047, 29.29132721600007 ], [ 34.729014519000089, 29.198919989000046 ], [ 34.69499759200005, 29.164496161000045 ], [ 34.674571160000085, 29.106512762000079 ], [ 34.685720248000052, 28.988674221000053 ], [ 34.64031009200005, 28.948797919000071 ], [ 34.6 [...]
 { "type": "Feature", "properties": { "ISO": "EG-PTS", "NAME_1": "Bur Sa`id" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.256602410000085, 31.288804429000038 ], [ 32.33139082100007, 31.271429755000042 ], [ 32.344248894000089, 31.241888739000046 ], [ 32.389903191000087, 31.226507880000042 ], [ 32.50953209700009, 31.106919664000088 ], [ 32.599678244755182, 31.061515647129397 ], [ 32.602072381235359, 30.973742784002241 ], [ 32.311237419571228, 31.118772691206686 ], [ 32.289998 [...]
-{ "type": "Feature", "properties": { "ISO": "EG-DK", "NAME_1": "Ad Daqahliyah" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.256460401695868, 31.276218775179043 ], [ 32.214121941000087, 31.278265692000048 ], [ 32.207041863000086, 31.295070705000057 ], [ 32.256602410000085, 31.288804429000038 ], [ 32.256460401695868, 31.276218775179043 ] ] ], [ [ [ 31.794932488000086, 31.277696031000062 ], [ 31.828623894000089, 31.274115302000041 ], [ 31.834157748000052, 31.2516136740 [...]
+{ "type": "Feature", "properties": { "ISO": "EG-DK", "NAME_1": "Ad Daqahliyah" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.256460401726144, 31.27621877516961 ], [ 32.214121941000087, 31.278265692000048 ], [ 32.207041863000086, 31.295070705000057 ], [ 32.256602410000085, 31.288804429000038 ], [ 32.256460401726144, 31.27621877516961 ] ] ], [ [ [ 31.794932488000086, 31.277696031000062 ], [ 31.828623894000089, 31.274115302000041 ], [ 31.834157748000052, 31.251613674000 [...]
 { "type": "Feature", "properties": { "ISO": "EG-SHR", "NAME_1": "Ash Sharqiyah" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.141840340467233, 31.087357671315797 ], [ 32.166270379000082, 31.114406643000052 ], [ 32.179942254000082, 31.106919664000088 ], [ 32.183848504000082, 31.124945380000042 ], [ 32.21851647200009, 31.105210679000038 ], [ 32.272227410000085, 31.118882554000038 ], [ 32.280528191000087, 31.154974677000041 ], [ 32.262461785000085, 31.169623114000046 ], [...]
 { "type": "Feature", "properties": { "ISO": "EG-IS", "NAME_1": "Al Isma`iliyah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.142578794176018, 31.080269188172451 ], [ 32.311237419571228, 31.118772691206686 ], [ 32.602072381235359, 30.973742784002241 ], [ 32.651991815369968, 30.50410736686149 ], [ 32.745732862881312, 30.372900906451662 ], [ 32.798649529652039, 30.254045111792436 ], [ 32.577371047036195, 30.263269355496334 ], [ 32.45913537000132, 30.203763943351305 ], [ 32.33 [...]
 { "type": "Feature", "properties": { "ISO": "EG-DT", "NAME_1": "Dumyat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.082916688798996, 31.359007045313227 ], [ 31.994965040000068, 31.394964911000045 ], [ 31.968272332000083, 31.436509507000039 ], [ 31.99350019600007, 31.43781159100007 ], [ 31.917979363000086, 31.523993231000077 ], [ 31.865244988000086, 31.525336005000042 ], [ 31.844737175000034, 31.497992255000042 ], [ 31.865244988000086, 31.497992255000042 ], [ 31.8789168630 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/estonia.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/estonia.geojson
index 86e5f8b..5a4bd2e 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/estonia.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/estonia.geojson
@@ -3,19 +3,19 @@
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
 { "type": "Feature", "properties": { "ISO": "EE-84", "NAME_1": "Viljandi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.333678019000104, 58.03180776 ], [ 25.324582967000111, 58.034753317000096 ], [ 25.318278443000111, 58.040618592 ], [ 25.30639286300007, 58.058731181000027 ], [ 25.299571574000112, 58.065604147 ], [ 25.281691528000067, 58.073407288000013 ], [ 25.263501424000111, 58.075138449000079 ], [ 25.250685669000035, 58.068498027 ], [ 25.249548788000141, 58.051186422000 [...]
-{ "type": "Feature", "properties": { "ISO": "EE-68", "NAME_1": "Pärnu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 25.034856819000083, 58.048574085000027 ], [ 24.9748368730001, 58.015839742000068 ], [ 24.949308716000047, 58.006434631000033 ], [ 24.872517537000078, 58.000440165 ], [ 24.848332967000118, 57.992146098000049 ], [ 24.827417479000076, 57.981876936000091 ], [ 24.816810344000146, 57.976669007000041 ], [ 24.790765421000089, 57.978994446000073 ], [ 24.7647205000 [...]
-{ "type": "Feature", "properties": { "ISO": "EE-81", "NAME_1": "Valga" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.625081421000061, 57.910290630000091 ], [ 25.601516968000055, 57.912202658000112 ], [ 25.579399455000072, 57.919463196 ], [ 25.55831547000011, 57.934242656000023 ], [ 25.552941122000078, 57.942174988000048 ], [ 25.552114298000049, 57.948815410000051 ], [ 25.551815984000143, 57.949859510000024 ], [ 25.571028680429265, 57.969123439694954 ], [ 25.57707482344432,  [...]
-{ "type": "Feature", "properties": { "ISO": "EE-87", "NAME_1": "Võru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.499550008000057, 57.515818583000012 ], [ 26.481049846000133, 57.527135722000097 ], [ 26.447563517000049, 57.552922262 ], [ 26.430923706000016, 57.561707255000087 ], [ 26.430678413000066, 57.561764252 ], [ 26.430614455292869, 57.562119859443953 ], [ 26.428030632907337, 57.576485907698441 ], [ 26.434076775922449, 57.598525906045722 ], [ 26.430356072874417, 57.60 [...]
-{ "type": "Feature", "properties": { "ISO": "EE-45", "NAME_1": "Ida-Viru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.019053582000083, 59.481756903000075 ], [ 28.038577514000025, 59.462986552000061 ], [ 28.083432657000117, 59.450894267000095 ], [ 28.104826701000036, 59.439215394000101 ], [ 28.128391154000042, 59.409449769000034 ], [ 28.137796264000087, 59.400354716000052 ], [ 28.149578491000085, 59.393171692000109 ], [ 28.175365031000098, 59.381854554000128 ], [ 28.186475 [...]
-{ "type": "Feature", "properties": { "ISO": "EE-64", "NAME_1": "Põlva" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.519585014636675, 58.194509827566435 ], [ 27.540003296000066, 58.171799215000036 ], [ 27.579690796000136, 58.125858867000076 ], [ 27.630437053000037, 58.088290100000066 ], [ 27.63658654800011, 58.059196269000054 ], [ 27.630126993000147, 58.032996318000031 ], [ 27.63157393400013, 58.004160868 ], [ 27.650642537000124, 58.000078431000091 ], [ 27.669091024000124,  [...]
-{ "type": "Feature", "properties": { "ISO": "EE-79", "NAME_1": "Tartu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.428848762000086, 58.709402604000061 ], [ 27.449259480000109, 58.658539531000017 ], [ 27.498868856000087, 58.53456776900002 ], [ 27.554886108000119, 58.395248109000065 ], [ 27.494114624000105, 58.319542135000077 ], [ 27.482849161000047, 58.26864084900005 ], [ 27.495354859000116, 58.221460266000051 ], [ 27.519585014636675, 58.194509827566435 ], [ 27.47902591321 [...]
-{ "type": "Feature", "properties": { "ISO": "EE-50", "NAME_1": "Jõgeva" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.446269007000126, 58.818866663000065 ], [ 27.410605509000106, 58.754864400000073 ], [ 27.428848762000086, 58.709402604000061 ], [ 27.428693067930737, 58.709388332805304 ], [ 27.146798130029651, 58.683550117044263 ], [ 27.090935906566813, 58.67616038689232 ], [ 27.078533563073449, 58.672517198210073 ], [ 27.066131218680766, 58.667013658453527 ], [ 27.049956496 [...]
-{ "type": "Feature", "properties": { "ISO": "EE-56", "NAME_1": "Lääne" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.585804963999561, 58.544166617807221 ], [ 23.584320509000065, 58.544867255000042 ], [ 23.573496941000087, 58.551947333000044 ], [ 23.566254102000073, 58.565904039000031 ], [ 23.565114780000044, 58.577378648000035 ], [ 23.561208530000044, 58.583156643000052 ], [ 23.546153191000087, 58.579901434000078 ], [ 23.532725457000083, 58.570257880000042 ], [ 23.52 [...]
+{ "type": "Feature", "properties": { "ISO": "EE-67", "NAME_1": "Pärnu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 25.034856819000083, 58.048574085000027 ], [ 24.9748368730001, 58.015839742000068 ], [ 24.949308716000047, 58.006434631000033 ], [ 24.872517537000078, 58.000440165 ], [ 24.848332967000118, 57.992146098000049 ], [ 24.827417479000076, 57.981876936000091 ], [ 24.816810344000146, 57.976669007000041 ], [ 24.790765421000089, 57.978994446000073 ], [ 24.7647205000 [...]
+{ "type": "Feature", "properties": { "ISO": "EE-82", "NAME_1": "Valga" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.625081421000061, 57.910290630000091 ], [ 25.601516968000055, 57.912202658000112 ], [ 25.579399455000072, 57.919463196 ], [ 25.55831547000011, 57.934242656000023 ], [ 25.552941122000078, 57.942174988000048 ], [ 25.552114298000049, 57.948815410000051 ], [ 25.551815984000143, 57.949859510000024 ], [ 25.571028680429265, 57.969123439694954 ], [ 25.57707482344432,  [...]
+{ "type": "Feature", "properties": { "ISO": "EE-86", "NAME_1": "Võru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.499550008000057, 57.515818583000012 ], [ 26.481049846000133, 57.527135722000097 ], [ 26.447563517000049, 57.552922262 ], [ 26.430923706000016, 57.561707255000087 ], [ 26.430678413000066, 57.561764252 ], [ 26.430614455292869, 57.562119859443953 ], [ 26.428030632907337, 57.576485907698441 ], [ 26.434076775922449, 57.598525906045722 ], [ 26.430356072874417, 57.60 [...]
+{ "type": "Feature", "properties": { "ISO": "EE-44", "NAME_1": "Ida-Viru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.019053582000083, 59.481756903000075 ], [ 28.038577514000025, 59.462986552000061 ], [ 28.083432657000117, 59.450894267000095 ], [ 28.104826701000036, 59.439215394000101 ], [ 28.128391154000042, 59.409449769000034 ], [ 28.137796264000087, 59.400354716000052 ], [ 28.149578491000085, 59.393171692000109 ], [ 28.175365031000098, 59.381854554000128 ], [ 28.186475 [...]
+{ "type": "Feature", "properties": { "ISO": "EE-65", "NAME_1": "Põlva" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.519585014636675, 58.194509827566435 ], [ 27.540003296000066, 58.171799215000036 ], [ 27.579690796000136, 58.125858867000076 ], [ 27.630437053000037, 58.088290100000066 ], [ 27.63658654800011, 58.059196269000054 ], [ 27.630126993000147, 58.032996318000031 ], [ 27.63157393400013, 58.004160868 ], [ 27.650642537000124, 58.000078431000091 ], [ 27.669091024000124,  [...]
+{ "type": "Feature", "properties": { "ISO": "EE-78", "NAME_1": "Tartu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.428848762000086, 58.709402604000061 ], [ 27.449259480000109, 58.658539531000017 ], [ 27.498868856000087, 58.53456776900002 ], [ 27.554886108000119, 58.395248109000065 ], [ 27.494114624000105, 58.319542135000077 ], [ 27.482849161000047, 58.26864084900005 ], [ 27.495354859000116, 58.221460266000051 ], [ 27.519585014636675, 58.194509827566435 ], [ 27.47902591321 [...]
+{ "type": "Feature", "properties": { "ISO": "EE-49", "NAME_1": "Jõgeva" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.446269007000126, 58.818866663000065 ], [ 27.410605509000106, 58.754864400000073 ], [ 27.428848762000086, 58.709402604000061 ], [ 27.428693067930737, 58.709388332805304 ], [ 27.146798130029651, 58.683550117044263 ], [ 27.090935906566813, 58.67616038689232 ], [ 27.078533563073449, 58.672517198210073 ], [ 27.066131218680766, 58.667013658453527 ], [ 27.049956496 [...]
+{ "type": "Feature", "properties": { "ISO": "EE-57", "NAME_1": "Lääne" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.585804963999561, 58.544166617807221 ], [ 23.584320509000065, 58.544867255000042 ], [ 23.573496941000087, 58.551947333000044 ], [ 23.566254102000073, 58.565904039000031 ], [ 23.565114780000044, 58.577378648000035 ], [ 23.561208530000044, 58.583156643000052 ], [ 23.546153191000087, 58.579901434000078 ], [ 23.532725457000083, 58.570257880000042 ], [ 23.52 [...]
 { "type": "Feature", "properties": { "ISO": "EE-37", "NAME_1": "Harju" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.718492145396169, 59.231437429493724 ], [ 23.730479363000086, 59.230414130000042 ], [ 23.742198113000086, 59.239406643000052 ], [ 23.742930535000085, 59.250148830000057 ], [ 23.73601321700005, 59.259588934000078 ], [ 23.723643425000091, 59.26508209800005 ], [ 23.734873894000089, 59.277736721000053 ], [ 23.756846550000091, 59.283636786000045 ], [ 23.8453 [...]
-{ "type": "Feature", "properties": { "ISO": "EE-60", "NAME_1": "Lääne-Viru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.836874902554712, 59.576477809803066 ], [ 25.844493035000085, 59.577337958000044 ], [ 25.861338738000086, 59.586127020000049 ], [ 25.876231316000087, 59.600897528000075 ], [ 25.86882571700005, 59.60773346600007 ], [ 25.883067254000082, 59.631333726000037 ], [ 25.904470248000052, 59.624009507000039 ], [ 25.926931186000047, 59.605292059000078 ], [ 25.944509 [...]
+{ "type": "Feature", "properties": { "ISO": "EE-59", "NAME_1": "Lääne-Viru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.836874902554712, 59.576477809803066 ], [ 25.844493035000085, 59.577337958000044 ], [ 25.861338738000086, 59.586127020000049 ], [ 25.876231316000087, 59.600897528000075 ], [ 25.86882571700005, 59.60773346600007 ], [ 25.883067254000082, 59.631333726000037 ], [ 25.904470248000052, 59.624009507000039 ], [ 25.926931186000047, 59.605292059000078 ], [ 25.944509 [...]
 { "type": "Feature", "properties": { "ISO": "EE-74", "NAME_1": "Saare" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.230642123000052, 58.504828192000048 ], [ 23.255137566000087, 58.500067450000074 ], [ 23.288584832000083, 58.488185940000051 ], [ 23.318369988000086, 58.472479559000078 ], [ 23.333262566000087, 58.456366278000075 ], [ 23.324961785000085, 58.442287502000056 ], [ 23.26140384200005, 58.465887762000079 ], [ 23.23764082100007, 58.456366278000075 ], [ 23.2502 [...]
 { "type": "Feature", "properties": { "ISO": "EE-39", "NAME_1": "Hiiu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.291758660000085, 58.895209052000041 ], [ 22.226898634000065, 58.886460679000038 ], [ 22.19499759200005, 58.888006903000075 ], [ 22.062510613000086, 58.925848700000074 ], [ 22.04468834700009, 58.93618398600006 ], [ 22.055511915000068, 58.952704169000071 ], [ 22.094248894000089, 58.956040757000039 ], [ 22.168223504000082, 58.950384833000044 ], [ 22.4630639980000 [...]
-{ "type": "Feature", "properties": { "ISO": "EE-71", "NAME_1": "Rapla" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.133235303766241, 58.701481838715836 ], [ 24.151838819905606, 58.727914334578827 ], [ 24.154629346966772, 58.733650418332104 ], [ 24.151218703180575, 58.738611354830141 ], [ 24.140676710761568, 58.741996161993256 ], [ 24.094116245368411, 58.742202867568267 ], [ 24.075771111647441, 58.745871893772858 ], [ 24.07019005662579, 58.751091214487928 ], [ 24.0749959652 [...]
-{ "type": "Feature", "properties": { "ISO": "EE-52", "NAME_1": "Järva" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.777114291591261, 58.689777127212608 ], [ 25.732879266165185, 58.679777737152847 ], [ 25.65934370344911, 58.666393540829233 ], [ 25.639138217754521, 58.658642076370711 ], [ 25.621619907232912, 58.653732814917419 ], [ 25.556921013693795, 58.642002264992527 ], [ 25.539557732803132, 58.629961655805744 ], [ 25.509120313951314, 58.633423977334644 ], [ 25.4726367529 [...]
+{ "type": "Feature", "properties": { "ISO": "EE-70", "NAME_1": "Rapla" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.133235303766241, 58.701481838715836 ], [ 24.151838819905606, 58.727914334578827 ], [ 24.154629346966772, 58.733650418332104 ], [ 24.151218703180575, 58.738611354830141 ], [ 24.140676710761568, 58.741996161993256 ], [ 24.094116245368411, 58.742202867568267 ], [ 24.075771111647441, 58.745871893772858 ], [ 24.07019005662579, 58.751091214487928 ], [ 24.0749959652 [...]
+{ "type": "Feature", "properties": { "ISO": "EE-51", "NAME_1": "Järva" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.777114291591261, 58.689777127212608 ], [ 25.732879266165185, 58.679777737152847 ], [ 25.65934370344911, 58.666393540829233 ], [ 25.639138217754521, 58.658642076370711 ], [ 25.621619907232912, 58.653732814917419 ], [ 25.556921013693795, 58.642002264992527 ], [ 25.539557732803132, 58.629961655805744 ], [ 25.509120313951314, 58.633423977334644 ], [ 25.4726367529 [...]
 ]
 }
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/finland.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/finland.geojson
index 7fdc95d..556d82c 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/finland.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/finland.geojson
@@ -2,24 +2,23 @@
 "type": "FeatureCollection",
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
-{ "type": "Feature", "properties": { "ISO": "FI-01", "NAME_1": "Ahvenanmaa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.277598504000082, 60.142157294000071 ], [ 20.297618035000085, 60.121527411000045 ], [ 20.26889082100007, 60.086004950000074 ], [ 20.277598504000082, 60.066473700000074 ], [ 20.201914910000085, 60.087551174000055 ], [ 20.22242272200009, 60.149603583000044 ], [ 20.258067254000082, 60.107977606000077 ], [ 20.255707227000073, 60.145412502000056 ], [ 20 [...]
-{ "type": "Feature", "properties": { "ISO": "FI-02", "NAME_1": "Etelä-Karjala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.145649005000109, 61.85046941100002 ], [ 29.977683960000093, 61.728171286000034 ], [ 29.842240030000085, 61.660165100000071 ], [ 29.779143107000039, 61.593114930000056 ], [ 29.635120891000042, 61.511104432000067 ], [ 29.517040242000064, 61.475060120000066 ], [ 29.463400106000051, 61.413823548000025 ], [ 29.31839603700007, 61.338427633000052 ], [ 29.203 [...]
-{ "type": "Feature", "properties": { "ISO": "FI-03", "NAME_1": "Etelä-Pohjanmaa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.699359978979828, 63.380627753467991 ], [ 23.799405551924679, 63.301562812573707 ], [ 24.043214959302929, 63.263063870001588 ], [ 24.224909294628219, 63.174542141406675 ], [ 24.178297153290998, 63.151597805494305 ], [ 24.362782016576773, 63.119196681881306 ], [ 24.32650516118423, 63.076822008428906 ], [ 24.266147088317439, 63.060337225782291 ], [ 24. [...]
-{ "type": "Feature", "properties": { "ISO": "FI-04", "NAME_1": "Etelä-Savo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.520357700247644, 62.555510158866696 ], [ 28.535447218913987, 62.57121979425807 ], [ 28.478913201882733, 62.581012477843558 ], [ 28.615959099732663, 62.596386217350016 ], [ 28.630635207248986, 62.605429593001304 ], [ 28.608827751999115, 62.606463120876299 ], [ 28.658230422196198, 62.653333645531291 ], [ 28.809849073875625, 62.630802720768941 ], [ 29.03980 [...]
+{ "type": "Feature", "properties": { "ISO": "FI-10", "NAME_1": "Lapland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.866908407000096, 70.075310364000117 ], [ 27.927163127000142, 70.053270366000035 ], [ 28.167355184000115, 69.894339499000054 ], [ 28.381192260000034, 69.856202291000088 ], [ 28.37974532000004, 69.822354228000066 ], [ 28.404550008000058, 69.802252096000117 ], [ 29.131223999000099, 69.674197897000042 ], [ 29.203157593000071, 69.58598622600006 ], [ 29.344544311 [...]
+{ "type": "Feature", "properties": { "ISO": "FI-14", "NAME_1": "Northern Ostrobothnia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.546194294000145, 66.431969319000117 ], [ 29.569698527000071, 66.378171693000084 ], [ 29.650882202000105, 66.28789296500004 ], [ 29.900169311000127, 66.10805898100007 ], [ 29.958460327000068, 65.973881124000016 ], [ 30.075145711000062, 65.822805075000062 ], [ 30.113903035000135, 65.66550201500003 ], [ 30.098503459000142, 65.6563811240000 [...]
 { "type": "Feature", "properties": { "ISO": "FI-05", "NAME_1": "Kainuu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.731532793000099, 65.496921399000016 ], [ 29.718164917000081, 65.454171245000012 ], [ 29.730567260000043, 65.365365296000093 ], [ 29.720128622000118, 65.329088440000035 ], [ 29.580085490000045, 65.235399069000081 ], [ 29.626697632000059, 65.2152194210001 ], [ 29.833196655000052, 65.205013327000117 ], [ 29.839294475000088, 65.166901958000054 ], [ 29.8081852620 [...]
-{ "type": "Feature", "properties": { "ISO": "FI-06", "NAME_1": "Kanta-Häme" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.804202101146018, 61.267475083708121 ], [ 24.881199985390992, 61.284114895086304 ], [ 24.918303663982897, 61.322303779295964 ], [ 24.921300896619073, 61.291711330813257 ], [ 25.003569776623863, 61.281660264809318 ], [ 25.0324052259204, 61.253935859552257 ], [ 25.187744582446498, 61.240034899291118 ], [ 25.260711704381606, 61.180968735818453 ], [ 25.240557 [...]
-{ "type": "Feature", "properties": { "ISO": "FI-07", "NAME_1": "Keski-Pohjanmaa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.990733268725364, 63.787624416133895 ], [ 22.990733269000089, 63.815375067000048 ], [ 23.074961785000085, 63.857367255000042 ], [ 23.13257897200009, 63.852484442000048 ], [ 23.153493686000047, 63.863470770000049 ], [ 23.141856316000087, 63.875962632000039 ], [ 23.155039910000085, 63.883693752000056 ], [ 23.39421634200005, 63.911078192000048 ], [ 23.4 [...]
-{ "type": "Feature", "properties": { "ISO": "FI-08", "NAME_1": "Keski-Suomi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.137764112923435, 63.456282050576135 ], [ 26.170010206905488, 63.443311266301862 ], [ 26.163292271221337, 63.429797878769079 ], [ 26.087224562063852, 63.368018704399674 ], [ 26.184376255160032, 63.228130601745818 ], [ 26.154817336350959, 63.202757473078861 ], [ 26.160915155310136, 63.151442775863359 ], [ 26.313567335763935, 63.038503933010077 ], [ 26.233 [...]
+{ "type": "Feature", "properties": { "ISO": "FI-13", "NAME_1": "North Karelia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.998432858889316, 63.747100381077701 ], [ 29.980784546000052, 63.741536764000088 ], [ 30.001145060000056, 63.715336813000064 ], [ 30.24247399900014, 63.581804912000067 ], [ 30.380450073000134, 63.532453919000076 ], [ 30.461065307000126, 63.472870993000086 ], [ 30.820939982000141, 63.375667624000059 ], [ 30.974935750000043, 63.289161276000058 ], [ 31.20 [...]
+{ "type": "Feature", "properties": { "ISO": "FI-02", "NAME_1": "South Karelia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.145649005000109, 61.85046941100002 ], [ 29.977683960000093, 61.728171286000034 ], [ 29.842240030000085, 61.660165100000071 ], [ 29.779143107000039, 61.593114930000056 ], [ 29.635120891000042, 61.511104432000067 ], [ 29.517040242000064, 61.475060120000066 ], [ 29.463400106000051, 61.413823548000025 ], [ 29.31839603700007, 61.338427633000052 ], [ 29.203 [...]
 { "type": "Feature", "properties": { "ISO": "FI-09", "NAME_1": "Kymenlaakso" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.003781678781422, 60.664225534880529 ], [ 27.807871941000087, 60.55304596600007 ], [ 27.762054884000065, 60.580145575000074 ], [ 27.739512566000087, 60.574164130000042 ], [ 27.753184441000087, 60.559881903000075 ], [ 27.733409050000034, 60.544256903000075 ], [ 27.753184441000087, 60.518947658000059 ], [ 27.732676629000082, 60.512111721000053 ], [  [...]
-{ "type": "Feature", "properties": { "ISO": "FI-10", "NAME_1": "Lappi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.866908407000096, 70.075310364000117 ], [ 27.927163127000142, 70.053270366000035 ], [ 28.167355184000115, 69.894339499000054 ], [ 28.381192260000034, 69.856202291000088 ], [ 28.37974532000004, 69.822354228000066 ], [ 28.404550008000058, 69.802252096000117 ], [ 29.131223999000099, 69.674197897000042 ], [ 29.203157593000071, 69.58598622600006 ], [ 29.34454431100 [...]
-{ "type": "Feature", "properties": { "ISO": "FI-11", "NAME_1": "Pirkanmaa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.020270623390559, 62.363997301534198 ], [ 24.023474561601745, 62.33069184035611 ], [ 24.053860303610122, 62.295913600831966 ], [ 24.24578657389128, 62.25475332330717 ], [ 24.332602980143406, 62.17496491200103 ], [ 24.415698683347557, 62.154656074418256 ], [ 24.443603956657284, 62.159513658128787 ], [ 24.431304965951426, 62.174086411958342 ], [ 24.448461541 [...]
-{ "type": "Feature", "properties": { "ISO": "FI-12", "NAME_1": "Pohjanmaa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.316694227356663, 61.939186587191216 ], [ 21.277517123000052, 61.95148346600007 ], [ 21.294932488000086, 61.97134023600006 ], [ 21.236582879000082, 61.98501211100006 ], [ 21.276215040000068, 62.050197658000059 ], [ 21.289073113000086, 62.121568101000037 ], [ 21.296397332000083, 62.130438544000071 ], [ 21.31226647200009, 62.109116929000038 ], [ 21.32 [...]
-{ "type": "Feature", "properties": { "ISO": "FI-13", "NAME_1": "Pohjois-Karjala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.998432858889316, 63.747100381077701 ], [ 29.980784546000052, 63.741536764000088 ], [ 30.001145060000056, 63.715336813000064 ], [ 30.24247399900014, 63.581804912000067 ], [ 30.380450073000134, 63.532453919000076 ], [ 30.461065307000126, 63.472870993000086 ], [ 30.820939982000141, 63.375667624000059 ], [ 30.974935750000043, 63.289161276000058 ], [ 31. [...]
-{ "type": "Feature", "properties": { "ISO": "FI-14", "NAME_1": "Pohjois-Pohjanmaa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.546194294000145, 66.431969319000117 ], [ 29.569698527000071, 66.378171693000084 ], [ 29.650882202000105, 66.28789296500004 ], [ 29.900169311000127, 66.10805898100007 ], [ 29.958460327000068, 65.973881124000016 ], [ 30.075145711000062, 65.822805075000062 ], [ 30.113903035000135, 65.66550201500003 ], [ 30.098503459000142, 65.656381124000049 ] [...]
-{ "type": "Feature", "properties": { "ISO": "FI-15", "NAME_1": "Pohjois-Savo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.872086215806178, 64.03340444585848 ], [ 27.387920363134242, 63.972581284998284 ], [ 27.445177849677975, 63.944856878841847 ], [ 27.522072381135445, 63.956845812084509 ], [ 27.744694451787495, 63.908295803508508 ], [ 28.082865025200761, 63.775642402275025 ], [ 28.152008091300331, 63.722028103514162 ], [ 28.260838656578699, 63.678645737910472 ], [ 28.306 [...]
-{ "type": "Feature", "properties": { "ISO": "FI-16", "NAME_1": "Päijät-Häme" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.319458449148101, 61.60763520030423 ], [ 26.316667922086936, 61.572805283936702 ], [ 26.282044712193681, 61.576913561511617 ], [ 26.290726352639069, 61.524823717040874 ], [ 26.26023725784313, 61.502086086703514 ], [ 26.283801711379851, 61.478418281278607 ], [ 26.256929965945176, 61.439066677085464 ], [ 26.31863162594874, 61.397131253204748 ], [ 26.293620 [...]
-{ "type": "Feature", "properties": { "ISO": "FI-17", "NAME_1": "Satakunta" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.408105239365284, 61.048152549200779 ], [ 21.36695397200009, 61.060126044000071 ], [ 21.482269727000073, 61.060126044000071 ], [ 21.45484459700009, 61.078192450000074 ], [ 21.463145379000082, 61.101141669000071 ], [ 21.43523196700005, 61.142726955000057 ], [ 21.469981316000087, 61.149562893000052 ], [ 21.442637566000087, 61.155747789000031 ], [ 21.4 [...]
 { "type": "Feature", "properties": { "ISO": "FI-18", "NAME_1": "Uusimaa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.553301563316495, 60.591770431160455 ], [ 26.465830925000091, 60.50812409100007 ], [ 26.456228061000047, 60.474554755000042 ], [ 26.48568769600007, 60.443793036000045 ], [ 26.451508009000065, 60.416489976000037 ], [ 26.416351759000065, 60.411932684000078 ], [ 26.424164259000065, 60.395982164000031 ], [ 26.383311394000089, 60.416489976000037 ], [ 26.38 [...]
-{ "type": "Feature", "properties": { "ISO": "FI-19", "NAME_1": "Varsinais-Suomi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.021254328975665, 60.106801994754179 ], [ 23.045909050000091, 60.121649481000077 ], [ 23.025401238000086, 60.135321356000077 ], [ 23.004893425000091, 60.107367255000042 ], [ 22.969493035000085, 60.09438711100006 ], [ 22.95866946700005, 60.121568101000037 ], [ 22.87468509200005, 60.149603583000044 ], [ 22.885590040000068, 60.169338283000059 ],  [...]
+{ "type": "Feature", "properties": { "ISO": "FI-19", "NAME_1": "Finland Proper" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.021254328975665, 60.106801994754179 ], [ 23.045909050000091, 60.121649481000077 ], [ 23.025401238000086, 60.135321356000077 ], [ 23.004893425000091, 60.107367255000042 ], [ 22.969493035000085, 60.09438711100006 ], [ 22.95866946700005, 60.121568101000037 ], [ 22.87468509200005, 60.149603583000044 ], [ 22.885590040000068, 60.169338283000059 ], [ [...]
+{ "type": "Feature", "properties": { "ISO": "FI-17", "NAME_1": "Satakunta" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.408105239365284, 61.048152549200779 ], [ 21.36695397200009, 61.060126044000071 ], [ 21.482269727000073, 61.060126044000071 ], [ 21.45484459700009, 61.078192450000074 ], [ 21.463145379000082, 61.101141669000071 ], [ 21.43523196700005, 61.142726955000057 ], [ 21.469981316000087, 61.149562893000052 ], [ 21.442637566000087, 61.155747789000031 ], [ 21.4 [...]
+{ "type": "Feature", "properties": { "ISO": "FI-12", "NAME_1": "Ostrobothnia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.316694227356663, 61.939186587191216 ], [ 21.277517123000052, 61.95148346600007 ], [ 21.294932488000086, 61.97134023600006 ], [ 21.236582879000082, 61.98501211100006 ], [ 21.276215040000068, 62.050197658000059 ], [ 21.289073113000086, 62.121568101000037 ], [ 21.296397332000083, 62.130438544000071 ], [ 21.31226647200009, 62.109116929000038 ], [ 21 [...]
+{ "type": "Feature", "properties": { "ISO": "FI-07", "NAME_1": "Central Ostrobothnia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.990733268725364, 63.787624416133895 ], [ 22.990733269000089, 63.815375067000048 ], [ 23.074961785000085, 63.857367255000042 ], [ 23.13257897200009, 63.852484442000048 ], [ 23.153493686000047, 63.863470770000049 ], [ 23.141856316000087, 63.875962632000039 ], [ 23.155039910000085, 63.883693752000056 ], [ 23.39421634200005, 63.911078192000048 ], [ [...]
+{ "type": "Feature", "properties": { "ISO": "FI-15", "NAME_1": "Northern Savonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.872086215806178, 64.03340444585848 ], [ 27.387920363134242, 63.972581284998284 ], [ 27.445177849677975, 63.944856878841847 ], [ 27.522072381135445, 63.956845812084509 ], [ 27.744694451787495, 63.908295803508508 ], [ 28.082865025200761, 63.775642402275025 ], [ 28.152008091300331, 63.722028103514162 ], [ 28.260838656578699, 63.678645737910472 ], [ 28 [...]
+{ "type": "Feature", "properties": { "ISO": "FI-04", "NAME_1": "Southern Savonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.520357700247644, 62.555510158866696 ], [ 28.535447218913987, 62.57121979425807 ], [ 28.478913201882733, 62.581012477843558 ], [ 28.615959099732663, 62.596386217350016 ], [ 28.630635207248986, 62.605429593001304 ], [ 28.608827751999115, 62.606463120876299 ], [ 28.658230422196198, 62.653333645531291 ], [ 28.809849073875625, 62.630802720768941 ], [ 29 [...]
+{ "type": "Feature", "properties": { "ISO": "FI-08", "NAME_1": "Central Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.137764112923435, 63.456282050576135 ], [ 26.170010206905488, 63.443311266301862 ], [ 26.163292271221337, 63.429797878769079 ], [ 26.087224562063852, 63.368018704399674 ], [ 26.184376255160032, 63.228130601745818 ], [ 26.154817336350959, 63.202757473078861 ], [ 26.160915155310136, 63.151442775863359 ], [ 26.313567335763935, 63.038503933010077 ], [ 26 [...]
+{ "type": "Feature", "properties": { "ISO": "FI-03", "NAME_1": "Southern Ostrobothnia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.699359978979828, 63.380627753467991 ], [ 23.799405551924679, 63.301562812573707 ], [ 24.043214959302929, 63.263063870001588 ], [ 24.224909294628219, 63.174542141406675 ], [ 24.178297153290998, 63.151597805494305 ], [ 24.362782016576773, 63.119196681881306 ], [ 24.32650516118423, 63.076822008428906 ], [ 24.266147088317439, 63.060337225782291 ], [...]
+{ "type": "Feature", "properties": { "ISO": "FI-11", "NAME_1": "Pirkanmaa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.020270623390559, 62.363997301534198 ], [ 24.023474561601745, 62.33069184035611 ], [ 24.053860303610122, 62.295913600831966 ], [ 24.24578657389128, 62.25475332330717 ], [ 24.332602980143406, 62.17496491200103 ], [ 24.415698683347557, 62.154656074418256 ], [ 24.443603956657284, 62.159513658128787 ], [ 24.431304965951426, 62.174086411958342 ], [ 24.448461541 [...]
+{ "type": "Feature", "properties": { "ISO": "FI-06", "NAME_1": "Tavastia Proper" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.804202101146018, 61.267475083708121 ], [ 24.881199985390992, 61.284114895086304 ], [ 24.918303663982897, 61.322303779295964 ], [ 24.921300896619073, 61.291711330813257 ], [ 25.003569776623863, 61.281660264809318 ], [ 25.0324052259204, 61.253935859552257 ], [ 25.187744582446498, 61.240034899291118 ], [ 25.260711704381606, 61.180968735818453 ], [ 25.2 [...]
+{ "type": "Feature", "properties": { "ISO": "FI-16", "NAME_1": "Päijät-Häme" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.319458449148101, 61.60763520030423 ], [ 26.316667922086936, 61.572805283936702 ], [ 26.282044712193681, 61.576913561511617 ], [ 26.290726352639069, 61.524823717040874 ], [ 26.26023725784313, 61.502086086703514 ], [ 26.283801711379851, 61.478418281278607 ], [ 26.256929965945176, 61.439066677085464 ], [ 26.31863162594874, 61.397131253204748 ], [ 26.293620 [...]
 ]
 }
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/france.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/france.geojson
index 5925dda..ef559e1 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/france.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/france.geojson
@@ -12,13 +12,13 @@
 { "type": "Feature", "properties": { "ISO": "FR-04", "NAME_1": "Alpes-de-Haute-Provence" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.938299759716933, 44.657969781048649 ], [ 6.945601441000122, 44.625442607000096 ], [ 6.835737345000069, 44.534026998000073 ], [ 6.861265503000112, 44.474909160000024 ], [ 6.917799519000084, 44.436306864000031 ], [ 6.877181844000035, 44.414396057000076 ], [ 6.866123088000052, 44.372124736000089 ], [ 6.878434882973598, 44.35462280714269 ], [ 6.7 [...]
 { "type": "Feature", "properties": { "ISO": "FR-05", "NAME_1": "Hautes-Alpes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.03881884212556, 44.712119593556416 ], [ 7.055155476000095, 44.684870504000074 ], [ 6.982808471000055, 44.692156881000031 ], [ 6.938299759716933, 44.657969781048649 ], [ 6.791930953450731, 44.599498542523691 ], [ 6.713730267337951, 44.543391362621264 ], [ 6.684001262448305, 44.540600835560099 ], [ 6.630366005886458, 44.452402589507869 ], [ 6.612919716671 [...]
 { "type": "Feature", "properties": { "ISO": "FR-73", "NAME_1": "Savoie" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.075368543000081, 45.466285856000056 ], [ 7.096806681000118, 45.435419007000078 ], [ 7.160678752000081, 45.410924378000047 ], [ 7.092569213000075, 45.323952942000105 ], [ 7.108382202000143, 45.259202373 ], [ 7.055465536000071, 45.213675436000031 ], [ 7.029730672000085, 45.228196513000071 ], [ 6.958727254000081, 45.209799703000087 ], [ 6.913768758000089, 45.170 [...]
-{ "type": "Feature", "properties": { "ISO": "FR-74", "NAME_1": "Haute-Savoie" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.022082560000115, 45.92525990899999 ], [ 6.949012085000049, 45.857822164000069 ], [ 6.873461141000121, 45.844799704000124 ], [ 6.864440509042115, 45.826890588930986 ], [ 6.843355552194634, 45.838642859960729 ], [ 6.800804077000095, 45.826454570000053 ], [ 6.783868043959269, 45.764994751134779 ], [ 6.711291302351697, 45.727541798415245 ], [ 6.689538371198 [...]
+{ "type": "Feature", "properties": { "ISO": "FR-74", "NAME_1": "Haute-Savoie" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.022082560000115, 45.925259909 ], [ 6.949012085000049, 45.857822164000069 ], [ 6.873461141000121, 45.844799704000124 ], [ 6.864440509042115, 45.826890588930986 ], [ 6.843355552194634, 45.838642859960729 ], [ 6.800804077000095, 45.826454570000053 ], [ 6.783868043959269, 45.764994751134779 ], [ 6.711291302351697, 45.727541798415245 ], [ 6.689538371198864,  [...]
 { "type": "Feature", "properties": { "ISO": "FR-64", "NAME_1": "Pyrénées-Atlantiques" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.747356322999906, 43.291002096000042 ], [ -1.755779581999889, 43.318545634000102 ], [ -1.796914021999953, 43.341128235000056 ], [ -1.794074744885912, 43.386015332062847 ], [ -1.775502081999946, 43.376166083000044 ], [ -1.661000128999945, 43.399684963000084 ], [ -1.596750454999949, 43.442531643000052 ], [ -1.51398678299995, 43.538641669000071 ],  [...]
 { "type": "Feature", "properties": { "ISO": "FR-31", "NAME_1": "Haute-Garonne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.776313924000078, 42.832451274000036 ], [ 0.706757446000097, 42.846584779000082 ], [ 0.656321248000097, 42.838419902000069 ], [ 0.639681437000149, 42.774677023000052 ], [ 0.650740194000065, 42.76338572300007 ], [ 0.633480265000088, 42.744782206000124 ], [ 0.666449829000044, 42.714758200000077 ], [ 0.656734660000097, 42.687989808000097 ], [ 0.46692711609 [...]
 { "type": "Feature", "properties": { "ISO": "FR-65", "NAME_1": "Hautes-Pyrénées" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.208354654999937, 42.783875427000041 ], [ -0.305138881054518, 42.830811870471393 ], [ -0.317025616239221, 42.893871036419171 ], [ -0.284187480567766, 42.940760686956139 ], [ -0.288318340119304, 42.994692573203679 ], [ -0.246053934341603, 43.030497018322706 ], [ -0.189617164600463, 43.039417917103151 ], [ -0.191407936027417, 43.091844676390679  [...]
-{ "type": "Feature", "properties": { "ISO": "FR-09", "NAME_1": "Ariège" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.921111287000116, 42.784366354000085 ], [ 0.856102336000077, 42.812762553000098 ], [ 0.837560609134812, 42.907329288315964 ], [ 0.869157290076885, 42.925006291407215 ], [ 0.886603580191036, 42.958987005845643 ], [ 0.956432684220999, 42.967127874951473 ], [ 0.992248115458153, 42.990309028438901 ], [ 0.996598700969287, 43.094690135841063 ], [ 1.038434640046603,  [...]
-{ "type": "Feature", "properties": { "ISO": "FR-66", "NAME_1": "Pyrénées-Orientales" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.717091134804584, 42.539890071086553 ], [ 1.761107147000132, 42.567646197 ], [ 1.938302839004791, 42.571795828414736 ], [ 1.96761436331218, 42.629023613948618 ], [ 2.005649032676729, 42.656126886246795 ], [ 2.166074435786584, 42.663835145475559 ], [ 2.189450309584117, 42.652160822064275 ], [ 2.264684687148588, 42.708938167762199 ], [ 2.32256066624 [...]
-{ "type": "Feature", "properties": { "ISO": "FR-67", "NAME_1": "Bas-Rhin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.644932350047895, 49.036295448176361 ], [ 7.773664591000113, 49.04811838799999 ], [ 7.931897827000114, 49.034837546000077 ], [ 8.090441121000083, 48.979182028000068 ], [ 8.200305216000032, 48.958563131000048 ], [ 8.090337769000143, 48.807512920000093 ], [ 8.038764689000061, 48.790769756000074 ], [ 8.017267293000117, 48.761830954000104 ], [ 7.970138387000105, [...]
+{ "type": "Feature", "properties": { "ISO": "FR-09", "NAME_1": "Ariège" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.921111287000116, 42.784366354000085 ], [ 0.856102336000077, 42.812762553000098 ], [ 0.837560609134812, 42.907329288315964 ], [ 0.869157290076885, 42.925006291407215 ], [ 0.886603580191036, 42.958987005845643 ], [ 0.956432684220999, 42.967127874951473 ], [ 0.992248115458153, 42.990309028438901 ], [ 0.996598700969287, 43.094690135841063 ], [ 1.038434640046603,  [...]
+{ "type": "Feature", "properties": { "ISO": "FR-66", "NAME_1": "Pyrénées-Orientales" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.717091134804584, 42.539890071086553 ], [ 1.761107147000132, 42.567646197 ], [ 1.938302839004791, 42.571795828414736 ], [ 1.96761436331218, 42.629023613948618 ], [ 2.005649032676729, 42.656126886246795 ], [ 2.166074435786584, 42.663835145475559 ], [ 2.189450309584117, 42.652160822064275 ], [ 2.264684687148588, 42.708938167762199 ], [ 2.32256066624 [...]
+{ "type": "Feature", "properties": { "ISO": "FR-67", "NAME_1": "Bas-Rhin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.644932350047895, 49.036295448176361 ], [ 7.773664591000113, 49.048118388 ], [ 7.931897827000114, 49.034837546000077 ], [ 8.090441121000083, 48.979182028000068 ], [ 8.200305216000032, 48.958563131000048 ], [ 8.090337769000143, 48.807512920000093 ], [ 8.038764689000061, 48.790769756000074 ], [ 8.017267293000117, 48.761830954000104 ], [ 7.970138387000105, 48.7 [...]
 { "type": "Feature", "properties": { "ISO": "FR-68", "NAME_1": "Haute-Rhin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.581976474333016, 48.121353059320732 ], [ 7.575743856000145, 48.053708802000088 ], [ 7.618945353000072, 48.00265248700002 ], [ 7.621115763000063, 47.971439922000044 ], [ 7.584942261000037, 47.940408224000109 ], [ 7.55900069100008, 47.882711488000027 ], [ 7.561997925000099, 47.839225769000038 ], [ 7.542877645000118, 47.829433086000066 ], [ 7.525927775000099 [...]
 { "type": "Feature", "properties": { "ISO": "FR-90", "NAME_1": "Territoire de Belfort" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.053915242000073, 47.490384013000053 ], [ 6.973300008000137, 47.48909210300009 ], [ 6.990973348000068, 47.452220968000077 ], [ 6.939169949951677, 47.426844260931965 ], [ 6.914428516762598, 47.487002314804954 ], [ 6.919152638383537, 47.53415563757261 ], [ 6.89375224676877, 47.551755735139068 ], [ 6.824845993747601, 47.547613889469403 ], [ 6.80707 [...]
 { "type": "Feature", "properties": { "ISO": "FR-25", "NAME_1": "Doubs" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.939169949951677, 47.426844260931965 ], [ 6.866639852000077, 47.354164937000021 ], [ 7.003995809000088, 47.368143413000027 ], [ 7.044303426000056, 47.34049652100002 ], [ 7.036551961000043, 47.329515279000034 ], [ 6.958623901000067, 47.290551250000036 ], [ 6.956246785000104, 47.245231018000126 ], [ 6.689699747000105, 47.078290304000078 ], [ 6.676263875000132, 47 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/germany.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/germany.geojson
index 76099a1..f298f78 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/germany.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/germany.geojson
@@ -2,16 +2,16 @@
 "type": "FeatureCollection",
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
-{ "type": "Feature", "properties": { "ISO": "DE-SN", "NAME_1": "Sachsen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.39780806400006, 51.013114726000097 ], [ 14.386749308000049, 51.013269756000042 ], [ 14.375897257000076, 51.016990459000041 ], [ 14.369386027000104, 51.022442322000117 ], [ 14.364115031000097, 51.027997538000037 ], [ 14.356570272000056, 51.032338359 ], [ 14.319363240000115, 51.04001230900009 ], [ 14.287530558000071, 51.03683420800003 ], [ 14.263552694000055, [...]
-{ "type": "Feature", "properties": { "ISO": "DE-BY", "NAME_1": "Bayern" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.101343546867156, 50.313980338321926 ], [ 12.076140991000045, 50.315172831000055 ], [ 12.099188680000083, 50.299773255000062 ], [ 12.107250203000092, 50.290884908000052 ], [ 12.110970906000091, 50.276622213000067 ], [ 12.109110555000086, 50.26380645799999 ], [ 12.102392619000057, 50.259155579000023 ], [ 12.092057333000071, 50.254814758000052 ], [ 12.079551635 [...]
-{ "type": "Feature", "properties": { "ISO": "DE-RP", "NAME_1": "Rheinland-Pfalz" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.101156861000078, 50.063405254000045 ], [ 6.099399861000109, 50.064128723000053 ], [ 6.105704386000127, 50.092240702000069 ], [ 6.110561971000038, 50.105986634000018 ], [ 6.11748661300004, 50.120456035000061 ], [ 6.126581665000089, 50.127329000000103 ], [ 6.129475545000076, 50.134046937000036 ], [ 6.125961547000117, 50.140196432000025 ], [ 6.115832967 [...]
-{ "type": "Feature", "properties": { "ISO": "DE-SL", "NAME_1": "Saarland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.345307071000093, 49.455348652000097 ], [ 6.345379679000132, 49.462718404000029 ], [ 6.342279094000105, 49.493000794000054 ], [ 6.348808550000058, 49.525289755000117 ], [ 6.356490919820089, 49.525917874210506 ], [ 6.489971144252877, 49.533824368299918 ], [ 6.605106234964751, 49.530207018039448 ], [ 6.669805129403187, 49.549378974060403 ], [ 6.693524610772158 [...]
+{ "type": "Feature", "properties": { "ISO": "DE-SN", "NAME_1": "Sachsen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.39780806400006, 51.013114726000097 ], [ 14.386749308000049, 51.013269756000042 ], [ 14.375897257000076, 51.016990459000041 ], [ 14.369386027000104, 51.022442322000117 ], [ 14.364115031000097, 51.027997538000037 ], [ 14.356570272000056, 51.032338359 ], [ 14.319363240000115, 51.04001230900009 ], [ 14.287530558000071, 51.03683420800003 ], [ 14.263552694000055, [...]
+{ "type": "Feature", "properties": { "ISO": "DE-BY", "NAME_1": "Bayern" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.101343546867156, 50.313980338321926 ], [ 12.076140991000045, 50.315172831000055 ], [ 12.099188680000083, 50.299773255000062 ], [ 12.107250203000092, 50.290884908000052 ], [ 12.110970906000091, 50.276622213000067 ], [ 12.109110555000086, 50.263806458 ], [ 12.102392619000057, 50.259155579000023 ], [ 12.092057333000071, 50.254814758000052 ], [ 12.07955163500014 [...]
+{ "type": "Feature", "properties": { "ISO": "DE-RP", "NAME_1": "Rheinland-Pfalz" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.101156861000078, 50.063405254000045 ], [ 6.099399861000109, 50.064128723000053 ], [ 6.105704386000127, 50.092240702000069 ], [ 6.110561971000038, 50.105986634000018 ], [ 6.11748661300004, 50.120456035000061 ], [ 6.126581665000089, 50.127329000000103 ], [ 6.129475545000076, 50.134046937000036 ], [ 6.125961547000117, 50.140196432000025 ], [ 6.115832967 [...]
+{ "type": "Feature", "properties": { "ISO": "DE-SL", "NAME_1": "Saarland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.345307071000093, 49.455348652000097 ], [ 6.345379679000132, 49.462718404000029 ], [ 6.342279094000105, 49.493000794000054 ], [ 6.348808550000058, 49.525289755000117 ], [ 6.356490919820089, 49.525917874210506 ], [ 6.489971144252877, 49.533824368299918 ], [ 6.605106234964751, 49.530207018039448 ], [ 6.669805129403187, 49.549378974060403 ], [ 6.693524610772158 [...]
 { "type": "Feature", "properties": { "ISO": "DE-SH", "NAME_1": "Schleswig-Holstein" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.824246459000079, 54.905900370000083 ], [ 8.904138224000064, 54.897942200000031 ], [ 8.982686401000109, 54.879338684000075 ], [ 9.194766480000055, 54.850399882000019 ], [ 9.211509644000103, 54.841821594000081 ], [ 9.216057169000123, 54.831744690000036 ], [ 9.219054403000143, 54.817792054000037 ], [ 9.226392456000042, 54.805906474000025 ], [  [...]
-{ "type": "Feature", "properties": { "ISO": "DE-NI", "NAME_1": "Niedersachsen" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.072150759000124, 52.841316552000066 ], [ 7.079856812000116, 52.85442352299999 ], [ 7.161918986000103, 52.932635804000128 ], [ 7.183623088000104, 52.966122131000034 ], [ 7.19282149300011, 52.998006490000094 ], [ 7.194371786000119, 53.033844096000038 ], [ 7.18507002700008, 53.105441793000082 ], [ 7.181349324000081, 53.114175111000051 ], [ 7.176491 [...]
-{ "type": "Feature", "properties": { "ISO": "DE-NW", "NAME_1": "Nordrhein-Westfalen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.771575683870708, 52.108792501972346 ], [ 6.830673055000091, 52.112892558000013 ], [ 6.843282105000128, 52.119998067000026 ], [ 6.865399617000037, 52.147799988000074 ], [ 6.884829956000118, 52.160331523000096 ], [ 6.927721395000077, 52.171907044000037 ], [ 6.94766849700008, 52.182810771 ], [ 6.971129598000061, 52.206271871000084 ], [ 6.98187829600 [...]
-{ "type": "Feature", "properties": { "ISO": "DE-BW", "NAME_1": "Baden-Württemberg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.549886922000042, 47.533533834000067 ], [ 9.547481674000068, 47.534547102000047 ], [ 9.273211304000142, 47.650090027000047 ], [ 9.234350627000083, 47.656162008000067 ], [ 9.196936890000131, 47.656136170000067 ], [ 9.183397664000069, 47.670424704000069 ], [ 9.128103881000129, 47.670424704000069 ], [ 9.016586141000118, 47.678899639000051 ], [ 8.997672 [...]
-{ "type": "Feature", "properties": { "ISO": "DE-BB", "NAME_1": "Brandenburg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.607964828000092, 52.596462963000064 ], [ 14.613712199000105, 52.59252736400002 ], [ 14.644821411000066, 52.576921082000084 ], [ 14.616812785000064, 52.541031800000027 ], [ 14.609061320000137, 52.517803243000017 ], [ 14.627664836000093, 52.507416280000101 ], [ 14.632315715000061, 52.49674509800009 ], [ 14.615779256000081, 52.473283997000024 ], [ 14.59159 [...]
-{ "type": "Feature", "properties": { "ISO": "DE-MV", "NAME_1": "Mecklenburg-Vorpommern" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.263900720257396, 53.699976159680759 ], [ 14.263862752000136, 53.69987579399999 ], [ 14.265102986000073, 53.671763815000062 ], [ 14.260968872000149, 53.656209209000039 ], [ 14.27605839000006, 53.636623841000116 ], [ 14.297039022000149, 53.597763164000057 ], [ 14.298899373000069, 53.58789296500008 ], [ 14.296212199000138, 53.551306051000 [...]
+{ "type": "Feature", "properties": { "ISO": "DE-NI", "NAME_1": "Niedersachsen" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.072150759000124, 52.841316552000066 ], [ 7.079856812000116, 52.854423523 ], [ 7.161918986000103, 52.932635804000128 ], [ 7.183623088000104, 52.966122131000034 ], [ 7.19282149300011, 52.998006490000094 ], [ 7.194371786000119, 53.033844096000038 ], [ 7.18507002700008, 53.105441793000082 ], [ 7.181349324000081, 53.114175111000051 ], [ 7.17649174000 [...]
+{ "type": "Feature", "properties": { "ISO": "DE-NW", "NAME_1": "Nordrhein-Westfalen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.771575683870708, 52.108792501972346 ], [ 6.830673055000091, 52.112892558000013 ], [ 6.843282105000128, 52.119998067000026 ], [ 6.865399617000037, 52.147799988000074 ], [ 6.884829956000118, 52.160331523000096 ], [ 6.927721395000077, 52.171907044000037 ], [ 6.94766849700008, 52.182810771 ], [ 6.971129598000061, 52.206271871000084 ], [ 6.98187829600 [...]
+{ "type": "Feature", "properties": { "ISO": "DE-BW", "NAME_1": "Baden-Württemberg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.549886922000042, 47.533533834000067 ], [ 9.547481674000068, 47.534547102000047 ], [ 9.273211304000142, 47.650090027000047 ], [ 9.234350627000083, 47.656162008000067 ], [ 9.196936890000131, 47.656136170000067 ], [ 9.183397664000069, 47.670424704000069 ], [ 9.128103881000129, 47.670424704000069 ], [ 9.016586141000118, 47.678899639000051 ], [ 8.997672 [...]
+{ "type": "Feature", "properties": { "ISO": "DE-BB", "NAME_1": "Brandenburg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.607964828000092, 52.596462963000064 ], [ 14.613712199000105, 52.59252736400002 ], [ 14.644821411000066, 52.576921082000084 ], [ 14.616812785000064, 52.541031800000027 ], [ 14.609061320000137, 52.517803243000017 ], [ 14.627664836000093, 52.507416280000101 ], [ 14.632315715000061, 52.49674509800009 ], [ 14.615779256000081, 52.473283997000024 ], [ 14.59159 [...]
+{ "type": "Feature", "properties": { "ISO": "DE-MV", "NAME_1": "Mecklenburg-Vorpommern" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.263900720257396, 53.699976159680759 ], [ 14.263862752000136, 53.699875794 ], [ 14.265102986000073, 53.671763815000062 ], [ 14.260968872000149, 53.656209209000039 ], [ 14.27605839000006, 53.636623841000116 ], [ 14.297039022000149, 53.597763164000057 ], [ 14.298899373000069, 53.58789296500008 ], [ 14.296212199000138, 53.551306051000026 ] [...]
 { "type": "Feature", "properties": { "ISO": "DE-HB", "NAME_1": "Bremen" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.557203417412692, 53.519940796732612 ], [ 8.56576582100007, 53.546698309000078 ], [ 8.560801629000082, 53.551703192000048 ], [ 8.535166863000086, 53.590765692000048 ], [ 8.527517123000052, 53.596625067000048 ], [ 8.517100457000083, 53.610174872000073 ], [ 8.513037633902382, 53.617096718211251 ], [ 8.513413527012631, 53.61701182673437 ], [ 8.562454461104 [...]
 { "type": "Feature", "properties": { "ISO": "DE-HH", "NAME_1": "Hamburg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.763971799359012, 53.547679683570493 ], [ 9.819021030000044, 53.540350653000075 ], [ 9.832041863000086, 53.54360586100006 ], [ 9.819590691000087, 53.556626695000034 ], [ 9.782074415000068, 53.569728908000059 ], [ 9.740810381484961, 53.572574703478352 ], [ 9.740883822830142, 53.572750962886573 ], [ 9.748893669707059, 53.591974595750969 ], [ 9.750598992949165,  [...]
 { "type": "Feature", "properties": { "ISO": "DE-HE", "NAME_1": "Hessen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.949243198015154, 51.381799425003408 ], [ 9.930432977200098, 51.371696682156141 ], [ 9.926712274152123, 51.367330023961415 ], [ 9.923456659097553, 51.360276191493028 ], [ 9.923766716560692, 51.356297106026602 ], [ 9.925161981440283, 51.353299872491107 ], [ 9.926712274152123, 51.351000270945747 ], [ 9.927797478870559, 51.34833893509375 ], [ 9.928727654857369, 5 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/india.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/india.geojson
index 3f7f875..9f708a9 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/india.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/india.geojson
@@ -2,40 +2,41 @@
 "type": "FeatureCollection",
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
-{ "type": "Feature", "properties": { "ISO": "IN-GJ", "NAME_1": "Gujarat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.183007825000118, 23.842087206000073 ], [ 68.260360148000075, 23.89554514600006 ], [ 68.263925822000033, 23.935930277000026 ], [ 68.314051961000132, 23.915905661000082 ], [ 68.33043339000011, 23.966574402000063 ], [ 68.353636109000092, 23.939289246000058 ], [ 68.431564169000069, 23.967142843000104 ], [ 68.724466187000075, 23.965179139000085 ], [ 68.747307169 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-JK", "NAME_1": "Jammu and Kashmir" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.800346314000137, 35.495405579000121 ], [ 77.883131958000035, 35.431068420000045 ], [ 77.985864706000029, 35.494165344000081 ], [ 78.044259074000081, 35.49163319899999 ], [ 78.001160929000093, 35.268907776000091 ], [ 78.130041951000123, 35.055432434000082 ], [ 78.148128703000054, 34.943139547000058 ], [ 78.296026652000137, 34.624657695000039 ], [ 7 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-AR", "NAME_1": "Arunachal Pradesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.074536265326344, 29.369285607240855 ], [ 96.141965780000078, 29.368466899000097 ], [ 96.176278931000127, 29.286456401000109 ], [ 96.235293416000047, 29.241213684000016 ], [ 96.33709598900009, 29.27971262700008 ], [ 96.366241496000043, 29.257233379000056 ], [ 96.316425415000083, 29.171863912000063 ], [ 96.183513631000096, 29.123778992000027 ], [ 96 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-AS", "NAME_1": "Assam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.975088338000035, 26.84663116500009 ], [ 92.035859822000134, 26.85484771800013 ], [ 92.080370916000049, 26.921570891000087 ], [ 92.32886600106508, 26.935746365402395 ], [ 92.605748325624688, 27.009436956850038 ], [ 92.698765903623496, 27.065919297937228 ], [ 92.814831171221556, 27.050803940849164 ], [ 93.020296664759258, 26.953006293505609 ], [ 93.375003696763 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-SK", "NAME_1": "Sikkim" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.892330770000115, 27.315543111000082 ], [ 88.861428263000107, 27.270377910000022 ], [ 88.775852091000047, 27.240870667000095 ], [ 88.733082315000047, 27.148972387000114 ], [ 88.518039177565981, 27.17622264336029 ], [ 88.371691521646369, 27.084574490020657 ], [ 88.088814731814409, 27.151650499470975 ], [ 88.069591098950013, 27.209037177223934 ], [ 88.004662758 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-WB", "NAME_1": "West Bengal" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.733082315000047, 27.148972387000114 ], [ 88.827631877000044, 27.097881979000064 ], [ 88.851713094000047, 26.945436504000028 ], [ 88.90664514100007, 26.981093242000028 ], [ 88.932328328000096, 26.9192365520001 ], [ 89.021573527000044, 26.912673645000027 ], [ 89.096504354000103, 26.821413066000034 ], [ 89.212828003000084, 26.813041484000067 ], [ 89 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-UT", "NAME_1": "Uttaranchal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.216219523000063, 30.566817526000094 ], [ 80.508294719000105, 30.462327779000091 ], [ 80.596351360000028, 30.45979563500002 ], [ 80.723061972000039, 30.392047832000102 ], [ 80.781663045000073, 30.320992737 ], [ 80.976018107000073, 30.255208638000042 ], [ 81.003303264000124, 30.212730611000083 ], [ 80.920827677000091, 30.176660462000072 ], [ 80.8679110110 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-UP", "NAME_1": "Uttar Pradesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.07305357586182, 28.820924647554421 ], [ 80.29104699700008, 28.689671123000053 ], [ 80.329700968000054, 28.627478537000073 ], [ 80.408352499000046, 28.626341655000047 ], [ 80.488450969000041, 28.562443746 ], [ 80.487624145000098, 28.656469015000042 ], [ 80.555837036000128, 28.678948262000048 ], [ 80.56358850100014, 28.647038066000064 ], [ 80.6356254480 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-BR", "NAME_1": "Bihar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.975487509000118, 26.366557108000066 ], [ 88.044320516000084, 26.405676168000085 ], [ 88.087136240744883, 26.539100003762144 ], [ 88.19402794773157, 26.549516709828254 ], [ 88.195268182080895, 26.500139878952211 ], [ 88.282291293908031, 26.428438828888829 ], [ 88.254489374285185, 26.396037706175207 ], [ 88.303685337108561, 26.359967556357617 ], [ 87.8673295427 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-NL", "NAME_1": "Nagaland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.246933117968979, 26.648903921478791 ], [ 95.204865357000074, 26.66757232700003 ], [ 95.132621705000133, 26.620805155000127 ], [ 95.040637655000126, 26.475594381000079 ], [ 95.066062459000136, 26.407433167000065 ], [ 95.046322062000058, 26.247959697000042 ], [ 95.094484497000053, 26.195043030000065 ], [ 95.088179973000081, 26.10409250900004 ], [ 95.15122522 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-MN", "NAME_1": "Manipur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.650360037000098, 25.446649705000098 ], [ 94.608002564000117, 25.394626770000073 ], [ 94.553328898000132, 25.204147440000028 ], [ 94.689134563000039, 25.138518372000092 ], [ 94.708564901000102, 25.025889587000094 ], [ 94.581544231000123, 24.730119528000031 ], [ 94.516328573000067, 24.704953105000087 ], [ 94.295360148000043, 24.332598572 ], [ 94.1168697510001 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-MZ", "NAME_1": "Mizoram" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.30255946900013, 24.035774655000083 ], [ 93.355985962000034, 23.906991475000083 ], [ 93.374796184000047, 23.739017232000023 ], [ 93.432363729000087, 23.647317404000106 ], [ 93.374899536000044, 23.129726257000087 ], [ 93.272786906000078, 23.005909526000053 ], [ 93.152380819000086, 23.049937846000105 ], [ 93.138221477000059, 23.005263570000054 ], [ 93.17553186 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-TR", "NAME_1": "Tripura" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.259736604660532, 23.70264057180492 ], [ 92.222101685000041, 23.707778829000048 ], [ 92.19429976400005, 23.648144226000042 ], [ 92.150788208000051, 23.731653341000126 ], [ 92.019013306000033, 23.640056865000034 ], [ 91.922688436000101, 23.722971700000059 ], [ 91.940775188000089, 23.495181986000077 ], [ 91.817681926000034, 23.400924174000082 ], [ 91.743681274 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-ML", "NAME_1": "Meghalaya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.384937035000064, 25.004773236000048 ], [ 92.303543742000045, 25.074284566000031 ], [ 92.033999471000129, 25.181668193000107 ], [ 91.730142049000051, 25.167457174000063 ], [ 91.638674764000029, 25.12404897100005 ], [ 91.566121053000074, 25.15996409100002 ], [ 91.431865683000126, 25.137949931000023 ], [ 91.23570194500013, 25.201925354000096 ], [ 90.82198042 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-PB", "NAME_1": "Punjab" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.294659465000052, 32.148891500000062 ], [ 75.359048299000108, 32.261675314000101 ], [ 75.298402936000059, 32.332426605000094 ], [ 75.44193810436002, 32.359756375456357 ], [ 75.502399530014259, 32.300586860095507 ], [ 75.573299595300057, 32.37463918674905 ], [ 75.698253208019082, 32.406032620009398 ], [ 75.743004999181323, 32.464375312170887 ], [ 75.8663049664 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-RJ", "NAME_1": "Rajasthan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.477114706000066, 27.862434794000094 ], [ 71.874403117000043, 27.959689840000024 ], [ 71.908302856000034, 28.135570577000109 ], [ 72.149941854000076, 28.353774313000102 ], [ 72.256498657000122, 28.645591125000081 ], [ 72.354580526000063, 28.767185771000115 ], [ 72.930359334000116, 29.047685445000027 ], [ 73.232873169000129, 29.536596171000085 ], [ 73.37033 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-HP", "NAME_1": "Himachal Pradesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.380982706586622, 32.528041484526852 ], [ 78.452192830000058, 32.41678212500004 ], [ 78.457980591000137, 32.229661764000085 ], [ 78.513067668000076, 32.2075700890001 ], [ 78.744578085000114, 31.964199931000067 ], [ 78.670887492000077, 31.770516663000038 ], [ 78.724010865000082, 31.673313293000049 ], [ 78.818888794000088, 31.607374166000014 ], [ 78.6 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-AP", "NAME_1": "Andhra Pradesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 80.968272332000083, 15.79523346600007 ], [ 80.984873894000032, 15.761786200000074 ], [ 80.94263756600003, 15.741034247000073 ], [ 80.86850019600007, 15.81195709800005 ], [ 80.88835696700005, 15.846747137000079 ], [ 80.968272332000083, 15.79523346600007 ] ] ], [ [ [ 80.2777489322674, 13.512515706734462 ], [ 80.14185631600003, 13.728949286000045 ], [...]
-{ "type": "Feature", "properties": { "ISO": "IN-OR", "NAME_1": "Orissa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.477386914674355, 21.61359284093686 ], [ 87.113047722000033, 21.507961330000057 ], [ 86.866953972000033, 21.256048895000049 ], [ 86.844004754000082, 21.082220770000049 ], [ 86.965668165000068, 20.805975653000075 ], [ 86.953868035000028, 20.780585028000075 ], [ 86.878754102000073, 20.780585028000075 ], [ 86.986582879000082, 20.751857815000051 ], [ 86.998708530 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-DD", "NAME_1": "Daman and Diu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.005951368000069, 20.736558335000041 ], [ 71.000824415000068, 20.722154039000088 ], [ 70.972992384000065, 20.70962148600006 ], [ 70.982001946432661, 20.738079783954845 ], [ 71.005951368000069, 20.736558335000041 ] ] ], [ [ [ 72.818111857996428, 20.37877011851289 ], [ 72.840017123000052, 20.458726304000038 ], [ 72.863782610578994, 20.462021278858 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-MH", "NAME_1": "Maharashtra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.700856966975437, 15.723211981547706 ], [ 73.646250847000033, 15.736883856000077 ], [ 73.604665561000047, 15.880845445000091 ], [ 73.490977410000085, 15.993475653000075 ], [ 73.515961134000065, 16.02484772300005 ], [ 73.450368686000047, 16.05890534100007 ], [ 73.48796634200005, 16.189357815000051 ], [ 73.45281009200005, 16.166571356000077 ], [ 73.4470320 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-GA", "NAME_1": "Goa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.09115644600007, 14.887600002000056 ], [ 74.035980665000068, 14.921291408000059 ], [ 74.031260613000029, 14.995306708000044 ], [ 73.913096550000034, 15.078924872000073 ], [ 73.96216881600003, 15.152044989000046 ], [ 73.891286655000044, 15.34320709800005 ], [ 73.78288821700005, 15.407904364000046 ], [ 73.899587436000047, 15.407904364000046 ], [ 73.967784050000034 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-KA", "NAME_1": "Karnataka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.854258660000085, 12.765285549000055 ], [ 74.824961785000085, 12.83820221600007 ], [ 74.859141472000033, 12.824611721000053 ], [ 74.940928582000083, 12.878607489000046 ], [ 74.817556186000047, 12.861761786000045 ], [ 74.783376498000052, 13.084662177000041 ], [ 74.689463738000029, 13.38157786700009 ], [ 74.68091881600003, 13.468247789000088 ], [ 74.69369550 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-KL", "NAME_1": "Kerala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.222178582000083, 12.022040106000077 ], [ 75.186289910000085, 12.041571356000077 ], [ 75.139659050000034, 12.248602606000077 ], [ 75.105479363000029, 12.221258856000077 ], [ 74.854258660000085, 12.765285549000055 ], [ 74.94067671086151, 12.776119696167029 ], [ 75.007959425886781, 12.690724392316838 ], [ 75.100253534373053, 12.682120266237291 ], [ 75.110485466 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-PY", "NAME_1": "Puducherry" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 75.304209832000083, 12.043158270000049 ], [ 75.264333530000044, 12.013332424000055 ], [ 75.27670332100007, 11.96743398600006 ], [ 75.222178582000083, 12.022040106000077 ], [ 75.222933383968439, 12.100166123867496 ], [ 75.396876254835263, 12.142928371846892 ], [ 75.309543084645611, 12.09370656970242 ], [ 75.304209832000083, 12.043158270000049 ] ] ], [ [...]
-{ "type": "Feature", "properties": { "ISO": "IN-TN", "NAME_1": "Tamil Nadu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 79.84734134200005, 10.809637762000079 ], [ 79.851328972000033, 10.282212632000039 ], [ 79.795095248000052, 10.269232489000046 ], [ 79.75709069100003, 10.309068101000037 ], [ 79.633148634000065, 10.328599351000037 ], [ 79.614105665000068, 10.309556382000039 ], [ 79.772471550000034, 10.261704820000091 ], [ 79.556651238000029, 10.298651434000078 ], [ 79 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-LD", "NAME_1": "Lakshadweep" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 73.646332227000073, 10.08470286700009 ], [ 73.640961134000065, 10.069322007000039 ], [ 73.632578972000033, 10.05727773600006 ], [ 73.64389082100007, 10.094549872000073 ], [ 73.646332227000073, 10.08470286700009 ] ] ], [ [ [ 73.662282748000052, 10.144598700000074 ], [ 73.65788821700005, 10.139064846000053 ], [ 73.654633009000065, 10.141506252000056 ] [...]
-{ "type": "Feature", "properties": { "ISO": "IN-AN", "NAME_1": "Andaman and Nicobar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 93.872813347000033, 12.268866278000075 ], [ 93.853770379000082, 12.260565497000073 ], [ 93.851898634000065, 12.271551825000074 ], [ 93.86060631600003, 12.281195380000042 ], [ 93.872813347000033, 12.268866278000075 ] ] ], [ [ [ 94.28093509200005, 13.443548895000049 ], [ 94.290782097000033, 13.422919012000079 ], [ 94.274912957000026, 13.420314 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-JH", "NAME_1": "Jharkhand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 83.337063430332989, 24.140232245121979 ], [ 83.453955520231034, 24.361588243002984 ], [ 83.394217564089274, 24.474423733068818 ], [ 83.437832472790376, 24.52093252251791 ], [ 83.750164828643904, 24.508375149393601 ], [ 83.808869256910668, 24.54250743287173 ], [ 83.938267043089525, 24.548682766196691 ], [ 84.021672804656191, 24.639039008343559 ], [ 84.1305033 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-DL", "NAME_1": "Delhi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.200797154165286, 28.876790676048813 ], [ 77.227152133863854, 28.783592230896716 ], [ 77.313141716916675, 28.707266140220156 ], [ 77.337532992753381, 28.626185817721307 ], [ 77.297845492675322, 28.569393419170922 ], [ 77.327404413283034, 28.519706529033044 ], [ 77.241311477442707, 28.497459825110809 ], [ 77.239864535719732, 28.447540391875577 ], [ 77.193562452 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-DN", "NAME_1": "Dadra and Nagar Haveli" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.065132276733152, 20.337337755033332 ], [ 73.074123977339639, 20.291733303149385 ], [ 73.123216587375566, 20.278142402150138 ], [ 73.037433709897755, 20.21204824553007 ], [ 73.041774529670761, 20.157736313879752 ], [ 73.086112908783662, 20.139236152326532 ], [ 73.114018182093389, 20.181662503521693 ], [ 73.170035435187174, 20.164531764829064 ] [...]
-{ "type": "Feature", "properties": { "ISO": "IN-CH", "NAME_1": "Chandigarh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.773949823425596, 30.799024766779553 ], [ 76.814567498591146, 30.78912873040656 ], [ 76.827279901346344, 30.680711575378893 ], [ 76.780564406322242, 30.673451036436177 ], [ 76.698088819843122, 30.749260362275891 ], [ 76.703773227652277, 30.781403103470439 ], [ 76.773949823425596, 30.799024766779553 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "IN-MP", "NAME_1": "Madhya Pradesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.326103142645877, 26.859807848353512 ], [ 78.563504672702436, 26.758496201738296 ], [ 78.710059035096378, 26.798881333806492 ], [ 78.861264275625786, 26.701264552716907 ], [ 78.926066521952407, 26.706225491013583 ], [ 79.040994907988591, 26.467997137757663 ], [ 79.061148715940476, 26.349373887994489 ], [ 78.938158807083255, 26.25459931080951 ], [ 78.9 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-CT", "NAME_1": "Chhattisgarh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 83.088809848595588, 23.911047268416667 ], [ 83.221308221097502, 23.954222927546027 ], [ 83.337063430332989, 24.140232245121979 ], [ 83.510696241937978, 24.082897244212461 ], [ 83.540358514433876, 23.956729233767135 ], [ 83.711820916601994, 23.800976466990335 ], [ 83.720812616309161, 23.676152045480478 ], [ 83.761533645161535, 23.596518662905964 ], [ 83.91 [...]
-{ "type": "Feature", "properties": { "ISO": "IN-HR", "NAME_1": "Haryana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.810123326030634, 30.934261990398511 ], [ 76.847020298148209, 30.898682766096783 ], [ 76.905724724616334, 30.899302882821758 ], [ 77.001532830575627, 30.777346502738908 ], [ 77.125969680256503, 30.711381537328066 ], [ 77.150257603305704, 30.663994248735548 ], [ 77.134134555865046, 30.554362697780277 ], [ 77.208135206574468, 30.476951402385282 ], [ 77.2410014 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-SK", "NAME_1": "Sikkim" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.891349725300017, 27.316059068301925 ], [ 88.881686232461448, 27.297481390892997 ], [ 88.760401645872435, 27.218132229108832 ], [ 88.738800897174428, 27.175602525332621 ], [ 88.756200335345866, 27.148800698456999 ], [ 88.664490188071682, 27.173354601033964 ], [ 88.518039177565981, 27.17622264336029 ], [ 88.447655878016292, 27.114495144035629 ], [ 88.357428827 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-TG", "NAME_1": "Telangana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.446466912617893, 15.952980048090751 ], [ 77.483673943997303, 16.002072659025998 ], [ 77.490805291730794, 16.261591701795567 ], [ 77.533179966082514, 16.361042996437106 ], [ 77.293711379376646, 16.406518256212564 ], [ 77.257434523084726, 16.449358018557689 ], [ 77.370915969196574, 16.524288845253977 ], [ 77.431997511575844, 16.593612779406214 ], [ 77.41091 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-LA", "NAME_1": "Ladakh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.799365268875448, 35.495921535782571 ], [ 77.810889113276545, 35.48452688246222 ], [ 77.851506789057964, 35.460781561824092 ], [ 77.894914992183118, 35.448999335261547 ], [ 77.945867954422908, 35.471633612605387 ], [ 78.009481642574201, 35.490237128230461 ], [ 78.042709588537889, 35.479798488907505 ], [ 78.047412143876443, 35.44938690850374 ], [ 78.0091715839 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-CH", "NAME_1": "Chandigarh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.814567498591146, 30.78912873040656 ], [ 76.827279901346344, 30.680711575378893 ], [ 76.775603468924942, 30.677404283480882 ], [ 76.703773227652277, 30.781403103470439 ], [ 76.814567498591146, 30.78912873040656 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "IN-DL", "NAME_1": "Delhi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.327404413283034, 28.519706529033044 ], [ 77.269733513790584, 28.510275579754193 ], [ 77.19356245274497, 28.432605902840123 ], [ 77.100544874746163, 28.475600693916874 ], [ 77.070882603149585, 28.528569037531042 ], [ 76.87265180923356, 28.519422309092249 ], [ 76.836891716879222, 28.587221788055047 ], [ 76.94727257666807, 28.696155707020239 ], [ 76.936523878674 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-HP", "NAME_1": "Himachal Pradesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.390279918151052, 32.527268327640002 ], [ 78.389665154945533, 32.519875800093587 ], [ 78.417467075518545, 32.46670075126525 ], [ 78.441341587237389, 32.397350979129556 ], [ 78.455294223956201, 32.300328477501552 ], [ 78.486093377602145, 32.236223863243495 ], [ 78.487390078691362, 32.233521265183875 ], [ 78.495911899737621, 32.215759996055908 ], [ 78 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-HR", "NAME_1": "Haryana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.200797154165286, 28.876790676048813 ], [ 77.067988723300914, 28.882087511129725 ], [ 76.936523878674052, 28.814649767372828 ], [ 76.94727257666807, 28.696155707020239 ], [ 76.836891716879222, 28.587221788055047 ], [ 76.87265180923356, 28.519422309092249 ], [ 77.070882603149585, 28.528569037531042 ], [ 77.100544874746163, 28.475600693916874 ], [ 77.193562452 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-JK", "NAME_1": "Jammu and Kashmir" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.347546963197445, 34.572707809553762 ], [ 75.3745485, 34.3709805 ], [ 75.4694874, 34.2800518 ], [ 75.5845642, 34.2101164 ], [ 75.6634003, 34.1992301 ], [ 75.7416556, 34.0664337 ], [ 75.8795921, 33.9636962 ], [ 76.0243674, 33.9820894 ], [ 76.166381196366061, 33.873232448638177 ], [ 76.235838061456889, 33.728793740551566 ], [ 76.246098734708937, 33.5 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-AP", "NAME_1": "Andhra Pradesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.231197867888966, 13.467614136514745 ], [ 80.097571242418894, 13.46375214334671 ], [ 79.96197228359398, 13.416545721907539 ], [ 79.956701287834107, 13.365773627051226 ], [ 79.816348098086223, 13.294925237709549 ], [ 79.784928827303474, 13.224025173323071 ], [ 79.696768833015199, 13.235807400091403 ], [ 79.667933383718662, 13.291282049926622 ], [ 79.57 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-KL", "NAME_1": "Kerala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.893952998469786, 12.751445129204074 ], [ 75.102113885447409, 12.678864651182664 ], [ 75.312023553344261, 12.469497584745739 ], [ 75.389331495951751, 12.29472789157893 ], [ 75.426228468968645, 12.291782334886818 ], [ 75.536609327858173, 12.168947454761224 ], [ 75.62921349470696, 12.102052314262892 ], [ 75.761091749584523, 12.068746853084804 ], [ 75.7761812682 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-LD", "NAME_1": "Lakshadweep" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 73.053320312500006, 8.256689453124991 ], [ 73.038867187500017, 8.251953125 ], [ 73.028515625000011, 8.253515625 ], [ 73.0234375, 8.265917968749989 ], [ 73.026074218750011, 8.275292968749994 ], [ 73.038964843750023, 8.26484375 ], [ 73.055859375000011, 8.274560546874994 ], [ 73.0751953125, 8.306347656249997 ], [ 73.079492187500023, 8.316503906249991 ] [...]
+{ "type": "Feature", "properties": { "ISO": "IN-OR", "NAME_1": "Odisha" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.478634667329331, 21.608108337132055 ], [ 87.20068359375, 21.544873046874997 ], [ 87.100683593750034, 21.50078125 ], [ 86.9541015625, 21.365332031249991 ], [ 86.859570312500011, 21.23671875 ], [ 86.84228515625, 21.106347656249994 ], [ 86.895800781249989, 20.965576171875 ], [ 86.939355468750023, 20.745068359374997 ], [ 86.975488281250023, 20.700146484374997 ], [...]
+{ "type": "Feature", "properties": { "ISO": "IN-DH", "NAME_1": "Dadra and Nagar Haveli and Daman and Diu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.166314732139142, 20.114870714012227 ], [ 73.160940382692502, 20.04748464619945 ], [ 72.99722944498285, 20.039810696106713 ], [ 72.947206658960113, 20.127402248714816 ], [ 72.89666710810053, 20.221505032331379 ], [ 73.049939406178623, 20.330258084143225 ], [ 73.112157831019033, 20.254913845397652 ], [ 73.046838819855623, 20.2 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-KA", "NAME_1": "Karnataka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.893952998469786, 12.751445129204074 ], [ 74.868261718750006, 12.844580078124991 ], [ 74.802929687500011, 12.976855468749989 ], [ 74.7705078125, 13.07734375 ], [ 74.682324218750011, 13.506933593749991 ], [ 74.681640625, 13.583740234375 ], [ 74.6708984375, 13.667626953124994 ], [ 74.608496093750006, 13.849658203125003 ], [ 74.49853515625, 14.046337890624997 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-GA", "NAME_1": "Goa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.678864937051699, 15.711174528113526 ], [ 73.807622574782712, 15.77485688336434 ], [ 73.908388298581073, 15.721237087421621 ], [ 73.942035231051264, 15.634442570748465 ], [ 73.991682766783896, 15.611105126715616 ], [ 74.095452181544687, 15.643226632036434 ], [ 74.103545416172167, 15.644572662912195 ], [ 74.100624628124081, 15.640285956131947 ], [ 74.226818475192 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-AN", "NAME_1": "Andaman and Nicobar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 93.016015625000023, 13.336181640625 ], [ 93.073828125000034, 13.252099609374994 ], [ 93.066113281250011, 13.221582031249994 ], [ 93.04296875, 13.154882812499991 ], [ 93.004687499999989, 13.08935546875 ], [ 92.951367187500011, 13.0625 ], [ 92.909960937499989, 12.975195312499991 ], [ 92.88623046875, 12.942285156249994 ], [ 92.965039062500011,  [...]
+{ "type": "Feature", "properties": { "ISO": "IN-AS", "NAME_1": "Assam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.860038339274027, 26.713564810434246 ], [ 89.943171828168829, 26.723950507101648 ], [ 90.122954136112241, 26.754594631450729 ], [ 90.206101515669872, 26.847508856711514 ], [ 90.242326694706463, 26.854149278261019 ], [ 90.345886265019402, 26.890322780865333 ], [ 90.447637160202078, 26.850764471945908 ], [ 90.55987837114003, 26.796555894471723 ], [ 90.6203397969 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-MN", "NAME_1": "Manipur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.654788349876284, 25.444757736742805 ], [ 94.622886183656306, 25.410025539648473 ], [ 94.579943068421755, 25.319850165299158 ], [ 94.554414910869554, 25.243446560155618 ], [ 94.553019647197686, 25.215722154231031 ], [ 94.566507196025867, 25.191511745702286 ], [ 94.615651483135423, 25.164588324478217 ], [ 94.675286086000256, 25.138569240819265 ], [ 94.7037598 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-NL", "NAME_1": "Nagaland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.246447862206864, 26.654794128978537 ], [ 95.201455519596095, 26.641397406515381 ], [ 95.128695102929157, 26.597291571554265 ], [ 95.089421014387312, 26.525513007100855 ], [ 95.059810418684094, 26.473991604105862 ], [ 95.05087039589759, 26.347280992126187 ], [ 95.06895714719974, 26.191140651956289 ], [ 95.108437941470726, 26.091430975849121 ], [ 95.12931522 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-ML", "NAME_1": "Meghalaya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.386050308477863, 25.005686466777394 ], [ 92.373411085991052, 25.015140082290117 ], [ 92.204635858125783, 25.110948187759263 ], [ 92.049709914114743, 25.169471747329808 ], [ 91.763525832082365, 25.160635077407889 ], [ 91.479718865935382, 25.1421349146474 ], [ 91.396623162810045, 25.15161753997296 ], [ 91.293115268929427, 25.177972520441813 ], [ 91.03829878 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-PB", "NAME_1": "Punjab" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.293437135515575, 32.325995170197864 ], [ 75.390365024726066, 32.3354942899295 ], [ 75.502399530014259, 32.300586860095507 ], [ 75.611953565704482, 32.39546478916867 ], [ 75.68264692631459, 32.399805609840996 ], [ 75.743004999181323, 32.464375312170887 ], [ 75.84739139189918, 32.516749376582425 ], [ 75.911676874288275, 32.431354071832914 ], [ 75.6926721538967 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-RJ", "NAME_1": "Rajasthan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.04789106637449, 24.687744045504957 ], [ 71.020709262988959, 24.757662258395868 ], [ 70.95084272653034, 24.891607570896397 ], [ 70.877772251269647, 25.062992458592404 ], [ 70.800464308561004, 25.205851955663277 ], [ 70.70248579293559, 25.331063951106486 ], [ 70.652049595018724, 25.422892971289144 ], [ 70.65721723824791, 25.625774644467043 ], [ 70.648483921 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-UP", "NAME_1": "Uttar Pradesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.07069949740017, 28.830178534453822 ], [ 80.149661085942142, 28.77604747162809 ], [ 80.226555617192446, 28.723363348906517 ], [ 80.324844191411586, 28.66639008230473 ], [ 80.418585239589049, 28.612026475533682 ], [ 80.479150018235117, 28.604895127877398 ], [ 80.495789829433107, 28.635797634387941 ], [ 80.517907342454038, 28.665175686145872 ], [ 80.5869 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-UT", "NAME_1": "Uttarakhand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.010228712898709, 30.164515692662292 ], [ 80.966148716153754, 30.180018622349849 ], [ 80.907650994799354, 30.171905422480023 ], [ 80.848171421231399, 30.139762681594476 ], [ 80.819904412767755, 30.119350490839182 ], [ 80.684098748704713, 29.994319362908996 ], [ 80.612888625006491, 29.955846259067698 ], [ 80.549068231126029, 29.899777330031014 ], [ 80.401 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-JH", "NAME_1": "Jharkhand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 83.970203077809742, 22.53934804927303 ], [ 83.996248000045114, 22.592703966514819 ], [ 84.190964797387437, 22.700940253489875 ], [ 84.228275180655032, 22.783079942285497 ], [ 84.352195266398383, 22.885580146406596 ], [ 84.291733839844824, 22.997227078067169 ], [ 84.115000441017514, 22.998854885144794 ], [ 84.089058871569648, 23.084818629775953 ], [ 84.028907 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-WB", "NAME_1": "West Bengal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.756200335345866, 27.148800698456999 ], [ 88.765672641966205, 27.13420970306683 ], [ 88.813576694700771, 27.099018052676058 ], [ 88.835177443398777, 27.065583400983215 ], [ 88.857656691445726, 26.961481228131248 ], [ 88.919151645873058, 26.932206529237902 ], [ 89.040952996784995, 26.865027167258461 ], [ 89.148233270222931, 26.816141262310353 ], [ 89.3320 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-BR", "NAME_1": "Bihar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 83.828816359394352, 27.377812404890719 ], [ 83.897184279316519, 27.435121568302407 ], [ 84.024825067077444, 27.461683254500429 ], [ 84.091074253275622, 27.491345526635968 ], [ 84.229773797547011, 27.42783519134926 ], [ 84.480817905620938, 27.348201809187472 ], [ 84.610215692079777, 27.298695787051869 ], [ 84.640756463564287, 27.24986155853604 ], [ 84.65481245314 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-CT", "NAME_1": "Chhattisgarh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.270377231723842, 18.713690090425303 ], [ 80.274821405183673, 18.776942044040084 ], [ 80.34417117685831, 18.850710150752832 ], [ 80.271824171648177, 18.97943614336333 ], [ 80.366598748833155, 19.117386378778349 ], [ 80.397087843629038, 19.234175115888888 ], [ 80.575991651893162, 19.391969101792597 ], [ 80.617436151157392, 19.318562730285748 ], [ 80.7166 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-MP", "NAME_1": "Madhya Pradesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.679034458373508, 21.351151842383615 ], [ 80.625601026765935, 21.326476344807475 ], [ 80.417551710842758, 21.446830756234419 ], [ 80.310168084589407, 21.580233466301422 ], [ 80.18666141089534, 21.639480496028057 ], [ 80.005277133932566, 21.548323269103548 ], [ 79.840325961873589, 21.534344794476681 ], [ 79.79836469867189, 21.587804062707335 ], [ 79.65 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-PY", "NAME_1": "Puducherry" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 79.848488403927021, 11.954471876778085 ], [ 79.812867268909827, 11.832393614729266 ], [ 79.727051223135391, 11.841628933028801 ], [ 79.686020135021181, 11.999939682870036 ], [ 79.791129999050156, 11.916818142143541 ], [ 79.848488403927021, 11.954471876778085 ] ] ], [ [ [ 79.849425078308599, 10.979843685062908 ], [ 79.850195312500034, 10.7688476562499 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-TN", "NAME_1": "Tamil Nadu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.850195312500034, 10.768847656249989 ], [ 79.838183593749989, 10.322558593749989 ], [ 79.756933593750034, 10.304345703124994 ], [ 79.667382812500023, 10.299707031249994 ], [ 79.588574218750011, 10.312353515624991 ], [ 79.531640625000023, 10.329638671874989 ], [ 79.390527343750023, 10.305957031249989 ], [ 79.314550781250034, 10.256689453124991 ], [ 79.2536 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-GJ", "NAME_1": "Gujarat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.04789106637449, 24.687744045504957 ], [ 71.251496209982065, 24.636816921163984 ], [ 71.378413526562952, 24.646661282492175 ], [ 71.545845168219898, 24.688054104013645 ], [ 71.65188520733642, 24.658004258789504 ], [ 71.750897250607579, 24.678132229218988 ], [ 71.947887811073599, 24.662629299402624 ], [ 72.050930616654625, 24.708362942495796 ], [ 72.099403110 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-AR", "NAME_1": "Arunachal Pradesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.631905959034953, 27.75995962168912 ], [ 91.712572869842575, 27.759830430608389 ], [ 91.824710727915942, 27.746420396428647 ], [ 91.909408400442317, 27.729677232366086 ], [ 91.977672967499871, 27.730349025985888 ], [ 92.101282993542043, 27.807631130478384 ], [ 92.157558628307896, 27.812256171168499 ], [ 92.222257521537301, 27.826932277939392 ], [ 9 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-MZ", "NAME_1": "Mizoram" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.312122122760144, 24.032525288163395 ], [ 93.307359246802065, 24.021867377208025 ], [ 93.37252322792213, 23.774156399016931 ], [ 93.414949578833756, 23.682094834888957 ], [ 93.40807661333892, 23.528047390226888 ], [ 93.391281772844081, 23.33917003020008 ], [ 93.366011997453342, 23.132515977464891 ], [ 93.349372186255351, 23.084947821540212 ], [ 93.3080310404 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-TR", "NAME_1": "Tripura" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.246080356823882, 23.68361928964157 ], [ 92.187065871146558, 23.67553192798789 ], [ 92.152339308646418, 23.721859849537552 ], [ 92.127017856823386, 23.721007188404741 ], [ 92.044077182994926, 23.677779852792582 ], [ 91.978551466848842, 23.692016709889003 ], [ 91.929613885468427, 23.685996405526993 ], [ 91.929510532603842, 23.598249823495394 ], [ 91.937882114 [...]
+{ "type": "Feature", "properties": { "ISO": "IN-MH", "NAME_1": "Maharashtra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.103545416172167, 15.644572662912195 ], [ 74.095452181544687, 15.643226632036434 ], [ 73.991682766783896, 15.611105126715616 ], [ 73.942035231051264, 15.634442570748465 ], [ 73.908388298581073, 15.721237087421621 ], [ 73.807622574782712, 15.77485688336434 ], [ 73.678864937051699, 15.711174528113526 ], [ 73.607714843750017, 15.87109375 ], [ 73.47607421875 [...]
 ]
 }
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/indonesia.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/indonesia.geojson
index 9dcbb2f..520de47 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/indonesia.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/indonesia.geojson
@@ -2,38 +2,38 @@
 "type": "FeatureCollection",
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
-{ "type": "Feature", "properties": { "ISO": "ID-KI", "NAME_1": "Kalimantan Timur" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.703607903955245, 4.163414542001791 ], [ 117.70360790400008, 4.163414542000055 ], [ 117.738071462000107, 4.157241908000032 ], [ 117.783572247000052, 4.157241908000032 ], [ 117.852557309000133, 4.157241908000032 ], [ 117.907039027605904, 4.156683015004099 ], [ 117.912119988000086, 4.144924221000053 ], [ 117.918223504000025, 4.100043036000045  [...]
-{ "type": "Feature", "properties": { "ISO": "ID-NT", "NAME_1": "Nusa Tenggara Timur" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.257510621000051, -9.501227721999967 ], [ 124.261593059000063, -9.49792042999988 ], [ 124.273840373000098, -9.494923196999949 ], [ 124.293064006, -9.49306284499994 ], [ 124.31006555200014, -9.488722025999962 ], [ 124.323553101000016, -9.480350443999896 ], [ 124.332338095000068, -9.466604511999961 ], [ 124.333371623000062, -9.4571994019999 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-KB", "NAME_1": "Kalimantan Barat" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.645274285000028, 2.083238023000092 ], [ 109.626620728000034, 2.029696350000066 ], [ 109.600265747000094, 1.98313588500011 ], [ 109.585072876000083, 1.960915019000069 ], [ 109.574427531000083, 1.948590190000033 ], [ 109.537943970000072, 1.917713522000042 ], [ 109.529365682000048, 1.905156149000035 ], [ 109.528435506000051, 1.88998911600001 ] [...]
-{ "type": "Feature", "properties": { "ISO": "ID-PA", "NAME_1": "Papua" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.974457227000016, -2.600518487999921 ], [ 140.97447473200009, -2.63120778399994 ], [ 140.973906291000105, -2.807321064999897 ], [ 140.973286174000066, -3.002451272999906 ], [ 140.972355998000012, -3.250601500999935 ], [ 140.973182821000023, -3.581744079999908 ], [ 140.973544556000093, -3.800025329999912 ], [ 140.97421635, -4.002286884999961 ], [ 140.97 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-JI", "NAME_1": "Jawa Timur" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.395192905000044, -8.447035414999959 ], [ 113.406097852000016, -8.453220309999949 ], [ 113.412119988000086, -8.466892184999949 ], [ 113.413096550000091, -8.480564059999949 ], [ 113.409190300000091, -8.486748955999929 ], [ 113.396657748000052, -8.488376559999949 ], [ 113.371918165000011, -8.494724216999941 ], [ 113.292491082000083, -8.4948055969999 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-MA", "NAME_1": "Maluku" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 128.231211785000028, -8.25123463299991 ], [ 128.237640821000014, -8.264092705999929 ], [ 128.231455925000091, -8.272881768999923 ], [ 128.219004754000025, -8.27857838299991 ], [ 128.207286004000025, -8.281914971999925 ], [ 128.181976759, -8.285088799999926 ], [ 128.15162194100003, -8.284600518999923 ], [ 128.123301629000025, -8.28093840899993 ], [ 128.10 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-NB", "NAME_1": "Nusa Tenggara Barat" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.664317254000025, -8.14812590899993 ], [ 117.67310631600003, -8.154066664999959 ], [ 117.683360222000033, -8.158623955999929 ], [ 117.691742384, -8.164727471999925 ], [ 117.695323113000086, -8.175876559999949 ], [ 117.692556186000047, -8.183526299999926 ], [ 117.685394727000016, -8.189222914999959 ], [ 117.667328321000014, -8.199395440999 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-SN", "NAME_1": "Sulawesi Selatan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.960459832000083, -7.281996351999908 ], [ 121.019867384, -7.280368747999944 ], [ 121.049978061000047, -7.285821221999925 ], [ 121.066905144000089, -7.302504164999959 ], [ 121.056895379000025, -7.321058851999908 ], [ 121.025645379000025, -7.331638278999947 ], [ 120.992686394000089, -7.333591403999947 ], [ 120.977386915000011, -7.3263485659999 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-JT", "NAME_1": "Jawa Tengah" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 108.895120338881682, -6.814154617478335 ], [ 108.895192905000044, -6.814222914999959 ], [ 108.90357506600003, -6.822198174999926 ], [ 108.911875847000033, -6.834893487999921 ], [ 108.923024936000047, -6.844659112999921 ], [ 108.944834832000026, -6.849379164999959 ], [ 108.968923373000052, -6.848321221999925 ], [ 108.983409050000034, -6.8417294249999 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-JB", "NAME_1": "Jawa Barat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.988291863000029, -6.07935963299991 ], [ 106.99350019600007, -6.078545830999929 ], [ 107.00513756600003, -6.072360934999949 ], [ 107.008555535000028, -6.053155205999929 ], [ 107.013926629000025, -6.040459893999923 ], [ 107.01498457100007, -6.02898528399993 ], [ 107.00513756600003, -6.013929945999905 ], [ 106.999034050000034, -6.003513278999947 ], [ 107.0 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-JK", "NAME_1": "Jakarta Raya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.731049024000072, -6.058851820999905 ], [ 106.732432488000029, -6.066582940999922 ], [ 106.737803582000026, -6.083916924999926 ], [ 106.751963738000029, -6.095879815999922 ], [ 106.793223504000025, -6.104099216999941 ], [ 106.837738477000073, -6.102715752999927 ], [ 106.988291863000029, -6.07935963299991 ], [ 106.989314813327951, -6.082315768457931 ],  [...]
-{ "type": "Feature", "properties": { "ISO": "ID-BT", "NAME_1": "Banten" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.404633009000065, -6.991306247999944 ], [ 106.40162194100003, -6.993096612999921 ], [ 106.378916863000029, -6.999769789999959 ], [ 106.354502800000034, -7.002699476999908 ], [ 106.333018425000034, -7.000746351999908 ], [ 106.31967207100007, -6.996189059999949 ], [ 106.311045769000032, -6.99146900799991 ], [ 106.30241946700005, -6.98796965899993 ], [ 1 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-YO", "NAME_1": "Yogyakarta" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.843559797243316, -8.200842658125852 ], [ 110.715342644000032, -8.193129164999959 ], [ 110.705577019000032, -8.190036716999941 ], [ 110.691254102000073, -8.175876559999949 ], [ 110.681488477000073, -8.172621351999908 ], [ 110.660655144000032, -8.169854424999926 ], [ 110.639414910000028, -8.162774346999925 ], [ 110.602712436000047, -8.144789320999905 ], [ [...]
-{ "type": "Feature", "properties": { "ISO": "ID-SG", "NAME_1": "Sulawesi Tenggara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.065196160000028, -5.962497653999947 ], [ 124.073985222000033, -5.985284112999921 ], [ 124.071136915000011, -6.011325778999947 ], [ 124.059336785000028, -6.027439059999949 ], [ 124.041270379000025, -6.02076588299991 ], [ 124.037445509, -6.011651299999926 ], [ 124.035899285000028, -5.987399997999944 ], [ 124.030446811000047, -5.9760067689999 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-PB", "NAME_1": "Papua Barat" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.70281009200005, -3.453301690999922 ], [ 132.710459832000083, -3.469496351999908 ], [ 132.714691602000016, -3.486993096999925 ], [ 132.712901238000086, -3.504164320999905 ], [ 132.702891472000033, -3.519301039999959 ], [ 132.689952019000089, -3.509535414999959 ], [ 132.678884311000047, -3.495863539999959 ], [ 132.67115319100003, -3.47942473799992 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-ST", "NAME_1": "Sulawesi Tengah" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.876719597000033, -2.018487237999921 ], [ 123.878916863000086, -2.032321872999944 ], [ 123.887868686000047, -2.050876559999949 ], [ 123.889659050000091, -2.063246351999908 ], [ 123.886973504000025, -2.07390715899993 ], [ 123.88054446700005, -2.069431247999944 ], [ 123.869313998000052, -2.053317966999941 ], [ 123.864268425000091, -2.0551083309 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-MU", "NAME_1": "Maluku Utara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.34888756600003, -1.959567966999941 ], [ 124.366221550000091, -1.971286716999941 ], [ 124.372080925000091, -1.992608330999929 ], [ 124.370290561000047, -2.038995049999926 ], [ 124.358409050000091, -2.033298434999949 ], [ 124.334727410000028, -2.004978122999944 ], [ 124.32545006600003, -2.001153252999927 ], [ 124.314219597000033, -1.9994442689999 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-KR", "NAME_1": "Kepulauan Riau" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.479991082000026, -0.271254164999959 ], [ 104.487803582000026, -0.274102471999925 ], [ 104.493662957000026, -0.281182549999926 ], [ 104.497080925000034, -0.289971612999921 ], [ 104.497080925000034, -0.298597914999959 ], [ 104.492523634000065, -0.308770440999922 ], [ 104.486501498000052, -0.310723565999922 ], [ 104.478851759000065, -0.309991143 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-RI", "NAME_1": "Riau" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.83912194100003, 0.290961005000042 ], [ 102.854502800000034, 0.303168036000045 ], [ 102.884532097000033, 0.315252997000073 ], [ 102.913910352000073, 0.320257880000042 ], [ 102.927256707000026, 0.31085846600007 ], [ 102.907725457000026, 0.298529364000046 ], [ 102.875336134000065, 0.284084377000056 ], [ 102.84701582100007, 0.27806224200009 ], [ 102.839121 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-GO", "NAME_1": "Gorontalo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 122.197341582048352, 1.027664880829604 ], [ 122.222829623000052, 1.01235586100006 ], [ 122.235362175000091, 1.009833075000074 ], [ 122.24537194100003, 1.010931708000044 ], [ 122.264659050000091, 1.016058661000045 ], [ 122.276215040000011, 1.017279364000046 ], [ 122.281423373000052, 1.016058661000045 ], [ 122.29070071700005, 1.010931708000044 ], [ 122.2967228 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-SA", "NAME_1": "Sulawesi Utara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.097191082302515, 0.929133722143547 ], [ 123.112071160000028, 0.931301174000055 ], [ 123.13445071700005, 0.93891022300005 ], [ 123.175629102000016, 0.922552802000041 ], [ 123.190928582000083, 0.927883205000057 ], [ 123.186696811000047, 0.938177802000041 ], [ 123.182383660000028, 0.960109768000052 ], [ 123.186696811000047, 0.973618882000039 ],  [...]
-{ "type": "Feature", "properties": { "ISO": "ID-SR", "NAME_1": "Sulawesi Barat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.490926985511791, -3.486539665106994 ], [ 119.485850457000083, -3.483493747999944 ], [ 119.465668165000011, -3.477227471999925 ], [ 119.456797722000033, -3.470961195999962 ], [ 119.432383660000028, -3.475030205999929 ], [ 119.403005405000044, -3.461521091999941 ], [ 119.372894727000016, -3.442559502999927 ], [ 119.34693444100003, -3.430596612999921 ] [...]
-{ "type": "Feature", "properties": { "ISO": "ID-JA", "NAME_1": "Jambi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.438703422624826, -0.746179762885731 ], [ 103.450694207000026, -0.750095309999949 ], [ 103.463145379000082, -0.757745049999926 ], [ 103.468516472000033, -0.767836195999962 ], [ 103.464854363000029, -0.782972914999959 ], [ 103.447520379000082, -0.799411716999941 ], [ 103.441172722000033, -0.812595309999949 ], [ 103.485362175000034, -0.804945570999962 ], [ 103. [...]
-{ "type": "Feature", "properties": { "ISO": "ID-SS", "NAME_1": "Sumatera Selatan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.531586134000065, -1.73406340899993 ], [ 104.533539259000065, -1.740492445999962 ], [ 104.537608269000032, -1.760674737999921 ], [ 104.537364129000082, -1.772149346999925 ], [ 104.533457879000082, -1.783461195999962 ], [ 104.517425977000073, -1.809340101999908 ], [ 104.512380405000044, -1.821465752999927 ], [ 104.489024285000028, -1.860039971999925 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-LA", "NAME_1": "Lampung" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.827972852000073, -4.157972914999959 ], [ 105.812754754000025, -4.238702080999929 ], [ 105.814219597000033, -4.27312590899993 ], [ 105.819021030000044, -4.300225518999923 ], [ 105.829600457000026, -4.324476820999905 ], [ 105.846039259000065, -4.35320403399993 ], [ 105.857432488000029, -4.381280205999929 ], [ 105.853282097000033, -4.403903903999947 ], [...]
-{ "type": "Feature", "properties": { "ISO": "ID-BE", "NAME_1": "Bengkulu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.608152959862409, -4.916489332154952 ], [ 103.592051629000082, -4.910332940999922 ], [ 103.584646030000044, -4.909600518999923 ], [ 103.561289910000028, -4.910332940999922 ], [ 103.553558790000068, -4.908868096999925 ], [ 103.55005944100003, -4.905368747999944 ], [ 103.547862175000034, -4.901055596999925 ], [ 103.54420006600003, -4.897230726999908 ] [...]
-{ "type": "Feature", "properties": { "ISO": "ID-SB", "NAME_1": "Sumatera Barat" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 101.026595635072354, -2.479950759425808 ], [ 101.017832879000082, -2.467950127999927 ], [ 100.92310631600003, -2.333428643999923 ], [ 100.83952884200005, -2.16725025799991 ], [ 100.833994988000029, -2.159112237999921 ], [ 100.831553582000026, -2.141289971999925 ], [ 100.845713738000029, -2.119398695999962 ], [ 100.87826582100007, -2.0800106749999 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-SU", "NAME_1": "Sumatera Utara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.1511646636649, 0.252456858195392 ], [ 99.142344597000033, 0.258246161000045 ], [ 99.13795006600003, 0.263088283000059 ], [ 99.139333530000044, 0.27374909100007 ], [ 99.153086785000028, 0.287176825000074 ], [ 99.158457879000082, 0.297837632000039 ], [ 99.158457879000082, 0.320013739000046 ], [ 99.148448113000029, 0.333156643000052 ], [ 99.13152 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-AC", "NAME_1": "Aceh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.101333577388615, 2.188620652979915 ], [ 98.089610222000033, 2.195868231000077 ], [ 97.983571811000047, 2.244370835000041 ], [ 97.955902540000068, 2.271714585000041 ], [ 97.933360222000033, 2.269761460000041 ], [ 97.881114129000082, 2.25031159100007 ], [ 97.86687259200005, 2.247463283000059 ], [ 97.850759311000047, 2.251206773000092 ], [ 97.8294376960000 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-KT", "NAME_1": "Kalimantan Tengah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.310683266196619, -3.43391382655977 ], [ 114.288828972000033, -3.424493096999925 ], [ 114.272227410000028, -3.413262627999927 ], [ 114.263519727000016, -3.397556247999944 ], [ 114.265147332000083, -3.378350518999923 ], [ 114.275401238000086, -3.362399997999944 ], [ 114.292979363000086, -3.355564059999949 ], [ 114.301931186000047, -3.34579843499994 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-KS", "NAME_1": "Kalimantan Selatan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.572890168787993, -2.36297628779497 ], [ 116.540049675000091, -2.512872002999927 ], [ 116.517914259, -2.553887627999927 ], [ 116.482432488000086, -2.560316664999959 ], [ 116.473155144000089, -2.547458591999941 ], [ 116.468109571000014, -2.526462497999944 ], [ 116.460948113000086, -2.507012627999927 ], [ 116.44459069100003, -2.4983049459999 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-BA", "NAME_1": "Bali" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.550140821000014, -8.666192315999922 ], [ 115.573090040000011, -8.671970309999949 ], [ 115.589153388, -8.695665505999955 ], [ 115.59774535300005, -8.718726089999905 ], [ 115.615730898000038, -8.739627448999954 ], [ 115.624203937000061, -8.768908689999932 ], [ 115.606944207000083, -8.786553643999923 ], [ 115.588877800000091, -8.807305596999925 ], [ 115.5 [...]
-{ "type": "Feature", "properties": { "ISO": "ID-BB", "NAME_1": "Bangka-Belitung" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.908946160000028, -2.929782809999949 ], [ 106.91570071700005, -2.950941664999959 ], [ 106.890798373000052, -2.994886976999908 ], [ 106.895274285000028, -3.018487237999921 ], [ 106.865896030000044, -3.026543877999927 ], [ 106.861175977000073, -3.02898528399993 ], [ 106.81576582100007, -3.018487237999921 ], [ 106.798594597000033, -3.01100025799 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-AC", "NAME_1": "Aceh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 95.241992187499989, 5.907031249999989 ], [ 95.282519531249989, 5.897753906249989 ], [ 95.359179687499989, 5.876757812499989 ], [ 95.366015624999989, 5.842675781249994 ], [ 95.362109374999989, 5.812402343749994 ], [ 95.342578124999989, 5.784130859374997 ], [ 95.283203125, 5.798535156249997 ], [ 95.217675781250023, 5.889501953124991 ], [ 95.241992187499989,  [...]
+{ "type": "Feature", "properties": { "ISO": "ID-KI", "NAME_1": "Kalimantan Timur" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.5478515625, 3.431982421874991 ], [ 117.63671875, 3.436083984374989 ], [ 117.680859375000011, 3.407519531249989 ], [ 117.658398437500011, 3.280517578125 ], [ 117.645800781249989, 3.247753906249997 ], [ 117.560351562499989, 3.328222656249991 ], [ 117.5375, 3.386376953124994 ], [ 117.5478515625, 3.431982421874991 ] ] ], [ [ [ 117.6491017011429 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-JB", "NAME_1": "Jawa Barat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.988820483261264, -6.027009409958827 ], [ 107.011621093750023, -6.008496093750011 ], [ 107.046289062500023, -5.904199218750009 ], [ 107.162109375, -5.957128906250006 ], [ 107.331835937499989, -5.978125 ], [ 107.373925781250023, -6.007617187500003 ], [ 107.474707031250034, -6.121777343750011 ], [ 107.56298828125, -6.182714843750006 ], [ 107.66679687499998 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-JT", "NAME_1": "Jawa Tengah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.945338520624645, -8.221180208546937 ], [ 110.843016473992662, -8.204096952712886 ], [ 110.798746372846779, -8.12167449308339 ], [ 110.786602410872547, -7.873627617820318 ], [ 110.753322789015442, -7.832596530605429 ], [ 110.578656446837499, -7.820969333467986 ], [ 110.506619500889201, -7.783090508520161 ], [ 110.441300489725791, -7.568943372738488 ], [ [...]
+{ "type": "Feature", "properties": { "ISO": "ID-BE", "NAME_1": "Bengkulu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.371777343750011, -5.366406250000011 ], [ 102.405468750000011, -5.40478515625 ], [ 102.3671875, -5.478710937500011 ], [ 102.285937499999989, -5.483496093750006 ], [ 102.135546874999989, -5.360546875000011 ], [ 102.110742187500023, -5.322558593750003 ], [ 102.153515625000011, -5.286230468750006 ], [ 102.198437500000011, -5.288867187500003 ], [ 102.37 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-BT", "NAME_1": "Banten" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.121386718749989, -6.614941406250011 ], [ 105.192285156250023, -6.545605468750011 ], [ 105.225683593750034, -6.529101562500003 ], [ 105.260546874999989, -6.52392578125 ], [ 105.277441406250034, -6.561425781250009 ], [ 105.252832031250023, -6.640429687500003 ], [ 105.1904296875, -6.6625 ], [ 105.142773437500011, -6.64306640625 ], [ 105.121386718749989, [...]
+{ "type": "Feature", "properties": { "ISO": "ID-JK", "NAME_1": "Jakarta Raya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.729800545523176, -6.059996934290846 ], [ 106.8251953125, -6.098242187500006 ], [ 106.8779296875, -6.091992187500011 ], [ 106.931640625, -6.073437500000011 ], [ 106.988820483261264, -6.027009409958827 ], [ 106.984973992655569, -6.235433037804455 ], [ 106.923892450276298, -6.381522312204936 ], [ 106.762920362784484, -6.301423841637018 ], [ 106.701993850 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-KB", "NAME_1": "Kalimantan Barat" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 108.877246093749989, -1.53984375 ], [ 108.956835937499989, -1.5640625 ], [ 108.953125, -1.61962890625 ], [ 108.837890625, -1.66162109375 ], [ 108.8037109375, -1.567773437500009 ], [ 108.877246093749989, -1.53984375 ] ] ], [ [ [ 109.699511718749989, -1.00732421875 ], [ 109.743359375000011, -1.039355468750003 ], [ 109.760546874999989, -1.10517578 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-LA", "NAME_1": "Lampung" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.831445312500023, -4.162890625 ], [ 105.886523437499989, -4.553906250000011 ], [ 105.890527343750023, -4.659765625 ], [ 105.879296875000023, -4.793652343750011 ], [ 105.88720703125, -5.009570312500003 ], [ 105.816113281250011, -5.6765625 ], [ 105.802734375, -5.71640625 ], [ 105.748339843749989, -5.818261718750009 ], [ 105.676562499999989, -5.817578125000011 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-SS", "NAME_1": "Sumatera Selatan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.517899239329836, -1.728735429428237 ], [ 104.515917968749989, -1.819433593750006 ], [ 104.56875, -1.921777343750009 ], [ 104.676367187500034, -1.987207031250009 ], [ 104.791015625, -2.040820312500003 ], [ 104.84521484375, -2.092968750000011 ], [ 104.844531249999989, -2.171777343750009 ], [ 104.826074218750023, -2.234179687500003 ], [ 104.787304687 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-BB", "NAME_1": "Bangka-Belitung" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 107.432812500000011, -2.92529296875 ], [ 107.409277343750034, -2.900585937500011 ], [ 107.402441406250034, -2.872949218750009 ], [ 107.419335937500023, -2.838085937500011 ], [ 107.474414062499989, -2.834667968750011 ], [ 107.499707031250011, -2.845019531250003 ], [ 107.473339843750011, -2.899511718750006 ], [ 107.432812500000011, -2.92529296875  [...]
+{ "type": "Feature", "properties": { "ISO": "ID-BA", "NAME_1": "Bali" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.48046875, -8.715429687500006 ], [ 115.540625, -8.675390625 ], [ 115.561425781250023, -8.669921875 ], [ 115.61328125, -8.713183593750003 ], [ 115.609960937500034, -8.769824218750003 ], [ 115.581933593750023, -8.80419921875 ], [ 115.500878906250023, -8.742871093750011 ], [ 115.48046875, -8.715429687500006 ] ] ], [ [ [ 115.549414062500034, -8.208300781250 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-JI", "NAME_1": "Jawa Timur" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.586035156250034, -5.803613281250009 ], [ 112.648535156250034, -5.730859375 ], [ 112.690039062500034, -5.726171875 ], [ 112.727343749999989, -5.752734375 ], [ 112.719433593750011, -5.81103515625 ], [ 112.697949218750011, -5.846484375 ], [ 112.602148437500034, -5.843652343750009 ], [ 112.586035156250034, -5.803613281250009 ] ] ], [ [ [ 113.06738281 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-KS", "NAME_1": "Kalimantan Selatan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.326562500000023, -3.5390625 ], [ 116.395312499999989, -3.42333984375 ], [ 116.426953125000011, -3.39990234375 ], [ 116.424121093749989, -3.464453125 ], [ 116.387792968750034, -3.63671875 ], [ 116.326562500000023, -3.5390625 ] ] ], [ [ [ 116.282031249999989, -3.534765625 ], [ 116.30517578125, -3.718554687500003 ], [ 116.318652343749989, -3 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-NT", "NAME_1": "Nusa Tenggara Timur" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.010546874999989, -8.448339843750006 ], [ 123.089453125000034, -8.43984375 ], [ 123.137890625000011, -8.456933593750009 ], [ 123.153125, -8.475781250000011 ], [ 123.030078124999989, -8.494824218750011 ], [ 122.977343749999989, -8.545214843750003 ], [ 122.945507812500011, -8.60400390625 ], [ 122.887792968750034, -8.587304687500009 ], [ 122 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-SN", "NAME_1": "Sulawesi Selatan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.633398437500034, -7.018261718750011 ], [ 120.745507812500023, -7.06015625 ], [ 120.78173828125, -7.063085937500006 ], [ 120.7744140625, -7.118945312500003 ], [ 120.67236328125, -7.124707031250011 ], [ 120.640820312500011, -7.115820312500006 ], [ 120.633398437500034, -7.018261718750011 ] ] ], [ [ [ 120.477343749999989, -5.775292968750009 ],  [...]
+{ "type": "Feature", "properties": { "ISO": "ID-SR", "NAME_1": "Sulawesi Barat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.467480468750011, -3.512988281250003 ], [ 119.419824218750023, -3.475390625 ], [ 119.362109374999989, -3.458984375 ], [ 119.240039062499989, -3.475292968750011 ], [ 118.99462890625, -3.53759765625 ], [ 118.922167968749989, -3.482714843750003 ], [ 118.86767578125, -3.398046875 ], [ 118.832812499999989, -3.280175781250009 ], [ 118.8125, -3.156640625 ], [...]
+{ "type": "Feature", "properties": { "ISO": "ID-KR", "NAME_1": "Kepulauan Riau" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.214550781250011, 3.128564453124994 ], [ 106.200976562499989, 3.204882812499989 ], [ 106.223730468750034, 3.229589843749991 ], [ 106.271191406250011, 3.21630859375 ], [ 106.285253906250034, 3.157128906249994 ], [ 106.28369140625, 3.088232421874991 ], [ 106.214550781250011, 3.128564453124994 ] ] ], [ [ [ 105.730664062500011, 3.036962890624991 ] [...]
+{ "type": "Feature", "properties": { "ISO": "ID-GO", "NAME_1": "Gorontalo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 122.19723315434932, 1.027604908741727 ], [ 122.436621093750034, 1.01806640625 ], [ 122.54931640625, 0.984472656249991 ], [ 122.657421875000011, 0.940576171874994 ], [ 122.789843749999989, 0.862890625 ], [ 122.838281250000023, 0.845703125 ], [ 122.892480468750023, 0.85 ], [ 122.960058593750034, 0.922998046874994 ], [ 123.012792968750034, 0.93896484375 ], [ 12 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-JA", "NAME_1": "Jambi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.524649347229598, -0.739342976536898 ], [ 103.53271484375, -0.7546875 ], [ 103.577539062500023, -0.795703125 ], [ 103.721093750000023, -0.88671875 ], [ 103.940039062500034, -0.979101562500006 ], [ 104.061132812500034, -1.021386718750009 ], [ 104.198535156249989, -1.054296875 ], [ 104.257519531250011, -1.053417968750011 ], [ 104.360546875000011, -1.03837890625 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-KT", "NAME_1": "Kalimantan Tengah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.315926495331269, -3.419863265387844 ], [ 114.304589843750023, -3.410058593750009 ], [ 114.301660156250023, -3.36474609375 ], [ 114.344335937500034, -3.23515625 ], [ 114.292675781250011, -3.30625 ], [ 114.236328125, -3.361132812500003 ], [ 114.177929687500011, -3.354394531250009 ], [ 114.127636718750011, -3.327246093750006 ], [ 114.108984375000034 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-PB", "NAME_1": "Papua Barat" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.615917968750011, -0.417285156250003 ], [ 130.656933593750011, -0.4365234375 ], [ 130.684277343750011, -0.469140625 ], [ 130.626660156250011, -0.528710937500009 ], [ 130.569140625000045, -0.529980468750011 ], [ 130.465429687500034, -0.486523437500011 ], [ 130.52587890625, -0.44873046875 ], [ 130.564160156250011, -0.44091796875 ], [ 130.5974609375 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-SU", "NAME_1": "Sumatera Utara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.786425781249989, 1.145898437499994 ], [ 97.903222656250023, 1.018261718749997 ], [ 97.931933593749989, 0.973925781249989 ], [ 97.902050781250011, 0.884228515624997 ], [ 97.87646484375, 0.628320312499994 ], [ 97.820410156250034, 0.564453125 ], [ 97.683984375000023, 0.59609375 ], [ 97.682519531250023, 0.641064453124997 ], [ 97.603906250000023, 0 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-RI", "NAME_1": "Riau" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.067578125000011, 1.014746093749991 ], [ 103.166406250000023, 0.870166015624989 ], [ 103.13720703125, 0.841650390624991 ], [ 103.086718749999989, 0.84814453125 ], [ 103.033398437500011, 0.88203125 ], [ 102.963964843750034, 0.942675781249989 ], [ 102.886328125000034, 0.996777343749997 ], [ 102.787988281250023, 1.030957031249997 ], [ 102.726464843750023,  [...]
+{ "type": "Feature", "properties": { "ISO": "ID-SA", "NAME_1": "Sulawesi Utara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.585644531250011, 3.571093749999989 ], [ 125.6435546875, 3.476513671874997 ], [ 125.658105468750023, 3.43603515625 ], [ 125.633203125000023, 3.405419921874994 ], [ 125.511523437499989, 3.461132812499997 ], [ 125.517578125, 3.549609374999989 ], [ 125.501171875000011, 3.593212890624997 ], [ 125.468554687499989, 3.639111328124997 ], [ 125.4552734 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-MU", "NAME_1": "Maluku Utara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.804296875000034, -0.694433593750006 ], [ 127.837890625, -0.72412109375 ], [ 127.86328125, -0.759863281250006 ], [ 127.880175781250045, -0.808691406250006 ], [ 127.84228515625, -0.847753906250006 ], [ 127.761132812500023, -0.883691406250009 ], [ 127.667578125000034, -0.83203125 ], [ 127.642871093750045, -0.783984375 ], [ 127.623828125000045, -0. [...]
+{ "type": "Feature", "properties": { "ISO": "ID-SB", "NAME_1": "Sumatera Barat" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 100.464257812500023, -3.116894531250011 ], [ 100.433886718749989, -3.141308593750011 ], [ 100.425097656249989, -3.182910156250003 ], [ 100.465136718749989, -3.328515625 ], [ 100.346093750000023, -3.229199218750011 ], [ 100.348437499999989, -3.158789062500006 ], [ 100.33203125, -3.113085937500003 ], [ 100.259960937500011, -3.056933593750003 ], [ 1 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-YO", "NAME_1": "Yogyakarta" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.843016473992662, -8.204096952712886 ], [ 110.830175781250034, -8.201953125 ], [ 110.607226562499989, -8.1494140625 ], [ 110.038671875000034, -7.890527343750009 ], [ 110.116669143166405, -7.761593112532125 ], [ 110.136512892755775, -7.676792086985245 ], [ 110.301309035183806, -7.669143975314228 ], [ 110.441300489725791, -7.568943372738488 ], [ 110.506619 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-MA", "NAME_1": "Maluku" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.834277343750045, -3.00439453125 ], [ 127.938378906250023, -2.952343750000011 ], [ 127.987890625000034, -2.9365234375 ], [ 127.937695312500011, -3.02001953125 ], [ 127.849609375, -3.016308593750011 ], [ 127.834277343750045, -3.00439453125 ] ] ], [ [ [ 127.554492187500045, -3.254296875 ], [ 127.60625, -3.315136718750011 ], [ 127.629296875000023, -3.359 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-NB", "NAME_1": "Nusa Tenggara Barat" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.546093750000011, -8.151953125 ], [ 117.6650390625, -8.148242187500003 ], [ 117.669238281249989, -8.189257812500003 ], [ 117.556347656250011, -8.367285156250006 ], [ 117.533593750000023, -8.36796875 ], [ 117.490429687500011, -8.348730468750006 ], [ 117.505957031250034, -8.30703125 ], [ 117.482128906250011, -8.2392578125 ], [ 117.490527343 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-SG", "NAME_1": "Sulawesi Tenggara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.02294921875, -5.902148437500003 ], [ 124.05126953125, -5.973730468750006 ], [ 124.042089843750034, -6.021582031250006 ], [ 124.005664062499989, -5.966699218750009 ], [ 123.972265625000034, -5.939355468750009 ], [ 123.975781250000011, -5.880175781250003 ], [ 124.02294921875, -5.902148437500003 ] ] ], [ [ [ 123.550097656249989, -5.3318359375 [...]
+{ "type": "Feature", "properties": { "ISO": "ID-ST", "NAME_1": "Sulawesi Tengah" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.548535156250011, -1.508203125 ], [ 123.561328124999989, -1.551855468750006 ], [ 123.58203125, -1.590917968750006 ], [ 123.616406250000011, -1.62744140625 ], [ 123.597558593750023, -1.704296875000011 ], [ 123.528613281249989, -1.710839843750009 ], [ 123.482519531250034, -1.681445312500003 ], [ 123.486621093749989, -1.534863281250011 ], [ 123. [...]
+{ "type": "Feature", "properties": { "ISO": "ID-PA", "NAME_1": "Papua" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.796191406250045, -8.173632812500003 ], [ 138.897656250000011, -8.3375 ], [ 138.895117187500034, -8.388671875 ], [ 138.845507812500045, -8.401757812500009 ], [ 138.59423828125, -8.371484375 ], [ 138.567187500000045, -8.330273437500011 ], [ 138.563378906250023, -8.30908203125 ], [ 138.620996093750023, -8.268457031250009 ], [ 138.676660156250023, -8.1992 [...]
 ]
 }
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/iran.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/iran.geojson
index 251d279..44ed641 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/iran.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/iran.geojson
@@ -2,7 +2,7 @@
 "type": "FeatureCollection",
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
-{ "type": "Feature", "properties": { "ISO": "IR-02", "NAME_1": "West Azarbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.590435425000067, 39.771526998000084 ], [ 44.646504354000115, 39.719540507000048 ], [ 44.827836955000066, 39.62879669199999 ], [ 44.872278687000062, 39.625075989000081 ], [ 44.928399292000108, 39.488236796000095 ], [ 44.961627238000062, 39.453768616000033 ], [ 44.957028036000111, 39.434493307000096 ], [ 45.006379028000083, 39.417956848000088 ], [ 45. [...]
+{ "type": "Feature", "properties": { "ISO": "IR-02", "NAME_1": "West Azarbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.590435425000067, 39.771526998000084 ], [ 44.646504354000115, 39.719540507000048 ], [ 44.827836955000066, 39.628796692 ], [ 44.872278687000062, 39.625075989000081 ], [ 44.928399292000108, 39.488236796000095 ], [ 44.961627238000062, 39.453768616000033 ], [ 44.957028036000111, 39.434493307000096 ], [ 45.006379028000083, 39.417956848000088 ], [ 45.08797 [...]
 { "type": "Feature", "properties": { "ISO": "IR-01", "NAME_1": "East Azarbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.378233277000049, 38.924705303000096 ], [ 46.514038940000034, 38.882175599000036 ], [ 46.553726440000048, 38.889823710000101 ], [ 46.599201701000084, 38.91969268800004 ], [ 46.652170044000059, 38.992944031000022 ], [ 46.744825888000037, 39.040253804000074 ], [ 46.773764690000121, 39.085367330000039 ], [ 46.866162150000036, 39.165362448000067 ], [ 46. [...]
 { "type": "Feature", "properties": { "ISO": "IR-03", "NAME_1": "Ardebil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.957258341000056, 39.707344869000039 ], [ 48.052032919000112, 39.65008738300007 ], [ 48.2886076260001, 39.445035299000054 ], [ 48.338940471000058, 39.378941142000102 ], [ 48.153525432000094, 39.31904815700004 ], [ 48.106189820000054, 39.269180400000081 ], [ 48.104329468000117, 39.234841411000062 ], [ 48.142156616000079, 39.181201274000088 ], [ 48.27129602100 [...]
 { "type": "Feature", "properties": { "ISO": "IR-19", "NAME_1": "Gilan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.612962150882538, 38.395646442928978 ], [ 48.683208862000129, 38.398019104000085 ], [ 48.777725057000112, 38.444812114000101 ], [ 48.874278191000087, 38.434068101000037 ], [ 48.874847852000073, 38.242743231000077 ], [ 48.949066602000073, 37.966864325000074 ], [ 48.944509311000047, 37.903387762000079 ], [ 48.987478061000047, 37.842474677000041 ], [ 48.983164910 [...]
@@ -14,9 +14,9 @@
 { "type": "Feature", "properties": { "ISO": "IR-27", "NAME_1": "Golestan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.708671509000055, 38.118656311000066 ], [ 55.963022909000074, 38.066514791000102 ], [ 56.166740624780005, 38.080792149737874 ], [ 56.181511671926103, 37.903991603929342 ], [ 56.162494744636717, 37.770408026709049 ], [ 56.284451124719624, 37.695167140750925 ], [ 56.303054640858988, 37.634137275215039 ], [ 56.247967563752013, 37.57346914308647 ], [ 56.1041003 [...]
 { "type": "Feature", "properties": { "ISO": "IR-30", "NAME_1": "Razavi Khorasan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.734827149952991, 37.898271669302062 ], [ 57.763016399000037, 37.899393209 ], [ 57.800016723000113, 37.867638042000081 ], [ 57.884145955000065, 37.865338440000059 ], [ 58.040932251000072, 37.805703838000042 ], [ 58.173533976000101, 37.781622620000107 ], [ 58.206813599000043, 37.678734843000043 ], [ 58.357812134000085, 37.633311260000099 ], [ 58.47966 [...]
 { "type": "Feature", "properties": { "ISO": "IR-29", "NAME_1": "South Khorasan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.488460679816512, 34.080927320439457 ], [ 60.528015585000048, 33.841449687000036 ], [ 60.486881145000041, 33.711380107000096 ], [ 60.511789185000112, 33.638387146000056 ], [ 60.574834432000046, 33.587795919000101 ], [ 60.655553019000081, 33.559890645000038 ], [ 60.846032348000051, 33.555782370000102 ], [ 60.8951249590001, 33.541132101000031 ], [ 60.92 [...]
-{ "type": "Feature", "properties": { "ISO": "IR-13", "NAME_1": "Sistan and Baluchestan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.606258629632009, 31.388741287780192 ], [ 61.686911255000098, 31.373176575000073 ], [ 61.749233032000063, 31.302379863000041 ], [ 61.742721802000062, 31.239541321000061 ], [ 61.779205363000074, 31.181095276000079 ], [ 61.826334269000085, 31.03459259099999 ], [ 61.800185995000106, 30.961418762 ], [ 61.80225305200014, 30.847058818000036 ], [ 60. [...]
+{ "type": "Feature", "properties": { "ISO": "IR-13", "NAME_1": "Sistan and Baluchestan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.606258629632009, 31.388741287780192 ], [ 61.686911255000098, 31.373176575000073 ], [ 61.749233032000063, 31.302379863000041 ], [ 61.742721802000062, 31.239541321000061 ], [ 61.779205363000074, 31.181095276000079 ], [ 61.826334269000085, 31.034592591 ], [ 61.800185995000106, 30.961418762 ], [ 61.80225305200014, 30.847058818000036 ], [ 60.84437 [...]
 { "type": "Feature", "properties": { "ISO": "IR-06", "NAME_1": "Bushehr" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.678802931000064, 27.322373765000066 ], [ 52.601328972000033, 27.352932033000059 ], [ 52.579112175000034, 27.392767645000049 ], [ 52.605235222000033, 27.412054755000042 ], [ 52.666514519000032, 27.415350653000075 ], [ 52.678965691000087, 27.425279039000088 ], [ 52.670095248000052, 27.448635158000059 ], [ 52.598399285000085, 27.485825914000088 ], [ 52. [...]
-{ "type": "Feature", "properties": { "ISO": "IR-23", "NAME_1": "Hormozgan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 59.251068556000064, 25.430731512000079 ], [ 59.117198113000086, 25.394191799000055 ], [ 59.024180535000085, 25.403225002000056 ], [ 58.994313998000052, 25.419623114000046 ], [ 58.92351321700005, 25.513373114000046 ], [ 58.840342644000032, 25.532904364000046 ], [ 58.825205925000034, 25.560370184000078 ], [ 58.546397332000083, 25.593654690000051 ], [ 58 [...]
+{ "type": "Feature", "properties": { "ISO": "IR-23", "NAME_1": "Hormozgan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 59.251068556000064, 25.430731512000079 ], [ 59.117198113000086, 25.394191799000055 ], [ 59.024180535000085, 25.403225002000056 ], [ 58.994313998000052, 25.419623114000046 ], [ 58.92351321700005, 25.513373114000046 ], [ 58.840342644000032, 25.532904364000046 ], [ 58.825205925000034, 25.560370184000078 ], [ 58.546397332000083, 25.593654690000051 ], [ 58 [...]
 { "type": "Feature", "properties": { "ISO": "IR-21", "NAME_1": "Mazandaran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.576303083431441, 36.989168601212072 ], [ 51.088633660000085, 36.737005927000041 ], [ 51.909027540000068, 36.582709052000041 ], [ 52.094086134000065, 36.602525132000039 ], [ 52.258555535000085, 36.650946356000077 ], [ 52.779307488000086, 36.740383205000057 ], [ 53.115733269000032, 36.822251695000034 ], [ 53.447601759000065, 36.881903387000079 ], [ 53.8859 [...]
 { "type": "Feature", "properties": { "ISO": "IR-12", "NAME_1": "Semnan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.345819126051822, 35.885535996988665 ], [ 53.472426385169513, 35.911322536805585 ], [ 53.586631300793897, 35.973515123224331 ], [ 53.645749139311306, 36.052993476167956 ], [ 53.787652621771031, 36.163761909584423 ], [ 53.825686476349802, 36.304761054479059 ], [ 53.861136509442304, 36.360313219579382 ], [ 53.936170688926154, 36.421033026752752 ], [ 54.01936974 [...]
 { "type": "Feature", "properties": { "ISO": "IR-11", "NAME_1": "Zanjan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.882525669424069, 37.202794094172077 ], [ 49.033317498803513, 37.126054592345554 ], [ 49.186693149669111, 36.977433173302302 ], [ 49.24581098818652, 36.813076280445955 ], [ 49.164368931381034, 36.79062287004939 ], [ 49.055538364304027, 36.732538561205615 ], [ 49.014817336350973, 36.656780911309966 ], [ 49.035694613815338, 36.593425604907736 ], [ 49.0893347509 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/italy.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/italy.geojson
index 7ffecf0..32a9230 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/italy.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/italy.geojson
@@ -2,12 +2,12 @@
 "type": "FeatureCollection",
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
-{ "type": "Feature", "properties": { "ISO": "IT-AO", "NAME_1": "Aoste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.022082560000115, 45.92525990899999 ], [ 7.090192097000113, 45.880508118000122 ], [ 7.153547404000022, 45.87652903300004 ], [ 7.286665893000105, 45.913426005000062 ], [ 7.393842814000038, 45.915699768000096 ], [ 7.541120646000138, 45.984119365000069 ], [ 7.643026571000121, 45.966342672000039 ], [ 7.706278523, 45.925724997000103 ], [ 7.831232137000143, 45.914459 [...]
+{ "type": "Feature", "properties": { "ISO": "IT-AO", "NAME_1": "Aoste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.022082560000115, 45.925259909 ], [ 7.090192097000113, 45.880508118000122 ], [ 7.153547404000022, 45.87652903300004 ], [ 7.286665893000105, 45.913426005000062 ], [ 7.393842814000038, 45.915699768000096 ], [ 7.541120646000138, 45.984119365000069 ], [ 7.643026571000121, 45.966342672000039 ], [ 7.706278523, 45.925724997000103 ], [ 7.831232137000143, 45.91445953400 [...]
 { "type": "Feature", "properties": { "ISO": "IT-VB", "NAME_1": "Verbano-Cusio-Ossola" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.84962011600004, 45.939712062000112 ], [ 7.870201292731351, 45.940369630770249 ], [ 7.898204794000065, 45.981948954000089 ], [ 7.985848022000084, 45.999312236000023 ], [ 8.010652710000102, 46.029697978000073 ], [ 8.025328817000087, 46.091141256000057 ], [ 8.110594930000076, 46.12695302300007 ], [ 8.132299032000077, 46.159354147000087 ], [ 8.12950 [...]
 { "type": "Feature", "properties": { "ISO": "IT-VA", "NAME_1": "Varese" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.728973717163285, 46.108235732892751 ], [ 8.808950236000101, 46.089745993000079 ], [ 8.834375041000015, 46.066388245000027 ], [ 8.767919149000079, 45.983085836 ], [ 8.864450724000079, 45.953423564000033 ], [ 8.912096394000031, 45.88340199800011 ], [ 8.900361210301583, 45.784747611712874 ], [ 8.950920293536683, 45.725937794593506 ], [ 8.911874882419852, 45.6738 [...]
-{ "type": "Feature", "properties": { "ISO": "IT-CO", "NAME_1": "Como" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.908884719317435, 45.828292631305978 ], [ 9.002426798000073, 45.82071848599999 ], [ 9.059270874000021, 45.881955058000116 ], [ 9.051726115000065, 45.915544739000055 ], [ 9.010798380000068, 45.926655172000054 ], [ 8.980515991000118, 45.96437896800002 ], [ 9.015552612000135, 45.993111064000018 ], [ 8.997775919000105, 46.027940979000093 ], [ 9.059167521000091, 46.0 [...]
+{ "type": "Feature", "properties": { "ISO": "IT-CO", "NAME_1": "Como" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.908884719317435, 45.828292631305978 ], [ 9.002426798000073, 45.820718486 ], [ 9.059270874000021, 45.881955058000116 ], [ 9.051726115000065, 45.915544739000055 ], [ 9.010798380000068, 45.926655172000054 ], [ 8.980515991000118, 45.96437896800002 ], [ 9.015552612000135, 45.993111064000018 ], [ 8.997775919000105, 46.027940979000093 ], [ 9.059167521000091, 46.061789 [...]
 { "type": "Feature", "properties": { "ISO": "IT-SO", "NAME_1": "Sondrio" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.22483143702118, 46.23118805818234 ], [ 9.275175008000076, 46.331384990000046 ], [ 9.260912313000119, 46.416651103 ], [ 9.237967977000068, 46.43654653 ], [ 9.245822794000105, 46.461041158000072 ], [ 9.282306355000117, 46.497369691000031 ], [ 9.330985555000069, 46.501503805000041 ], [ 9.384625691000025, 46.466415508000026 ], [ 9.434648478000014, 46.49832570400 [...]
-{ "type": "Feature", "properties": { "ISO": "IT-BZ", "NAME_1": "Bozen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.451828554544136, 46.546704427767111 ], [ 10.465903361000102, 46.578475851000078 ], [ 10.459082072000058, 46.623563538000028 ], [ 10.395623413000123, 46.638808085000065 ], [ 10.36916508000013, 46.672397766000088 ], [ 10.394383179000073, 46.700819804 ], [ 10.399654175000109, 46.735546367000055 ], [ 10.42869633, 46.755648499000088 ], [ 10.417224162000082, 46.798 [...]
+{ "type": "Feature", "properties": { "ISO": "IT-BZ", "NAME_1": "Bozen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.451828554544136, 46.546704427767111 ], [ 10.465903361000102, 46.578475851000078 ], [ 10.459082072000058, 46.623563538000028 ], [ 10.395623413000123, 46.638808085000065 ], [ 10.36916508000013, 46.672397766000088 ], [ 10.394383179000073, 46.700819804 ], [ 10.399654175000109, 46.735546367000055 ], [ 10.42869633, 46.755648499000088 ], [ 10.417224162000082, 46.798 [...]
 { "type": "Feature", "properties": { "ISO": "IT-IM", "NAME_1": "Imperia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.502289259000065, 43.792222398000035 ], [ 7.477868693000062, 43.86551483200013 ], [ 7.630934285000137, 43.993543193000036 ], [ 7.65336185700005, 44.039690247000053 ], [ 7.689948771000076, 44.06733713800007 ], [ 7.687931964188806, 44.09079857219632 ], [ 7.738007650132943, 44.099378895019981 ], [ 7.730866536661324, 44.121703114207321 ], [ 7.757541342259117, 44. [...]
 { "type": "Feature", "properties": { "ISO": "IT-CN", "NAME_1": "Cuneo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.687931964188806, 44.09079857219632 ], [ 7.64188968900001, 44.143559876000083 ], [ 7.655635620000055, 44.176064352000097 ], [ 7.34061608900015, 44.123664449000088 ], [ 7.309300171000132, 44.147487284000064 ], [ 7.046060425000121, 44.240298157000055 ], [ 6.982808471000055, 44.241745098000067 ], [ 6.869843791000051, 44.362926331 ], [ 6.877181844000035, 44.4143960 [...]
 { "type": "Feature", "properties": { "ISO": "IT-TO", "NAME_1": "Turin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.03881884212556, 44.712119593556416 ], [ 6.998414754000066, 44.793752747000056 ], [ 7.000791870000114, 44.8329751590001 ], [ 6.932682332000127, 44.8616555790001 ], [ 6.847106161000056, 44.859071758000098 ], [ 6.745406941000027, 44.907802633000031 ], [ 6.727940307000097, 44.928731588000019 ], [ 6.723496134000072, 45.013377584000025 ], [ 6.651665894000075, 45.035 [...]
@@ -21,8 +21,8 @@
 { "type": "Feature", "properties": { "ISO": "IT-PD", "NAME_1": "Padova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.149099155000044, 45.292181708000044 ], [ 12.168793165000068, 45.262152411000045 ], [ 12.199392123000052, 45.274603583000044 ], [ 12.201862800827598, 45.247439241227994 ], [ 12.160751959035679, 45.218918732713348 ], [ 12.152512213068178, 45.194177520775952 ], [ 12.097272952684591, 45.205713165130419 ], [ 11.987453612494221, 45.190584990904597 ], [ 11.96194335 [...]
 { "type": "Feature", "properties": { "ISO": "IT-RO", "NAME_1": "Rovigo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.321256412437899, 45.164807313841131 ], [ 12.328461134000065, 45.10101959800005 ], [ 12.307302280000044, 45.107855536000045 ], [ 12.307302280000044, 45.12836334800005 ], [ 12.296722852000073, 45.088568427000041 ], [ 12.340830925000091, 45.081447658000059 ], [ 12.376231316000087, 45.038967190000051 ], [ 12.35515384200005, 45.024644273000035 ], [ 12.36882571700 [...]
 { "type": "Feature", "properties": { "ISO": "IT-FE", "NAME_1": "Ferrara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.393396594381445, 44.793452193104393 ], [ 12.375661655000044, 44.792222398000035 ], [ 12.302989129000082, 44.842922268000052 ], [ 12.266368035000085, 44.826646226000037 ], [ 12.280039910000085, 44.820502020000049 ], [ 12.246592644000089, 44.711615302000041 ], [ 12.269582296230839, 44.62975477246362 ], [ 12.205334480701708, 44.573471930485198 ], [ 12.05477783 [...]
-{ "type": "Feature", "properties": { "ISO": "IT-RA", "NAME_1": "Ravenna" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.269582296230839, 44.62975477246362 ], [ 12.285817905000044, 44.602687893000052 ], [ 12.283702019000089, 44.487616278000075 ], [ 12.318207227000073, 44.361151434000078 ], [ 12.38561536573245, 44.228496092479823 ], [ 12.354924330193683, 44.195509269437196 ], [ 12.287468272642627, 44.228764885690907 ], [ 12.218759774244177, 44.21487816709373 ], [ 12.2009619220 [...]
-{ "type": "Feature", "properties": { "ISO": "IT-FC", "NAME_1": "Forlì-Cesena" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.38561536573245, 44.228496092479823 ], [ 12.458018425000091, 44.166408596000053 ], [ 12.428730485423557, 44.147334218799131 ], [ 12.456416032773689, 44.094303211324132 ], [ 12.365383314288522, 44.063849108249713 ], [ 12.361669935319242, 44.052807848203599 ], [ 12.394804702475028, 44.029549790990018 ], [ 12.326184094820121, 43.958578108193137 ], [ 12.244 [...]
+{ "type": "Feature", "properties": { "ISO": "IT-RA", "NAME_1": "Ravenna" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.269582296230839, 44.62975477246362 ], [ 12.285817905000044, 44.602687893000052 ], [ 12.283702019000089, 44.487616278000075 ], [ 12.318207227000073, 44.361151434000078 ], [ 12.385615365732452, 44.228496092479823 ], [ 12.354924330193683, 44.195509269437196 ], [ 12.287468272642627, 44.228764885690907 ], [ 12.218759774244177, 44.21487816709373 ], [ 12.200961922 [...]
+{ "type": "Feature", "properties": { "ISO": "IT-FC", "NAME_1": "Forlì-Cesena" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.385615365732452, 44.228496092479823 ], [ 12.458018425000091, 44.166408596000053 ], [ 12.428730485423557, 44.147334218799131 ], [ 12.456416032773689, 44.094303211324132 ], [ 12.365383314288522, 44.063849108249713 ], [ 12.361669935319242, 44.052807848203599 ], [ 12.394804702475028, 44.029549790990018 ], [ 12.326184094820121, 43.958578108193137 ], [ 12.24 [...]
 { "type": "Feature", "properties": { "ISO": "IT-AN", "NAME_1": "Ancona" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.177206383015417, 43.751518513248975 ], [ 13.399668816000087, 43.635646877000056 ], [ 13.473399285000085, 43.612005927000041 ], [ 13.516123894000089, 43.631740627000056 ], [ 13.578868035000085, 43.57290273600006 ], [ 13.615570509000065, 43.560492255000042 ], [ 13.646966413963892, 43.475280590777523 ], [ 13.619318909639958, 43.460337121960606 ], [ 13.608222717 [...]
 { "type": "Feature", "properties": { "ISO": "IT-MC", "NAME_1": "Macerata" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.646966413963892, 43.475280590777523 ], [ 13.744997028384391, 43.292245576618832 ], [ 13.600993712989464, 43.267834674030951 ], [ 13.606838440241802, 43.235853470860945 ], [ 13.590139220548565, 43.210376175520082 ], [ 13.533691464689355, 43.211474808015964 ], [ 13.508444881426101, 43.173440138651472 ], [ 13.452502496892691, 43.154818312315228 ], [ 13.434265 [...]
 { "type": "Feature", "properties": { "ISO": "IT-FM", "NAME_1": "Fermo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.744997028384391, 43.292245576618832 ], [ 13.853485288725958, 43.067356655087679 ], [ 13.802812568944887, 43.06092914826155 ], [ 13.779895087688146, 43.076463816951559 ], [ 13.550412656618789, 42.992517280448112 ], [ 13.462478082797247, 42.968424262070016 ], [ 13.418049370382107, 42.974038275446048 ], [ 13.397790580970536, 42.95941547254597 ], [ 13.40196538589 [...]
@@ -48,7 +48,7 @@
 { "type": "Feature", "properties": { "ISO": "IT-NA", "NAME_1": "Napoli" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.471364780000044, 40.624660549000055 ], [ 14.422048373000052, 40.61554596600007 ], [ 14.342621290000068, 40.57062409100007 ], [ 14.32984459700009, 40.584458726000037 ], [ 14.337738477000073, 40.624416408000059 ], [ 14.387380405000044, 40.636948960000041 ], [ 14.476369627000054, 40.695102127000041 ], [ 14.474131707000083, 40.729681708000044 ], [ 14.4426 [...]
 { "type": "Feature", "properties": { "ISO": "IT-CE", "NAME_1": "Caserta" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.010078434600286, 40.936830928165939 ], [ 13.965342644000089, 40.99640534100007 ], [ 13.917979363000086, 41.023667710000041 ], [ 13.910655144000089, 41.064642645000049 ], [ 13.851725251000062, 41.147315694000042 ], [ 13.74366407134597, 41.23760326943394 ], [ 13.804921944092428, 41.253733034052232 ], [ 13.865434641895206, 41.302468387506053 ], [ 13.8755640361 [...]
 { "type": "Feature", "properties": { "ISO": "IT-LT", "NAME_1": "Latina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.74366407134597, 41.23760326943394 ], [ 13.708506707000083, 41.256415106000077 ], [ 13.594411655000044, 41.253119208000044 ], [ 13.563649936000047, 41.237982489000046 ], [ 13.575450066000087, 41.208075262000079 ], [ 13.543955925000091, 41.206610419000071 ], [ 13.514414910000085, 41.229681708000044 ], [ 13.49968509200005, 41.221747137000079 ], [ 13.3243 [...]
-{ "type": "Feature", "properties": { "ISO": "IT-RM", "NAME_1": "Roma" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.774405430874301, 41.420939951655406 ], [ 12.65398196700005, 41.465643622000073 ], [ 12.635264519000089, 41.447495835000041 ], [ 12.448008660000085, 41.630764065000051 ], [ 12.327159050000091, 41.711371161000045 ], [ 12.223480665000068, 41.750677802000041 ], [ 12.206228061000047, 41.827337958000044 ], [ 12.147471550000091, 41.903469143000052 ], [ 12.03882897200 [...]
+{ "type": "Feature", "properties": { "ISO": "IT-RM", "NAME_1": "Roma" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.774405430874301, 41.420939951655406 ], [ 12.65398196700005, 41.465643622000073 ], [ 12.635264519000089, 41.447495835000041 ], [ 12.448008660000085, 41.630764065000051 ], [ 12.327159050000091, 41.711371161000045 ], [ 12.223480665000068, 41.750677802000041 ], [ 12.206228061000047, 41.827337958000044 ], [ 12.147471550000091, 41.903469143000052 ], [ 12.03882897200 [...]
 { "type": "Feature", "properties": { "ISO": "IT-VT", "NAME_1": "Viterbo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.739818749343126, 42.159937373232928 ], [ 11.658213738000086, 42.279364325000074 ], [ 11.539073113000086, 42.348863023000035 ], [ 11.451496463502611, 42.374371280336497 ], [ 11.487136211267114, 42.430489671161354 ], [ 11.601811508294475, 42.447386644577989 ], [ 11.607853989270154, 42.487332934467304 ], [ 11.565930159449294, 42.516117115212694 ], [ 11.5881664 [...]
 { "type": "Feature", "properties": { "ISO": "IT-GR", "NAME_1": "Grosseto" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.451496463502611, 42.374371280336497 ], [ 11.37663821700005, 42.40688711100006 ], [ 11.333018425000091, 42.400580145000049 ], [ 11.245616082000083, 42.422308661000045 ], [ 11.211273634000065, 42.418890692000048 ], [ 11.183848504000082, 42.366278387000079 ], [ 11.15593509200005, 42.366278387000079 ], [ 11.094493035000085, 42.402736721000053 ], [ 11.08 [...]
 { "type": "Feature", "properties": { "ISO": "IT-LI", "NAME_1": "Livorno" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.705054403294788, 42.940937583476476 ], [ 10.583262566000087, 42.959702867000033 ], [ 10.539073113000086, 42.949123440000051 ], [ 10.54656009200005, 42.934759833000044 ], [ 10.518565300000091, 42.925279039000088 ], [ 10.499522332000083, 42.940497137000079 ], [ 10.477549675000091, 42.990057684000078 ], [ 10.517100457000083, 43.023911851000037 ], [ 10.5 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/japan.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/japan.geojson
index 6e5fce8..cb11c90 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/japan.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/japan.geojson
@@ -3,8 +3,8 @@
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
 { "type": "Feature", "properties": { "ISO": "JP-46", "NAME_1": "Kagoshima" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.783213738000086, 31.799627997000073 ], [ 129.799571160000028, 31.745428778000075 ], [ 129.729340040000011, 31.644232489000046 ], [ 129.695977406, 31.621447336000074 ], [ 129.659373675000097, 31.64193470500004 ], [ 129.783213738000086, 31.799627997000073 ] ] ], [ [ [ 131.150645379000025, 31.47134023600006 ], [ 131.056895379000025, 31.43964264500004 [...]
-{ "type": "Feature", "properties": { "ISO": "JP-44", "NAME_1": "Ōita" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.200892146387815, 33.612709765904661 ], [ 131.367620482, 33.57480177900004 ], [ 131.417703108000069, 33.581681679000042 ], [ 131.521045117000085, 33.676370792000057 ], [ 131.667366274000074, 33.667192003000082 ], [ 131.729537981000021, 33.580236163000052 ], [ 131.73729484099999, 33.484607799000059 ], [ 131.706243498000049, 33.409582667000052 ], [ 131.640310092 [...]
-{ "type": "Feature", "properties": { "ISO": "JP-40", "NAME_1": "Fukuoka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.036274928086698, 33.45759283362726 ], [ 130.055294383000046, 33.495225676000075 ], [ 130.167979363000086, 33.534084377000056 ], [ 130.09302819100003, 33.573431708000044 ], [ 130.208011242, 33.665076437000039 ], [ 130.29029381600003, 33.574204820000034 ], [ 130.390865624000071, 33.604874022000047 ], [ 130.398692254000025, 33.669134833000044 ], [ 130.3489718 [...]
+{ "type": "Feature", "properties": { "ISO": "JP-44", "NAME_1": "Ōita" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.200892146387815, 33.612709765904661 ], [ 131.367620482, 33.57480177900004 ], [ 131.417703108000069, 33.581681679000042 ], [ 131.521045117000085, 33.676370792000057 ], [ 131.667366274000074, 33.667192003000082 ], [ 131.729537981000021, 33.580236163000052 ], [ 131.737294841, 33.484607799000059 ], [ 131.706243498000049, 33.409582667000052 ], [ 131.64031009200005 [...]
+{ "type": "Feature", "properties": { "ISO": "JP-40", "NAME_1": "Fukuoka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.036274928086698, 33.45759283362726 ], [ 130.055294383000046, 33.495225676000075 ], [ 130.167979363000086, 33.534084377000056 ], [ 130.09302819100003, 33.573431708000044 ], [ 130.208011242, 33.665076437000039 ], [ 130.29029381600003, 33.574204820000034 ], [ 130.390865624000071, 33.604874022000047 ], [ 130.398692254000025, 33.669134833000044 ], [ 130.3489718 [...]
 { "type": "Feature", "properties": { "ISO": "JP-41", "NAME_1": "Saga" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.814544364630706, 33.331246004799254 ], [ 129.851573113000086, 33.28001536700009 ], [ 129.868662957000083, 33.397447007000039 ], [ 129.787257223000097, 33.454519039000047 ], [ 129.818440047000081, 33.484211776000052 ], [ 129.871348504000025, 33.442938544000071 ], [ 129.836834739000096, 33.513254121000045 ], [ 129.853187156000104, 33.552501711000048 ], [ 129.94 [...]
 { "type": "Feature", "properties": { "ISO": "JP-42", "NAME_1": "Nagasaki" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.204101279278376, 32.94357262895047 ], [ 130.105316602000016, 32.875921942000048 ], [ 130.153634952000061, 32.842457332000038 ], [ 130.243587902000058, 32.875284097000076 ], [ 130.339419787, 32.856579311000075 ], [ 130.375782094000101, 32.747884438000085 ], [ 130.341703709000058, 32.667257674000041 ], [ 130.165986973000031, 32.592955657000061 ], [ 1 [...]
 { "type": "Feature", "properties": { "ISO": "JP-43", "NAME_1": "Kumamoto" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.344643105894534, 32.161784580893652 ], [ 130.469574415000011, 32.34711334800005 ], [ 130.512461785000028, 32.33820221600007 ], [ 130.510020379000025, 32.378485419000071 ], [ 130.571299675000091, 32.45189036700009 ], [ 130.55046634200005, 32.491685289000088 ], [ 130.598806186000047, 32.505357164000088 ], [ 130.564707879000025, 32.54633209800005 ], [ [...]
@@ -14,28 +14,28 @@
 { "type": "Feature", "properties": { "ISO": "JP-38", "NAME_1": "Ehime" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.63990319100003, 32.90892161700009 ], [ 132.558929884, 32.936753648000035 ], [ 132.504161004000025, 32.891669012000079 ], [ 132.472272326000052, 32.933672312000056 ], [ 132.501475457000083, 32.993231512000079 ], [ 132.471495412000081, 33.040685904000043 ], [ 132.419704131, 33.05192155800006 ], [ 132.382402156000012, 33.019779079000045 ], [ 132.40792239 [...]
 { "type": "Feature", "properties": { "ISO": "JP-39", "NAME_1": "Kōchi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.295664797033169, 33.530322987932436 ], [ 134.244633605000104, 33.460750226000073 ], [ 134.176527122000039, 33.236127821000082 ], [ 133.925205166000069, 33.493693261000089 ], [ 133.73939679, 33.537506879000034 ], [ 133.465909386000021, 33.454324098000086 ], [ 133.439707879000025, 33.401678778000075 ], [ 133.269379102000016, 33.346869208000044 ], [ 133. [...]
 { "type": "Feature", "properties": { "ISO": "JP-32", "NAME_1": "Shimane" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.121348504000025, 36.109767971000053 ], [ 133.123220248000052, 36.062933661000045 ], [ 133.079112175000091, 36.02094147300005 ], [ 133.08130944100003, 36.080145575000074 ], [ 133.121348504000025, 36.109767971000053 ] ] ], [ [ [ 133.090586785000028, 36.117865302000041 ], [ 133.093272332000083, 36.12335846600007 ], [ 133.113617384, 36.113511460000041 ] [...]
-{ "type": "Feature", "properties": { "ISO": "JP-35", "NAME_1": "Yamaguchi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.240407747619429, 34.189805405894731 ], [ 132.201914910000028, 34.108587958000044 ], [ 132.213226759, 33.989650783000059 ], [ 132.135590040000011, 33.938421942000048 ], [ 132.161631707000083, 33.841701565000051 ], [ 132.05591881600003, 33.777167059000078 ], [ 132.078461134, 33.834906317000048 ], [ 132.108897332000083, 33.830267645000049 ], [ 132.09 [...]
+{ "type": "Feature", "properties": { "ISO": "JP-35", "NAME_1": "Yamaguchi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.240407747619429, 34.189805405894731 ], [ 132.201914910000028, 34.108587958000044 ], [ 132.213226759, 33.989650783000059 ], [ 132.135590040000011, 33.938421942000048 ], [ 132.161631707000083, 33.841701565000051 ], [ 132.05591881600003, 33.777167059000078 ], [ 132.078461134, 33.834906317000048 ], [ 132.108897332000083, 33.830267645000049 ], [ 132.09 [...]
 { "type": "Feature", "properties": { "ISO": "JP-31", "NAME_1": "Tottori" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.25749759200005, 35.536200262000079 ], [ 133.264659050000091, 35.496161200000074 ], [ 133.400157097000033, 35.454291083000044 ], [ 133.580181711000023, 35.533602742000085 ], [ 133.731144642, 35.50290661400004 ], [ 134.03478971200002, 35.519355662000066 ], [ 134.237765161000084, 35.546651206000035 ], [ 134.36558094775495, 35.599965416311129 ], [ 134.41678795 [...]
-{ "type": "Feature", "properties": { "ISO": "JP-28", "NAME_1": "Hyōgo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.36558094775495, 35.599965416311129 ], [ 134.536987309000097, 35.672203099000058 ], [ 134.863249912653259, 35.658278401427083 ], [ 134.867716506211764, 35.57069733311539 ], [ 134.910866326919404, 35.512819728947306 ], [ 135.043829787414666, 35.50269114857764 ], [ 135.044759963401589, 35.394997463961772 ], [ 135.014839309386616, 35.366110337821794 ], [  [...]
-{ "type": "Feature", "properties": { "ISO": "JP-26", "NAME_1": "Kyōto" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.863249912653259, 35.658278401427083 ], [ 134.92701256600003, 35.641180731000077 ], [ 135.084119836000013, 35.739022447000082 ], [ 135.226845612000034, 35.772320652000076 ], [ 135.306162957000083, 35.671535549000055 ], [ 135.258827003000079, 35.656828813000061 ], [ 135.188324232000014, 35.54525757600004 ], [ 135.248225502000082, 35.591694479000068 ], [ 135.27 [...]
-{ "type": "Feature", "properties": { "ISO": "JP-18", "NAME_1": "Fukui" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.478760704942488, 35.543724789867156 ], [ 135.488291863000086, 35.520697333000044 ], [ 135.512217644000089, 35.548041083000044 ], [ 135.51099694100003, 35.498195705000057 ], [ 135.55827884200005, 35.491766669000071 ], [ 135.648945178000076, 35.542833529000063 ], [ 135.669769727000016, 35.534369208000044 ], [ 135.622080925000091, 35.486558335000041 ], [ 135.64 [...]
+{ "type": "Feature", "properties": { "ISO": "JP-28", "NAME_1": "Hyōgo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.36558094775495, 35.599965416311129 ], [ 134.536987309000097, 35.672203099000058 ], [ 134.863249912653259, 35.658278401427083 ], [ 134.867716506211764, 35.57069733311539 ], [ 134.910866326919404, 35.512819728947306 ], [ 135.043829787414666, 35.50269114857764 ], [ 135.044759963401589, 35.394997463961772 ], [ 135.014839309386616, 35.366110337821794 ], [  [...]
+{ "type": "Feature", "properties": { "ISO": "JP-26", "NAME_1": "Kyōto" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.863249912653259, 35.658278401427083 ], [ 134.92701256600003, 35.641180731000077 ], [ 135.084119836000013, 35.739022447000082 ], [ 135.226845612000034, 35.772320652000076 ], [ 135.306162957000083, 35.671535549000055 ], [ 135.258827003000079, 35.656828813000061 ], [ 135.188324232000014, 35.54525757600004 ], [ 135.248225502000082, 35.591694479000068 ], [ 135.27 [...]
+{ "type": "Feature", "properties": { "ISO": "JP-18", "NAME_1": "Fukui" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.478760704942488, 35.543724789867156 ], [ 135.488291863000086, 35.520697333000044 ], [ 135.512217644000089, 35.548041083000044 ], [ 135.51099694100003, 35.498195705000057 ], [ 135.55827884200005, 35.491766669000071 ], [ 135.648945178000076, 35.542833529000063 ], [ 135.669769727000016, 35.534369208000044 ], [ 135.622080925000091, 35.486558335000041 ], [ 135.64 [...]
 { "type": "Feature", "properties": { "ISO": "JP-17", "NAME_1": "Ishikawa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.226719262708826, 36.285602746069856 ], [ 136.430186394000089, 36.432521877000056 ], [ 136.639961431000074, 36.662600574000066 ], [ 136.760554526000078, 36.870599361000075 ], [ 136.767613314000073, 36.980998748000047 ], [ 136.720448258000033, 37.054998330000046 ], [ 136.726735873000052, 37.126613674000055 ], [ 136.670258903000104, 37.149957088000065 [...]
 { "type": "Feature", "properties": { "ISO": "JP-16", "NAME_1": "Toyama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 137.04442499167402, 36.956404201740085 ], [ 136.987741561, 36.871021637000069 ], [ 137.00554446700005, 36.835923570000034 ], [ 137.19728775100009, 36.758124588000044 ], [ 137.33334435900008, 36.762726067000074 ], [ 137.383605796000097, 36.800145455000063 ], [ 137.427107669000065, 36.922011158000089 ], [ 137.499346965000086, 36.955741617000058 ], [ 137.614563894 [...]
 { "type": "Feature", "properties": { "ISO": "JP-15", "NAME_1": "Niigata" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.614563894846839, 36.975108174328042 ], [ 137.896739129000025, 37.057521877000056 ], [ 138.097501804000103, 37.171059352000043 ], [ 138.244894979000037, 37.183789445000059 ], [ 138.550629102000016, 37.377915757000039 ], [ 138.746592644000089, 37.596869208000044 ], [ 138.857676629000025, 37.827826239000046 ], [ 139.068193436, 37.955093852000061 ], [ 1 [...]
 { "type": "Feature", "properties": { "ISO": "JP-06", "NAME_1": "Yamagata" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.548717931850604, 38.545003113135053 ], [ 139.599215149000088, 38.648254087000055 ], [ 139.773844333000056, 38.817116774000056 ], [ 139.880854949687375, 39.115106310108104 ], [ 140.024145948876367, 39.108362535102913 ], [ 140.126206903425782, 39.048469550229527 ], [ 140.405052931847308, 38.975657457025989 ], [ 140.479363641818509, 38.892200019515258 ], [ 1 [...]
 { "type": "Feature", "properties": { "ISO": "JP-05", "NAME_1": "Akita" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.880854949687375, 39.115106310108104 ], [ 139.916842552000048, 39.262499030000072 ], [ 139.995310190000055, 39.327328560000069 ], [ 140.048577150000028, 39.504669646000082 ], [ 140.059295881000025, 39.727492249000079 ], [ 140.027598504000025, 39.82453034100007 ], [ 139.96648196700005, 39.880072333000044 ], [ 139.921397332000083, 39.898504950000074 ], [ 139.76 [...]
-{ "type": "Feature", "properties": { "ISO": "JP-02", "NAME_1": "Aomori" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.94376212571035, 40.429279553146785 ], [ 139.942786333000072, 40.544585558000051 ], [ 139.860362175000091, 40.608791408000059 ], [ 140.045977276000031, 40.767770087000088 ], [ 140.1223587180001, 40.744765534000067 ], [ 140.258067254000025, 40.79564036700009 ], [ 140.321921558000099, 41.027445197000077 ], [ 140.369594440000014, 40.986054691000049 ], [ 140.369 [...]
+{ "type": "Feature", "properties": { "ISO": "JP-02", "NAME_1": "Aomori" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.94376212571035, 40.429279553146785 ], [ 139.942786333000072, 40.544585558000051 ], [ 139.860362175000091, 40.608791408000059 ], [ 140.045977276000031, 40.767770087000088 ], [ 140.1223587180001, 40.744765534000067 ], [ 140.258067254000025, 40.79564036700009 ], [ 140.321921558000099, 41.027445197000077 ], [ 140.369594440000014, 40.986054691000049 ], [ 140.369 [...]
 { "type": "Feature", "properties": { "ISO": "JP-03", "NAME_1": "Iwate" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.680988037168163, 40.451005874821249 ], [ 141.841970248000052, 40.225775458000044 ], [ 141.813324415000011, 40.183579820000034 ], [ 141.877207879000025, 40.13930898600006 ], [ 141.842458530000044, 40.070379950000074 ], [ 141.949554884, 39.996568101000037 ], [ 141.942230665000011, 39.924505927000041 ], [ 142.008799675000091, 39.752752997000073 ], [ 141.9604598 [...]
 { "type": "Feature", "properties": { "ISO": "JP-04", "NAME_1": "Miyagi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.640303531006651, 38.967503417383966 ], [ 141.673594597000033, 38.851955471000053 ], [ 141.636729363000086, 38.891099351000037 ], [ 141.588552280000044, 38.882228908000059 ], [ 141.587087436000047, 38.819240627000056 ], [ 141.521657748000052, 38.768133856000077 ], [ 141.566416863000086, 38.703558661000045 ], [ 141.463063998000052, 38.661363023000035 ], [ 141 [...]
 { "type": "Feature", "properties": { "ISO": "JP-07", "NAME_1": "Fukushima" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.933192594596051, 37.889804989305908 ], [ 141.022227410000028, 37.726955471000053 ], [ 141.041840040000011, 37.377142645000049 ], [ 140.960297071000014, 36.966213283000059 ], [ 140.80437259200005, 36.885972398000035 ], [ 140.79728604861225, 36.846489052327854 ], [ 140.570004103906172, 36.926066799243358 ], [ 140.564681431302915, 36.863176580834534 ], [ 14 [...]
 { "type": "Feature", "properties": { "ISO": "JP-08", "NAME_1": "Ibaraki" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.79728604861225, 36.846489052327854 ], [ 140.623545769000089, 36.506089585000041 ], [ 140.624766472000033, 36.36359284100007 ], [ 140.564107371000091, 36.283095802000048 ], [ 140.578379754000025, 36.160956122000073 ], [ 140.646034105000012, 36.013320444000044 ], [ 140.85717003756713, 35.732444566063862 ], [ 140.551452264610248, 35.888559068046504 ], [ 140.1 [...]
 { "type": "Feature", "properties": { "ISO": "JP-12", "NAME_1": "Chiba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.859466993000069, 35.735378322000088 ], [ 140.860664672000098, 35.687791018000041 ], [ 140.828301457000066, 35.71396943700006 ], [ 140.661056456000097, 35.688634978000039 ], [ 140.483467497000106, 35.56599105500004 ], [ 140.385918569000069, 35.380998573000056 ], [ 140.413096550000091, 35.301214911000045 ], [ 140.394195275000015, 35.19659166200006 ], [ 140.321 [...]
 { "type": "Feature", "properties": { "ISO": "JP-13", "NAME_1": "Tokyo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.864242856722399, 35.632067576757265 ], [ 139.837277067000059, 35.61454952400004 ], [ 139.806825188000062, 35.638192534000041 ], [ 139.789146748, 35.60324341200004 ], [ 139.76527245200009, 35.653510485000083 ], [ 139.786621383469992, 35.511529650572868 ], [ 139.539421014867912, 35.612606920373082 ], [ 139.454464959690085, 35.597310696131672 ], [ 139.48 [...]
-{ "type": "Feature", "properties": { "ISO": "JP-14", "NAME_1": "Kanagawa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.786621383469992, 35.511529650572868 ], [ 139.642301837000105, 35.454261182000039 ], [ 139.687397096000041, 35.432175530000052 ], [ 139.686859571000014, 35.40070221600007 ], [ 139.635791908000101, 35.401632427000038 ], [ 139.648358142, 35.297890507000034 ], [ 139.745453321000014, 35.248968817000048 ], [ 139.728024657000105, 35.207084100000088 ], [ 139.6664 [...]
-{ "type": "Feature", "properties": { "ISO": "JP-22", "NAME_1": "Shizuoka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.094430840048489, 35.117473623398702 ], [ 139.075874036000073, 35.05317728600005 ], [ 139.105967644000089, 35.049383856000077 ], [ 139.086548091000054, 34.997305469000082 ], [ 139.142588738000086, 34.942287502000056 ], [ 139.140879754000025, 34.87055084800005 ], [ 138.998758722000048, 34.733284342000047 ], [ 138.993662957000083, 34.64984772300005 ], [ 138. [...]
-{ "type": "Feature", "properties": { "ISO": "JP-23", "NAME_1": "Aichi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.467903432279002, 34.670969249081665 ], [ 137.01609532100008, 34.578784710000036 ], [ 137.072830166000017, 34.664599003000035 ], [ 137.110850457000083, 34.625433661000045 ], [ 137.282254577, 34.731178516000057 ], [ 137.303452012000093, 34.689428676000034 ], [ 137.309256237, 34.725664278000067 ], [ 137.34081945299999, 34.726542951000056 ], [ 137.2799585 [...]
+{ "type": "Feature", "properties": { "ISO": "JP-14", "NAME_1": "Kanagawa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.786621383469992, 35.511529650572868 ], [ 139.642301837000105, 35.454261182000039 ], [ 139.687397096000041, 35.432175530000052 ], [ 139.686859571000014, 35.40070221600007 ], [ 139.635791908000101, 35.401632427000038 ], [ 139.648358142, 35.297890507000034 ], [ 139.745453321000014, 35.248968817000048 ], [ 139.728024657000105, 35.207084100000088 ], [ 139.6664 [...]
+{ "type": "Feature", "properties": { "ISO": "JP-22", "NAME_1": "Shizuoka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.094430840048489, 35.117473623398702 ], [ 139.075874036000073, 35.05317728600005 ], [ 139.105967644000089, 35.049383856000077 ], [ 139.086548091000054, 34.997305469000082 ], [ 139.142588738000086, 34.942287502000056 ], [ 139.140879754000025, 34.87055084800005 ], [ 138.998758722000048, 34.733284342000047 ], [ 138.993662957000083, 34.64984772300005 ], [ 138. [...]
+{ "type": "Feature", "properties": { "ISO": "JP-23", "NAME_1": "Aichi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.467903432279002, 34.670969249081665 ], [ 137.01609532100008, 34.578784710000036 ], [ 137.072830166000017, 34.664599003000035 ], [ 137.110850457000083, 34.625433661000045 ], [ 137.282254577, 34.731178516000057 ], [ 137.303452012000093, 34.689428676000034 ], [ 137.309256237, 34.725664278000067 ], [ 137.340819453, 34.726542951000056 ], [ 137.279958530000 [...]
 { "type": "Feature", "properties": { "ISO": "JP-24", "NAME_1": "Mie" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.751800977000016, 35.026149807000081 ], [ 136.659190300000091, 34.983954169000071 ], [ 136.639315940000074, 34.889048701000036 ], [ 136.534939939000083, 34.765695099000084 ], [ 136.519541863000086, 34.680853583000044 ], [ 136.551036004000025, 34.601996161000045 ], [ 136.632985873000052, 34.591131903000075 ], [ 136.916026238000086, 34.433986721000053 ], [ [...]
-{ "type": "Feature", "properties": { "ISO": "JP-30", "NAME_1": "Wakayama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.993739570025127, 33.686259743392441 ], [ 135.937066684, 33.61747297900007 ], [ 135.946071342000096, 33.577809933000083 ], [ 135.80918398599999, 33.505037213000037 ], [ 135.760020379000025, 33.433335679000038 ], [ 135.765570607000086, 33.481545488000052 ], [ 135.444834832000083, 33.550848700000074 ], [ 135.327695126000094, 33.671192935000079 ], [ 135.39161 [...]
+{ "type": "Feature", "properties": { "ISO": "JP-30", "NAME_1": "Wakayama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.993739570025127, 33.686259743392441 ], [ 135.937066684, 33.61747297900007 ], [ 135.946071342000096, 33.577809933000083 ], [ 135.809183986, 33.505037213000037 ], [ 135.760020379000025, 33.433335679000038 ], [ 135.765570607000086, 33.481545488000052 ], [ 135.444834832000083, 33.550848700000074 ], [ 135.327695126000094, 33.671192935000079 ], [ 135.3916121750 [...]
 { "type": "Feature", "properties": { "ISO": "JP-27", "NAME_1": "Ōsaka" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.085271304201399, 34.299181985718477 ], [ 135.256564013, 34.376754752000068 ], [ 135.408323731, 34.540974933000086 ], [ 135.403590677000011, 34.658912182000051 ], [ 135.448507928598019, 34.729198310453626 ], [ 135.439826288152631, 34.90370962210136 ], [ 135.366755813430018, 34.953422349761638 ], [ 135.363345167845182, 34.997450670512023 ], [ 135.444012 [...]
 { "type": "Feature", "properties": { "ISO": "JP-33", "NAME_1": "Okayama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.304640557196393, 34.709108550329461 ], [ 134.208750847000033, 34.728013414000088 ], [ 134.278819207000083, 34.698228257000039 ], [ 134.155284050000091, 34.636867580000057 ], [ 134.189463738000086, 34.636867580000057 ], [ 134.147959832000083, 34.596991278000075 ], [ 134.08366946700005, 34.581529039000088 ], [ 133.994395379000025, 34.608710028000075 ], [ 133 [...]
 { "type": "Feature", "properties": { "ISO": "JP-34", "NAME_1": "Hiroshima" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.443022871201748, 34.472672645534381 ], [ 133.34107506600003, 34.348049221000053 ], [ 133.281748894000089, 34.321519273000035 ], [ 133.269867384, 34.339178778000075 ], [ 133.314952019000089, 34.366034247000073 ], [ 133.258474155000044, 34.382310289000088 ], [ 133.27662194100003, 34.401760158000059 ], [ 133.24732506600003, 34.42649974200009 ], [ 133 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/korea.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/korea.geojson
index c33b0a0..2bc36e0 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/korea.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/korea.geojson
@@ -2,13 +2,13 @@
 "type": "FeatureCollection",
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
-{ "type": "Feature", "properties": { "ISO": "KR-42", "NAME_1": "Gangwon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.971754192000049, 38.300040589000062 ], [ 128.03986372900016, 38.30427805600003 ], [ 128.108490031000088, 38.323501689000025 ], [ 128.172362102000136, 38.355954489000041 ], [ 128.225588827000024, 38.399776103000065 ], [ 128.24873986800003, 38.425769348000117 ], [ 128.26806685400004, 38.453519593000053 ], [ 128.281089315000088, 38.484370423000044 ], [ 128.28 [...]
-{ "type": "Feature", "properties": { "ISO": "KR-41", "NAME_1": "Gyeonggi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.667458927000098, 37.827810161000016 ], [ 126.660516398000084, 37.913810934000125 ], [ 126.665787395000109, 37.937633769000101 ], [ 126.677828003000059, 37.944584249000073 ], [ 126.696328166000114, 37.946186219000097 ], [ 126.722114706000127, 37.953937683000035 ], [ 126.761905558000137, 37.979000753000022 ], [ 126.847326702000032, 38.082017721000014 [...]
+{ "type": "Feature", "properties": { "ISO": "KR-42", "NAME_1": "Gangwon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.971754192000049, 38.300040589000062 ], [ 128.03986372900016, 38.30427805600003 ], [ 128.108490031000088, 38.323501689000025 ], [ 128.172362102000136, 38.355954489000041 ], [ 128.225588827000024, 38.399776103000065 ], [ 128.24873986800003, 38.425769348000117 ], [ 128.26806685400004, 38.453519593000053 ], [ 128.281089315000088, 38.484370423000044 ], [ 128.28 [...]
+{ "type": "Feature", "properties": { "ISO": "KR-41", "NAME_1": "Gyeonggi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.667458927000098, 37.827810161000016 ], [ 126.660516398000084, 37.913810934000125 ], [ 126.665787395000109, 37.937633769000101 ], [ 126.677828003000059, 37.944584249000073 ], [ 126.696328166000114, 37.946186219000097 ], [ 126.722114706000127, 37.953937683000035 ], [ 126.761905558000137, 37.979000753000022 ], [ 126.847326702000032, 38.082017721000014 [...]
 { "type": "Feature", "properties": { "ISO": "KR-44", "NAME_1": "South Chungcheong" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.405413865000014, 36.458835528000066 ], [ 126.412933790000011, 36.440334377000056 ], [ 126.426442905000044, 36.423570054000038 ], [ 126.432139519000089, 36.407945054000038 ], [ 126.422618035000028, 36.411525783000059 ], [ 126.37818444100003, 36.409491278000075 ], [ 126.363780144000089, 36.411363023000035 ], [ 126.361052808000068, 36.4263209 [...]
 { "type": "Feature", "properties": { "ISO": "KR-28", "NAME_1": "Incheon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.720045091000088, 37.377053382000042 ], [ 126.717162389, 37.383838776000061 ], [ 126.664750292, 37.389168229000063 ], [ 126.640340142000014, 37.364389566000057 ], [ 126.615087493000033, 37.379744927000047 ], [ 126.62538212000004, 37.397918345000051 ], [ 126.638628539000024, 37.413790562000088 ], [ 126.630308394000053, 37.425012798000068 ], [ 126.6124 [...]
 { "type": "Feature", "properties": { "ISO": "KR-45", "NAME_1": "North Jeolla" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.43690020030192, 35.370562056925955 ], [ 126.42310631600003, 35.383368231000077 ], [ 126.418223504000025, 35.394029039000088 ], [ 126.425547722000033, 35.417669989000046 ], [ 126.442718946000014, 35.446926174000055 ], [ 126.469814235000058, 35.498526407000043 ], [ 126.492663279, 35.525333007000086 ], [ 126.52528299100004, 35.534857697000064 ], [ [...]
-{ "type": "Feature", "properties": { "ISO": "KR-46", "NAME_1": "South Jeolla" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.804990421770526, 34.957146974753073 ], [ 127.798431837000066, 34.958644924000055 ], [ 127.757904493000069, 34.958319403000075 ], [ 127.744395379000025, 34.960191148000035 ], [ 127.739024285000028, 34.965277411000045 ], [ 127.736582879000025, 34.972886460000041 ], [ 127.730723504000025, 34.982570705000057 ], [ 127.719248894000089, 34.99005768400 [...]
-{ "type": "Feature", "properties": { "ISO": "KR-48", "NAME_1": "South Gyeongsang" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 128.962777642773972, 35.133385991070611 ], [ 128.958009914000058, 35.136896883000077 ], [ 128.948944017000031, 35.125974671000051 ], [ 128.918419593000067, 35.081882053000072 ], [ 128.904592926000078, 35.081098650000058 ], [ 128.903635321000024, 35.101390025000057 ], [ 128.904585929000064, 35.120509920000075 ], [ 128.897925608000037, 35.1213053 [...]
+{ "type": "Feature", "properties": { "ISO": "KR-46", "NAME_1": "South Jeolla" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.804990421770526, 34.957146974753073 ], [ 127.798431837000066, 34.958644924000055 ], [ 127.757904493000069, 34.958319403000075 ], [ 127.744395379000025, 34.960191148000035 ], [ 127.739024285000028, 34.965277411000045 ], [ 127.736582879000025, 34.972886460000041 ], [ 127.730723504000025, 34.982570705000057 ], [ 127.719248894000089, 34.99005768400 [...]
+{ "type": "Feature", "properties": { "ISO": "KR-48", "NAME_1": "South Gyeongsang" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 128.962777642773972, 35.133385991070611 ], [ 128.958009914000058, 35.136896883000077 ], [ 128.948944017000031, 35.125974671000051 ], [ 128.918419593000067, 35.081882053000072 ], [ 128.904592926000078, 35.081098650000058 ], [ 128.903635321000024, 35.101390025000057 ], [ 128.904585929000064, 35.120509920000075 ], [ 128.897925608000037, 35.1213053 [...]
 { "type": "Feature", "properties": { "ISO": "KR-26", "NAME_1": "Busan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.199273767664067, 35.163639034932693 ], [ 129.194346550000091, 35.155503648000035 ], [ 129.178895553000075, 35.155757452000046 ], [ 129.167479847000095, 35.156168307000087 ], [ 129.153412306000064, 35.154282945000034 ], [ 129.143077019000089, 35.154771226000037 ], [ 129.132204581, 35.150766444000055 ], [ 129.120257149000054, 35.149616723000065 ], [ 129.119296 [...]
 { "type": "Feature", "properties": { "ISO": "KR-31", "NAME_1": "Ulsan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.459055955356206, 35.610784051152933 ], [ 129.460589908000088, 35.609294223000063 ], [ 129.467275141000073, 35.599667569000076 ], [ 129.463487901, 35.577883359000054 ], [ 129.461351284000102, 35.552061385000059 ], [ 129.454600457000083, 35.513251044000071 ], [ 129.444427931000064, 35.49681224200009 ], [ 129.427989129000025, 35.478745835000041 ], [ 129.4128524 [...]
 { "type": "Feature", "properties": { "ISO": "KR-47", "NAME_1": "North Gyeongsang" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.422618035000028, 36.61664459800005 ], [ 129.422862175000091, 36.614976304000038 ], [ 129.427989129000025, 36.575669664000088 ], [ 129.441661004000025, 36.534654039000088 ], [ 129.447113477000016, 36.493312893000052 ], [ 129.440928582000083, 36.407945054000038 ], [ 129.43482506600003, 36.389593817000048 ], [ 129.403900587000066, 36.359442450 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/malaysia.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/malaysia.geojson
index 2cffd2d..5e9b14d 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/malaysia.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/malaysia.geojson
@@ -3,18 +3,18 @@
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
 { "type": "Feature", "properties": { "ISO": "MY-12", "NAME_1": "Sabah" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.70360790400008, 4.163414542000055 ], [ 117.640147332000083, 4.227443752000056 ], [ 117.701670769000089, 4.267523505000042 ], [ 117.785411004000025, 4.246649481000077 ], [ 117.817718946000014, 4.204738674000055 ], [ 117.896250847000033, 4.181341864000046 ], [ 117.907039027605904, 4.156683015004099 ], [ 117.70360790400008, 4.163414542000055 ] ] ], [ [ [ [...]
-{ "type": "Feature", "properties": { "ISO": "MY-09", "NAME_1": "Perlis" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 100.187558634000084, 6.707963766000077 ], [ 100.212363322000044, 6.689179383000081 ], [ 100.273961630000088, 6.696259053000091 ], [ 100.329203735000078, 6.557766215000072 ], [ 100.377658989570648, 6.526754413285516 ], [ 100.36548139924713, 6.455756130341115 ], [ 100.214327833762468, 6.298969834790057 ], [ 100.198731966586095, 6.260527681200568 ], [ 100.1 [...]
-{ "type": "Feature", "properties": { "ISO": "MY-02", "NAME_1": "Kedah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.377658989570648, 6.526754413285516 ], [ 100.46723148600006, 6.513221131000066 ], [ 100.630684041000109, 6.444775696000065 ], [ 100.729954468000074, 6.493196513000029 ], [ 100.733881877000044, 6.456377055000118 ], [ 100.796307007000109, 6.433949484000038 ], [ 100.805608765000045, 6.414803365000125 ], [ 100.832997274000093, 6.236674703000034 ], [ 100.855114787 [...]
+{ "type": "Feature", "properties": { "ISO": "MY-09", "NAME_1": "Perlis" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.187558634000084, 6.707963766000077 ], [ 100.212363322000044, 6.689179383000081 ], [ 100.273961630000088, 6.696259053000091 ], [ 100.329203735000078, 6.557766215000072 ], [ 100.377658989570648, 6.526754413285516 ], [ 100.36548139924713, 6.455756130341115 ], [ 100.214327833762468, 6.298969834790057 ], [ 100.198731966586095, 6.260527681200568 ], [ 100.15284264 [...]
+{ "type": "Feature", "properties": { "ISO": "MY-02", "NAME_1": "Kedah" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 100.377658989570648, 6.526754413285516 ], [ 100.46723148600006, 6.513221131000066 ], [ 100.630684041000109, 6.444775696000065 ], [ 100.729954468000074, 6.493196513000029 ], [ 100.733881877000044, 6.456377055000118 ], [ 100.796307007000109, 6.433949484000038 ], [ 100.805608765000045, 6.414803365000125 ], [ 100.832997274000093, 6.236674703000034 ], [ 100.85 [...]
 { "type": "Feature", "properties": { "ISO": "MY-03", "NAME_1": "Kelantan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.784153686000082, 5.738100484000057 ], [ 101.912931356000115, 5.85930755600009 ], [ 101.934738810000113, 5.98172902400006 ], [ 102.060002482000073, 6.094797058000083 ], [ 102.073090040000068, 6.257513739000046 ], [ 102.163584832000026, 6.197495835000041 ], [ 102.187022332000026, 6.20343659100007 ], [ 102.183116082000026, 6.223049221000053 ], [ 102.16684004 [...]
 { "type": "Feature", "properties": { "ISO": "MY-08", "NAME_1": "Perak" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.972426655000049, 5.772852627000077 ], [ 100.998620239000047, 5.729548035000036 ], [ 101.05980513500009, 5.709575094000101 ], [ 101.122178589000043, 5.629890035000059 ], [ 101.212302287000114, 5.681514791000083 ], [ 101.248992554000097, 5.786986389000049 ], [ 101.557914266000125, 5.911345724000043 ], [ 101.634085327000037, 5.855586853000077 ], [ 101.630778036 [...]
-{ "type": "Feature", "properties": { "ISO": "MY-13", "NAME_1": "Sarawak" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.346271607000119, 4.313768820000064 ], [ 115.358260539000071, 4.350278219000074 ], [ 115.285603475000016, 4.435363465000094 ], [ 115.272477662000085, 4.474663391000078 ], [ 115.272684367000011, 4.636772359000119 ], [ 115.207365357000072, 4.825598043000127 ], [ 115.146800578000011, 4.885620219000131 ], [ 115.14616946700005, 4.908514716000127 ], [ 115. [...]
+{ "type": "Feature", "properties": { "ISO": "MY-13", "NAME_1": "Sarawak" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.346271607000119, 4.313768820000064 ], [ 115.358260539000071, 4.350278219000074 ], [ 115.285603475000016, 4.435363465000094 ], [ 115.272477662000085, 4.474663391000078 ], [ 115.272684367000011, 4.636772359000119 ], [ 115.207365357000072, 4.825598043000127 ], [ 115.146800578000011, 4.885620219000131 ], [ 115.14616946700005, 4.90851471600007 ], [ 115.1 [...]
 { "type": "Feature", "properties": { "ISO": "MY-07", "NAME_1": "Pulau Pinang" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 100.404096640599349, 5.120176955359527 ], [ 100.43091881600003, 5.190619208000044 ], [ 100.418955925000034, 5.248480536000045 ], [ 100.43327884200005, 5.290025132000039 ], [ 100.38021894600007, 5.390692450000074 ], [ 100.384938998000052, 5.499253648000092 ], [ 100.35429595495971, 5.568982631344737 ], [ 100.533223098367273, 5.549790758136965 ], [ 10 [...]
 { "type": "Feature", "properties": { "ISO": "MY-10", "NAME_1": "Selangor" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 101.721200959872078, 2.595849968106314 ], [ 101.67351321700005, 2.62726471600007 ], [ 101.54232832100007, 2.661281643000052 ], [ 101.502777540000068, 2.689398505000042 ], [ 101.399180535000028, 2.81907786700009 ], [ 101.28638756600003, 2.849676825000074 ], [ 101.303477410000028, 2.89484284100007 ], [ 101.281016472000033, 2.897853908000059 ], [ 101.2830 [...]
 { "type": "Feature", "properties": { "ISO": "MY-05", "NAME_1": "Negeri Sembilan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.98846643739526, 2.391327968722818 ], [ 101.926768425000034, 2.422430731000077 ], [ 101.865244988000029, 2.394517320000091 ], [ 101.851084832000026, 2.478949286000045 ], [ 101.803233269000032, 2.518011786000045 ], [ 101.783050977000073, 2.575873114000046 ], [ 101.721200959872078, 2.595849968106314 ], [ 101.772578972841302, 2.738153591315154 ], [ 101 [...]
-{ "type": "Feature", "properties": { "ISO": "MY-04", "NAME_1": "Melaka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.488889968243498, 2.092976851215032 ], [ 102.154307488000029, 2.235663153000075 ], [ 102.051280144000032, 2.340887762000079 ], [ 101.999034050000034, 2.36163971600007 ], [ 101.98846643739526, 2.391327968722818 ], [ 102.046464064764734, 2.43765513817408 ], [ 102.060881788963343, 2.427268175385962 ], [ 102.074679397336297, 2.4596176212562 ], [ 102.149661899976 [...]
-{ "type": "Feature", "properties": { "ISO": "MY-01", "NAME_1": "Johor" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.64031009200005, 2.671291408000059 ], [ 103.71615644600007, 2.641546942000048 ], [ 103.765147332000026, 2.648911851000094 ], [ 103.767100457000026, 2.623846747000073 ], [ 103.813975457000026, 2.58148834800005 ], [ 103.839691602000073, 2.52484772300005 ], [ 103.837657097000033, 2.463812567000048 ], [ 103.948985222000033, 2.339911200000074 ], [ 103.98365 [...]
+{ "type": "Feature", "properties": { "ISO": "MY-04", "NAME_1": "Melaka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.488889968243484, 2.092976851215036 ], [ 102.154307488000029, 2.235663153000075 ], [ 102.051280144000032, 2.340887762000079 ], [ 101.999034050000034, 2.36163971600007 ], [ 101.98846643739526, 2.391327968722818 ], [ 102.046464064764734, 2.43765513817408 ], [ 102.060881788963343, 2.427268175385962 ], [ 102.074679397336297, 2.4596176212562 ], [ 102.149661899976 [...]
+{ "type": "Feature", "properties": { "ISO": "MY-01", "NAME_1": "Johor" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.64031009200005, 2.671291408000059 ], [ 103.71615644600007, 2.641546942000048 ], [ 103.765147332000026, 2.648911851000094 ], [ 103.767100457000026, 2.623846747000073 ], [ 103.813975457000026, 2.58148834800005 ], [ 103.839691602000073, 2.52484772300005 ], [ 103.837657097000033, 2.463812567000048 ], [ 103.948985222000033, 2.339911200000074 ], [ 103.98365 [...]
 { "type": "Feature", "properties": { "ISO": "MY-06", "NAME_1": "Pahang" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.442800326000054, 4.168972072000088 ], [ 103.40398196700005, 4.131822007000039 ], [ 103.394053582000026, 4.098618882000039 ], [ 103.437998894000032, 3.975043036000045 ], [ 103.434336785000028, 3.950018622000073 ], [ 103.411631707000026, 3.963934637000079 ], [ 103.394704623000052, 3.93500397300005 ], [ 103.378428582000026, 3.802435614000046 ], [ 103.351084832 [...]
-{ "type": "Feature", "properties": { "ISO": "MY-11", "NAME_1": "Trengganu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.542002800000034, 5.854763088000084 ], [ 102.62631269600007, 5.79718659100007 ], [ 102.66920006600003, 5.725002346000053 ], [ 102.875661655000044, 5.571437893000052 ], [ 102.975596550000034, 5.531317450000074 ], [ 103.120290561000047, 5.381333726000094 ], [ 103.448008660000028, 4.806545315000051 ], [ 103.44263756600003, 4.74282461100006 ], [ 103.469411655 [...]
+{ "type": "Feature", "properties": { "ISO": "MY-11", "NAME_1": "Terengganu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.542002800000034, 5.854763088000084 ], [ 102.62631269600007, 5.79718659100007 ], [ 102.66920006600003, 5.725002346000053 ], [ 102.875661655000044, 5.571437893000052 ], [ 102.975596550000034, 5.531317450000074 ], [ 103.120290561000047, 5.381333726000094 ], [ 103.448008660000028, 4.806545315000051 ], [ 103.44263756600003, 4.74282461100006 ], [ 103.46941165 [...]
 { "type": "Feature", "properties": { "ISO": "MY-15", "NAME_1": "Labuan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.248545769000089, 5.365464585000041 ], [ 115.259287957000083, 5.291205145000049 ], [ 115.241709832000083, 5.272691148000092 ], [ 115.204112175000091, 5.283596096000053 ], [ 115.159190300000091, 5.252183335000041 ], [ 115.18913821700005, 5.344794012000079 ], [ 115.241709832000083, 5.387396552000041 ], [ 115.248545769000089, 5.365464585000041 ] ] ] } },
 { "type": "Feature", "properties": { "ISO": "MY-14", "NAME_1": "Kuala Lumpur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.66845096164252, 3.232206121815068 ], [ 101.70834516819491, 3.206988022779001 ], [ 101.746172316299294, 3.214687812192778 ], [ 101.760435011766333, 3.187996933911336 ], [ 101.741831495626968, 3.126321112329435 ], [ 101.751960076896012, 3.052217108832508 ], [ 101.727878859421764, 3.026921495430656 ], [ 101.662094761164269, 3.040744941325954 ], [ 101.665 [...]
 { "type": "Feature", "properties": { "ISO": "MY-16", "NAME_1": "Putrajaya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.712996047229751, 2.981213690759205 ], [ 101.730359328120471, 2.928865464769387 ], [ 101.677132602987172, 2.875483710005199 ], [ 101.671551547965521, 2.960362249917864 ], [ 101.712996047229751, 2.981213690759205 ] ] ] } }
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/mexico.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/mexico.geojson
new file mode 100644
index 0000000..ed271af
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/mexico.geojson
@@ -0,0 +1,39 @@
+{
+"type": "FeatureCollection",
+"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
+"features": [
+{ "type": "Feature", "properties": { "ISO": "MX-SON", "NAME_1": "Sonora" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -114.819373117999888, 32.499363302000077 ], [ -111.06711767599991, 31.333644104000044 ], [ -108.968281966999896, 31.327391256000041 ], [ -109.040289680424394, 30.814088447024176 ], [ -108.799684211257329, 30.636244005056767 ], [ -108.645455898770706, 30.572604477814366 ], [ -108.58347001792697, 30.50661367398186 ], [ -108.536754523802188, 30.03863190413 [...]
+{ "type": "Feature", "properties": { "ISO": "MX-BCN", "NAME_1": "Baja California" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -114.724284627999893, 32.71283640500009 ], [ -114.802677774999893, 32.594497375000017 ], [ -114.809447388999928, 32.511324158000022 ], [ -114.926312831671794, 32.482539577839248 ], [ -114.981684129618884, 32.341488756101171 ], [ -115.037107102610662, 32.291698513175845 ], [ -114.955923428223628, 32.141552638943097 ], [ -114.979410367394507, 32. [...]
+{ "type": "Feature", "properties": { "ISO": "MX-CHH", "NAME_1": "Chihuahua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -108.215121216999904, 31.777751364000025 ], [ -106.517188679999961, 31.773823954000036 ], [ -106.391769979999893, 31.745918681000049 ], [ -106.2092488199999, 31.477304586000074 ], [ -105.961201945999903, 31.371006165 ], [ -105.363770711999877, 30.850366109000035 ], [ -105.204917358999921, 30.802410381000087 ], [ -104.934339559999898, 30.610535787000074 ], [ [...]
+{ "type": "Feature", "properties": { "ISO": "MX-COA", "NAME_1": "Coahuila" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.321010701999938, 29.893938700000078 ], [ -102.109344034999921, 29.802109681000033 ], [ -101.805977539999901, 29.811928203 ], [ -101.63221553599989, 29.775651347000021 ], [ -101.564906982999901, 29.78647756000008 ], [ -101.54645849699989, 29.820144755000015 ], [ -101.542892822999917, 29.77105214400008 ], [ -101.405097615999878, 29.77844187400008 ], [ -10 [...]
+{ "type": "Feature", "properties": { "ISO": "MX-TAM", "NAME_1": "Tamaulipas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -99.710673655264941, 27.67011619710479 ], [ -99.644869140999916, 27.632733052000091 ], [ -99.590247151999876, 27.642060649000101 ], [ -99.507203124999904, 27.573770244000073 ], [ -99.472915812999901, 27.426647441000071 ], [ -99.52136246799995, 27.311253967000127 ], [ -99.431988077999875, 27.207591044000068 ], [ -99.461727864999943, 27.05695424400003 [...]
+{ "type": "Feature", "properties": { "ISO": "MX-NLE", "NAME_1": "Nuevo León" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.806962777110471, 27.771423009864009 ], [ -99.710673655264941, 27.67011619710479 ], [ -99.909942593276014, 27.572167467254815 ], [ -99.914800177885866, 27.53428864230699 ], [ -99.903638067842564, 27.49976878520124 ], [ -99.777909308767562, 27.481888740373051 ], [ -99.756360235936143, 27.450469468690983 ], [ -99.711866828091615, 27.199580390422682 ], [ - [...]
+{ "type": "Feature", "properties": { "ISO": "MX-ROO", "NAME_1": "Quintana Roo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.390775715999894, 18.475695089000041 ], [ -88.489245157999875, 18.484505920000046 ], [ -88.527821614999937, 18.454146017000099 ], [ -88.616989298999869, 18.235425517000081 ], [ -88.696622680999894, 18.17806467700008 ], [ -88.726646687999875, 18.066727804000024 ], [ -88.871366536999886, 17.890950419000077 ], [ -89.049443522999866, 17.99921254500 [...]
+{ "type": "Feature", "properties": { "ISO": "MX-CAM", "NAME_1": "Campeche" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.146336806290734, 17.951456246982861 ], [ -89.160496174999935, 17.814314270000054 ], [ -90.990901245999879, 17.801963603 ], [ -90.991675585260055, 17.968205878398578 ], [ -91.123708868869187, 17.975802314125474 ], [ -91.331964891266693, 18.066856187363157 ], [ -91.540841031288551, 18.104579983579356 ], [ -91.588900113449483, 18.097862046995829 ], [ [...]
+{ "type": "Feature", "properties": { "ISO": "MX-TAB", "NAME_1": "Tabasco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.990901245999879, 17.801963603 ], [ -90.991986449999871, 17.251919658000034 ], [ -91.433267451748108, 17.254538150951397 ], [ -91.434749315328645, 17.303026842514782 ], [ -91.387413702680192, 17.333257554892214 ], [ -91.423742234916176, 17.385657456826152 ], [ -91.492316861134213, 17.401470445005032 ], [ -91.500688443217086, 17.463585517057936 ], [ -91.644 [...]
+{ "type": "Feature", "properties": { "ISO": "MX-CHP", "NAME_1": "Chiapas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.433267451748108, 17.254538150951397 ], [ -91.364883585999877, 17.189752910000053 ], [ -91.279514119999902, 17.18008941600003 ], [ -91.054928345999969, 16.908013 ], [ -90.993071655999955, 16.87437164300006 ], [ -90.955192830999863, 16.898762919000077 ], [ -90.968887085999881, 16.87437164300006 ], [ -90.91907100399996, 16.836337789000126 ], [ -90.810 [...]
+{ "type": "Feature", "properties": { "ISO": "MX-COL", "NAME_1": "Colima" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -114.775542772999927, 18.35492584800005 ], [ -114.724029100999928, 18.35492584800005 ], [ -114.720855272999927, 18.345689195000091 ], [ -114.798573370999918, 18.330877997000073 ], [ -114.775542772999927, 18.35492584800005 ] ] ], [ [ [ -110.945912238999938, 18.799994208000044 ], [ -110.911203579999949, 18.762518622000073 ], [ -110.924305792999917, 18.727 [...]
+{ "type": "Feature", "properties": { "ISO": "MX-NAY", "NAME_1": "Nayarit" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -106.224037600999907, 21.328735901000073 ], [ -106.227505961999896, 21.29116570900004 ], [ -106.279363378999903, 21.314658975000043 ], [ -106.260005115999945, 21.334096877000036 ], [ -106.224037600999907, 21.328735901000073 ] ] ], [ [ [ -106.404217750999919, 21.483885817000044 ], [ -106.362887461999946, 21.464307183000074 ], [ -106.387098060999904, 21. [...]
+{ "type": "Feature", "properties": { "ISO": "MX-BCS", "NAME_1": "Baja California Sur" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -109.835749743999941, 24.224654329000089 ], [ -109.802865109999914, 24.137062296000067 ], [ -109.873927077999895, 24.151702835000037 ], [ -109.900432099999932, 24.19924080800007 ], [ -109.933220374999905, 24.374414236000064 ], [ -109.835749743999941, 24.224654329000089 ] ] ], [ [ [ -111.561634894999941, 24.378078518000052 ], [ -111.46295789 [...]
+{ "type": "Feature", "properties": { "ISO": "MX-SIN", "NAME_1": "Sinaloa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -108.831613735999895, 25.42641836100006 ], [ -108.786529100999928, 25.385443427000041 ], [ -109.013091600999928, 25.446926174000055 ], [ -108.900990363999938, 25.446519273000035 ], [ -108.831613735999895, 25.42641836100006 ] ] ], [ [ [ -105.724073850926771, 22.509504161967172 ], [ -105.800160285999937, 22.638454494000086 ], [ -106.001616990999935, 22.8 [...]
+{ "type": "Feature", "properties": { "ISO": "MX-YUC", "NAME_1": "Yucatán" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.381143190605016, 20.82402730903507 ], [ -90.339100714999915, 20.972357489000046 ], [ -90.398060675999943, 20.820746161000045 ], [ -90.442128058999913, 20.78742096600007 ], [ -90.332386847999942, 21.032456773000035 ], [ -90.099476691999939, 21.164129950000074 ], [ -89.785959438999896, 21.284572658000059 ], [ -89.112619594999899, 21.362779039000088 ], [ -88 [...]
+{ "type": "Feature", "properties": { "ISO": "MX-VER", "NAME_1": "Veracruz" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -97.781858365690027, 22.273336382293405 ], [ -97.760609503999945, 22.095851955000057 ], [ -97.610463019999941, 21.835760809000078 ], [ -97.316232876999948, 21.560939846000053 ], [ -97.41860917899993, 21.273382880000042 ], [ -97.472238735999895, 21.43781159100007 ], [ -97.390736456999946, 21.472642320000091 ], [ -97.370228644999941, 21.537502346000053  [...]
+{ "type": "Feature", "properties": { "ISO": "MX-JAL", "NAME_1": "Jalisco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.592559373999904, 19.149603583000044 ], [ -104.733550584999932, 19.228461005000042 ], [ -104.806914842999902, 19.229071356000077 ], [ -104.80142167899993, 19.294745184000078 ], [ -104.880523240999935, 19.279120184000078 ], [ -105.017119920999903, 19.368475653000075 ], [ -105.070098436999899, 19.447780666000085 ], [ -105.087710059999949, 19.561072501000069 [...]
+{ "type": "Feature", "properties": { "ISO": "MX-MIC", "NAME_1": "Michoacán" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.168887293972631, 17.921198658534252 ], [ -103.36164018799991, 18.26682016400008 ], [ -103.498399655999947, 18.333482650000064 ], [ -103.575103318999936, 18.492254950000074 ], [ -103.706736842999931, 18.591220790000079 ], [ -103.686228437999944, 18.628552100000036 ], [ -103.742024505715804, 18.690412134819216 ], [ -103.627028368364506, 18.80241852549454 [...]
+{ "type": "Feature", "properties": { "ISO": "MX-GRO", "NAME_1": "Guerrero" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.554547543234492, 16.318275247304825 ], [ -98.776898058999905, 16.555134748000057 ], [ -98.90698576199992, 16.534790358000066 ], [ -99.374260404999916, 16.667911476000086 ], [ -99.66328903099992, 16.698163701000055 ], [ -99.85810433499995, 16.796028715000091 ], [ -99.835699822999914, 16.80210926500007 ], [ -99.876834735999921, 16.815336284000068 ], [ -99. [...]
+{ "type": "Feature", "properties": { "ISO": "MX-OAX", "NAME_1": "Oaxaca" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.11485749504331, 16.057202470386486 ], [ -94.392201300999943, 16.177679755000042 ], [ -94.722401495999918, 16.199652411000045 ], [ -94.711822068999936, 16.230292059000078 ], [ -94.587147589999915, 16.282416083000044 ], [ -94.580840623999904, 16.32648346600007 ], [ -94.670033331999946, 16.363836981000077 ], [ -94.793120897999927, 16.257635809000078 ], [ -94. [...]
+{ "type": "Feature", "properties": { "ISO": "MX-X01~", "NAME_1": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.664187987999924, 22.371069109000075 ], [ -89.697971737999922, 22.417544062000047 ], [ -89.655164679999928, 22.472001270000078 ], [ -89.714016641999933, 22.541046090000066 ], [ -89.770755666999946, 22.533241273000044 ], [ -89.745707422999942, 22.57724911300005 ], [ -89.658247571999937, 22.540669889000071 ], [ -89.6101519099999, 22.461080928000058 ], [ -89.6342 [...]
+{ "type": "Feature", "properties": { "ISO": "MX-MEX", "NAME_1": "México" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.640872768563383, 19.461913154468505 ], [ -98.671723598565222, 19.389876206721567 ], [ -98.632811245742403, 19.189578355256856 ], [ -98.639839239789069, 19.047468167222121 ], [ -98.709757453143936, 18.969850165352852 ], [ -98.810629849288091, 18.968764959735097 ], [ -98.840137092153043, 19.044625963317515 ], [ -98.963953824209625, 19.089119371162042 ], [ -9 [...]
+{ "type": "Feature", "properties": { "ISO": "MX-PUE", "NAME_1": "Puebla" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.64640214674165, 19.023593655322941 ], [ -98.632811245742403, 19.189578355256856 ], [ -98.671723598565222, 19.389876206721567 ], [ -98.640872768563383, 19.461913154468505 ], [ -98.465896368922245, 19.438348700032464 ], [ -98.34306148969597, 19.228955796972457 ], [ -98.193458217822467, 19.106482652052762 ], [ -98.108295457969007, 19.134853014255214 ], [ -98. [...]
+{ "type": "Feature", "properties": { "ISO": "MX-MOR", "NAME_1": "Morelos" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.64640214674165, 19.023593655322941 ], [ -98.676736212805963, 18.941376451262215 ], [ -98.658184374409359, 18.891250312451916 ], [ -98.733373582624722, 18.811926988239918 ], [ -98.666090867599451, 18.692347724068213 ], [ -98.750013394002906, 18.691934312018873 ], [ -98.676942919280293, 18.427506007796012 ], [ -98.82566769111105, 18.493961900521299 ], [ -99 [...]
+{ "type": "Feature", "properties": { "ISO": "MX-QUE", "NAME_1": "Querétaro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.043380500309809, 21.268314520698539 ], [ -99.042295294692053, 21.175762030693136 ], [ -99.227917040439024, 21.118814602511861 ], [ -99.302744514347864, 21.147495022177509 ], [ -99.380362515317813, 21.096025295331117 ], [ -99.354317593082442, 21.027812405218299 ], [ -99.397880825839422, 20.914227607218265 ], [ -99.492035285400107, 20.834387519068741 ], [ [...]
+{ "type": "Feature", "properties": { "ISO": "MX-HID", "NAME_1": "Hidalgo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.042295294692053, 21.175762030693136 ], [ -99.043380500309809, 21.268314520698539 ], [ -98.995889858929843, 21.29647817642666 ], [ -98.939097460379458, 21.291207179767525 ], [ -98.905559455204695, 21.216069648395546 ], [ -98.823600633562364, 21.176898912254956 ], [ -98.592296923364302, 21.212245592560009 ], [ -98.5895580722472, 21.371512355910454 ], [ -98. [...]
+{ "type": "Feature", "properties": { "ISO": "MX-GUA", "NAME_1": "Guanajuato" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.790621710623441, 21.419106350077982 ], [ -99.792533739440501, 21.291413886241855 ], [ -99.719669969393578, 21.27007151898539 ], [ -99.713933884740982, 21.233794664492166 ], [ -99.826898566015984, 21.158347072959032 ], [ -99.959810349667862, 21.201186835304213 ], [ -100.036033087556916, 21.178552557754301 ], [ -100.105796272180214, 20.916656399073531 ], [...]
+{ "type": "Feature", "properties": { "ISO": "MX-SLP", "NAME_1": "San Luis Potosí" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.828439501082073, 24.564960842368976 ], [ -100.618064745191816, 24.311048692143402 ], [ -100.597239142772196, 23.974376736397232 ], [ -100.480347052874151, 23.788522447552907 ], [ -100.494299689978675, 23.661579290751661 ], [ -100.45295854440127, 23.499909573068351 ], [ -100.472750617147256, 23.433040269193043 ], [ -100.439315965659262, 23.2290217 [...]
+{ "type": "Feature", "properties": { "ISO": "MX-ZAC", "NAME_1": "Zacatecas" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.828439501082073, 24.564960842368976 ], [ -100.851590541670134, 24.491166897234507 ], [ -100.97044633722868, 24.402464301486305 ], [ -101.226968147362072, 24.00269542085698 ], [ -101.31595496305107, 23.969570827731502 ], [ -101.450417040314164, 23.833584296178287 ], [ -101.663530647321522, 23.707054552325701 ], [ -101.727919480699427, 23.617938544528215 [...]
+{ "type": "Feature", "properties": { "ISO": "MX-AGU", "NAME_1": "Aguascalientes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.845431688221822, 22.017467759829231 ], [ -101.891733772095904, 21.955662747038104 ], [ -102.049140184371993, 21.865900784093867 ], [ -102.07988766158627, 21.767922267798383 ], [ -102.25894649858202, 21.670718898758139 ], [ -102.514176399321343, 21.706117255007314 ], [ -102.630319180385868, 21.773038234826686 ], [ -102.760492112920645, 21.748801987 [...]
+{ "type": "Feature", "properties": { "ISO": "MX-DUR", "NAME_1": "Durango" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.899386766086366, 24.791897895271632 ], [ -106.943466762780872, 24.809442044214961 ], [ -106.962535366913642, 24.878791815889599 ], [ -107.036380987992175, 24.919693711895263 ], [ -107.11534257699833, 25.14453786882757 ], [ -107.082708910287977, 25.465267646084953 ], [ -106.936929694249955, 25.641587632862922 ], [ -106.740352545833275, 25.622467352786089  [...]
+{ "type": "Feature", "properties": { "ISO": "MX-TLA", "NAME_1": "Tlaxcala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.251749234039892, 19.719623521208518 ], [ -98.192683072365867, 19.679264228461363 ], [ -98.102300991797335, 19.670892646378491 ], [ -98.072535367413252, 19.677093818125172 ], [ -98.062510138931771, 19.730837307195941 ], [ -98.028196988300351, 19.691769923842912 ], [ -98.034604864722724, 19.636114406854404 ], [ -97.84257524255338, 19.543458564061439 ], [ - [...]
+{ "type": "Feature", "properties": { "ISO": "MX-DIF", "NAME_1": "Distrito Federal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.123737352396859, 19.571053779008651 ], [ -99.038729621274967, 19.42728994457525 ], [ -99.058831753282789, 19.377267156753874 ], [ -98.990050422389061, 19.336546128800762 ], [ -98.959613002637923, 19.274586086378747 ], [ -98.942198045803138, 19.121365465144095 ], [ -99.042812058629579, 19.057803453166798 ], [ -99.261713426233598, 19.12064199473223 [...]
+]
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/morocco.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/morocco.geojson
index 1844dc2..a469b55 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/morocco.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/morocco.geojson
@@ -2,12 +2,12 @@
 "type": "FeatureCollection",
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
-{ "type": "Feature", "properties": { "ISO": "MA-14", "NAME_1": "Guelmim - Es-Semara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.817034779999915, 27.661464011000092 ], [ -8.773387410999931, 27.460030416000066 ], [ -8.801706094999929, 27.360424092000088 ], [ -8.795840819999938, 27.307688294000073 ], [ -8.752871866999953, 27.190486146000026 ], [ -8.752871866999953, 27.150462749000056 ], [ -8.79390295399989, 27.120180359000116 ], [ -9.000918741999953, 27.08992380799999 ], [  [...]
-{ "type": "Feature", "properties": { "ISO": "MA-15", "NAME_1": "Laâyoune - Boujdour - Sakia El Hamra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.055823329999953, 25.995829570000055 ], [ -12.080058959999889, 25.870204976000096 ], [ -12.169872599999877, 25.639728088000069 ], [ -12.310019083999862, 25.110432230000058 ], [ -12.399884399999877, 24.879955343000049 ], [ -12.430140949999895, 24.830165101000105 ], [ -12.499981648999949, 24.769600322000045 ], [ -12.94688024832481 [...]
-{ "type": "Feature", "properties": { "ISO": "MA-16", "NAME_1": "Oued el Dahab" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.946880248324817, 24.496748253529063 ], [ -13.060024983999938, 24.400475566000054 ], [ -13.229962931999921, 24.089900207000071 ], [ -13.310009724999873, 23.980552877000051 ], [ -13.769981648999931, 23.790125224000022 ], [ -13.83979650899991, 23.750075989000052 ], [ -13.890129353999981, 23.690493063000062 ], [ -14.019992227999865, 23.410251771 ], [ -14 [...]
+{ "type": "Feature", "properties": { "ISO": "MA-14", "NAME_1": "Guelmim - Es-Semara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.817034779999915, 27.661464011000092 ], [ -8.773387410999931, 27.460030416000066 ], [ -8.801706094999929, 27.360424092000088 ], [ -8.795840819999938, 27.307688294000073 ], [ -8.752871866999953, 27.190486146000026 ], [ -8.752871866999953, 27.150462749000056 ], [ -8.79390295399989, 27.120180359000116 ], [ -9.000918741999953, 27.089923808 ], [ -9.20 [...]
+{ "type": "Feature", "properties": { "ISO": "MA-15", "NAME_1": "Laâyoune - Boujdour - Sakia El Hamra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.056228685236068, 25.995294100689698 ], [ -12.080058959999889, 25.870204976000096 ], [ -12.169872599999877, 25.639728088000069 ], [ -12.310019083999862, 25.110432230000058 ], [ -12.399884399999877, 24.879955343000049 ], [ -12.430140949999895, 24.830165101000105 ], [ -12.499981648999949, 24.769600322000045 ], [ -12.94688024832481 [...]
+{ "type": "Feature", "properties": { "ISO": "MA-16", "NAME_1": "Oued el Dahab" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.946880248324817, 24.496748253529063 ], [ -13.060024983999938, 24.400475566000054 ], [ -13.229962931999921, 24.089900207000071 ], [ -13.310009724999873, 23.980552877000051 ], [ -13.769981648999931, 23.790125224000022 ], [ -13.83979650899991, 23.750075989000052 ], [ -13.890129353999981, 23.690493063000062 ], [ -14.019992227999865, 23.410251771 ], [ -14 [...]
 { "type": "Feature", "properties": { "ISO": "MA-01", "NAME_1": "Tanger - Tétouan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.398858678999886, 35.924503853000076 ], [ -5.340728318999936, 35.847357489000046 ], [ -5.318755662999934, 35.701727606000077 ], [ -5.304798956999946, 35.685207424000055 ], [ -5.276763475999928, 35.685207424000055 ], [ -5.249419725999928, 35.58462148600006 ], [ -5.150786912999934, 35.516099351000037 ], [ -5.066273566999939, 35.417466539000088 ], [ -4 [...]
-{ "type": "Feature", "properties": { "ISO": "MA-04", "NAME_1": "Oriental" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.947824673999946, 35.329779364000046 ], [ -2.966920125999877, 35.313866272 ], [ -2.963767862999902, 35.286219381000095 ], [ -2.943045613999885, 35.267874248000098 ], [ -2.912912563999953, 35.276922919000071 ], [ -2.899037238999938, 35.259995835000041 ], [ -2.909820115999935, 35.186712958000044 ], [ -2.856068488999938, 35.131293036000045 ], [ -2.748117641999 [...]
-{ "type": "Feature", "properties": { "ISO": "MA-06", "NAME_1": "Meknès - Tafilalet" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.161717774952856, 31.732546097715037 ], [ -3.511563883999941, 31.672744853000083 ], [ -3.591378132999949, 31.67827423199999 ], [ -3.659506721025934, 31.647820996807653 ], [ -3.673484385360553, 31.389234206617786 ], [ -3.747466796999959, 31.385165507000053 ], [ -3.815188761999934, 31.337158102 ], [ -3.814982054999888, 31.220524394 ], [ -3.839321654 [...]
+{ "type": "Feature", "properties": { "ISO": "MA-04", "NAME_1": "Oriental" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.947824673999946, 35.329779364000046 ], [ -2.966920125999877, 35.313866272 ], [ -2.963767862999902, 35.286219381000095 ], [ -2.943045613999885, 35.267874248000098 ], [ -2.912912563999953, 35.276922919000071 ], [ -2.899037238999938, 35.259995835000041 ], [ -2.909820115999935, 35.186712958000044 ], [ -2.856068488999938, 35.131293036000045 ], [ -2.748117641999 [...]
+{ "type": "Feature", "properties": { "ISO": "MA-06", "NAME_1": "Meknès - Tafilalet" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.161717774952856, 31.732546097715037 ], [ -3.511563883999941, 31.672744853000083 ], [ -3.591378132999949, 31.678274232 ], [ -3.659506721025934, 31.647820996807653 ], [ -3.673484385360553, 31.389234206617786 ], [ -3.747466796999959, 31.385165507000053 ], [ -3.815188761999934, 31.337158102 ], [ -3.814982054999888, 31.220524394 ], [ -3.83932165499990 [...]
 { "type": "Feature", "properties": { "ISO": "MA-13", "NAME_1": "Souss - Massa - Draâ" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.770731035625488, 30.229088066847154 ], [ -4.875563518134896, 30.180166241676076 ], [ -5.176083301328532, 29.977490108824597 ], [ -5.273926951670632, 29.886635290649807 ], [ -5.434670091518313, 29.64202616479453 ], [ -5.539502574027694, 29.52321601795056 ], [ -5.637346224369793, 29.495260689281352 ], [ -5.721212210377359, 29.52321601795056 ], [  [...]
 { "type": "Feature", "properties": { "ISO": "MA-03", "NAME_1": "Taza - Al Hoceima - Taounate" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.495432094999956, 35.18077220300006 ], [ -4.347645636999914, 35.150132554000038 ], [ -4.269398566999939, 35.184881903000075 ], [ -4.130604620999918, 35.204779364000046 ], [ -3.919341600999928, 35.266831773000035 ], [ -3.909413214999915, 35.255275783000059 ], [ -3.92952945299993, 35.243819796000082 ], [ -3.903901018999932, 35.214172586000 [...]
 { "type": "Feature", "properties": { "ISO": "MA-02", "NAME_1": "Gharb - Chrarda - Béni Hssen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.722646038432041, 34.182442440938175 ], [ -6.667795376999948, 34.280503648000035 ], [ -6.547759568999936, 34.434719143000052 ], [ -6.292103644999941, 34.880804755000042 ], [ -6.249209009091353, 35.001396854296509 ], [ -6.113083868925401, 35.010163072367902 ], [ -5.781708747360824, 34.930684719424221 ], [ -5.633009813052411, 34.8229651963 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/myanmar.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/myanmar.geojson
index bac8ea1..a02bfeb 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/myanmar.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/myanmar.geojson
@@ -4,11 +4,11 @@
 "features": [
 { "type": "Feature", "properties": { "ISO": "MM-16", "NAME_1": "Rakhine" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.57060754400004, 21.247283020000012 ], [ 92.614325806000068, 21.263147685000021 ], [ 92.641039906000117, 21.30858591800002 ], [ 92.66920698391516, 21.296917425998402 ], [ 92.780001254853971, 21.156124985779456 ], [ 92.83508833196089, 21.059541734363506 ], [ 92.869194777017299, 21.037269192019608 ], [ 92.939681431153076, 21.079566352005543 ], [ 93.1326 [...]
 { "type": "Feature", "properties": { "ISO": "MM-14", "NAME_1": "Chin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.641039906000117, 21.30858591800002 ], [ 92.590244588000076, 21.495536601000069 ], [ 92.575568482000051, 21.733971660000051 ], [ 92.593035116000124, 21.886933899000027 ], [ 92.575878540000133, 21.977574362000027 ], [ 92.650912720000122, 22.019173890000033 ], [ 92.683778931000063, 22.154307760000066 ], [ 92.836121053000056, 22.046510722000065 ], [ 92.87746219900 [...]
-{ "type": "Feature", "properties": { "ISO": "MM-11", "NAME_1": "Kachin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.292903280000075, 27.87755015099999 ], [ 97.338171835000082, 27.901553853000038 ], [ 97.335691366000049, 27.935608622000061 ], [ 97.362253052000028, 27.994881490000083 ], [ 97.355121705000101, 28.02304514600003 ], [ 97.292903280000075, 28.095082092 ], [ 97.328663371000118, 28.190011699000095 ], [ 97.323495728000125, 28.217477723000073 ], [ 97.36959110600003,  [...]
-{ "type": "Feature", "properties": { "ISO": "MM-01", "NAME_1": "Sagaing" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.687255493000123, 27.361741842000058 ], [ 96.789161417000116, 27.317971904000061 ], [ 96.859648072000084, 27.240715637000065 ], [ 96.842698202000065, 27.188522441000075 ], [ 96.865332479000131, 27.1716242480001 ], [ 97.002998495000043, 27.114521790000069 ], [ 97.026769654000077, 27.091474101000117 ], [ 97.058826607000128, 27.092075635000057 ], [ 96.990286899 [...]
-{ "type": "Feature", "properties": { "ISO": "MM-17", "NAME_1": "Shan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.996717571000033, 20.3835114540001 ], [ 99.942043905000105, 20.444024557000049 ], [ 99.877913453000076, 20.435136210000039 ], [ 99.837709188000133, 20.416842753000068 ], [ 99.787169637000034, 20.334082947000084 ], [ 99.651932414000044, 20.306823629000078 ], [ 99.502897583000049, 20.345219218000111 ], [ 99.439955689000044, 20.382167867000064 ], [ 99.420628703000 [...]
-{ "type": "Feature", "properties": { "ISO": "MM-12", "NAME_1": "Kayah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.869123020910649, 19.570489967937647 ], [ 97.839846639000029, 19.555319113000095 ], [ 97.842120403000138, 19.479380595000052 ], [ 97.767086222000046, 19.397525126000019 ], [ 97.806153606000066, 19.301096903000101 ], [ 97.798298787000135, 19.281408183000067 ], [ 97.764088990000118, 19.266396179000097 ], [ 97.812561483000081, 19.208466899000044 ], [ 97.810804485 [...]
-{ "type": "Feature", "properties": { "ISO": "MM-13", "NAME_1": "Kayin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.372898830000054, 18.548616618000025 ], [ 97.351401001000113, 18.551168519000058 ], [ 97.443074992000106, 18.403348084000086 ], [ 97.45258345600007, 18.333610738000047 ], [ 97.486483195000119, 18.292140401000083 ], [ 97.528341105000095, 18.265320333000076 ], [ 97.573816366000131, 18.333093974000107 ], [ 97.637585083000033, 18.306325582000042 ], [ 97.6432694910 [...]
+{ "type": "Feature", "properties": { "ISO": "MM-11", "NAME_1": "Kachin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.292903280000075, 27.877550151 ], [ 97.338171835000082, 27.901553853000038 ], [ 97.335691366000049, 27.935608622000061 ], [ 97.362253052000028, 27.994881490000083 ], [ 97.355121705000101, 28.02304514600003 ], [ 97.292903280000075, 28.095082092 ], [ 97.328663371000118, 28.190011699000095 ], [ 97.323495728000125, 28.217477723000073 ], [ 97.36959110600003, 28.25 [...]
+{ "type": "Feature", "properties": { "ISO": "MM-01", "NAME_1": "Sagaing" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.687255493000123, 27.361741842000058 ], [ 96.789161417000116, 27.317971904000061 ], [ 96.859648072000084, 27.240715637000065 ], [ 96.842698202000065, 27.188522441000075 ], [ 96.865332479000131, 27.1716242480001 ], [ 97.002998495000043, 27.114521790000069 ], [ 97.026769654000077, 27.091474101000117 ], [ 97.058826607000128, 27.092075635000057 ], [ 96.990286899 [...]
+{ "type": "Feature", "properties": { "ISO": "MM-17", "NAME_1": "Shan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.996717571000033, 20.3835114540001 ], [ 99.942043905000105, 20.444024557000049 ], [ 99.877913453000076, 20.435136210000039 ], [ 99.837709188000133, 20.416842753000068 ], [ 99.787169637000034, 20.334082947000084 ], [ 99.651932414000044, 20.306823629000078 ], [ 99.502897583000049, 20.345219218000111 ], [ 99.439955689000044, 20.382167867000064 ], [ 99.420628703000 [...]
+{ "type": "Feature", "properties": { "ISO": "MM-12", "NAME_1": "Kayah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.869123020910649, 19.570489967937647 ], [ 97.839846639000029, 19.555319113000095 ], [ 97.842120403000138, 19.479380595000052 ], [ 97.767086222000046, 19.397525126000019 ], [ 97.806153606000066, 19.301096903000101 ], [ 97.798298787000135, 19.281408183000067 ], [ 97.764088990000118, 19.266396179000097 ], [ 97.812561483000081, 19.208466899000044 ], [ 97.810804485 [...]
+{ "type": "Feature", "properties": { "ISO": "MM-13", "NAME_1": "Kayin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.372898830000054, 18.548616618000025 ], [ 97.351401001000113, 18.551168519000058 ], [ 97.443074992000106, 18.403348084000086 ], [ 97.45258345600007, 18.333610738000047 ], [ 97.486483195000119, 18.292140401000083 ], [ 97.528341105000095, 18.265320333000076 ], [ 97.573816366000131, 18.333093974000107 ], [ 97.637585083000033, 18.306325582000042 ], [ 97.6432694910 [...]
 { "type": "Feature", "properties": { "ISO": "MM-15", "NAME_1": "Mon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.207692860000066, 15.219215764000083 ], [ 98.177190390000078, 15.22059661900002 ], [ 98.190729615000066, 15.179177958000068 ], [ 98.160447225000041, 15.106365865000086 ], [ 98.198997844000075, 15.051382142000136 ], [ 98.191223655000044, 14.99320983800007 ], [ 98.100710076908456, 14.999058946513173 ], [ 98.020818312814868, 15.099130356980368 ], [ 97.902272 [...]
 { "type": "Feature", "properties": { "ISO": "MM-05", "NAME_1": "Tanintharyi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.191223655000044, 14.99320983800007 ], [ 98.221632121000027, 14.921260885000081 ], [ 98.243336222000039, 14.805118103000041 ], [ 98.297493123000038, 14.721247254000048 ], [ 98.418209269000045, 14.607559103000057 ], [ 98.547710409000047, 14.377676493000095 ], [ 98.601453898000045, 14.313649394000095 ], [ 98.670390259000044, 14.267915751000075 ], [  [...]
 { "type": "Feature", "properties": { "ISO": "MM-07", "NAME_1": "Ayeyarwady" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 96.01725835095003, 16.378167461430106 ], [ 96.066579623000052, 16.335638739000046 ], [ 96.067556186000047, 16.310248114000046 ], [ 95.979991082000026, 16.223130601000037 ], [ 95.942393425000034, 16.21906159100007 ], [ 95.951426629000082, 16.257635809000078 ], [ 95.90788821700005, 16.211737372000073 ], [ 95.883067254000082, 16.209173895000049 ], [ 95. [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/netherlands.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/netherlands.geojson
index f68a12c..d96dad7 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/netherlands.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/netherlands.geojson
@@ -2,13 +2,13 @@
 "type": "FeatureCollection",
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
-{ "type": "Feature", "properties": { "ISO": "NL-GR", "NAME_1": "Groningen" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.194590691000087, 53.245021877000056 ], [ 7.19747237100006, 53.216623637000097 ], [ 7.198505900000043, 53.200578105000048 ], [ 7.195405314000112, 53.184997661000111 ], [ 7.18858402500004, 53.167789408000019 ], [ 7.174424682000108, 53.145775249000039 ], [ 7.171944214000121, 53.137713725000069 ], [ 7.172667684000118, 53.125750631000088 ], [ 7.176491740 [...]
+{ "type": "Feature", "properties": { "ISO": "NL-GR", "NAME_1": "Groningen" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.194590691000087, 53.245021877000056 ], [ 7.19747237100006, 53.216623637000097 ], [ 7.198505900000043, 53.200578105000048 ], [ 7.195405314000112, 53.184997661000111 ], [ 7.18858402500004, 53.167789408000019 ], [ 7.174424682000108, 53.145775249000039 ], [ 7.171944214000121, 53.137713725000069 ], [ 7.172667684000118, 53.125750631000088 ], [ 7.176491740 [...]
 { "type": "Feature", "properties": { "ISO": "NL-DR", "NAME_1": "Drenthe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.072150759000124, 52.841316552000066 ], [ 7.061976766000043, 52.824011942000126 ], [ 7.053295125000091, 52.790577291000048 ], [ 7.04399336700007, 52.682625224 ], [ 7.036655314000058, 52.647381897000045 ], [ 7.018465210000045, 52.625987854000115 ], [ 6.982808471000055, 52.632783305000075 ], [ 6.967718953000144, 52.636659038000019 ], [ 6.918419637000056, 52.632 [...]
-{ "type": "Feature", "properties": { "ISO": "NL-OV", "NAME_1": "Overijssel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.719083149000085, 52.626758982000055 ], [ 6.701792032000071, 52.619114889000045 ], [ 6.710163615000056, 52.608650412000017 ], [ 6.708199911000122, 52.599684550000077 ], [ 6.703652384000094, 52.591390483000012 ], [ 6.70396244300008, 52.583070577000043 ], [ 6.710990438000096, 52.576636862 ], [ 6.743753296000079, 52.559712830000095 ], [ 6.688252807000111, 52. [...]
-{ "type": "Feature", "properties": { "ISO": "NL-GE", "NAME_1": "Gelderland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.771575683870708, 52.108792501972346 ], [ 6.765870808000102, 52.10839670899999 ], [ 6.749851115000126, 52.10286733000008 ], [ 6.73290124500005, 52.091989441000024 ], [ 6.7276302490001, 52.086305033000073 ], [ 6.719465373000077, 52.073566793000012 ], [ 6.711403849000106, 52.067288107000095 ], [ 6.699414917000126, 52.063567404000096 ], [ 6.688872925000084, 5 [...]
-{ "type": "Feature", "properties": { "ISO": "NL-LI", "NAME_1": "Limburg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.946056399882934, 51.746288216527944 ], [ 5.940133097000029, 51.742630921000099 ], [ 5.939306274000103, 51.731882223000085 ], [ 5.949228150000096, 51.729375916 ], [ 5.978270304000091, 51.729789327 ], [ 5.989742472000103, 51.726378682000089 ], [ 6.012066691000086, 51.715862528000045 ], [ 6.02198856600009, 51.709506328000018 ], [ 6.008552694000116, 51.681187643 [...]
+{ "type": "Feature", "properties": { "ISO": "NL-OV", "NAME_1": "Overijssel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.719083149000085, 52.626758982000055 ], [ 6.701792032000071, 52.619114889000045 ], [ 6.710163615000056, 52.608650412000017 ], [ 6.708199911000122, 52.599684550000077 ], [ 6.703652384000094, 52.591390483000012 ], [ 6.70396244300008, 52.583070577000043 ], [ 6.710990438000096, 52.576636862 ], [ 6.743753296000079, 52.559712830000095 ], [ 6.688252807000111, 52. [...]
+{ "type": "Feature", "properties": { "ISO": "NL-GE", "NAME_1": "Gelderland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.771575683870708, 52.108792501972346 ], [ 6.765870808000102, 52.108396709 ], [ 6.749851115000126, 52.10286733000008 ], [ 6.73290124500005, 52.091989441000024 ], [ 6.7276302490001, 52.086305033000073 ], [ 6.719465373000077, 52.073566793000012 ], [ 6.711403849000106, 52.067288107000095 ], [ 6.699414917000126, 52.063567404000096 ], [ 6.688872925000084, 52.063 [...]
+{ "type": "Feature", "properties": { "ISO": "NL-LI", "NAME_1": "Limburg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.946056399882934, 51.746288216527944 ], [ 5.940133097000029, 51.742630921000099 ], [ 5.939306274000103, 51.731882223000085 ], [ 5.949228150000096, 51.729375916 ], [ 5.978270304000091, 51.729789327 ], [ 5.989742472000103, 51.726378682000089 ], [ 6.012066691000086, 51.715862528000045 ], [ 6.02198856600009, 51.709506328000018 ], [ 6.008552694000116, 51.681187643 [...]
 { "type": "Feature", "properties": { "ISO": "NL-ZE", "NAME_1": "Zeeland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.45387658700011, 51.235633444000044 ], [ 3.421940552000109, 51.237984720999989 ], [ 3.398798476568402, 51.24469829349141 ], [ 3.391658163000102, 51.24676971500007 ], [ 3.367370240000099, 51.263487040000101 ], [ 3.353210897000054, 51.288601787000047 ], [ 3.353934366000146, 51.311907858000083 ], [ 3.358068481000061, 51.336712546000015 ], [ 3.349414674000 [...]
-{ "type": "Feature", "properties": { "ISO": "NL-NB", "NAME_1": "Noord-Brabant" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.822681925000012, 51.413684591000035 ], [ 4.815447224000138, 51.431073711000053 ], [ 4.819891398000067, 51.446214905000076 ], [ 4.826092570000128, 51.460555115000048 ], [ 4.823922159000062, 51.475644633000073 ], [ 4.813586873000133, 51.484119569000072 ], [ 4.796843709000086, 51.491018372000028 ], [ 4.778653605000045, 51.495359192000123 ], [ 4.7641842040 [...]
+{ "type": "Feature", "properties": { "ISO": "NL-NB", "NAME_1": "Noord-Brabant" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.822681925000012, 51.413684591000035 ], [ 4.815447224000138, 51.431073711000053 ], [ 4.819891398000067, 51.446214905000076 ], [ 4.826092570000128, 51.460555115000048 ], [ 4.823922159000062, 51.475644633000073 ], [ 4.813586873000133, 51.484119569000072 ], [ 4.796843709000086, 51.491018372000028 ], [ 4.778653605000045, 51.495359192000123 ], [ 4.7641842040 [...]
 { "type": "Feature", "properties": { "ISO": "NL-ZH", "NAME_1": "Zuid-Holland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.110919028994119, 51.646986975332325 ], [ 4.109873894000089, 51.650864976000037 ], [ 4.109629754000082, 51.662298895000049 ], [ 4.11264082100007, 51.670803127000056 ], [ 4.125661655000044, 51.679632880000042 ], [ 4.142914259000065, 51.684149481000077 ], [ 4.176931186000047, 51.68585846600007 ], [ 4.166351759000065, 51.692694403000075 ], [ 4.1411238940000 [...]
 { "type": "Feature", "properties": { "ISO": "NL-NH", "NAME_1": "Noord-Holland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 4.508148634000065, 52.336371161000045 ], [ 4.568614129000082, 52.445257880000042 ], [ 4.577321811000047, 52.473578192000048 ], [ 4.577321811000047, 52.480943101000037 ], [ 4.596934441000087, 52.506577867000033 ], [ 4.639333530000044, 52.700669664000031 ], [ 4.657074415000068, 52.750189520000049 ], [ 4.65984134200005, 52.765285549000055 ], [ 4.6694 [...]
 { "type": "Feature", "properties": { "ISO": "NL-FR", "NAME_1": "Friesland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.17977250358083, 53.008994521404261 ], [ 5.279470248000052, 53.062933661000045 ], [ 5.294200066000087, 53.073431708000044 ], [ 5.312754754000082, 53.082831122000073 ], [ 5.358897332000083, 53.089341539000031 ], [ 5.379242384000065, 53.097357489000046 ], [ 5.39975019600007, 53.122056382000039 ], [ 5.42709394600007, 53.190334377000056 ], [ 5.4474389980 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/poland.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/poland.geojson
index edbee26..881302f 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/poland.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/poland.geojson
@@ -5,9 +5,9 @@
 { "type": "Feature", "properties": { "ISO": "PL-SL", "NAME_1": "Silesian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.448870070097655, 49.60035777449167 ], [ 19.443391561000055, 49.601779684000022 ], [ 19.43760380100008, 49.600126038000056 ], [ 19.433779745000066, 49.59516510100012 ], [ 19.347066691000094, 49.532998353000025 ], [ 19.339521931000036, 49.528760885000068 ], [ 19.325362590000083, 49.525040182000069 ], [ 19.315027303000079, 49.523954977000059 ], [ 19.284228150 [...]
 { "type": "Feature", "properties": { "ISO": "PL-MA", "NAME_1": "Lesser Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.706321249000098, 49.387529196000102 ], [ 19.684513794000082, 49.389079489000025 ], [ 19.627043767000117, 49.40186758800003 ], [ 19.627097479000042, 49.402165448000076 ], [ 19.629220012000047, 49.41393585200008 ], [ 19.628599894000075, 49.429593811000032 ], [ 19.630150187000112, 49.435019836000023 ], [ 19.63480106600008, 49.441324362000032 ], [ 19.5948 [...]
 { "type": "Feature", "properties": { "ISO": "PL-PK", "NAME_1": "Subcarpathian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.666304972000148, 49.401791890000069 ], [ 21.658760213000079, 49.402463684000068 ], [ 21.648631632000047, 49.407062887 ], [ 21.63002811700008, 49.418896790000034 ], [ 21.619899536000048, 49.42334096300003 ], [ 21.601192668000067, 49.42649322600009 ], [ 21.529569133000081, 49.421222229000065 ], [ 21.514421954000113, 49.417212682000056 ], [ 21.5142737160 [...]
-{ "type": "Feature", "properties": { "ISO": "PL-DS", "NAME_1": "Lower Silesian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.107945597000082, 50.981023662000055 ], [ 15.093889607000079, 50.985416158000064 ], [ 15.082107381000071, 50.992754212000065 ], [ 15.073632446000062, 51.002624410000053 ], [ 15.022989543000108, 51.00965240500004 ], [ 15.003972616000055, 51.020685323000052 ], [ 15.001182088000093, 51.012442932000013 ], [ 14.996531209000125, 51.007843730000062 ], [ 14.9 [...]
+{ "type": "Feature", "properties": { "ISO": "PL-DS", "NAME_1": "Lower Silesian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.107945597000082, 50.981023662000055 ], [ 15.093889607000079, 50.985416158000064 ], [ 15.082107381000071, 50.992754212000065 ], [ 15.073632446000062, 51.002624410000053 ], [ 15.022989543000108, 51.00965240500004 ], [ 15.003972616000055, 51.020685323000052 ], [ 15.001182088000093, 51.012442932000013 ], [ 14.996531209000125, 51.007843730000062 ], [ 14.9 [...]
 { "type": "Feature", "properties": { "ISO": "PL-OP", "NAME_1": "Opole" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.958788696000084, 50.414598287000061 ], [ 16.944004628610685, 50.42026669725027 ], [ 16.948247511313582, 50.432167467254772 ], [ 17.020387810948705, 50.54681163245084 ], [ 17.072787712882644, 50.572417304215207 ], [ 17.133352492223707, 50.578721828749394 ], [ 17.169319289253792, 50.618047594520817 ], [ 17.192366977953668, 50.674219876346172 ], [ 17.26419721922 [...]
-{ "type": "Feature", "properties": { "ISO": "PL-PD", "NAME_1": "Podlachian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.837602986000093, 54.40091827500008 ], [ 22.858893677000083, 54.399212952000099 ], [ 22.918838338000057, 54.3811262010001 ], [ 22.929690389000115, 54.380299378000061 ], [ 22.952428019000081, 54.383089905000034 ], [ 22.96265995300007, 54.381694642000056 ], [ 22.973305298000071, 54.375390117000038 ], [ 22.978989706000107, 54.367586976000027 ], [ 22.98343387 [...]
+{ "type": "Feature", "properties": { "ISO": "PL-PD", "NAME_1": "Podlachian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.837602986000093, 54.40091827500008 ], [ 22.858893677000083, 54.399212952000099 ], [ 22.918838338000057, 54.3811262010001 ], [ 22.929690389000115, 54.380299378000061 ], [ 22.952428019000081, 54.383089905000034 ], [ 22.96265995300007, 54.381694642000056 ], [ 22.973305298000071, 54.375390117000038 ], [ 22.978989706000107, 54.367586976000027 ], [ 22.98343387 [...]
 { "type": "Feature", "properties": { "ISO": "PL-WN", "NAME_1": "Warmian-Masurian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.767219686000061, 54.356269837000056 ], [ 22.786029907000085, 54.365209860000064 ], [ 22.811343908000055, 54.39263336100008 ], [ 22.813935988355183, 54.385001126001157 ], [ 22.788717889319116, 54.336580309533645 ], [ 22.731667108350337, 54.301698717221996 ], [ 22.665314569311931, 54.275343735724789 ], [ 22.442175733823035, 54.256998602903195 ], [ 22 [...]
 { "type": "Feature", "properties": { "ISO": "PL-LB", "NAME_1": "Lubusz" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.950647846000038, 51.396539377000025 ], [ 14.946921835000126, 51.42290883400004 ], [ 14.95539676900006, 51.435414530000045 ], [ 14.945061483000131, 51.449186300000079 ], [ 14.926561320000104, 51.461330261000072 ], [ 14.910955038000083, 51.468978373000041 ], [ 14.888320760000113, 51.475747987 ], [ 14.841398559000083, 51.48442962700004 ], [ 14.818557576000075,  [...]
 { "type": "Feature", "properties": { "ISO": "PL-ZP", "NAME_1": "West Pomeranian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.607964828000092, 52.596462963000064 ], [ 14.549943481000071, 52.636193950000077 ], [ 14.49010217300011, 52.650637512000017 ], [ 14.461370076, 52.67456370100011 ], [ 14.442353149000041, 52.679963887999989 ], [ 14.431914510000098, 52.686087546000053 ], [ 14.39770471200012, 52.727118632999989 ], [ 14.382201782000095, 52.738151551 ], [ 14.27595503700013 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/portugal.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/portugal.geojson
index aad5a22..aa0e8ee 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/portugal.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/portugal.geojson
@@ -2,21 +2,21 @@
 "type": "FeatureCollection",
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
+{ "type": "Feature", "properties": { "ISO": "PT-07", "NAME_1": "Évora" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.22587838499993, 38.766133828000093 ], [ -7.284072631999976, 38.713245341000047 ], [ -7.292495889999941, 38.646117656000101 ], [ -7.27043005399986, 38.61769561800007 ], [ -7.317713988999913, 38.556252340000086 ], [ -7.34561926299989, 38.494137268000102 ], [ -7.335180623999861, 38.469435934000089 ], [ -7.359210163999876, 38.446362407000024 ], [ -7.3171455479998 [...]
+{ "type": "Feature", "properties": { "ISO": "PT-12", "NAME_1": "Portalegre" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.104858764999988, 38.827191874000086 ], [ -7.15100581899992, 38.819285380000039 ], [ -7.22587838499993, 38.766133828000093 ], [ -7.21505794876532, 38.825795802734092 ], [ -7.242523973402683, 38.843391629420125 ], [ -7.369131231621054, 38.80145620374077 ], [ -7.41336625794645, 38.841815497387245 ], [ -7.407578498249109, 38.857060044785214 ], [ -7.454190639 [...]
 { "type": "Feature", "properties": { "ISO": "PT-16", "NAME_1": "Viana do Castelo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.222361612999919, 42.153629660000021 ], [ -8.204326537999918, 42.128799133000072 ], [ -8.204016479999922, 42.069552104000067 ], [ -8.137612263999898, 42.072911072000082 ], [ -8.095082559999923, 42.040923361000083 ], [ -8.108027506999861, 42.010899353000028 ], [ -8.182131509999891, 41.965424093000067 ], [ -8.23021643099986, 41.904678447000052 ], [ -8 [...]
-{ "type": "Feature", "properties": { "ISO": "PT-03", "NAME_1": "Braga" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.179265101103567, 41.81261252514787 ], [ -8.047927007825137, 41.814037177173986 ], [ -8.084720628054527, 41.72773753485933 ], [ -8.118000250810951, 41.692339179509531 ], [ -8.028548346229229, 41.702002671885793 ], [ -7.990721198124788, 41.683760890952328 ], [ -7.998498501005031, 41.611207180167185 ], [ -7.89633419366811, 41.589709785078469 ], [ -7.845897995596 [...]
-{ "type": "Feature", "properties": { "ISO": "PT-04", "NAME_1": "Bragança" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.1453730879999, 41.987489929000063 ], [ -7.051270303999928, 41.942014669000017 ], [ -6.992359170999919, 41.966380107000035 ], [ -6.945126911999893, 41.943358257000071 ], [ -6.854951537999881, 41.942944845000071 ], [ -6.831232055999919, 41.953951925000055 ], [ -6.824927530999929, 41.983769226000064 ], [ -6.794386759999924, 41.979712626000051 ], [ -6.75790319 [...]
-{ "type": "Feature", "properties": { "ISO": "PT-17", "NAME_1": "Vila Real" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.340503295999895, 41.843209331000068 ], [ -7.251464802999919, 41.863699036000028 ], [ -7.209316118344191, 41.889160873375602 ], [ -7.204025030830508, 41.816259264353562 ], [ -7.1726574368912, 41.747374578873689 ], [ -7.220173915793566, 41.68784332920626 ], [ -7.252523362563124, 41.604282538008704 ], [ -7.255236375258505, 41.564698390718149 ], [ -7.23619361 [...]
-{ "type": "Feature", "properties": { "ISO": "PT-09", "NAME_1": "Guarda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.874509092120888, 40.279188166700521 ], [ -6.896447712999958, 40.255476786000074 ], [ -6.942100807999878, 40.254977731000068 ], [ -6.997500169197451, 40.285551663378556 ], [ -7.075402391007572, 40.286275132891035 ], [ -7.1102581448975, 40.319296373229008 ], [ -7.15379553923276, 40.279970608356848 ], [ -7.292986008997104, 40.275113022847677 ], [ -7.32122717909 [...]
 { "type": "Feature", "properties": { "ISO": "PT-05", "NAME_1": "Castelo Branco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.942100807999878, 40.254977731000068 ], [ -7.015768594999884, 40.225504456000024 ], [ -7.043105428999894, 40.181372783000128 ], [ -7.015768594999884, 40.119051005000088 ], [ -6.955720581999856, 40.102927959000013 ], [ -6.879704548999911, 40.009186910000054 ], [ -6.925231485999888, 39.917926331000061 ], [ -6.927660278999923, 39.861909078000039 ], [ -7. [...]
-{ "type": "Feature", "properties": { "ISO": "PT-12", "NAME_1": "Portalegre" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.250844686233279, 39.270627339580017 ], [ -7.264332233999909, 39.252333883000105 ], [ -7.258079386999896, 39.211302795000066 ], [ -7.168059040999935, 39.170633443 ], [ -7.155811726999929, 39.151513163000018 ], [ -7.167490600999884, 39.113479310000073 ], [ -7.127286336999873, 39.097485453000033 ], [ -7.091267862999899, 39.112445781000091 ], [ -7.0388162839 [...]
-{ "type": "Feature", "properties": { "ISO": "PT-07", "NAME_1": "Évora" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.22587838499993, 38.766133828000093 ], [ -7.284072631999976, 38.713245341000047 ], [ -7.292495889999941, 38.646117656000101 ], [ -7.27043005399986, 38.61769561800007 ], [ -7.317713988999913, 38.556252340000086 ], [ -7.34561926299989, 38.494137268000102 ], [ -7.335180623999861, 38.469435934000089 ], [ -7.359210163999876, 38.446362407000024 ], [ -7.3171455479998 [...]
-{ "type": "Feature", "properties": { "ISO": "PT-02", "NAME_1": "Beja" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.117068156999977, 38.183633156000056 ], [ -7.088322306999885, 38.17338165300005 ], [ -7.026413939999969, 38.199633281000089 ], [ -6.947504027999912, 38.196636047000069 ], [ -7.023985148999913, 38.022563985000076 ], [ -7.12325557399987, 38.040004781 ], [ -7.159739135999899, 37.99680328400008 ], [ -7.272703816999893, 37.9770112100001 ], [ -7.268621378999882, 37.9 [...]
-{ "type": "Feature", "properties": { "ISO": "PT-08", "NAME_1": "Faro" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.514613427999933, 37.528333923000091 ], [ -7.468867553999871, 37.475568950000039 ], [ -7.429386758999954, 37.236746318000044 ], [ -7.400217251999948, 37.172349351000037 ], [ -7.511789516999954, 37.171779690000051 ], [ -7.819569464999915, 36.998724677000041 ], [ -7.991200324999909, 37.014105536000045 ], [ -7.97679602799991, 36.986761786000045 ], [ -8.0352 [...]
-{ "type": "Feature", "properties": { "ISO": "PT-15", "NAME_1": "Setúbal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.801369137991232, 37.8267594857953 ], [ -8.798955973999909, 37.87809298600007 ], [ -8.820668952999938, 37.927266814000063 ], [ -8.89484615799995, 37.952541408000059 ], [ -8.8156834399999, 38.062115348000077 ], [ -8.774395582999944, 38.186949270000071 ], [ -8.795070658999919, 38.359227269000087 ], [ -8.878285285999937, 38.449164130000042 ], [ -8.9426163399999 [...]
+{ "type": "Feature", "properties": { "ISO": "PT-09", "NAME_1": "Guarda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.874509092120888, 40.279188166700521 ], [ -6.896447712999958, 40.255476786000074 ], [ -6.942100807999878, 40.254977731000068 ], [ -6.997500169197451, 40.285551663378556 ], [ -7.075402391007572, 40.286275132891035 ], [ -7.1102581448975, 40.319296373229008 ], [ -7.15379553923276, 40.279970608356848 ], [ -7.292986008997104, 40.275113022847677 ], [ -7.32122717909 [...]
+{ "type": "Feature", "properties": { "ISO": "PT-04", "NAME_1": "Bragança" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.482128385697165, 41.302991610357729 ], [ -6.563496459999897, 41.270711975000026 ], [ -6.646643839999882, 41.267611390000056 ], [ -6.755216023999878, 41.158832500000116 ], [ -6.764776163999954, 41.10886139000003 ], [ -6.818002888999928, 41.054136048000075 ], [ -6.987139044831054, 41.052739976968326 ], [ -7.07532487574241, 41.086691393293165 ], [ -7.09896684 [...]
+{ "type": "Feature", "properties": { "ISO": "PT-17", "NAME_1": "Vila Real" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.050445716999889, 41.815986438000053 ], [ -7.993641723999872, 41.863673198000029 ], [ -7.94475581899988, 41.866954652000018 ], [ -7.92579056799994, 41.908166606000108 ], [ -7.906101846999888, 41.913851014000059 ], [ -7.896593383999885, 41.857937113000062 ], [ -7.722030395999866, 41.899252421000099 ], [ -7.661155557999933, 41.87491282200007 ], [ -7.60736039 [...]
+{ "type": "Feature", "properties": { "ISO": "PT-03", "NAME_1": "Braga" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.179265101103567, 41.81261252514787 ], [ -8.047927007825137, 41.814037177173986 ], [ -8.084720628054527, 41.72773753485933 ], [ -8.118000250810951, 41.692339179509531 ], [ -8.028548346229229, 41.702002671885793 ], [ -7.990721198124788, 41.683760890952328 ], [ -7.998498501005031, 41.611207180167185 ], [ -7.89633419366811, 41.589709785078469 ], [ -7.845897995596 [...]
+{ "type": "Feature", "properties": { "ISO": "PT-08", "NAME_1": "Faro" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.514613427999933, 37.528333923000091 ], [ -7.468867553999871, 37.475568950000039 ], [ -7.429386758999954, 37.236746318000044 ], [ -7.400217251999948, 37.172349351000037 ], [ -7.511789516999954, 37.171779690000051 ], [ -7.819569464999915, 36.998724677000041 ], [ -7.991200324999909, 37.014105536000045 ], [ -7.97679602799991, 36.986761786000045 ], [ -8.0352 [...]
+{ "type": "Feature", "properties": { "ISO": "PT-02", "NAME_1": "Beja" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.950575759999879, 38.198385888000061 ], [ -7.023985148999913, 38.022563985000076 ], [ -7.12325557399987, 38.040004781 ], [ -7.159739135999899, 37.99680328400008 ], [ -7.272703816999893, 37.9770112100001 ], [ -7.268621378999882, 37.949235128000041 ], [ -7.306861937999969, 37.850765686000088 ], [ -7.334405476999848, 37.811930847000028 ], [ -7.444011189999912, 37. [...]
+{ "type": "Feature", "properties": { "ISO": "PT-15", "NAME_1": "Setúbal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.801369137991232, 37.8267594857953 ], [ -8.798955973999909, 37.87809298600007 ], [ -8.820668952999938, 37.927266814000063 ], [ -8.89484615799995, 37.952541408000059 ], [ -8.81568343999993, 38.062115348000077 ], [ -8.774395582999944, 38.186949270000071 ], [ -8.795070658999919, 38.359227269000087 ], [ -8.878285285999937, 38.449164130000042 ], [ -8.942616339999 [...]
 { "type": "Feature", "properties": { "ISO": "PT-11", "NAME_1": "Lisboa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -8.942616340271911, 38.775580145407389 ], [ -8.970285610999952, 38.835435289000088 ], [ -8.96312415299991, 38.850653387000079 ], [ -8.986317511999914, 38.849432684000078 ], [ -9.011545376999948, 38.913397528000075 ], [ -8.943226691999939, 39.015204169000071 ], [ -8.790353969999956, 39.07062409100007 ], [ -8.817311571072139, 39.03968455699669 ], [ -8.8543 [...]
 { "type": "Feature", "properties": { "ISO": "PT-14", "NAME_1": "Santarém" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.790353969999956, 39.07062409100007 ], [ -8.765126105999911, 39.097723700000074 ], [ -8.791753952782699, 39.082414713568141 ], [ -8.90270687492233, 39.171511135030812 ], [ -8.81658810066034, 39.200915025108316 ], [ -8.874646571981714, 39.254245103928383 ], [ -8.914850836896619, 39.244788316227812 ], [ -8.984097255783752, 39.260394598831624 ], [ -9.002855800 [...]
-{ "type": "Feature", "properties": { "ISO": "PT-10", "NAME_1": "Leiria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.347591295801001, 39.29247756566528 ], [ -9.365834113999938, 39.336004950000074 ], [ -9.409291144999941, 39.375189520000049 ], [ -9.352921539999954, 39.36793401400007 ], [ -9.260803351999925, 39.418442396000046 ], [ -9.205922003999945, 39.41547272300005 ], [ -9.229888475999928, 39.440741278000075 ], [ -9.182873267999923, 39.492583818000071 ], [ -9.13569413799 [...]
-{ "type": "Feature", "properties": { "ISO": "PT-06", "NAME_1": "Coimbra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.902476147221698, 40.047409913287467 ], [ -8.853260870999918, 40.139227606000077 ], [ -8.825062628999945, 40.120062567000048 ], [ -8.784982876999948, 40.118719794000071 ], [ -8.816151495999918, 40.146551825000074 ], [ -8.896473761999914, 40.164740302000041 ], [ -8.90843665299991, 40.200669664000088 ], [ -8.865386522999927, 40.275458075000074 ], [ -8.78790289 [...]
+{ "type": "Feature", "properties": { "ISO": "PT-10", "NAME_1": "Leiria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.347591295801001, 39.29247756566528 ], [ -9.365834113999938, 39.336004950000074 ], [ -9.409291144999941, 39.375189520000049 ], [ -9.352921539999954, 39.36793401400007 ], [ -9.260803351999925, 39.418442396000046 ], [ -9.205922003999945, 39.41547272300005 ], [ -9.229888475999928, 39.440741278000075 ], [ -9.182873267999923, 39.492583818000071 ], [ -9.13569413799 [...]
+{ "type": "Feature", "properties": { "ISO": "PT-06", "NAME_1": "Coimbra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.902476147221691, 40.047409913287481 ], [ -8.853260870999918, 40.139227606000077 ], [ -8.825062628999945, 40.120062567000048 ], [ -8.784982876999948, 40.118719794000071 ], [ -8.816151495999918, 40.146551825000074 ], [ -8.896473761999914, 40.164740302000041 ], [ -8.90843665299991, 40.200669664000088 ], [ -8.865386522999927, 40.275458075000074 ], [ -8.78790289 [...]
 { "type": "Feature", "properties": { "ISO": "PT-01", "NAME_1": "Aveiro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.78790289051096, 40.52295838274182 ], [ -8.750355597999942, 40.643947658000059 ], [ -8.744618292999917, 40.619045315000051 ], [ -8.710275844999956, 40.653469143000052 ], [ -8.690012173999946, 40.646918036000045 ], [ -8.696156378999945, 40.673651434000078 ], [ -8.662098761999914, 40.669867255000042 ], [ -8.641590949999909, 40.694159247000073 ], [ -8.6636449859 [...]
 { "type": "Feature", "properties": { "ISO": "PT-13", "NAME_1": "Porto" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.65520139824288, 41.016651963915109 ], [ -8.666127081999946, 41.132757880000042 ], [ -8.648345506999931, 41.152777411000045 ], [ -8.68578040299991, 41.159491278000075 ], [ -8.737172003999945, 41.249660549000055 ], [ -8.74445553299995, 41.328111070000034 ], [ -8.783802863999938, 41.393866278000075 ], [ -8.775097442947354, 41.46756333867858 ], [ -8.6669848287868 [...]
 { "type": "Feature", "properties": { "ISO": "PT-30", "NAME_1": "Madeira" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -10.339955206999946, 35.057196356000077 ], [ -10.398345506999931, 35.03978099200009 ], [ -10.341297980999911, 35.105943101000037 ], [ -10.289133266999954, 35.108710028000075 ], [ -10.275380011999914, 35.060248114000046 ], [ -10.339955206999946, 35.057196356000077 ] ] ], [ [ [ -10.788685675999943, 34.686672268000052 ], [ -10.847808397999927, 34.644029039 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/russia.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/russia.geojson
index 2bb4a35..6a57b97 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/russia.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/russia.geojson
@@ -2,91 +2,90 @@
 "type": "FeatureCollection",
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
-{ "type": "Feature", "properties": { "ISO": "RU-AL", "NAME_1": "Gorno-Altay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.816324097000063, 49.165837301000082 ], [ 87.400432170000045, 49.071011048000102 ], [ 87.323796021000135, 49.085273743000087 ], [ 87.271757853000111, 49.205111389000038 ], [ 87.024537801000122, 49.248933004000051 ], [ 86.913020061000111, 49.338694967000052 ], [ 86.933070516000043, 49.390113017000019 ], [ 86.814008016000116, 49.45000600200008 ], [ 86.8243 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-PSK", "NAME_1": "Pskov" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.694408720000069, 57.356375287 ], [ 27.511322876000065, 57.430397441000096 ], [ 27.528169393000042, 57.528479309000048 ], [ 27.352934611000137, 57.527600810000123 ], [ 27.32854333500012, 57.57056976299999 ], [ 27.38487064600011, 57.606975810000094 ], [ 27.391433553000098, 57.680201314000087 ], [ 27.507757202000107, 57.714772847000077 ], [ 27.502434530000073,  [...]
-{ "type": "Feature", "properties": { "ISO": "RU-KDA", "NAME_1": "Krasnodar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.519624471000043, 43.505175069000032 ], [ 40.233130331000098, 43.575765076000025 ], [ 40.096704549000094, 43.562639262000047 ], [ 39.96257571700005, 43.392645575000074 ], [ 39.329356316000087, 43.896226304000038 ], [ 38.758311394000089, 44.273627020000049 ], [ 38.217295769000089, 44.387193101000037 ], [ 38.056162957000083, 44.558986721000053 ], [ 37.98454 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-KC", "NAME_1": "Karachay-Cherkess" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.042486613000108, 43.369834494000045 ], [ 40.689965575650774, 43.5231293169644 ], [ 40.776973910717402, 43.923210761467431 ], [ 40.95308719281968, 43.980933336004625 ], [ 40.845703565667009, 44.108625799840752 ], [ 40.869888136828024, 44.129244696685362 ], [ 41.274204542805364, 44.076896470695544 ], [ 41.288053827122383, 44.001552231949915 ], [ 41. [...]
-{ "type": "Feature", "properties": { "ISO": "RU-KB", "NAME_1": "Kabardin-Balkar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.615207153000085, 43.13698049 ], [ 42.362560099868688, 43.235194463853418 ], [ 42.478678826766441, 43.499825751357321 ], [ 42.456664666840879, 43.610671699139573 ], [ 42.66192345570289, 43.681261705163536 ], [ 42.69737348789613, 43.817842515919324 ], [ 42.852092725898558, 43.817119046406845 ], [ 43.195017531134113, 43.951451931561394 ], [ 43.31604373 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-SE", "NAME_1": "North Ossetia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.939725789000079, 42.552209982000093 ], [ 43.722581421000086, 42.624867045000045 ], [ 43.800612834000106, 42.746461690000089 ], [ 43.392628208325107, 42.900198268835027 ], [ 43.458567336213548, 42.959703680980056 ], [ 43.56615766804191, 42.938826401717051 ], [ 43.735242954298883, 43.110237127941105 ], [ 43.848104281887061, 43.310069892311674 ], [ 43.89 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-IN", "NAME_1": "Ingush" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.048081909000132, 42.685896912000132 ], [ 44.859359579000056, 42.759509990000126 ], [ 44.773473348000039, 42.60964833700011 ], [ 44.615602654738723, 42.778500271170572 ], [ 44.62841841028137, 42.882783312000242 ], [ 44.852177361595921, 42.836403713760376 ], [ 44.944368117294744, 42.954122625958405 ], [ 44.922664014832378, 43.061247869793306 ], [ 44.8085624528 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-CE", "NAME_1": "Chechnya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.35597009300011, 42.519963888000049 ], [ 45.15536218200009, 42.693260804000019 ], [ 45.07601819078684, 42.691411917126231 ], [ 45.179289177753333, 42.804105942934882 ], [ 45.136604445039097, 42.835137640989331 ], [ 45.167196892622485, 43.137806505365916 ], [ 45.046687453363234, 43.494348049123118 ], [ 44.838534783753232, 43.584110012067356 ], [ 44.838741489 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-DA", "NAME_1": "Dagestan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.966372111000055, 42.022061463000071 ], [ 45.621380249000083, 42.224478048000051 ], [ 45.739506285000118, 42.470646785 ], [ 45.829068638406909, 42.491437690297118 ], [ 45.968078241017963, 42.619000962924076 ], [ 46.013243443330225, 42.592025864701895 ], [ 46.047349888386634, 42.690262763415774 ], [ 46.169512974044494, 42.729691881075439 ], [ 46.12135 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-MUR", "NAME_1": "Murmansk" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.444237508000043, 68.865823466000094 ], [ 28.410234415000104, 68.89853464800008 ], [ 29.172978556000146, 69.0693769330001 ], [ 29.376790405000122, 69.301610820000079 ], [ 29.948073364000038, 69.365586243000067 ], [ 30.123411499000099, 69.441912334 ], [ 30.231621948000111, 69.55833933600006 ], [ 30.119070679000117, 69.634562073000055 ], [ 30.51165653 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-KR", "NAME_1": "Karelia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.546194294000145, 66.431969319000117 ], [ 29.362497842000096, 66.626552831000097 ], [ 31.07327680817815, 66.684147040453524 ], [ 31.555314568812264, 66.655208238369482 ], [ 31.652362909120939, 66.537101752543833 ], [ 31.800674268902355, 66.494184474933547 ], [ 31.831576775747578, 66.384682115187445 ], [ 31.90154666504651, 66.356363429828377 ], [ 32.32 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-LEN", "NAME_1": "Leningrad" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.003781678781422, 60.664225534880529 ], [ 29.277058695702237, 61.304598834268745 ], [ 29.576417270740421, 61.170736803560601 ], [ 29.86952599462893, 61.176292019261268 ], [ 32.703358189428855, 60.645704250950416 ], [ 33.10550418507006, 60.745879015104435 ], [ 33.207306756301762, 60.806779690330416 ], [ 33.148188917784296, 60.829749863765187 ], [ 33 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-KGD", "NAME_1": "Kaliningrad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.374849894000135, 55.289959615000029 ], [ 21.503937622000109, 55.194409892000081 ], [ 22.003442017000054, 55.093485820000055 ], [ 22.049950805000094, 55.033541158000062 ], [ 22.580667765000072, 55.057622376000026 ], [ 22.63348107900012, 54.957938538000022 ], [ 22.752130168000065, 54.931118469000026 ], [ 22.844320923000112, 54.832261455000079 ], [ 22.832 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-SMO", "NAME_1": "Smolensk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.980620158000079, 55.018658346000038 ], [ 30.98403080200012, 55.13089955700012 ], [ 30.794274943000062, 55.285515442000033 ], [ 30.918298380000067, 55.387783102000114 ], [ 30.881298055000116, 55.451448466000031 ], [ 30.907121887000073, 55.577769863000086 ], [ 31.047335238730284, 55.768534246957927 ], [ 31.205878534366832, 55.717891344210159 ], [ 31.5855969 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-BRY", "NAME_1": "Bryansk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.697931356000083, 53.325893454 ], [ 32.717794068000046, 53.431061874000093 ], [ 32.857147251444474, 53.43818553283603 ], [ 32.923706496057946, 53.590992743820038 ], [ 33.288955518682201, 53.821728014136511 ], [ 33.248131137941641, 53.953968004219973 ], [ 33.656374953441343, 54.031741034820868 ], [ 33.780191684598549, 53.981537380745522 ], [ 33.8735193209598 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-KRS", "NAME_1": "Kursk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.356899862000091, 51.705553081000019 ], [ 34.414157349000106, 51.736455587000123 ], [ 34.371101382000063, 51.826811306000124 ], [ 34.436482375361322, 51.902827052826183 ], [ 34.335609979217168, 51.934659736557592 ], [ 34.384909294828049, 51.996413072505277 ], [ 34.521025017590489, 52.069483548127209 ], [ 34.588204379828255, 52.033878486303081 ], [ 34.68411583 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-BEL", "NAME_1": "Belgorod" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.67320194500013, 50.340184225000044 ], [ 35.425258423000059, 50.500484518000107 ], [ 35.376165812000124, 50.634584860000032 ], [ 35.468873332000101, 50.668536275000051 ], [ 35.282218058000069, 50.961107412000032 ], [ 35.45512820800036, 50.962858588353129 ], [ 35.546388787712374, 50.905730292119244 ], [ 35.710823194934505, 50.93089671521119 ], [ 35.73108035 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-VOR", "NAME_1": "Voronezh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.327655884000137, 49.726319885000052 ], [ 39.23804895100011, 49.765128886000085 ], [ 39.181005517000074, 49.859486931000063 ], [ 39.272362908821151, 50.059580390422639 ], [ 39.099040154679358, 50.164741930395735 ], [ 39.1079285006997, 50.274761054079363 ], [ 39.055735305240148, 50.311554674308752 ], [ 39.084777459212376, 50.348710028844721 ], [ 38.99041629 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-ROS", "NAME_1": "Rostov" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.891342407000081, 49.04176218700006 ], [ 40.141663045000143, 49.24578074099999 ], [ 40.159543091000103, 49.333579 ], [ 40.034899536000125, 49.487058004000048 ], [ 40.118504096000095, 49.588451001000053 ], [ 40.198094517148206, 49.626712755089557 ], [ 40.490479770624916, 49.594854233835804 ], [ 40.884770949020037, 49.690300605488517 ], [ 41.029258253865294, 4 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-BU", "NAME_1": "Buryat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.005967652000038, 51.731727193000054 ], [ 99.709654989000057, 51.880581156000076 ], [ 99.323890422000034, 51.934221294000068 ], [ 98.994711548000112, 52.058296407000071 ], [ 98.932390577563069, 52.19185333936008 ], [ 98.808987257555827, 52.196400864708096 ], [ 98.799478793911192, 52.274225572152432 ], [ 98.646103143045593, 52.262753403746558 ], [ 98.67710900 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-TY", "NAME_1": "Tuva" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.937651562969222, 52.124687488536722 ], [ 98.855598592000092, 52.106691386000122 ], [ 98.682689250000124, 51.819473776000066 ], [ 98.332219686000087, 51.718317160000097 ], [ 98.228246704000128, 51.583415833000046 ], [ 98.220391886000073, 51.475205383000045 ], [ 98.050893189000135, 51.466420390000067 ], [ 97.915707642000029, 51.300616557000112 ], [ 97.9290401620 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-ZAB", "NAME_1": "Chita" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.473043254000061, 50.234040833 ], [ 114.286284628000089, 50.276880595000037 ], [ 113.84982548000005, 50.080716858000059 ], [ 113.579661092000038, 50.01994537400013 ], [ 113.182682740000075, 49.801974182000023 ], [ 113.060829712000157, 49.595991923000057 ], [ 112.777126099000043, 49.501372375000031 ], [ 112.473268678000125, 49.534135234000033 ], [ 112.0301949 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-AMU", "NAME_1": "Amur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.481537313000103, 53.5180781050001 ], [ 123.27731205300006, 53.569444479000069 ], [ 122.859663127000147, 53.473946432 ], [ 122.401603231000081, 53.450950419000051 ], [ 122.316750529000046, 53.496012269000104 ], [ 122.025051942000061, 53.429823366000036 ], [ 122.017906528963067, 53.520506090583581 ], [ 121.947006463677326, 53.604712836028511 ], [ 121.970777622 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-YEV", "NAME_1": "Yevrey" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.639291627000034, 48.477248841000076 ], [ 130.607665650000058, 48.576725973000109 ], [ 130.529737590000082, 48.616258443000035 ], [ 130.676498658000071, 48.857432353000078 ], [ 130.625286399747552, 48.874359528469427 ], [ 130.673915643092414, 48.924249173460566 ], [ 130.840210403187484, 48.986105862195757 ], [ 130.982734003271617, 48.972153225091233 ], [ 13 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-KHA", "NAME_1": "Khabarovsk" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.489805949000072, 48.339169414000068 ], [ 134.386349731554787, 48.381337382714037 ], [ 134.580240513289027, 48.41782013609037 ], [ 134.751496209882134, 48.371518053115608 ], [ 134.905905390421367, 48.427948717359413 ], [ 134.979595981869011, 48.510424302939214 ], [ 134.98300662655447, 48.604527086555777 ], [ 134.868801710930143, 48.62648957053721 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-PRI", "NAME_1": "Primor'ye" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.874442994000162, 46.319783631000078 ], [ 133.933870891000083, 46.390761211000054 ], [ 133.847777955000083, 46.456984558000059 ], [ 133.902451620000079, 46.573644104000053 ], [ 133.998497620768489, 46.637704224770118 ], [ 134.41932010264054, 46.680148423910623 ], [ 134.468206008000834, 46.776111559500862 ], [ 134.410741814982771, 46.86008576094906 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-TYU", "NAME_1": "Tyumen'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.186143432000108, 55.32577138300006 ], [ 69.12258142100012, 55.397860006000045 ], [ 68.927296183000067, 55.433723450000102 ], [ 68.91783939600009, 55.370936585000052 ], [ 68.983261759000072, 55.308563131000099 ], [ 68.945641317000138, 55.270374247000021 ], [ 68.606076287990277, 55.423387356341379 ], [ 68.466343214967367, 55.406721707440795 ], [ 68.435854120 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-KGN", "NAME_1": "Kurgan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.734233685000049, 55.351714066000014 ], [ 68.700591675000055, 55.360497946000109 ], [ 68.605300334000106, 55.19559845 ], [ 68.177109416000064, 55.170535380000089 ], [ 68.308160848000057, 55.072815247000037 ], [ 68.166050659000121, 54.956129863000044 ], [ 67.882243693000134, 54.970444235000016 ], [ 67.69848230000008, 54.867918192000062 ], [ 67.311322470000107 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-OMS", "NAME_1": "Omsk" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.136928752000131, 54.727048239000098 ], [ 71.005980673000067, 54.774228821000108 ], [ 70.945932658000061, 54.887916973000088 ], [ 70.977145223000036, 55.07798289000003 ], [ 70.793177124000067, 55.233167216000098 ], [ 70.820358928000132, 55.294145406000084 ], [ 70.46858559900005, 55.285462098000053 ], [ 70.502497999582999, 55.347138780030662 ], [ 70.4750 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-NVS", "NAME_1": "Novosibirsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.664601685000036, 54.134061178000067 ], [ 76.837717732000101, 54.29689361600002 ], [ 76.83420373600012, 54.345676168000054 ], [ 76.752968384000042, 54.376682027000086 ], [ 76.910478150000074, 54.454610088000052 ], [ 76.67276656100006, 54.436471660000038 ], [ 76.623053833000085, 54.355908102000043 ], [ 76.476499471000125, 54.32314524400006 ], [ 76.214810 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-CHE", "NAME_1": "Chelyabinsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 63.328591957000071, 54.163110075000091 ], [ 63.123774455000103, 54.174110413000065 ], [ 63.084655396000073, 54.085640361000017 ], [ 62.62912764500004, 54.071170960000089 ], [ 62.550579467000091, 54.02683258100005 ], [ 62.586546264000049, 53.969833476000062 ], [ 62.525258016000066, 53.871854961000039 ], [ 62.389969116000032, 53.941566467000072 ], [ 62.4440 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-ALT", "NAME_1": "Altay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.0427510990001, 51.992512309000105 ], [ 78.476480754000136, 52.637925111000058 ], [ 77.784656738717501, 53.327440475497497 ], [ 77.847579380384047, 53.386224881373153 ], [ 77.936979608122385, 53.389247952431049 ], [ 77.936049432135576, 53.444903469419557 ], [ 78.05769575385591, 53.465160631058268 ], [ 77.926334262915873, 53.50004222336986 ], [ 77.925300734141 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-ORE", "NAME_1": "Orenburg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.029775856670426, 51.992610475393121 ], [ 59.985723104000101, 51.952282207000067 ], [ 60.06075728400009, 51.858670349000036 ], [ 60.138065226000094, 51.888875224000046 ], [ 60.479749797000125, 51.784256287000019 ], [ 60.356036418000031, 51.692272237000012 ], [ 60.375880167000105, 51.662532451000047 ], [ 60.51509647600011, 51.617909851000022 ], [ 60.9373962 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-SAR", "NAME_1": "Saratov" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.76700931792567, 51.759399922768182 ], [ 50.790677124000126, 51.59729095500002 ], [ 50.67089115400006, 51.567525330000123 ], [ 50.694197225000039, 51.611166077000078 ], [ 50.581697632000044, 51.63529897100004 ], [ 50.525370321000139, 51.565587464000018 ], [ 50.527230672000144, 51.47008941700004 ], [ 50.359592326000097, 51.413322856000022 ], [ 50.32538252800 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-AST", "NAME_1": "Astrakhan'" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.620191910000074, 48.669596618000085 ], [ 46.478278849000048, 48.410560405000055 ], [ 47.09891280100004, 48.265375468000016 ], [ 47.103563680000036, 48.101199443 ], [ 47.192033732000141, 48.071795553000115 ], [ 47.044239136000101, 47.986219381000055 ], [ 47.158650757000089, 47.871549378000012 ], [ 47.140564006000091, 47.792665304000067 ], [ 47.359 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-VGG", "NAME_1": "Volgograd" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.434460435000062, 50.376528084000043 ], [ 47.294766480000078, 50.275433655000043 ], [ 47.322310018000053, 50.237399801000024 ], [ 47.265104207000036, 50.186343486000041 ], [ 47.327632691000076, 50.10929392600012 ], [ 47.308719116000077, 50.044801738000089 ], [ 46.89990686100009, 49.820319316000095 ], [ 46.775108277000072, 49.332545472000064 ], [ 46.979230 [...]
-{ "type": "Feature", "properties": { "ISO": "UA-43", "NAME_1": "Crimea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.628517493895586, 46.12493524180271 ], [ 33.670279785283867, 46.218105600592992 ], [ 33.801878173838645, 46.202705858988168 ], [ 34.10524310448568, 46.095361345149911 ], [ 34.333933591661889, 46.069692004982016 ], [ 34.464613869534446, 45.955346761843543 ], [ 34.68863720264477, 45.974015372711278 ], [ 34.784313834915508, 45.899340928341132 ], [ 34.80998317508 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-MAG", "NAME_1": "Maga Buryatdan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.22078779800006, 59.090294861000075 ], [ 153.006707780000056, 59.060565006000047 ], [ 152.899912957000083, 58.903631903000075 ], [ 152.556739526, 58.94998146100005 ], [ 152.363291863000086, 59.059719143000052 ], [ 152.020298305000097, 58.87503653300007 ], [ 151.353664542000047, 58.832562286000041 ], [ 151.236027989000036, 58.998267490000046 ] [...]
-{ "type": "Feature", "properties": { "ISO": "RU-SAK", "NAME_1": "Sakhalin" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.529063347000033, 54.29718659100007 ], [ 142.543223504000025, 54.237209377000056 ], [ 142.635101759, 54.266058661000045 ], [ 142.625498894000089, 54.327297268000052 ], [ 142.723155144000089, 54.425604559000078 ], [ 143.01295006600003, 54.119086005000042 ], [ 142.851817254000025, 53.871975002000056 ], [ 142.933767123000052, 53.857652085000041 ], [ 1 [...]
-{ "type": "Feature", "properties": { "ISO": "UA-40", "NAME_1": "Sevastopol" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.729997684176972, 44.397974268572824 ], [ 33.372325066000087, 44.57648346600007 ], [ 33.571543816000087, 44.62055084800005 ], [ 33.514821811000047, 44.649115302000041 ], [ 33.559580925000034, 44.849758205000057 ], [ 33.67452773116986, 44.791645839184127 ], [ 33.689322826187436, 44.754164932765434 ], [ 33.611401992907645, 44.720629383639107 ], [ 33.6252107 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-CHU", "NAME_1": "Chukchi Autonomous Okrug" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 190.916636589000092, 65.81586334800005 ], [ 190.936778191000087, 65.828192450000074 ], [ 191.005381707000083, 65.81586334800005 ], [ 190.923472527000087, 65.755072333000044 ], [ 190.916636589000092, 65.81586334800005 ] ] ], [ [ [ 187.524709506000079, 64.641831773000035 ], [ 187.541514519000089, 64.611029364000046 ], [ 187.4806014330000 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-YAN", "NAME_1": "Yamal-Nenets" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.130625847000033, 66.556341864000046 ], [ 69.870616082000083, 66.477850653000075 ], [ 69.545420769000032, 66.591009833000044 ], [ 69.575205925000034, 66.638251044000071 ], [ 69.424571160000085, 66.768377997000073 ], [ 69.25709069100003, 66.746283270000049 ], [ 69.130707227000073, 66.796576239000046 ], [ 69.472992384000065, 66.797674872000073 ],  [...]
-{ "type": "Feature", "properties": { "ISO": "RU-NEN", "NAME_1": "Nenets" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 51.299571160000085, 68.495428778000075 ], [ 51.498301629000082, 68.48859284100007 ], [ 50.792491082000083, 68.379299221000053 ], [ 51.171722852000073, 68.501450914000031 ], [ 51.299571160000085, 68.495428778000075 ] ] ], [ [ [ 55.369476759000065, 68.94790273600006 ], [ 55.506602410000085, 68.913763739000046 ], [ 55.225433790000068, 68.913763739000046 ], [...]
-{ "type": "Feature", "properties": { "ISO": "RU-SA", "NAME_1": "Sakha (Yakutia)" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.487071160000028, 69.026678778000075 ], [ 161.514984571000014, 68.934637762000079 ], [ 161.409190300000091, 68.893255927000041 ], [ 161.477386915000011, 68.975165106000077 ], [ 161.455577019000089, 69.000962632000039 ], [ 161.134776238000086, 69.091864325000074 ], [ 161.168955925000091, 69.325262762000079 ], [ 161.065928582000083, 69.41742584 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-SPE", "NAME_1": "City of St. Petersburg" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.697139291337795, 59.950047624764714 ], [ 30.161957227000073, 59.868475653000075 ], [ 30.246104363000086, 59.97492096600007 ], [ 29.948252800000034, 60.029689846000053 ], [ 29.84896894600007, 60.166937567000048 ], [ 29.701019727000073, 60.200506903000075 ], [ 29.417897983000046, 60.168850002000056 ], [ 29.446606073411544, 60.2107953973 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-ARK", "NAME_1": "Arkhangel'sk" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.523406226628119, 63.971429154705895 ], [ 37.194183790000068, 63.890814520000049 ], [ 37.27898196700005, 63.822211005000042 ], [ 37.437810567000042, 63.792280503000086 ], [ 37.608423075000076, 63.815586401000076 ], [ 37.657391082000061, 63.898636898000063 ], [ 37.984629754000082, 63.945746161000045 ], [ 38.088063998000052, 64.034898179000038 ],  [...]
-{ "type": "Feature", "properties": { "ISO": "RU-KYA", "NAME_1": "Krasnoyarsk" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.502764071404727, 72.381906521968403 ], [ 79.513845248000052, 72.362209377000056 ], [ 80.010101759000065, 72.207749742000033 ], [ 80.834646030000044, 72.083319403000075 ], [ 80.820811394000032, 72.024603583000044 ], [ 80.73210696700005, 72.045111395000049 ], [ 80.813975457000083, 72.079901434000078 ], [ 80.632334832000083, 72.046087958000044 ], [ [...]
-{ "type": "Feature", "properties": { "ISO": "RU-KL", "NAME_1": "Kalmyk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.496429884000065, 45.565252997000073 ], [ 47.538259311000047, 45.50649648600006 ], [ 47.496755405000044, 45.42999909100007 ], [ 47.381358269000089, 45.411037502000056 ], [ 47.460134311000047, 45.390814520000049 ], [ 47.384043816000087, 45.29946523600006 ], [ 47.379405144000089, 45.202826239000046 ], [ 47.297129754000082, 45.187445380000042 ], [ 47.20118248800 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-KAM", "NAME_1": "Kamchatka" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 168.059255405000044, 54.546616929000038 ], [ 168.110362175000091, 54.503485419000071 ], [ 167.501149936000047, 54.785101630000042 ], [ 167.43913821700005, 54.866278387000079 ], [ 167.73406009200005, 54.762640692000048 ], [ 168.059255405000044, 54.546616929000038 ] ] ], [ [ [ 166.664398634, 54.756415106000077 ], [ 166.664398634, 54.680080471000053 ],  [...]
-{ "type": "Feature", "properties": { "ISO": "RU-X01~", "NAME_1": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.381195509000065, 68.792263088000084 ], [ 67.393077019000032, 68.757310289000031 ], [ 67.115814649000072, 68.79836660400008 ], [ 67.23560631600003, 68.820379950000074 ], [ 67.381195509000065, 68.792263088000084 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "RU-BA", "NAME_1": "Bashkortostan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.408413526962647, 56.329120185448176 ], [ 57.410790642873849, 56.235379137037512 ], [ 57.4776599467491, 56.178896795950322 ], [ 57.45533572756176, 56.13029511232952 ], [ 57.537191197315849, 56.100193590261938 ], [ 57.802084587733532, 56.150629788334015 ], [ 57.907194451762507, 56.115489814503292 ], [ 58.07938032434248, 56.141017971002555 ], [ 58.299935 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-SVE", "NAME_1": "Sverdlovsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.637340122148885, 56.098824163804068 ], [ 57.459986606596601, 56.125463365242069 ], [ 57.420092400943531, 56.319792588956773 ], [ 57.317463005613206, 56.373355210874251 ], [ 57.380921664802941, 56.56721934749487 ], [ 57.353946568379399, 56.60729442030123 ], [ 57.425776808752687, 56.659125882353578 ], [ 57.310641717141493, 56.724393215774285 ], [ 57.21865 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-KHM", "NAME_1": "Khanty-Mansiy" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.673288202088827, 61.935496324395842 ], [ 59.512057733077881, 61.974382839696261 ], [ 59.404053990099555, 62.108043932181715 ], [ 59.50740685404304, 62.306791490035209 ], [ 59.602904900740555, 62.375572821828257 ], [ 59.643729282380434, 62.510267442188649 ], [ 59.510817498728557, 62.547758694408174 ], [ 59.398679640652858, 62.718032538171087 ], [ 59.4 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-LIP", "NAME_1": "Lipetsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.160164015356997, 53.342170722201047 ], [ 40.106627231861239, 53.275663154431015 ], [ 40.145074496690654, 53.087974352034678 ], [ 40.075104608291042, 52.955682685107831 ], [ 40.083579543161363, 52.813288276232925 ], [ 39.95263146337129, 52.743266710090552 ], [ 39.984154086941544, 52.709806220180894 ], [ 39.951597934596975, 52.658853258171291 ], [ 40.3359672 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-TAM", "NAME_1": "Tambov" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.099289177653418, 52.969583645368914 ], [ 40.145074496690654, 53.087974352034678 ], [ 40.115928989031602, 53.297987371819715 ], [ 40.305478143401558, 53.374546007392325 ], [ 40.38919396333074, 53.345374661311553 ], [ 40.423403762073917, 53.493608506727185 ], [ 40.480971306980223, 53.453533433920825 ], [ 40.686746860679079, 53.564689440065592 ], [ 40.85169803 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-TOM", "NAME_1": "Tomsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 83.503564895103807, 61.047230129866591 ], [ 83.988806593949107, 60.82688182233818 ], [ 84.259591098650219, 60.855510566059763 ], [ 84.708349237427342, 60.458945624540888 ], [ 84.78421024011044, 60.36267243148751 ], [ 84.631868117119893, 60.20557607757388 ], [ 84.606236606933805, 60.046025092484001 ], [ 84.529445428263841, 59.979750067811324 ], [ 84.691916131624 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-TA", "NAME_1": "Tatarstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.631693150318597, 55.906691188847276 ], [ 53.98578006379887, 55.851061510280431 ], [ 53.96552290216016, 55.782357692853225 ], [ 54.039936964918979, 55.802072252132689 ], [ 54.026294387076291, 55.7637800160349 ], [ 54.095230746701588, 55.772875068529572 ], [ 54.230933058313951, 55.692466538699762 ], [ 54.00314334468959, 55.554361274553173 ], [ 53.9071285340 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-ULY", "NAME_1": "Ul'yanovsk" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.099007602818574, 55.016280423302874 ], [ 48.111720004674453, 55.000829169430574 ], [ 48.028727655157127, 54.960779934146615 ], [ 48.079163853229204, 55.007702134745671 ], [ 48.099007602818574, 55.016280423302874 ] ] ], [ [ [ 49.283948194653419, 54.885228989825976 ], [ 49.475771112147072, 54.775416571717358 ], [ 49.557936639364414, 54.667619534314 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-PNZ", "NAME_1": "Penza" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.113119744880294, 53.525105291875718 ], [ 42.087488233794943, 53.736306870965279 ], [ 42.134410435293319, 53.812167874547754 ], [ 42.307733189435112, 53.847462877110047 ], [ 42.53531619568588, 53.730829168731134 ], [ 42.509994744761627, 53.801315822866911 ], [ 42.574176874363218, 53.831029772206193 ], [ 42.573246698376408, 53.760000514811907 ], [ 42.719697707 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-KEM", "NAME_1": "Kemerovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.534678989843485, 56.782942613510784 ], [ 88.623975864794261, 56.83296540043284 ], [ 88.651674431629658, 56.741756497564268 ], [ 88.740144484280506, 56.719173895958477 ], [ 88.669451124569719, 56.638093574358948 ], [ 88.506360305383737, 56.620420234206392 ], [ 88.522483351925132, 56.551432196838391 ], [ 88.625009392669313, 56.516628119791847 ], [ 88.592453 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-ORL", "NAME_1": "Orel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.84102908722258, 53.008547675035175 ], [ 37.794933708923509, 52.91209361392913 ], [ 37.84350955592123, 52.882095445548373 ], [ 37.790489536362998, 52.845250149374863 ], [ 37.874412061867133, 52.781119697515976 ], [ 37.777467075245283, 52.722983710030178 ], [ 37.808679639553702, 52.640611477237883 ], [ 37.711838005719358, 52.613016262290671 ], [ 37.810643345214 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-IRK", "NAME_1": "Irkutsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.786273228426694, 58.453228257877754 ], [ 102.186145460944203, 58.522681383239217 ], [ 102.317920363034261, 58.647324938495103 ], [ 102.513257277101616, 58.721428941092711 ], [ 102.564933710422338, 58.802121689963997 ], [ 102.534031202677795, 58.900746162305495 ], [ 102.438636508767843, 58.943740953382246 ], [ 102.405873650848264, 59.072544461257849 ], [ 1 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-KK", "NAME_1": "Khakass" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.626869744642988, 54.96703278273668 ], [ 88.548424921372998, 55.016745510396959 ], [ 88.549975214084839, 55.083356431853815 ], [ 88.392775507383703, 55.267789619195526 ], [ 88.608773519881993, 55.445589632855217 ], [ 88.950157504964864, 55.289080308709231 ], [ 88.966073845931191, 55.184771430357216 ], [ 89.067049594862851, 55.132009793217378 ], [ 89.03790408 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-MO", "NAME_1": "Mordovia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.42508100788217, 53.988539537269787 ], [ 43.173830194407913, 54.00016673440723 ], [ 43.106340772908311, 53.909216213957109 ], [ 43.160084262878399, 53.898157456701256 ], [ 43.168145785699437, 53.833975327998985 ], [ 43.075644973436738, 53.864981188530976 ], [ 42.918135206574505, 53.796975003093905 ], [ 42.771374138605609, 53.828445949820718 ], [ 42.73799116 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-KLU", "NAME_1": "Kaluga" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.00961632663217, 53.618277900404735 ], [ 35.910604281562314, 53.644038600900672 ], [ 35.772421502150564, 53.519782620171782 ], [ 35.640853305635517, 53.545827542407153 ], [ 35.448823682566854, 53.440872708009067 ], [ 35.355702751780541, 53.284241441189522 ], [ 35.280461866721737, 53.322585354130752 ], [ 35.194782342031431, 53.270547187402769 ], [ 35.10352176 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-KOS", "NAME_1": "Kostroma" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.607475213310408, 57.538658758694737 ], [ 40.665249464691044, 57.588991603979309 ], [ 40.622564731976752, 57.654930731867751 ], [ 40.607681918885419, 57.926903794974123 ], [ 40.884667596232532, 58.125548000939489 ], [ 40.881463657122083, 58.194019274369964 ], [ 41.163927035804022, 58.360882473447361 ], [ 41.075456984052551, 58.395970771334021 ], [ 4 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-YAR", "NAME_1": "Yaroslavl'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.926008741809937, 58.579112047482965 ], [ 41.03421919126265, 58.522061266514186 ], [ 41.075456984052551, 58.395970771334021 ], [ 41.163927035804022, 58.360882473447361 ], [ 40.881463657122083, 58.194019274369964 ], [ 40.884667596232532, 58.125548000939489 ], [ 40.607681918885419, 57.926903794974123 ], [ 40.664422642391003, 57.584960843468139 ], [ 40.6074 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-VLA", "NAME_1": "Vladimir" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.271639439308672, 56.538306382933172 ], [ 39.337371860722783, 56.609361476950596 ], [ 39.309776645775571, 56.684447333277774 ], [ 39.356285435224606, 56.772090562729261 ], [ 39.679366489072208, 56.821777451967819 ], [ 39.858787062173178, 56.779635322512092 ], [ 39.880077751686883, 56.64966909375363 ], [ 39.828401320164744, 56.615898546380777 ], [ 39.947980 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-RYA", "NAME_1": "Ryazan'" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.05226362516612, 53.382039090331716 ], [ 39.903745558011053, 53.422320868713086 ], [ 39.885658806708534, 53.519265856234256 ], [ 39.727322219344899, 53.59238800690099 ], [ 39.511521437164561, 53.525363675193432 ], [ 39.483616163854833, 53.431829332357779 ], [ 39.181619093945983, 53.385733954058708 ], [ 39.047673780620471, 53.547119452700542 ], [ 38.8 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-IVA", "NAME_1": "Ivanovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.630048456371128, 57.749860337784355 ], [ 42.180195754330555, 57.560052801895267 ], [ 42.35300174273624, 57.583307197069473 ], [ 42.414496698064113, 57.635086982278381 ], [ 42.649727817784537, 57.63524201100995 ], [ 42.775818312065439, 57.703248196447078 ], [ 42.854676548284033, 57.659736640533481 ], [ 42.826151157350012, 57.52987376636122 ], [ 42.870076125 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-NIZ", "NAME_1": "Nizhegorod" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.722615187241047, 54.969823309797903 ], [ 45.686855095786029, 54.994369615265498 ], [ 45.76995079899018, 55.038397936015883 ], [ 45.740391880181107, 55.077284451316359 ], [ 45.782043085020348, 55.11720449539115 ], [ 45.735120884421235, 55.172188218811243 ], [ 45.604689568568688, 55.16381663672837 ], [ 45.571306593924135, 55.085268459771555 ], [ 45.489864 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-TUL", "NAME_1": "Tula" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.895435012216012, 53.565206204003061 ], [ 38.704128858659885, 53.509757391690243 ], [ 38.753944940006932, 53.376380520044961 ], [ 38.477269321022334, 53.310027981006499 ], [ 38.597985466755858, 53.236492418290425 ], [ 38.576901482817163, 53.167556056866488 ], [ 38.635502557397103, 53.117223212481235 ], [ 38.603153110627545, 53.055779933996746 ], [ 38.327511021 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-CU", "NAME_1": "Chuvash" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.412373488345793, 55.829357407818065 ], [ 48.224994745211291, 55.701406562462864 ], [ 48.08102420430356, 55.680270900781409 ], [ 48.01839236831313, 55.614435126579792 ], [ 48.091566195823248, 55.536455390403944 ], [ 47.973847283625219, 55.499506741442929 ], [ 47.834114210602309, 55.34210032826752 ], [ 47.696034783978064, 55.323135077821576 ], [ 47.6990320166 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-VLG", "NAME_1": "Vologda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.772919548997947, 61.522136541867894 ], [ 37.857358840238248, 61.284579983079709 ], [ 37.973010694887648, 61.204739894930185 ], [ 37.96453576001727, 61.14836090842914 ], [ 38.178579543011494, 61.125933336454295 ], [ 38.144886509105106, 61.072964992840127 ], [ 38.22012739416391, 60.919537665131088 ], [ 38.328647901979082, 60.910235907960782 ], [ 38.372262810 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-NGR", "NAME_1": "Novgorod" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.72990115671297, 59.103214423207021 ], [ 34.753568963037196, 59.059160264934235 ], [ 34.877592400668732, 59.048850816511958 ], [ 34.830773552857181, 58.987407538027412 ], [ 35.039442987304028, 58.917851060777821 ], [ 35.168427362332864, 58.93325063690736 ], [ 35.124605747157489, 58.815014959872485 ], [ 35.216383090806971, 58.828244127464473 ], [ 35.2656824 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-TVE", "NAME_1": "Tver'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.626261833816557, 58.490228582782834 ], [ 37.64403852675656, 58.429353745978574 ], [ 37.449115024738603, 58.407546292527343 ], [ 37.369843377369932, 58.349410305041488 ], [ 37.421933220941355, 58.315252184041015 ], [ 37.346795688670056, 58.248279527378259 ], [ 37.672253859328123, 58.07542186122987 ], [ 37.539755486826209, 58.049376939893818 ], [ 37.5151575054 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-MOW", "NAME_1": "Moskovsskaya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.597694126382805, 55.272879746902788 ], [ 36.57847049261909, 55.317295641280793 ], [ 36.422924432316677, 55.318690904361745 ], [ 36.348613722345362, 55.295694892505253 ], [ 36.317607862712691, 55.225311591156981 ], [ 36.139737583222882, 55.184952298409826 ], [ 35.706689080736453, 55.294299628524982 ], [ 35.567472771651069, 55.289855455065151 ], [ 35.46 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-MOS", "NAME_1": "Moskva" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 37.120038918361388, 54.990824175695138 ], [ 37.081178826941311, 55.099634508026099 ], [ 36.904342075326497, 55.229135646992461 ], [ 37.014455569369034, 55.301191475106464 ], [ 36.914019492805323, 55.425881693485337 ], [ 36.912781945630286, 55.516590057085466 ], [ 37.021108874375045, 55.51924166766878 ], [ 37.02385475639187, 55.447848746922091 ], [ 37.17 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-ME", "NAME_1": "Mariy-El" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.07201378840557, 56.622745673274153 ], [ 50.197587517849627, 56.582748114833578 ], [ 49.980959914268624, 56.438002428469247 ], [ 49.964526807566074, 56.500944321922873 ], [ 49.854042595889041, 56.441361396311379 ], [ 49.749242792021221, 56.469990139133586 ], [ 49.812288039161672, 56.499755764416989 ], [ 49.787793409638141, 56.532673651967457 ], [ 49.6506441 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-KIR", "NAME_1": "Kirov" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.429924757721381, 56.589414374573721 ], [ 50.324814893692349, 56.676101590515941 ], [ 50.07201378840557, 56.622745673274153 ], [ 50.101262647952808, 56.792399400312036 ], [ 50.016926711298652, 56.863661200803733 ], [ 49.741801385025894, 56.899524645046313 ], [ 49.758957961240867, 56.970476386276175 ], [ 49.707901646443815, 57.07248566308283 ], [ 49.4108655130 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-UD", "NAME_1": "Udmurt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.352476027246837, 56.358524075525622 ], [ 54.319713169327258, 56.339042060242832 ], [ 54.371389600849398, 56.299251207377267 ], [ 54.34575809066331, 56.252587389196606 ], [ 54.117244906627093, 56.158226223161648 ], [ 54.005830518963251, 56.028880112926856 ], [ 53.837778762379969, 56.038646958989943 ], [ 53.631693150318597, 55.906691188847276 ], [ 53.289078404 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-KO", "NAME_1": "Komi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.485392694117536, 61.993270575776421 ], [ 59.338011509423609, 61.844649155833849 ], [ 59.391858351281883, 61.757600206484312 ], [ 59.348656853730802, 61.682178453372899 ], [ 59.015240513039203, 61.549059964146011 ], [ 58.691539340667987, 61.502732041850209 ], [ 57.085952589840133, 61.488030096811485 ], [ 56.67574506957925, 61.522343248342224 ], [ 56.53818240689 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-PER", "NAME_1": "Perm'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.968355746620375, 56.320438544103524 ], [ 54.930218540153476, 56.386532700723535 ], [ 54.559181756033183, 56.538409735720677 ], [ 54.419655388585284, 56.337646796262618 ], [ 54.352476027246837, 56.358524075525622 ], [ 54.317852818252959, 56.451283271106035 ], [ 54.24498904820598, 56.431852931767366 ], [ 54.179256625892549, 56.527350979364201 ], [ 54.041073845 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-SAM", "NAME_1": "Samara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 51.386042108056813, 54.676352850703495 ], [ 51.408676384707348, 54.594600735535494 ], [ 51.491668736023314, 54.596512763453234 ], [ 51.513476190373865, 54.639300848954974 ], [ 51.696410760048536, 54.557264512946915 ], [ 51.931641879768904, 54.531865545858238 ], [ 51.932675409442538, 54.43631582321666 ], [ 52.03375451026244, 54.424378566817381 ], [ 52.07 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-STA", "NAME_1": "Stavropol'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.641727328553372, 45.975385239836896 ], [ 42.110949333644783, 45.928721422555554 ], [ 42.157148064731359, 45.960399074857378 ], [ 42.17740522637007, 46.099098619105973 ], [ 42.325406527789028, 46.12584117333148 ], [ 42.319515415304124, 45.975514431046122 ], [ 42.51660932765833, 45.989699612147376 ], [ 42.915551385088349, 46.241415514514358 ], [ 43.392524 [...]
-{ "type": "Feature", "properties": { "ISO": "RU-AD", "NAME_1": "Adygey" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.634924758071122, 45.193520820529443 ], [ 39.890102980168365, 45.080788683251114 ], [ 40.255662062054512, 45.088100898137895 ], [ 40.527583449216763, 44.915191555146123 ], [ 40.728398064618943, 44.607768459846511 ], [ 40.754132927592536, 44.474572455354519 ], [ 40.640651483279328, 44.457622586513139 ], [ 40.676514926622531, 44.535679837054829 ], [ 40.53936567 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-TOM", "NAME_1": "Tomsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.623975864794261, 56.83296540043284 ], [ 88.551835565159195, 56.786766669346264 ], [ 88.41892378060794, 56.82852122697301 ], [ 88.144418572858797, 56.718889676017682 ], [ 87.779169550234542, 56.547969876208811 ], [ 87.620419549922246, 56.639747218958973 ], [ 87.396970656070891, 56.616027736690683 ], [ 87.166700473747824, 56.675558987257432 ], [ 87.12980350073 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-AD", "NAME_1": "Adygey" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.751506788707331, 45.12654816296731 ], [ 39.964310337352174, 45.074768377758403 ], [ 40.174220005249026, 45.109598294125931 ], [ 40.41554894392857, 44.99994090384962 ], [ 40.527583449216763, 44.915191555146123 ], [ 40.624528435838613, 44.767035224096276 ], [ 40.554248488177166, 44.71975128829132 ], [ 40.393638136790571, 44.725254828047866 ], [ 40.327078892177 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-KC", "NAME_1": "Karachay-Cherkess" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.362302122144584, 43.225792221665223 ], [ 42.27967288592086, 43.228059393886426 ], [ 42.122214796727519, 43.207337144537377 ], [ 42.087798292821134, 43.199120591802966 ], [ 42.049971144383477, 43.190128892584184 ], [ 41.580542433444094, 43.219248562180653 ], [ 41.460756463391533, 43.276299343430878 ], [ 41.358230421724471, 43.33337596289725 ], [ 41 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-IN", "NAME_1": "Ingush" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.077441997398083, 42.69290202028975 ], [ 45.071595493353897, 42.694164333662926 ], [ 44.943386264837756, 42.7302603216188 ], [ 44.870987583196865, 42.756382758142351 ], [ 44.850523716009263, 42.746822618168352 ], [ 44.771045363144367, 42.616778876305844 ], [ 44.69177371600864, 42.70964142513435 ], [ 44.644334751164706, 42.734730333012052 ], [ 44.6284184102813 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-KB", "NAME_1": "Kabardin-Balkar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.386360332125371, 42.887110559941249 ], [ 43.347979770690756, 42.896658433598631 ], [ 43.089184197773051, 42.989055894536506 ], [ 43.00014570493417, 43.049672349614866 ], [ 42.991619093606005, 43.091478583338997 ], [ 42.890023227720178, 43.132613023443326 ], [ 42.760625441261311, 43.169561672532012 ], [ 42.660269809750503, 43.159071356776764 ], [ 42. [...]
+{ "type": "Feature", "properties": { "ISO": "RU-SE", "NAME_1": "North Ossetia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.644334751164706, 42.734730333012052 ], [ 44.576431919133171, 42.748476264001681 ], [ 44.505893589054779, 42.748657131514705 ], [ 44.329521925642609, 42.703491929691609 ], [ 44.199710727725403, 42.653624172529959 ], [ 44.102714064313574, 42.616365464847519 ], [ 44.004683872255896, 42.595591539066177 ], [ 43.957451613141103, 42.566549384118147 ], [ 43.8 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-STA", "NAME_1": "Stavropol'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.712627393839114, 45.996004137580883 ], [ 42.149706658635353, 45.948978583294945 ], [ 42.17740522637007, 46.099098619105973 ], [ 42.33966922415533, 46.10710846598289 ], [ 42.317448357755495, 45.980811266126977 ], [ 42.533455844611524, 45.997657783080228 ], [ 42.671225212873253, 46.08840159795534 ], [ 42.834626092220333, 46.155787664868797 ], [ 42.9054228 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-CHU", "NAME_1": "Chukchi Autonomous Okrug" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 163.201367187500011, 69.714746093749994 ], [ 163.498046875, 69.693261718749994 ], [ 163.705273437500011, 69.701806640624994 ], [ 163.945996093750011, 69.73515625 ], [ 164.159570312500023, 69.719287109375003 ], [ 164.513281250000034, 69.609130859375 ], [ 165.7607421875, 69.584423828124997 ], [ 165.98046875, 69.545996093750006 ], [ 166.8 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-KGD", "NAME_1": "Kaliningrad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.899789259533236, 55.286651516330494 ], [ 20.957798864691366, 55.278915763861654 ], [ 20.859375, 55.183642578124996 ], [ 20.594824218750006, 54.982373046874997 ], [ 20.677734375, 54.955664062499999 ], [ 20.774023437500006, 54.947021484375 ], [ 20.8875, 54.909472656249996 ], [ 20.995898437500017, 54.902685546874999 ], [ 21.188867187500023, 54.93520507812 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-MUR", "NAME_1": "Murmansk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.524238227606077, 63.976453512260044 ], [ 36.554699334406735, 63.763963528294141 ], [ 36.374968702943249, 63.644952704903403 ], [ 35.944607374730538, 63.619682929023952 ], [ 35.882285597102623, 63.573355008526789 ], [ 36.057985467155561, 63.460080267989952 ], [ 36.21983605289148, 63.416491196811251 ], [ 36.262004021668247, 63.23552033099844 ], [ 36.3201916 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-NGR", "NAME_1": "Novgorod" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.72990115671297, 59.103214423207021 ], [ 34.878522576655541, 59.043373115177076 ], [ 34.83149702326898, 58.991024889187258 ], [ 35.13080691890417, 58.937333076060611 ], [ 35.124605747157489, 58.815014959872485 ], [ 35.265682407317229, 58.764785468274738 ], [ 35.398490838181601, 58.843540350806506 ], [ 35.751234165424364, 58.826538805121743 ], [ 35.83608686 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-PSK", "NAME_1": "Pskov" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.669390063147297, 58.982473793362836 ], [ 27.873162061979542, 59.01438263624965 ], [ 28.131027459249822, 58.990146389144513 ], [ 28.271794061047046, 58.856459459136715 ], [ 28.551673618242887, 58.865141100481367 ], [ 28.756622348742383, 58.826952216271764 ], [ 28.946481560575535, 58.819820869437535 ], [ 28.974800245934603, 58.779926662885146 ], [ 29.231528761 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-LEN", "NAME_1": "Leningrad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.277360043513063, 61.304506764614658 ], [ 29.491254509987641, 61.239156399248373 ], [ 29.576417270740421, 61.170736803560601 ], [ 29.86952599462893, 61.176292019261268 ], [ 32.703358189428855, 60.645704250950416 ], [ 32.909960565427752, 60.724407457538121 ], [ 33.078012322910354, 60.737895005749863 ], [ 33.253402133701513, 60.898841253920693 ], [ 33.42259 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-SPE", "NAME_1": "City of St. Petersburg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.669726562500017, 59.955664062499999 ], [ 30.12255859375, 59.873583984375003 ], [ 30.156835937500006, 59.904296875 ], [ 30.172656250000017, 59.957128906249999 ], [ 30.059960937500023, 60.002587890624994 ], [ 29.976757812500011, 60.0263671875 ], [ 29.872265625000011, 60.120849609375 ], [ 29.72119140625, 60.1953125 ], [ 29.5693359375, 60.201855 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-BRY", "NAME_1": "Bryansk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.706151481550329, 53.419852000542875 ], [ 32.908100212554757, 53.493479316417279 ], [ 32.899005160959405, 53.568668525532019 ], [ 33.288955518682201, 53.821728014136511 ], [ 33.28740522597036, 53.953916328275909 ], [ 33.474577264429172, 53.971848049947539 ], [ 33.501242303389574, 54.01579885543282 ], [ 33.68231652198989, 54.026392523795892 ], [ 33.780191684 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-SMO", "NAME_1": "Smolensk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.706151481550329, 53.419852000542875 ], [ 32.685684848773093, 53.448159084682516 ], [ 32.469625685360796, 53.54696442322458 ], [ 32.442392205542973, 53.57926219340699 ], [ 32.425235630022058, 53.61727020935767 ], [ 32.45097049330343, 53.653340359097399 ], [ 32.450143670386751, 53.692898668016824 ], [ 32.200443149552427, 53.781239529019786 ], [ 31.992135450 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-KR", "NAME_1": "Karelia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.8583984375, 65.077929687500003 ], [ 35.827343750000011, 65.036474609375006 ], [ 35.84228515625, 65.00146484375 ], [ 35.778710937500023, 64.976660156250006 ], [ 35.680078125000023, 65.0576171875 ], [ 35.621386718750017, 65.058789062499997 ], [ 35.55859375, 65.093603515625006 ], [ 35.52890625, 65.151074218749997 ], [ 35.585742187500017, 65.167089843750006 ],  [...]
+{ "type": "Feature", "properties": { "ISO": "RU-ARK", "NAME_1": "Arkhangel'sk" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.524238227606077, 63.976453512260044 ], [ 36.713769531250023, 63.945068359375 ], [ 36.975195312500006, 63.909521484374999 ], [ 37.372753906250011, 63.816748046874999 ], [ 37.442187500000017, 63.813378906249994 ], [ 37.635351562500006, 63.893408203124999 ], [ 37.967968750000011, 63.949121093749994 ], [ 38.07080078125, 64.025830078124997 ], [ 38.0 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-IVA", "NAME_1": "Ivanovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.727388137052856, 57.465794990446398 ], [ 43.688837517637296, 57.279191392768553 ], [ 43.538562453094698, 57.261776435034449 ], [ 43.514274530045498, 57.117573351029307 ], [ 43.669613884772957, 57.042720037799484 ], [ 43.50125206892784, 56.906449287204794 ], [ 43.338988071142523, 56.860663968167557 ], [ 42.977563104353749, 56.841802070509118 ], [ 42.8299752 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-VLG", "NAME_1": "Vologda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.113538039249079, 59.611297106076563 ], [ 46.87499962673138, 59.632484442802763 ], [ 46.756970656170836, 59.606904609460116 ], [ 46.406397739264207, 59.632536118746827 ], [ 46.356271599554645, 59.346972153741888 ], [ 46.182328728687878, 59.345163479510916 ], [ 46.003631625998707, 59.282118232370522 ], [ 45.918262159670917, 59.184423936915152 ], [ 45.3661511 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-KOS", "NAME_1": "Kostroma" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.113538039249079, 59.611297106076563 ], [ 47.056280551805969, 59.378546454155526 ], [ 47.252444289072685, 59.35549876635497 ], [ 47.23921512237996, 59.220209865892571 ], [ 47.570874464784708, 59.05985789692437 ], [ 47.602190382779895, 58.906688950734463 ], [ 47.452432082174823, 58.921054998989007 ], [ 47.281899855094196, 58.892994696947653 ], [ 47.31290571 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-NIZ", "NAME_1": "Nizhegorod" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.727388137052856, 57.465794990446398 ], [ 43.845727166875236, 57.430861721291365 ], [ 43.995382113793482, 57.439517524214352 ], [ 44.303166945198313, 57.516954658031011 ], [ 44.483207635024314, 57.645732327484893 ], [ 44.612295362840712, 57.706684679554314 ], [ 44.727740512814364, 57.703584093231314 ], [ 44.864579705988604, 57.879826564744121 ], [ 44.792 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-TVE", "NAME_1": "Tver'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.626261833816557, 58.490228582782834 ], [ 37.64403852675656, 58.429353745978574 ], [ 37.449115024738603, 58.407546292527343 ], [ 37.349689569418047, 58.239003607730297 ], [ 37.562079706013606, 58.165261339439212 ], [ 37.673494093677448, 58.082966621012702 ], [ 37.548747185634113, 58.052787584579335 ], [ 37.484358351356832, 57.980750636832397 ], [ 37.366536086 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-YAR", "NAME_1": "Yaroslavl'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.626261833816557, 58.490228582782834 ], [ 37.716592238441024, 58.621693427409696 ], [ 37.9408679536931, 58.641330471424112 ], [ 38.047631463221421, 58.735743313403191 ], [ 38.478199497009143, 58.706029364963172 ], [ 38.550029738281751, 58.777239487712166 ], [ 38.915898879429733, 58.744373277005081 ], [ 38.999924757721374, 58.846330877867672 ], [ 38.94029 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-KLU", "NAME_1": "Kaluga" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.259049107330441, 54.835826321427589 ], [ 37.207579379584672, 54.687669990377742 ], [ 37.088620233037318, 54.548815416498257 ], [ 36.805019971894183, 54.609948634821592 ], [ 36.848428175919537, 54.472153429037519 ], [ 36.965423617705767, 54.395749823995175 ], [ 36.891422966996288, 54.283198553870136 ], [ 36.714482862594025, 54.317149970194919 ], [ 36.4614750 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-KRS", "NAME_1": "Kursk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.31334287358878, 50.959216272017677 ], [ 35.309090610502352, 50.986913967485165 ], [ 35.33472212091911, 51.021123765662381 ], [ 35.311932814278407, 51.043913072303098 ], [ 35.269196404773027, 51.046755276079153 ], [ 35.197986281074833, 51.043913072303098 ], [ 35.158092075345508, 51.06099213317556 ], [ 35.115355665840127, 51.120833441769562 ], [ 35.09256635919 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-LIP", "NAME_1": "Lipetsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.895435012216012, 53.565206204003061 ], [ 39.041472608873789, 53.549599921399249 ], [ 39.161775344356613, 53.394570624134985 ], [ 39.415403272842752, 53.413587551424314 ], [ 39.523613722295408, 53.462318427153662 ], [ 39.511521437164561, 53.525363675193432 ], [ 39.740241326775788, 53.588253892702937 ], [ 39.906846144334054, 53.498543605702821 ], [ 39.917904 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-MOW", "NAME_1": "Moskovskaya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.904342075326497, 55.229135646992461 ], [ 36.586325310764437, 55.308665675880206 ], [ 36.422924432316677, 55.318690904361745 ], [ 36.238026156981562, 55.193711453220942 ], [ 35.856447381341582, 55.238489081006264 ], [ 35.754954867573076, 55.286858222428975 ], [ 35.578634880795107, 55.290475571790182 ], [ 35.465360142056909, 55.220350653759624 ], [ 35.36 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-MOS", "NAME_1": "Moskva" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.120038918361388, 54.990824175695138 ], [ 37.084176059577487, 55.095758775347178 ], [ 36.904342075326497, 55.229135646992461 ], [ 37.014455569369034, 55.301191475106464 ], [ 36.914019492805323, 55.425881693485337 ], [ 37.17487824303646, 55.447848746922091 ], [ 37.210574702960173, 55.601618114684243 ], [ 37.414078402796008, 55.659858710411129 ], [ 37.34824214 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-ORL", "NAME_1": "Orel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.84102908722258, 53.008547675035175 ], [ 37.838755324098884, 52.89051870447463 ], [ 37.790489536362998, 52.845250149374863 ], [ 37.870691358819158, 52.77176626170359 ], [ 37.776640252045979, 52.718539537469667 ], [ 37.812710401863512, 52.648414619439109 ], [ 37.727134229960711, 52.596893215749276 ], [ 37.782841423792661, 52.508423163098485 ], [ 37.910792270946 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-ROS", "NAME_1": "Rostov" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.080633986172472, 49.576844997752957 ], [ 40.169569126214185, 49.62405141923756 ], [ 40.411001417681234, 49.596843777018648 ], [ 40.61233279792026, 49.647512519087456 ], [ 40.884770949020037, 49.690300605488517 ], [ 41.029258253865294, 49.794221910212968 ], [ 41.056440056763165, 49.916229967139259 ], [ 41.178499789633577, 50.015707099303143 ], [ 41.341487257 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-TUL", "NAME_1": "Tula" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.895435012216012, 53.565206204003061 ], [ 38.697204217400667, 53.500093899313981 ], [ 38.761696405364773, 53.382039090331716 ], [ 38.477269321022334, 53.310027981006499 ], [ 38.595401646169023, 53.240316474125962 ], [ 38.632712030335881, 53.123217677753587 ], [ 38.594574822969662, 53.048545234375013 ], [ 38.472928501249328, 53.041233019488232 ], [ 38.306633742 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-VGG", "NAME_1": "Volgograd" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.446630581564115, 50.36845608670582 ], [ 47.429177687373738, 50.357960110060773 ], [ 47.376364373571448, 50.31811758076374 ], [ 47.326444939977506, 50.273520819695847 ], [ 47.294715610550298, 50.21750356709147 ], [ 47.297712843623231, 50.140247300815119 ], [ 47.295232374873223, 50.05849518492937 ], [ 47.248361850784477, 50.000875962923928 ], [ 47.12960940 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-BEL", "NAME_1": "Belgorod" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.174560520634948, 49.855899084955681 ], [ 39.114956495934251, 49.841764227897258 ], [ 39.027675001793256, 49.818406480501324 ], [ 38.918379347495943, 49.824685167024782 ], [ 38.77668257015165, 49.884345608105761 ], [ 38.647749871583414, 49.952868557324777 ], [ 38.551993442546575, 49.954573879590413 ], [ 38.451224399577427, 49.964082343132119 ], [ 38.258574 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-KDA", "NAME_1": "Krasnodar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.688725814295594, 43.51959935021447 ], [ 40.647989536304948, 43.533906358405872 ], [ 40.519005161304449, 43.512021389330258 ], [ 40.342271762866233, 43.542743028327777 ], [ 40.150138787605044, 43.569795640632577 ], [ 40.084613071458961, 43.553104153002309 ], [ 40.023738234219138, 43.484839585944741 ], [ 39.97831465023458, 43.419830634121567 ], [ 39.873632 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-MO", "NAME_1": "Mordovia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.466793247210546, 54.871302192042492 ], [ 42.636395298304365, 54.786733710492342 ], [ 43.097659133362299, 54.798774318779749 ], [ 43.155226678268548, 54.902747301246904 ], [ 43.368960402000937, 54.949669500946698 ], [ 43.610496047154811, 54.90114533079236 ], [ 43.689457635261647, 54.830555324768397 ], [ 43.94908003081872, 54.806990872130996 ], [ 43.93905480 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-PNZ", "NAME_1": "Penza" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.791551547765664, 54.003887438354582 ], [ 45.95722619023644, 54.005386054222981 ], [ 46.211991001183719, 53.908699449120263 ], [ 46.19256066274437, 53.850253404171212 ], [ 46.468306104842839, 53.654296373378884 ], [ 46.493627556666411, 53.510894273252063 ], [ 46.794797805174539, 53.408497422817788 ], [ 46.905902133576603, 53.335323595307671 ], [ 46.9544779796 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-RYA", "NAME_1": "Ryazan'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.160164015356997, 53.342170722201047 ], [ 39.917904900690587, 53.41622304975391 ], [ 39.906846144334054, 53.498543605702821 ], [ 39.740241326775788, 53.588253892702937 ], [ 39.511521437164561, 53.525363675193432 ], [ 39.523613722295408, 53.462318427153662 ], [ 39.415403272842752, 53.413587551424314 ], [ 39.161775344356613, 53.394570624134985 ], [ 39.0414726 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-TAM", "NAME_1": "Tambov" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.134410435293319, 53.812167874547754 ], [ 42.093896112015955, 53.539833076235425 ], [ 42.312177361995623, 53.440407620015606 ], [ 42.354241977984884, 53.368215644436418 ], [ 42.747499626706372, 53.022267768142967 ], [ 42.905422804718626, 52.969686998156419 ], [ 43.095178663764273, 52.821711534259862 ], [ 43.236565383185848, 52.661230374082493 ], [ 43.0416418 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-VLA", "NAME_1": "Vladimir" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.206466099231079, 55.309337470347941 ], [ 40.137323032232132, 55.434187731178838 ], [ 40.140526971342638, 55.517231757539548 ], [ 40.036864048137261, 55.545653794786745 ], [ 40.085026483085699, 55.612600613027837 ], [ 39.900231561437408, 55.734479478744902 ], [ 39.823130324404929, 55.832819729347023 ], [ 39.555239698653168, 55.776079006740758 ], [ 39.35814 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-VOR", "NAME_1": "Voronezh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.080633986172472, 49.576844997752957 ], [ 40.030662876146238, 49.596740424185327 ], [ 39.95852257666678, 49.590771796255623 ], [ 39.876822137213338, 49.567672431021151 ], [ 39.780548943853574, 49.572039089549818 ], [ 39.626553175623798, 49.650664781281904 ], [ 39.462790561690838, 49.728024400422839 ], [ 39.368481072758186, 49.730659898469725 ], [ 39.302955 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-BA", "NAME_1": "Bashkortostan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.631693150318597, 55.906691188847276 ], [ 53.777420688613859, 55.970227363302172 ], [ 53.837778762379969, 56.038646958989943 ], [ 54.046758254289955, 56.057973945541107 ], [ 54.117244906627093, 56.158226223161648 ], [ 54.34575809066331, 56.252587389196606 ], [ 54.352476027246837, 56.358524075525622 ], [ 54.430197381004291, 56.342685248025759 ], [ 54.53 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-CHE", "NAME_1": "Chelyabinsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 63.319128449256617, 54.173229665859225 ], [ 63.292705519468456, 54.170440578826032 ], [ 63.191316359311799, 54.171060696013527 ], [ 63.126617466082394, 54.139279690154027 ], [ 63.073959181576953, 54.105224921273688 ], [ 62.632694126236657, 54.069309800830823 ], [ 62.588252394465655, 54.044453436898436 ], [ 62.499007195897576, 54.013163357145714 ], [ 62.04 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-KGN", "NAME_1": "Kurgan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.771528270505272, 55.330969053000025 ], [ 68.712943149698475, 55.308510647189948 ], [ 68.524789259723775, 55.204847724012453 ], [ 68.438437941364043, 55.194409084689497 ], [ 68.301960483681199, 55.186502590548841 ], [ 68.20620405464436, 55.160922756564361 ], [ 68.225324334592358, 55.115240790418341 ], [ 68.244031203082017, 55.052428086967581 ], [ 68.20940799 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-NEN", "NAME_1": "Nenets" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.220832801854577, 66.407181173142249 ], [ 44.31640625, 66.481689453125 ], [ 44.488671875000023, 66.671777343749994 ], [ 44.437109375, 66.794628906249997 ], [ 44.429296875, 66.937744140625 ], [ 44.40390625, 67.004199218750003 ], [ 44.291796875000017, 67.099658203125003 ], [ 44.074414062500011, 67.167333984375006 ], [ 43.855371093750023, 67.188623046874 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-YAN", "NAME_1": "Yamal-Nenets" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.057226562500006, 66.599462890625006 ], [ 70.110058593750011, 66.569091796875 ], [ 70.059179687500006, 66.517578125 ], [ 70.020703125000011, 66.502197265625 ], [ 69.8447265625, 66.48974609375 ], [ 69.6513671875, 66.565332031249994 ], [ 69.469335937500006, 66.715966796874994 ], [ 69.502734375000017, 66.751074218750006 ], [ 69.616406250000011, 66. [...]
+{ "type": "Feature", "properties": { "ISO": "RU-KO", "NAME_1": "Komi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.348656853730802, 61.682178453372899 ], [ 59.113942498847223, 61.615154120766022 ], [ 59.02330203586024, 61.552393094465685 ], [ 58.691539340667987, 61.502732041850209 ], [ 57.204394973349338, 61.510871079936351 ], [ 57.085952589840133, 61.488030096811485 ], [ 56.702410109438972, 61.52477204019749 ], [ 56.544900344375378, 61.435087592518357 ], [ 56.390801223097 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-KIR", "NAME_1": "Kirov" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.43647830612889, 56.144428615688014 ], [ 51.224398227895847, 56.099909370321143 ], [ 51.073089633679615, 56.130527656326251 ], [ 50.837238397234216, 56.248375758834186 ], [ 50.907828404157499, 56.295995592322697 ], [ 50.85119103433874, 56.390253403771567 ], [ 50.705566847931664, 56.329921170225816 ], [ 50.586090935648144, 56.366533922402596 ], [ 50.4974141783 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-ME", "NAME_1": "Mariy-El" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.07201378840557, 56.622745673274153 ], [ 50.179914177697128, 56.54946849207721 ], [ 50.024574822969669, 56.459551500401403 ], [ 49.885048456421089, 56.441774807461343 ], [ 49.764539016262574, 56.535929267022027 ], [ 49.577677036166278, 56.504716701814289 ], [ 49.557936639364414, 56.441490587520548 ], [ 49.275886671832438, 56.353201402023046 ], [ 49.03703820 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-SVE", "NAME_1": "Sverdlovsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.485392694117536, 61.993270575776421 ], [ 59.651894158888297, 61.936478177226093 ], [ 59.779431593992854, 61.952342841349036 ], [ 59.984276970805524, 61.902785143319704 ], [ 59.98768761639036, 61.747084052487025 ], [ 60.056623976015658, 61.721194159882543 ], [ 60.430864699246456, 61.747084052487025 ], [ 60.759423456227466, 61.703624173416813 ], [ 61.1651 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-UD", "NAME_1": "Udmurt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.631693150318597, 55.906691188847276 ], [ 53.289078404344878, 55.858270372379764 ], [ 53.276469354377184, 55.935345770990523 ], [ 53.405453729406076, 56.02298900044201 ], [ 53.563997023243985, 56.181067206286514 ], [ 53.550871210238142, 56.241011868003284 ], [ 53.427157830969122, 56.276539415461627 ], [ 53.260346306936469, 56.253879300389372 ], [ 53.335587192 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-AST", "NAME_1": "Astrakhan'" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 47.987109375000017, 45.554052734374999 ], [ 47.983007812500006, 45.488232421874997 ], [ 47.967675781250023, 45.469970703125 ], [ 47.920312500000023, 45.562060546874996 ], [ 47.917578125, 45.6181640625 ], [ 47.947167968750023, 45.647070312499999 ], [ 47.987109375000017, 45.554052734374999 ] ] ], [ [ [ 46.643564084562428, 48.659068268597366 ], [ 46.60 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-CU", "NAME_1": "Chuvash" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.412373488345793, 55.829357407818065 ], [ 48.205357700297611, 55.693551744317517 ], [ 48.025006952109152, 55.630454820333682 ], [ 48.100764601105425, 55.545447089211791 ], [ 47.973847283625219, 55.499506741442929 ], [ 47.834114210602309, 55.34210032826752 ], [ 47.702546014087261, 55.327940986487306 ], [ 47.762594028591536, 55.214149482012942 ], [ 47.91317915 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-KL", "NAME_1": "Kalmyk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.528354111717121, 45.54565185887639 ], [ 47.529492187500011, 45.530224609374997 ], [ 47.514550781250023, 45.490917968749997 ], [ 47.488671875000023, 45.455078125 ], [ 47.454492187500023, 45.433056640624997 ], [ 47.4130859375, 45.421044921874994 ], [ 47.39111328125, 45.294775390624999 ], [ 47.351269531250011, 45.217724609374997 ], [ 47.296191406250017, 45.1494 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-SAM", "NAME_1": "Samara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.436971469757509, 52.780447903048241 ], [ 48.53970421697602, 52.830263984395344 ], [ 48.592517530959242, 52.919405828815911 ], [ 48.521720819360326, 52.978213608970862 ], [ 48.390255974733407, 52.970410468568218 ], [ 48.221584099626455, 52.998935859502296 ], [ 48.148513624903842, 53.058673813845417 ], [ 48.143552686607165, 53.161871649956652 ], [ 48.03451541 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-ORE", "NAME_1": "Orenburg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.064415240160919, 51.975119183655885 ], [ 60.030320672450216, 51.933264472046247 ], [ 60.067476027268071, 51.890631415405451 ], [ 60.280382928310587, 51.83461416280106 ], [ 60.387508172451618, 51.773015855509144 ], [ 60.41830732609759, 51.703924465534911 ], [ 60.464764438727968, 51.6511628281649 ], [ 60.630335727791135, 51.616953029987684 ], [ 60.973570591 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-SAR", "NAME_1": "Saratov" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.793933546762219, 51.729194240925636 ], [ 50.756158074756854, 51.675140692748329 ], [ 50.643916863818902, 51.589176947630804 ], [ 50.51632775249027, 51.505616156614849 ], [ 50.353702020067743, 51.369732977903368 ], [ 50.309311964729034, 51.32157054300734 ], [ 50.246886834520438, 51.289505316770232 ], [ 50.104879998582362, 51.254597886757068 ], [ 49.93233239 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-TA", "NAME_1": "Tatarstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.07201378840557, 56.622745673274153 ], [ 50.349619581578395, 56.66951284424232 ], [ 50.497414178321662, 56.511021227247795 ], [ 50.586090935648144, 56.366533922402596 ], [ 50.705566847931664, 56.329921170225816 ], [ 50.85119103433874, 56.390253403771567 ], [ 50.907828404157499, 56.295995592322697 ], [ 50.837238397234216, 56.248375758834186 ], [ 51.07308963 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-ULY", "NAME_1": "Ul'yanovsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.077491488841133, 54.51646596882938 ], [ 50.118729281631033, 54.437039292729139 ], [ 50.205649041569984, 54.418074042283195 ], [ 50.256188592429567, 54.304902656332501 ], [ 50.197380812274616, 54.03814891214256 ], [ 49.979099562294948, 53.965750230988363 ], [ 49.957188755156892, 53.906787421202523 ], [ 49.82686079299117, 53.887150377188107 ], [ 49.624495 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-KHM", "NAME_1": "Khanty-Mansiy" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.259591098650219, 60.855510566059763 ], [ 83.99717817603198, 60.82610667598226 ], [ 83.616219517116974, 60.981781928393275 ], [ 83.503564895103807, 61.047230129866591 ], [ 83.144206984065022, 61.028213203476525 ], [ 82.407404413382949, 60.72301219355785 ], [ 82.362445916645697, 60.600642402324979 ], [ 82.138997022794342, 60.531964423319437 ], [ 81.830 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-OMS", "NAME_1": "Omsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.691204388407712, 54.114377238808991 ], [ 75.656808709622084, 54.10600006775806 ], [ 75.437183872381638, 54.089670315153825 ], [ 75.398116489568963, 54.068482977914158 ], [ 75.392328729152268, 54.021741644906157 ], [ 75.377032505193881, 53.970142727262726 ], [ 75.220194533188049, 53.893816636767625 ], [ 75.052194451807168, 53.82668895122049 ], [ 74.98894249868 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-TYU", "NAME_1": "Tyumen'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.472376839112002, 55.276490614761677 ], [ 70.417180210252184, 55.253165188205358 ], [ 70.371446567673871, 55.212237453830198 ], [ 70.293311802048549, 55.183582872124347 ], [ 70.182465854782492, 55.162473049533119 ], [ 70.087381219365426, 55.176761583061818 ], [ 69.981702915328555, 55.199059963595772 ], [ 69.870185174442696, 55.245646267306896 ], [ 69.740270 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-ALT", "NAME_1": "Altay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.066739878684672, 50.628959004926394 ], [ 84.002397495462759, 50.676881211950075 ], [ 83.945088332051085, 50.774653021846291 ], [ 83.859822218769494, 50.818035386755326 ], [ 83.717763706399126, 50.887178453161852 ], [ 83.581389601580867, 50.935754299516205 ], [ 83.357320591163301, 50.994562079464359 ], [ 83.273708123715068, 50.994562079464359 ], [ 83.16022667 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-AL", "NAME_1": "Gorno-Altay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.643861932334289, 49.90305247659542 ], [ 89.634250115928012, 49.823289903352901 ], [ 89.669493442751047, 49.750503648469802 ], [ 89.654093865928076, 49.717456570019152 ], [ 89.579163039104856, 49.699705715526889 ], [ 89.474983351604436, 49.660534979849658 ], [ 89.395608351604125, 49.611545722036951 ], [ 89.299180128947484, 49.611132310578625 ], [ 89.2439 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-KEM", "NAME_1": "Kemerovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.410382928029662, 56.044072984380705 ], [ 84.892937452601302, 56.16959503788064 ], [ 85.009209425774316, 56.133395697753201 ], [ 85.121243931062509, 56.215871284232378 ], [ 85.254362421188773, 56.245145982201279 ], [ 85.379316033907799, 56.212693183543536 ], [ 85.687927687612671, 56.238841458566412 ], [ 85.606485629907866, 56.324055895263314 ], [ 85.790660 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-KK", "NAME_1": "Khakass" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.364766880387208, 52.16800466588262 ], [ 88.688054640709083, 52.256681424108422 ], [ 88.676065708365684, 52.352463690746731 ], [ 88.944576450842476, 52.487959295884764 ], [ 89.115108677023784, 52.626400457714908 ], [ 89.043175082963671, 52.678128566979751 ], [ 89.235618117182298, 52.810032661178354 ], [ 89.118209263346785, 52.919974270496141 ], [ 88.89507042 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-NVS", "NAME_1": "Novosibirsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.784446606611681, 53.327117276492892 ], [ 77.704383986322995, 53.379171047572854 ], [ 77.469256219394964, 53.498776150112406 ], [ 77.132429233716522, 53.670135199592252 ], [ 76.82066531769965, 53.822658189501723 ], [ 76.575719028636172, 53.942521674202723 ], [ 76.513087192698436, 53.993216254281052 ], [ 76.484768507802471, 54.02254262960669 ], [ 76.4585 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-CE", "NAME_1": "Chechnya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.727379010908429, 42.474439080653696 ], [ 45.727576124866943, 42.475030422529244 ], [ 45.705251906116843, 42.498078111331409 ], [ 45.65553917825207, 42.517663479170039 ], [ 45.56293501158504, 42.535750230472189 ], [ 45.343723585802906, 42.529781602542485 ], [ 45.208227980333618, 42.648249823571604 ], [ 45.160272251166759, 42.675018215498795 ], [ 45.07744199 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-DA", "NAME_1": "Dagestan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.727379010908429, 42.474439080653696 ], [ 45.821110466574737, 42.487226060834018 ], [ 45.948337844216098, 42.575075994961196 ], [ 46.09540896964819, 42.715119127245885 ], [ 46.169512974044494, 42.729691881075439 ], [ 46.123210890170412, 42.843121650343846 ], [ 46.335807733240244, 42.903996487148163 ], [ 46.424587844253608, 42.876607977775905 ], [ 46.5335217 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-IRK", "NAME_1": "Irkutsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.684052361926945, 53.638535061144125 ], [ 96.505148552763444, 53.684372057024802 ], [ 96.405516391867934, 53.783306585930177 ], [ 96.125946893034666, 53.972364813885008 ], [ 96.079334750798068, 54.062746894453596 ], [ 95.919034457773989, 54.155661118765579 ], [ 95.678222283931234, 54.23415761977833 ], [ 95.653107537682672, 54.281854966733306 ], [ 95.7166695 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-KYA", "NAME_1": "Krasnoyarsk" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 96.853906250000023, 76.199169921874997 ], [ 96.7978515625, 76.188427734374997 ], [ 96.754492187500034, 76.195751953124997 ], [ 96.739355468750034, 76.206933593749994 ], [ 96.740234375, 76.257861328125003 ], [ 96.832910156250023, 76.324169921874997 ], [ 96.835253906249989, 76.344824218750006 ], [ 96.8779296875, 76.355224609375 ], [ 96.990234375, 76. [...]
+{ "type": "Feature", "properties": { "ISO": "RU-TY", "NAME_1": "Tuva" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.939562504837127, 52.106171170674948 ], [ 98.893116489662958, 52.11728424743761 ], [ 98.848674757891956, 52.070051988322831 ], [ 98.802579380287597, 51.957449042358846 ], [ 98.760101352943678, 51.905100816447174 ], [ 98.640522088620287, 51.801179511108217 ], [ 98.352787713619136, 51.717618720092261 ], [ 98.303074985754336, 51.674288031615518 ], [ 98.27682335815 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-BU", "NAME_1": "Buryat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.744445541601124, 49.966282752493136 ], [ 107.630981073031251, 49.983099270215519 ], [ 107.34701907758739, 49.986664944043667 ], [ 107.233279250112986, 49.989403794955138 ], [ 107.143052199331379, 50.033018703809475 ], [ 107.040216099070562, 50.086452134799273 ], [ 106.941307407663913, 50.196677964877836 ], [ 106.853767531361484, 50.248302720737414 ], [ 106. [...]
+{ "type": "Feature", "properties": { "ISO": "RU-AMU", "NAME_1": "Amur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.55314782116983, 48.861203925158961 ], [ 130.355278761924239, 48.866371568388146 ], [ 130.196011997600692, 48.891641343778872 ], [ 130.0370552918709, 48.972256578154187 ], [ 129.792522414265761, 49.198857733754053 ], [ 129.671082798379814, 49.278491115915827 ], [ 129.591397739785748, 49.286655992217945 ], [ 129.533726841348027, 49.323423773793621 ], [ 129.498 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-ZAB", "NAME_1": "Chita" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.683296746895593, 49.823780829459679 ], [ 116.631568638171416, 49.8770592311526 ], [ 116.551160109525256, 49.920312404980905 ], [ 116.351120640123412, 49.97808665628321 ], [ 116.21681359259685, 50.009273383171362 ], [ 116.134544712388191, 50.010797837923974 ], [ 115.926030308090475, 49.952145087272697 ], [ 115.795237257959741, 49.90589468037146 ], [ 115.7177 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-PRI", "NAME_1": "Primor'ye" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.245072584641491, 43.466681333078924 ], [ 131.24390669161528, 43.469026597663429 ], [ 131.209180129115168, 43.490420640632266 ], [ 131.182463413620269, 43.505587673509922 ], [ 131.180034621302525, 43.5671084661534 ], [ 131.183651971562938, 43.650875962898525 ], [ 131.17424686088583, 43.704748643562809 ], [ 131.213314243698505, 44.002921657886915 ], [ 131 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-SA", "NAME_1": "Sakha (Yakutia)" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.520703125000011, 69.634033203125 ], [ 161.617773437500034, 69.592431640624994 ], [ 161.609277343750023, 69.500927734374997 ], [ 161.540332031250045, 69.4365234375 ], [ 161.374414062500023, 69.413671875 ], [ 161.350878906250045, 69.369335937499997 ], [ 161.372656250000034, 69.292822265625006 ], [ 161.377539062500034, 69.194433593750006 ], [ 1 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-YEV", "NAME_1": "Yevrey" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.323150732376774, 48.370135077726196 ], [ 134.293384637591032, 48.373430080755966 ], [ 134.205896437720867, 48.359890855495493 ], [ 133.842197707250705, 48.273746242864931 ], [ 133.671768833552107, 48.207703762395923 ], [ 133.573273553603769, 48.133031317734165 ], [ 133.468370396051284, 48.097167873723606 ], [ 133.301145461154761, 48.101534532252273 ], [ 13 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-KHA", "NAME_1": "Khabarovsk" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.940527343750034, 55.092626953124999 ], [ 138.03125, 55.053320312499999 ], [ 138.172070312500011, 55.06005859375 ], [ 138.206152343750034, 55.033544921874999 ], [ 138.096484375000045, 54.990917968749997 ], [ 138.0166015625, 54.90087890625 ], [ 137.9912109375, 54.820703125 ], [ 137.95947265625, 54.789013671874997 ], [ 137.8701171875, 54.7495605468 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-MAG", "NAME_1": "Maga Buryatdan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 162.501868288589833, 61.669795304171835 ], [ 162.392578125, 61.662109375 ], [ 162.188378906250023, 61.540673828124994 ], [ 161.037109375, 60.962890625 ], [ 160.9150390625, 60.892675781249999 ], [ 160.7666015625, 60.753320312499994 ], [ 160.482031250000034, 60.73984375 ], [ 160.3681640625, 60.708544921875003 ], [ 160.287304687500011, 60.667041015 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-SAK", "NAME_1": "Sakhalin" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.943554687500011, 43.426464843749997 ], [ 145.93115234375, 43.425634765624999 ], [ 145.9072265625, 43.422314453124997 ], [ 145.893945312500023, 43.419824218749994 ], [ 145.886523437500045, 43.433056640624997 ], [ 145.881542968750011, 43.443798828124997 ], [ 145.869140625, 43.450439453125 ], [ 145.869140625, 43.457861328124999 ], [ 145.8815429687500 [...]
+{ "type": "Feature", "properties": { "ISO": "UA-43", "NAME_1": "Crimea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.745771311300061, 44.402323389538829 ], [ 33.852068870481958, 44.431631863719531 ], [ 33.805710906333218, 44.527306810660775 ], [ 33.712994978035795, 44.581555492092264 ], [ 33.709049619844052, 44.666380702207618 ], [ 33.611401992907645, 44.720629383639107 ], [ 33.67452773116986, 44.791645839184127 ], [ 33.588428605039795, 44.842004786558498 ], [ 33.612207031 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-PER", "NAME_1": "Perm'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.352476027246837, 56.358524075525622 ], [ 54.24498904820598, 56.431852931767366 ], [ 54.168301223222841, 56.534482327097692 ], [ 53.959115024838525, 56.631582343350431 ], [ 53.869094680375156, 56.713153592264462 ], [ 54.088409458229876, 56.771160386742451 ], [ 54.098641392286424, 56.965928860028839 ], [ 54.341107211628469, 57.011869207797702 ], [ 54.294701775 [...]
+{ "type": "Feature", "properties": { "ISO": "RU-KAM", "NAME_1": "Kamchatka" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.454225915235185, 61.82203294145075 ], [ 174.284960937500045, 61.817529296874994 ], [ 174.138867187500011, 61.795166015625 ], [ 173.822363281250034, 61.679394531249997 ], [ 173.623437500000023, 61.716064453125 ], [ 173.390722656250034, 61.556738281249999 ], [ 173.1318359375, 61.406640625 ], [ 173.054589843750023, 61.406201171874997 ], [ 172.856542 [...]
+{ "type": "Feature", "properties": { "ISO": "UA-40", "NAME_1": "Sevastopol" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.588428605039795, 44.842004786558498 ], [ 33.67452773116986, 44.791645839184127 ], [ 33.611401992907645, 44.720629383639107 ], [ 33.709049619844052, 44.666380702207618 ], [ 33.712994978035795, 44.581555492092264 ], [ 33.805710906333218, 44.527306810660775 ], [ 33.852068870481958, 44.431631863719531 ], [ 33.745771311300061, 44.402323389538829 ], [ 33.73299 [...]
 ]
 }
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/slovenia.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/slovenia.geojson
index 47d1902..44e935e 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/slovenia.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/slovenia.geojson
@@ -2,39 +2,13 @@
 "type": "FeatureCollection",
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
-{ "type": "Feature", "properties": { "ISO": "SI-059", "NAME_1": "Lendava" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.382183065000106, 46.539382630000048 ], [ 16.36947066200014, 46.540571188000072 ], [ 16.357895142000103, 46.546979065000116 ], [ 16.351693970000042, 46.539485982000073 ], [ 16.351254482000087, 46.539922460000028 ], [ 16.344149210000069, 46.546979065000116 ], [ 16.340276430912525, 46.543827132316267 ], [ 16.339654168405104, 46.543981025204118 ], [ 16.3348482 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-015", "NAME_1": "Črenšovci" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.340276430912525, 46.543827132316267 ], [ 16.329989868000041, 46.535455221000078 ], [ 16.310662882785778, 46.530985209200026 ], [ 16.292163527025139, 46.534730943078557 ], [ 16.281621534606131, 46.547236640258689 ], [ 16.274645217402849, 46.544497789141644 ], [ 16.271803012598923, 46.542740789955474 ], [ 16.267978956763443, 46.539769395741018 ], [ 16.2540 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-063", "NAME_1": "Ljutomer" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.310662882785778, 46.530985209200026 ], [ 16.301527099270544, 46.527080896558182 ], [ 16.277590773195584, 46.533878282356795 ], [ 16.25960737468057, 46.519331366949018 ], [ 16.260795933085831, 46.514163723077331 ], [ 16.260931084000106, 46.513576112000081 ], [ 16.234905233000092, 46.493338928000028 ], [ 16.234187646742498, 46.484892336412145 ], [ 16.233665 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-176", "NAME_1": "Razkrižje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.301527099270544, 46.527080896558182 ], [ 16.295366659000109, 46.524448141000093 ], [ 16.263947388000076, 46.515921530000057 ], [ 16.260931084000106, 46.513576112000081 ], [ 16.260795933085831, 46.514163723077331 ], [ 16.25960737468057, 46.519331366949018 ], [ 16.277590773195584, 46.533878282356795 ], [ 16.301527099270544, 46.527080896558182 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "SI-087", "NAME_1": "Ormož" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.234187646742498, 46.484892336412145 ], [ 16.233664999000069, 46.478740336000058 ], [ 16.237489054000093, 46.465071920000057 ], [ 16.24937463400002, 46.437528382000082 ], [ 16.250098103000113, 46.429441020000084 ], [ 16.248237752000108, 46.413343811000104 ], [ 16.250924927000142, 46.40499806800004 ], [ 16.257022746000104, 46.399907939000045 ], [ 16.2740759680 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-143", "NAME_1": "Zavrc" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.088654305000148, 46.373085600000039 ], [ 16.05796512800012, 46.377532044000063 ], [ 16.057448365000084, 46.359651998000018 ], [ 16.0597221270001, 46.345311788000018 ], [ 16.059618774000057, 46.332315166000072 ], [ 16.052384073000098, 46.318595073000054 ], [ 16.049922397900332, 46.316734615410155 ], [ 16.049697706783718, 46.317276516298136 ], [ 16.04266971183 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-028", "NAME_1": "Gorišnica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.049922397900332, 46.316734615410155 ], [ 16.038948201000068, 46.308440654 ], [ 16.019207804000075, 46.298828837000073 ], [ 15.998433879000061, 46.291542460000088 ], [ 15.993668239997248, 46.290613311055438 ], [ 15.993422072170858, 46.290869858856865 ], [ 15.989132928341974, 46.295339870738417 ], [ 15.97518029123745, 46.327715155929695 ], [ 15.97611046722 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-135", "NAME_1": "Videm" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.993668239997248, 46.290613311055438 ], [ 15.982000773000067, 46.288338522000046 ], [ 15.94872115000004, 46.284204407000018 ], [ 15.918903311000093, 46.272827171000031 ], [ 15.918749626993701, 46.27322235802535 ], [ 15.918387891787745, 46.274152534012217 ], [ 15.9163725110825, 46.282963364767454 ], [ 15.916682570344335, 46.284720363953625 ], [ 15.917302687069 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-172", "NAME_1": "Podlehnik" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.918903311000093, 46.272827171000031 ], [ 15.883712199000087, 46.259399720000076 ], [ 15.880894659000091, 46.259340899000094 ], [ 15.880664097370186, 46.259605617705063 ], [ 15.875083042348535, 46.266013495026755 ], [ 15.866866488997232, 46.281774807261513 ], [ 15.862060581230821, 46.283841864810199 ], [ 15.825111932269863, 46.3084915230653 ], [ 15.828987 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-191", "NAME_1": "Žetale" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.880894659000091, 46.259340899000094 ], [ 15.879323324000012, 46.259308094000048 ], [ 15.834206176000123, 46.258366191000093 ], [ 15.818289835000087, 46.255523987000018 ], [ 15.803096965000066, 46.250511373000066 ], [ 15.799526193000133, 46.24860696100005 ], [ 15.798911981302865, 46.248805243766981 ], [ 15.75793257003204, 46.262034410459648 ], [ 15.761808301 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-107", "NAME_1": "Rogatec" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.799526193000133, 46.24860696100005 ], [ 15.789144328000077, 46.243069967000039 ], [ 15.76888716600007, 46.219350484000088 ], [ 15.749766886000089, 46.210772197000054 ], [ 15.67797529200007, 46.214462419000128 ], [ 15.67798912909501, 46.214698797811252 ], [ 15.678299188356846, 46.219995632892108 ], [ 15.691838413412029, 46.237333076260427 ], [ 15.7014502298 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-106", "NAME_1": "Rogaška Slatina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.67797529200007, 46.214462419000128 ], [ 15.661296834000041, 46.215319723000093 ], [ 15.639799438000097, 46.20767161000002 ], [ 15.626571312000095, 46.195209748000096 ], [ 15.626105991098598, 46.195526841790297 ], [ 15.613290235555894, 46.20426015907907 ], [ 15.607089063809212, 46.219969794470387 ], [ 15.603988478385531, 46.222605291900663 ], [ 15.5 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-149", "NAME_1": "Bistrica ob Sotli" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.626571312000095, 46.195209748000096 ], [ 15.622849568000106, 46.191703594000089 ], [ 15.604349406000068, 46.167002258000068 ], [ 15.589983358000069, 46.138683574000069 ], [ 15.589880005000055, 46.113517151000039 ], [ 15.603832641000025, 46.090986227000101 ], [ 15.623604837992843, 46.07641529792761 ], [ 15.623522169612443, 46.076360988768613 ], [  [...]
-{ "type": "Feature", "properties": { "ISO": "SI-092", "NAME_1": "Podcetrtek" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.623604837992843, 46.07641529792761 ], [ 15.631531209000059, 46.070574036000053 ], [ 15.643726847000067, 46.065509746000075 ], [ 15.671735474000087, 46.057396546000078 ], [ 15.683931112000096, 46.051143697000086 ], [ 15.692879847000114, 46.041635666000033 ], [ 15.692613559767949, 46.041582750143789 ], [ 15.684552036047592, 46.039980781487827 ], [ 15.6677 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-009", "NAME_1": "Brežice" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.692879847000114, 46.041635666000033 ], [ 15.697987101000109, 46.036209208000045 ], [ 15.693646281000042, 46.025770570000091 ], [ 15.681967407000059, 46.013523255000067 ], [ 15.674319295000089, 45.993317770000075 ], [ 15.674215943000149, 45.993162740000045 ], [ 15.675380807000067, 45.972486394000086 ], [ 15.677109822000119, 45.941796366000077 ], [ 15.675559 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-054", "NAME_1": "Krško" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.549748078810751, 45.82369277989784 ], [ 15.523527466000104, 45.826816305000037 ], [ 15.513915649000097, 45.823405661000024 ], [ 15.495312133000141, 45.812656963000094 ], [ 15.485390259000042, 45.810176494000117 ], [ 15.473918091000115, 45.811571757000095 ], [ 15.462549275000129, 45.814207255000028 ], [ 15.451283813000089, 45.815137431000053 ], [ 15.440328410 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-119", "NAME_1": "Šentjernej" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.429754502000065, 45.775691354000074 ], [ 15.429062947000148, 45.775294902000027 ], [ 15.331031282667539, 45.752485553865199 ], [ 15.33093020966146, 45.752866522871727 ], [ 15.330258416092988, 45.755398668413818 ], [ 15.330258416092988, 45.755527858723667 ], [ 15.320491570929221, 45.782451280102464 ], [ 15.297237175755015, 45.807385159197736 ], [ 15.2792 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-085", "NAME_1": "Novo Mesto" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.331031282667539, 45.752485553865199 ], [ 15.303799276000092, 45.746149394000028 ], [ 15.263491658000049, 45.730388083000051 ], [ 15.255016723000068, 45.72346344000006 ], [ 15.249912988993231, 45.713731743425171 ], [ 15.249023064862513, 45.713282376480493 ], [ 15.228145785599509, 45.702740383162109 ], [ 15.190783726387849, 45.684446926284579 ], [ 15.1845 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-073", "NAME_1": "Metlika" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249912988993231, 45.713731743425171 ], [ 15.248918904000107, 45.711836243000093 ], [ 15.250882609000115, 45.707650452000067 ], [ 15.258220663000117, 45.705118307000063 ], [ 15.267832479000049, 45.69845204700006 ], [ 15.277754354000137, 45.685016175 ], [ 15.283025350000059, 45.680106913000074 ], [ 15.29191369600008, 45.675559388000053 ], [ 15.30493615800011 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-165", "NAME_1": "Kostel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.781143839000094, 45.493348288000035 ], [ 14.688332967000093, 45.522028707000018 ], [ 14.668489217000086, 45.533965963000057 ], [ 14.6681791580001, 45.539133607000068 ], [ 14.67169315600006, 45.556806946000066 ], [ 14.669832804000066, 45.564558411000078 ], [ 14.66404504400009, 45.570036113000057 ], [ 14.663674873896298, 45.570187027909014 ], [ 14.68058231002 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-066", "NAME_1": "Loški Potok" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.663674873896298, 45.570187027909014 ], [ 14.657327107000071, 45.572774964000118 ], [ 14.650299113000131, 45.574842021000066 ], [ 14.61598596200011, 45.59406565400009 ], [ 14.603066853000115, 45.603574117000065 ], [ 14.593868449000098, 45.616183167000102 ], [ 14.592938273000073, 45.629670716000064 ], [ 14.59407515500007, 45.64801584900006 ], [ 14.591904 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-065", "NAME_1": "Loška dolina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.569094979000084, 45.664251613000047 ], [ 14.563896118000059, 45.662691955000057 ], [ 14.556144654000065, 45.656697490000013 ], [ 14.54363895600008, 45.636440329000024 ], [ 14.533096964000094, 45.625691631000095 ], [ 14.507878866000055, 45.605847880000098 ], [ 14.49857710800012, 45.596184388000083 ], [ 14.492272583000101, 45.58342030900009 ], [ 14.4915 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-038", "NAME_1": "Ilirska Bistrica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4915018290001, 45.579164764000055 ], [ 14.487414999000094, 45.556600240000122 ], [ 14.482144002000069, 45.542440898000066 ], [ 14.468914835000078, 45.52559438100009 ], [ 14.429744100000107, 45.505388896000099 ], [ 14.41124393700008, 45.49319325800009 ], [ 14.37279667100006, 45.477845358000124 ], [ 14.326804646000141, 45.474899801000035 ], [ 14.280 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-017", "NAME_1": "Crnomelj" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.282178582000085, 45.571494074000086 ], [ 15.282611938000059, 45.570604553000024 ], [ 15.288606405000081, 45.544559632000059 ], [ 15.296667928000062, 45.522958883000072 ], [ 15.311033977000079, 45.505905660000039 ], [ 15.361366821000047, 45.482031149000065 ], [ 15.35175500400004, 45.476140036000047 ], [ 15.333874960000088, 45.458518372000057 ], [ 15.325193 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-048", "NAME_1": "Kocevje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.066128234000104, 45.473933723000115 ], [ 15.056165812000131, 45.479912415000072 ], [ 15.007383260000069, 45.480842591000041 ], [ 14.997461385000065, 45.487198792000058 ], [ 14.986299275000135, 45.490867818000069 ], [ 14.977340821821429, 45.491728454904262 ], [ 14.977205031387086, 45.491952216121831 ], [ 14.965319451831249, 45.511537584192126 ], [ 14.943873 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-035", "NAME_1": "Hrpelje-Kozina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.116747015762144, 45.472997875351666 ], [ 14.092917114000102, 45.47391794800005 ], [ 14.06666548700008, 45.480274150000085 ], [ 14.041550741000037, 45.49319325800009 ], [ 14.028321574000046, 45.502650045000067 ], [ 14.013955526000132, 45.507972717000101 ], [ 13.987476489948051, 45.511908790158543 ], [ 13.987394647145209, 45.512080187450692 ], [ 13.98 [...]
-{ "type": "Feature", "properties": { "ISO": "SI-050", "NAME_1": "Koper" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.987476489948051, 45.511908790158543 ], [ 13.971890910000127, 45.514225566 ], [ 13.964966268000126, 45.510969951000035 ], [ 13.96145227000008, 45.503890279000089 ], [ 13.96145227000008, 45.493141581000074 ], [ 13.982639608000056, 45.475313212000046 ], [ 13.969823852000047, 45.462962545000082 ], [ 13.923005004000032, 45.448958232000066 ], [ 13.908432251000079, [...]
-{ "type": "Feature", "properties": { "ISO": "SI-090", "NAME_1": "Piran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.629017781000073, 45.458983460000084 ], [ 13.58952884200005, 45.488836981000077 ], [ 13.591644727000073, 45.493109442000048 ], [ 13.589121941000087, 45.501613674000055 ], [ 13.595957879000082, 45.511908270000049 ], [ 13.595957879000082, 45.518133856000077 ], [ 13.586192254000082, 45.519476630000042 ], [ 13.578623894000089, 45.523382880000042 ], [ 13.572764519 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-090", "NAME_1": "Piran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.642920370625196, 45.459430153656747 ], [ 13.642820334798104, 45.459447780786306 ], [ 13.624106924762254, 45.462745236435083 ], [ 13.58952884200005, 45.488836981000077 ], [ 13.591644727000073, 45.493109442000048 ], [ 13.589121941000087, 45.501613674000055 ], [ 13.595957879000082, 45.511908270000049 ], [ 13.595957879000082, 45.518133856000077 ], [ 13.586192254 [...]
 { "type": "Feature", "properties": { "ISO": "SI-078", "NAME_1": "Moravske Toplice" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.299489883751107, 46.779509941930257 ], [ 16.298157186000083, 46.775802308000081 ], [ 16.300430949000088, 46.772081605000082 ], [ 16.31417687900003, 46.743323670000066 ], [ 16.32554569500013, 46.733272604000021 ], [ 16.334123983000069, 46.721748759 ], [ 16.34342574100009, 46.714178162000039 ], [ 16.357275024000046, 46.71583180800009 ], [ 16.3575850 [...]
 { "type": "Feature", "properties": { "ISO": "SI-033", "NAME_1": "Šalovci" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.311097363000044, 46.797519062000063 ], [ 16.302187948000068, 46.78701609300002 ], [ 16.299489883751107, 46.779509941930257 ], [ 16.29872643397772, 46.779186306502822 ], [ 16.296349318066575, 46.778178616150171 ], [ 16.290458204682409, 46.777093411431792 ], [ 16.257747022706894, 46.780038967224527 ], [ 16.26038252103649, 46.787687078895544 ], [ 16.263173048 [...]
 { "type": "Feature", "properties": { "ISO": "SI-161", "NAME_1": "Hodoš" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.297392208783378, 46.847032943215709 ], [ 16.301877889000082, 46.843214213000081 ], [ 16.310662883000077, 46.84001027500004 ], [ 16.325338989000073, 46.839441834000084 ], [ 16.329783162000069, 46.834403382000104 ], [ 16.327509400000054, 46.825463359000068 ], [ 16.321824992000103, 46.813267721000059 ], [ 16.31490035000013, 46.802002259000105 ], [ 16.3110973630 [...]
 { "type": "Feature", "properties": { "ISO": "SI-031", "NAME_1": "Gornji Petrovci" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.135376424000043, 46.855849101000032 ], [ 16.179486394981154, 46.858468339242449 ], [ 16.227619663116968, 46.834325060453125 ], [ 16.244517856913546, 46.827787991022944 ], [ 16.25883222832465, 46.817917792172352 ], [ 16.265343459333167, 46.80959788693292 ], [ 16.266428664051602, 46.801949775261903 ], [ 16.263173048996975, 46.791407782842896 ], [ 16. [...]
 { "type": "Feature", "properties": { "ISO": "SI-056", "NAME_1": "Kuzma" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.094035278000121, 46.862773743 ], [ 16.130245696000088, 46.856708498000089 ], [ 16.122871535193156, 46.843368435205093 ], [ 16.125196974260916, 46.833007310838696 ], [ 16.098841993663086, 46.832077134851886 ], [ 16.092020705191374, 46.83021678287821 ], [ 16.077758009724334, 46.822516995263072 ], [ 16.072435337121078, 46.818796292215097 ], [ 16.056002232217224 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-059", "NAME_1": "Lendava" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.372245691985086, 46.636341263538441 ], [ 16.376395304000141, 46.629092916000033 ], [ 16.394585408000069, 46.619016012000074 ], [ 16.430242147000058, 46.604391582000105 ], [ 16.46713911900008, 46.564704082000034 ], [ 16.500832153000147, 46.544808655000011 ], [ 16.515301554000075, 46.501710510000109 ], [ 16.491116984000115, 46.515146383000072 ], [ 16.4812984 [...]
 { "type": "Feature", "properties": { "ISO": "SI-156", "NAME_1": "Dobrovnik" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.402607056970112, 46.663108786541216 ], [ 16.396652466000148, 46.659142762000087 ], [ 16.377635539000067, 46.652864075000068 ], [ 16.368437133000072, 46.642993876 ], [ 16.372245691985086, 46.636341263538441 ], [ 16.371951939230598, 46.636223455947686 ], [ 16.366991000933922, 46.634233914563481 ], [ 16.347870720857088, 46.615346178483321 ], [ 16.3143843934 [...]
 { "type": "Feature", "properties": { "ISO": "SI-047", "NAME_1": "Kobilje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.36621637258753, 46.696466831079363 ], [ 16.371434367000091, 46.694928691000101 ], [ 16.390037882000058, 46.694153545000106 ], [ 16.405024048000115, 46.687254741000018 ], [ 16.410501749000105, 46.668367005000093 ], [ 16.402607056970112, 46.663108786541216 ], [ 16.401872593245571, 46.663198554169924 ], [ 16.392570835175889, 46.664335435731743 ], [ 16.3731921 [...]
 { "type": "Feature", "properties": { "ISO": "SI-053", "NAME_1": "Kranjska Gora" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.685852877000059, 46.464047231000094 ], [ 13.688445678000107, 46.46775909500009 ], [ 13.689892619000091, 46.493338928000028 ], [ 13.695473673, 46.498635762000063 ], [ 13.699194376000037, 46.504836935000057 ], [ 13.701054728000116, 46.511890768000072 ], [ 13.700951375000102, 46.519745586000013 ], [ 13.716092570000114, 46.518867087000061 ], [ 13.7821350 [...]
@@ -48,6 +22,8 @@
 { "type": "Feature", "properties": { "ISO": "SI-075", "NAME_1": "Miren-Kostanjevica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.574172201885574, 45.819028056699437 ], [ 13.56597253400011, 45.830330303 ], [ 13.569279826000127, 45.864540101000088 ], [ 13.599306242000097, 45.912327499000028 ], [ 13.613619011907872, 45.90402008745707 ], [ 13.646950310608361, 45.897198798086038 ], [ 13.639508905411617, 45.892625434316301 ], [ 13.633927850389966, 45.891695258329491 ], [ 13.625 [...]
 { "type": "Feature", "properties": { "ISO": "SI-049", "NAME_1": "Komen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.588513778236168, 45.806482477016267 ], [ 13.581268758000078, 45.809246318000064 ], [ 13.574172201885574, 45.819028056699437 ], [ 13.592018263132331, 45.821182765771994 ], [ 13.648965692212926, 45.820045885109494 ], [ 13.670101352995005, 45.822603868173928 ], [ 13.682038607595643, 45.831673082246937 ], [ 13.693975863994922, 45.836298122860057 ], [ 13.70064212 [...]
 { "type": "Feature", "properties": { "ISO": "SI-111", "NAME_1": "Sežana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.89364052978658, 45.633758406325342 ], [ 13.893136027000111, 45.634683329000026 ], [ 13.884144327000087, 45.635148417000053 ], [ 13.869158163000094, 45.641142884 ], [ 13.858409465000079, 45.649359436000012 ], [ 13.778724406000038, 45.743410543000081 ], [ 13.70947798600011, 45.765321351000026 ], [ 13.699908416000142, 45.770523736000072 ], [ 13.705758090763254 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-035", "NAME_1": "Hrpelje-Kozina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.867925706000079, 45.602169289000116 ], [ 13.887038208000149, 45.618766988000104 ], [ 13.894686320000034, 45.631841125000065 ], [ 13.89364052978658, 45.633758406325342 ], [ 13.908898146132515, 45.643777574275589 ], [ 13.938353713053402, 45.642640692713769 ], [ 13.95080773339015, 45.635974432973683 ], [ 13.97142662933544, 45.633080553125012 ], [ 13.98 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-050", "NAME_1": "Koper" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.800531860000149, 45.581249899000014 ], [ 13.84776411900009, 45.584660543000055 ], [ 13.867925706000079, 45.602169289000116 ], [ 13.870554233191285, 45.597475491300884 ], [ 13.880011020891914, 45.572464097839827 ], [ 13.884816928658324, 45.567709866017481 ], [ 13.894635450665476, 45.559777534405669 ], [ 13.910448438844355, 45.552026069047827 ], [ 13.952202995 [...]
 { "type": "Feature", "properties": { "ISO": "SI-105", "NAME_1": "Rogašovci" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.028440945000114, 46.83694743300002 ], [ 16.032023560000084, 46.837555644000062 ], [ 16.05293554583875, 46.846059852480209 ], [ 16.056002232217224, 46.816057441097996 ], [ 16.051661410645579, 46.775672309029801 ], [ 16.052126498638984, 46.77009125400815 ], [ 16.063598667044857, 46.764174303101584 ], [ 16.05553714422382, 46.755957749750337 ], [ 16.02484134 [...]
 { "type": "Feature", "properties": { "ISO": "SI-152", "NAME_1": "Cankova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.01672257900006, 46.670691342000012 ], [ 16.014556925000107, 46.693714295000078 ], [ 16.003291463000068, 46.709191386000086 ], [ 15.982000773000067, 46.71854482000002 ], [ 15.970528606000073, 46.74301361100008 ], [ 15.969701782000129, 46.760531922000027 ], [ 15.97098466500006, 46.775049879000093 ], [ 15.987737664361703, 46.775827337761427 ], [ 16.0049459156 [...]
 { "type": "Feature", "properties": { "ISO": "SI-029", "NAME_1": "Gornja Radgona" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.967600178096905, 46.694554607004314 ], [ 15.986961710000116, 46.692189840000069 ], [ 15.997917114000103, 46.686918844000033 ], [ 16.016593059000115, 46.670756969000038 ], [ 16.01672257900006, 46.670691342000012 ], [ 16.027838575589783, 46.665058906143599 ], [ 16.041739535850866, 46.662733466176519 ], [ 16.007736443582019, 46.63283865058321 ], [ 16.0 [...]
@@ -69,6 +45,30 @@
 { "type": "Feature", "properties": { "ISO": "SI-041", "NAME_1": "Jesenice" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.032455688000084, 46.484708965 ], [ 14.050025676000132, 46.48439890500002 ], [ 14.066355428000094, 46.481039938 ], [ 14.081031535000079, 46.475949809000028 ], [ 14.137255493000055, 46.442437643000105 ], [ 14.147933084000044, 46.440424654000068 ], [ 14.140873650798312, 46.436390693375756 ], [ 14.137773065374631, 46.434116930252117 ], [ 14.129401483291815, 4 [...]
 { "type": "Feature", "properties": { "ISO": "SI-180", "NAME_1": "Solcava" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.666628865000092, 46.460524394000018 ], [ 14.672545839618806, 46.459790506226852 ], [ 14.675776401359826, 46.454348253469107 ], [ 14.722130161177972, 46.447992052091479 ], [ 14.73365400642723, 46.442385159547428 ], [ 14.754582960735036, 46.421456204340359 ], [ 14.740165235637107, 46.407090156085815 ], [ 14.739855177274592, 46.398615221215437 ], [ 14.7418705 [...]
 { "type": "Feature", "properties": { "ISO": "SI-163", "NAME_1": "Jezersko" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.540331665000082, 46.378643087000071 ], [ 14.557694946000083, 46.383939921000021 ], [ 14.562108198000118, 46.391736666000028 ], [ 14.562966749715713, 46.389726874295775 ], [ 14.56870283436831, 46.368797919088649 ], [ 14.535939976448731, 46.360322984218328 ], [ 14.469225702204369, 46.364276231263034 ], [ 14.454652948374871, 46.366885891170909 ], [ 14.449847 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-015", "NAME_1": "Črenšovci" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.340276430912525, 46.543827132316267 ], [ 16.329989868000041, 46.535455221000078 ], [ 16.310662882785778, 46.530985209200026 ], [ 16.292163527025139, 46.534730943078557 ], [ 16.281621534606131, 46.547236640258689 ], [ 16.274645217402849, 46.544497789141644 ], [ 16.271803012598923, 46.542740789955474 ], [ 16.267978956763443, 46.539769395741018 ], [ 16.2540 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-063", "NAME_1": "Ljutomer" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.310662882785778, 46.530985209200026 ], [ 16.301527099270544, 46.527080896558182 ], [ 16.277590773195584, 46.533878282356795 ], [ 16.25960737468057, 46.519331366949018 ], [ 16.260795933085831, 46.514163723077331 ], [ 16.260931084000106, 46.513576112000081 ], [ 16.234905233000092, 46.493338928000028 ], [ 16.234187646742498, 46.484892336412145 ], [ 16.233665 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-176", "NAME_1": "Razkrižje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.301527099270544, 46.527080896558182 ], [ 16.295366659000109, 46.524448141000093 ], [ 16.263947388000076, 46.515921530000057 ], [ 16.260931084000106, 46.513576112000081 ], [ 16.260795933085831, 46.514163723077331 ], [ 16.25960737468057, 46.519331366949018 ], [ 16.277590773195584, 46.533878282356795 ], [ 16.301527099270544, 46.527080896558182 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "SI-087", "NAME_1": "Ormož" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.234187646742498, 46.484892336412145 ], [ 16.233664999000069, 46.478740336000058 ], [ 16.237489054000093, 46.465071920000057 ], [ 16.24937463400002, 46.437528382000082 ], [ 16.250098103000113, 46.429441020000084 ], [ 16.248237752000108, 46.413343811000104 ], [ 16.250924927000142, 46.40499806800004 ], [ 16.257022746000104, 46.399907939000045 ], [ 16.2740759680 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-143", "NAME_1": "Zavrc" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.088654305000148, 46.373085600000039 ], [ 16.05796512800012, 46.377532044000063 ], [ 16.057448365000084, 46.359651998000018 ], [ 16.0597221270001, 46.345311788000018 ], [ 16.059618774000057, 46.332315166000072 ], [ 16.052384073000098, 46.318595073000054 ], [ 16.049922397900332, 46.316734615410155 ], [ 16.049697706783718, 46.317276516298136 ], [ 16.04266971183 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-028", "NAME_1": "Gorišnica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.049922397900332, 46.316734615410155 ], [ 16.038948201000068, 46.308440654 ], [ 16.019207804000075, 46.298828837000073 ], [ 15.998433879000061, 46.291542460000088 ], [ 15.993668239997248, 46.290613311055438 ], [ 15.993422072170858, 46.290869858856865 ], [ 15.989132928341974, 46.295339870738417 ], [ 15.97518029123745, 46.327715155929695 ], [ 15.97611046722 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-135", "NAME_1": "Videm" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.993668239997248, 46.290613311055438 ], [ 15.982000773000067, 46.288338522000046 ], [ 15.94872115000004, 46.284204407000018 ], [ 15.918903311000093, 46.272827171000031 ], [ 15.918749626993701, 46.27322235802535 ], [ 15.918387891787745, 46.274152534012217 ], [ 15.9163725110825, 46.282963364767454 ], [ 15.916682570344335, 46.284720363953625 ], [ 15.917302687069 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-172", "NAME_1": "Podlehnik" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.918903311000093, 46.272827171000031 ], [ 15.883712199000087, 46.259399720000076 ], [ 15.880894659000091, 46.259340899000094 ], [ 15.880664097370186, 46.259605617705063 ], [ 15.875083042348535, 46.266013495026755 ], [ 15.866866488997232, 46.281774807261513 ], [ 15.862060581230821, 46.283841864810199 ], [ 15.825111932269863, 46.3084915230653 ], [ 15.828987 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-191", "NAME_1": "Žetale" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.880894659000091, 46.259340899000094 ], [ 15.879323324000012, 46.259308094000048 ], [ 15.834206176000123, 46.258366191000093 ], [ 15.818289835000087, 46.255523987000018 ], [ 15.803096965000066, 46.250511373000066 ], [ 15.799526193000133, 46.24860696100005 ], [ 15.798911981302865, 46.248805243766981 ], [ 15.75793257003204, 46.262034410459648 ], [ 15.761808301 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-107", "NAME_1": "Rogatec" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.799526193000133, 46.24860696100005 ], [ 15.789144328000077, 46.243069967000039 ], [ 15.76888716600007, 46.219350484000088 ], [ 15.749766886000089, 46.210772197000054 ], [ 15.67797529200007, 46.214462419000128 ], [ 15.67798912909501, 46.214698797811252 ], [ 15.678299188356846, 46.219995632892108 ], [ 15.691838413412029, 46.237333076260427 ], [ 15.7014502298 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-106", "NAME_1": "Rogaška Slatina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.67797529200007, 46.214462419000128 ], [ 15.661296834000041, 46.215319723000093 ], [ 15.639799438000097, 46.20767161000002 ], [ 15.626571312000095, 46.195209748000096 ], [ 15.626105991098598, 46.195526841790297 ], [ 15.613290235555894, 46.20426015907907 ], [ 15.607089063809212, 46.219969794470387 ], [ 15.603988478385531, 46.222605291900663 ], [ 15.5 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-149", "NAME_1": "Bistrica ob Sotli" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.626571312000095, 46.195209748000096 ], [ 15.622849568000106, 46.191703594000089 ], [ 15.604349406000068, 46.167002258000068 ], [ 15.589983358000069, 46.138683574000069 ], [ 15.589880005000055, 46.113517151000039 ], [ 15.603832641000025, 46.090986227000101 ], [ 15.623604837992843, 46.07641529792761 ], [ 15.623522169612443, 46.076360988768613 ], [  [...]
+{ "type": "Feature", "properties": { "ISO": "SI-092", "NAME_1": "Podcetrtek" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.623604837992843, 46.07641529792761 ], [ 15.631531209000059, 46.070574036000053 ], [ 15.643726847000067, 46.065509746000075 ], [ 15.671735474000087, 46.057396546000078 ], [ 15.683931112000096, 46.051143697000086 ], [ 15.692879847000114, 46.041635666000033 ], [ 15.692613559767949, 46.041582750143789 ], [ 15.684552036047592, 46.039980781487827 ], [ 15.6677 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-009", "NAME_1": "Brežice" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.692879847000114, 46.041635666000033 ], [ 15.697987101000109, 46.036209208000045 ], [ 15.693646281000042, 46.025770570000091 ], [ 15.681967407000059, 46.013523255000067 ], [ 15.674319295000089, 45.993317770000075 ], [ 15.674215943000149, 45.993162740000045 ], [ 15.675380807000067, 45.972486394000086 ], [ 15.677109822000119, 45.941796366000077 ], [ 15.675559 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-054", "NAME_1": "Krško" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.549748078810751, 45.82369277989784 ], [ 15.523527466000104, 45.826816305000037 ], [ 15.513915649000097, 45.823405661000024 ], [ 15.495312133000141, 45.812656963000094 ], [ 15.485390259000042, 45.810176494000117 ], [ 15.473918091000115, 45.811571757000095 ], [ 15.462549275000129, 45.814207255000028 ], [ 15.451283813000089, 45.815137431000053 ], [ 15.440328410 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-119", "NAME_1": "Šentjernej" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.429754502000065, 45.775691354000074 ], [ 15.429062947000148, 45.775294902000027 ], [ 15.331031282667539, 45.752485553865199 ], [ 15.33093020966146, 45.752866522871727 ], [ 15.330258416092988, 45.755398668413818 ], [ 15.330258416092988, 45.755527858723667 ], [ 15.320491570929221, 45.782451280102464 ], [ 15.297237175755015, 45.807385159197736 ], [ 15.2792 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-085", "NAME_1": "Novo Mesto" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.331031282667539, 45.752485553865199 ], [ 15.303799276000092, 45.746149394000028 ], [ 15.263491658000049, 45.730388083000051 ], [ 15.255016723000068, 45.72346344000006 ], [ 15.249912988993231, 45.713731743425171 ], [ 15.249023064862513, 45.713282376480493 ], [ 15.228145785599509, 45.702740383162109 ], [ 15.190783726387849, 45.684446926284579 ], [ 15.1845 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-073", "NAME_1": "Metlika" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249912988993231, 45.713731743425171 ], [ 15.248918904000107, 45.711836243000093 ], [ 15.250882609000115, 45.707650452000067 ], [ 15.258220663000117, 45.705118307000063 ], [ 15.267832479000049, 45.69845204700006 ], [ 15.277754354000137, 45.685016175 ], [ 15.283025350000059, 45.680106913000074 ], [ 15.29191369600008, 45.675559388000053 ], [ 15.30493615800011 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-017", "NAME_1": "Crnomelj" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.282178582000085, 45.571494074000086 ], [ 15.282611938000059, 45.570604553000024 ], [ 15.288606405000081, 45.544559632000059 ], [ 15.296667928000062, 45.522958883000072 ], [ 15.311033977000079, 45.505905660000039 ], [ 15.361366821000047, 45.482031149000065 ], [ 15.35175500400004, 45.476140036000047 ], [ 15.333874960000088, 45.458518372000057 ], [ 15.325193 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-048", "NAME_1": "Kocevje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.066128234000104, 45.473933723000115 ], [ 15.056165812000131, 45.479912415000072 ], [ 15.007383260000069, 45.480842591000041 ], [ 14.997461385000065, 45.487198792000058 ], [ 14.986299275000135, 45.490867818000069 ], [ 14.977340821821429, 45.491728454904262 ], [ 14.977205031387086, 45.491952216121831 ], [ 14.965319451831249, 45.511537584192126 ], [ 14.943873 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-165", "NAME_1": "Kostel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.977340821821429, 45.491728454904262 ], [ 14.962631470000105, 45.493141581000074 ], [ 14.945371541000014, 45.504510397000061 ], [ 14.922633911000048, 45.51494903600009 ], [ 14.904443807000092, 45.514432272000064 ], [ 14.900826456000118, 45.493141581000074 ], [ 14.881602823000094, 45.46978383400004 ], [ 14.838814738000082, 45.458983460000084 ], [ 14.797163533 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-066", "NAME_1": "Loški Potok" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.663674873896298, 45.570187027909014 ], [ 14.657327107000071, 45.572774964000118 ], [ 14.650299113000131, 45.574842021000066 ], [ 14.61598596200011, 45.59406565400009 ], [ 14.603066853000115, 45.603574117000065 ], [ 14.593868449000098, 45.616183167000102 ], [ 14.592938273000073, 45.629670716000064 ], [ 14.59407515500007, 45.64801584900006 ], [ 14.591904 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-065", "NAME_1": "Loška dolina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.569094979000084, 45.664251613000047 ], [ 14.563896118000059, 45.662691955000057 ], [ 14.556144654000065, 45.656697490000013 ], [ 14.54363895600008, 45.636440329000024 ], [ 14.533096964000094, 45.625691631000095 ], [ 14.507878866000055, 45.605847880000098 ], [ 14.49857710800012, 45.596184388000083 ], [ 14.492272583000101, 45.58342030900009 ], [ 14.4915 [...]
+{ "type": "Feature", "properties": { "ISO": "SI-038", "NAME_1": "Ilirska Bistrica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4915018290001, 45.579164764000055 ], [ 14.487414999000094, 45.556600240000122 ], [ 14.482144002000069, 45.542440898000066 ], [ 14.468914835000078, 45.52559438100009 ], [ 14.429744100000107, 45.505388896000099 ], [ 14.41124393700008, 45.49319325800009 ], [ 14.37279667100006, 45.477845358000124 ], [ 14.326804646000141, 45.474899801000035 ], [ 14.280 [...]
 { "type": "Feature", "properties": { "ISO": "SI-040", "NAME_1": "Izola" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.61092905333938, 45.538024637373056 ], [ 13.67514082100007, 45.544745184000078 ], [ 13.674287144036441, 45.520684313530239 ], [ 13.662763298787183, 45.50699005794479 ], [ 13.657492303027368, 45.492158921696841 ], [ 13.654236687972741, 45.490660304929122 ], [ 13.646640252245845, 45.488179837129735 ], [ 13.641679314848489, 45.489575100210686 ], [ 13.63997399340 [...]
 { "type": "Feature", "properties": { "ISO": "SI-089", "NAME_1": "Pesnica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.744755080182813, 46.568527329772451 ], [ 15.720673861809246, 46.569302477027691 ], [ 15.69896976114552, 46.579482734240742 ], [ 15.679849481068686, 46.592815252821651 ], [ 15.647138299093228, 46.594081326492017 ], [ 15.664346551252322, 46.603563950815669 ], [ 15.645743036012277, 46.642760525377923 ], [ 15.67240807497268, 46.646041978854214 ], [ 15.67504357 [...]
 { "type": "Feature", "properties": { "ISO": "SI-026", "NAME_1": "Duplek" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.731680942221715, 46.504758613119463 ], [ 15.724394565756597, 46.5135436063523 ], [ 15.721293980332916, 46.518452866906273 ], [ 15.720053745084272, 46.521295070810822 ], [ 15.720828892339512, 46.523620509878583 ], [ 15.723154331407272, 46.52708283140754 ], [ 15.73808882044267, 46.532663886429191 ], [ 15.75374677899066, 46.546978257840294 ], [ 15.769094679176 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/spain.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/spain.geojson
index f406d45..8ee3b26 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/spain.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/spain.geojson
@@ -4,19 +4,19 @@
 "features": [
 { "type": "Feature", "properties": { "ISO": "ES-CE", "NAME_1": "Ceuta" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.340728318999936, 35.847357489000046 ], [ -5.378400837999891, 35.881686910000084 ], [ -5.398858678999886, 35.924503853000076 ], [ -5.309315558999913, 35.900824286000045 ], [ -5.283070441999939, 35.911688544000071 ], [ -5.340728318999936, 35.847357489000046 ] ] ] } },
 { "type": "Feature", "properties": { "ISO": "ES-ML", "NAME_1": "Melilla" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.943045613999885, 35.267874248000098 ], [ -2.966920125999877, 35.313866272 ], [ -2.947824673999946, 35.329779364000046 ], [ -2.912912563999953, 35.276922919000071 ], [ -2.943045613999885, 35.267874248000098 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "ES-NA", "NAME_1": "Navarra" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.74972998599992, 43.294792691000069 ], [ -1.654907185999889, 43.297539164000014 ], [ -1.621885945999907, 43.246999613000085 ], [ -1.587572794999886, 43.251598817000044 ], [ -1.559047403999926, 43.284077454000069 ], [ -1.432233438999987, 43.265008850000086 ], [ -1.403501342999959, 43.243330587000074 ], [ -1.399677286999946, 43.206743673000048 ], [ -1.4 [...]
+{ "type": "Feature", "properties": { "ISO": "ES-NA", "NAME_1": "Navarra" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.74972998599992, 43.294792691000069 ], [ -1.654907185999889, 43.297539164000014 ], [ -1.621885945999907, 43.246999613000085 ], [ -1.587572794999886, 43.251598817000044 ], [ -1.559047403999926, 43.284077454000069 ], [ -1.432233438999987, 43.265008850000086 ], [ -1.403501342999959, 43.243330587000074 ], [ -1.399677286999946, 43.206743673000048 ], [ -1.4 [...]
 { "type": "Feature", "properties": { "ISO": "ES-SS", "NAME_1": "Gipuzkoa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.794074744885912, 43.386015332062847 ], [ -1.796914021999953, 43.341128235000056 ], [ -1.768233601999981, 43.330922140000084 ], [ -1.74972998599992, 43.294792691000069 ], [ -1.791306322029129, 43.2774103871796 ], [ -1.833680996380906, 43.229506333750294 ], [ -1.90853430781209, 43.218344225505575 ], [ -1.912487554856796, 43.135145169513919 ], [ -1.9267244119 [...]
-{ "type": "Feature", "properties": { "ISO": "ES-HU", "NAME_1": "Huesca" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.745031962999889, 42.91872722699999 ], [ -0.740286010999881, 42.884799499000067 ], [ -0.648301961999891, 42.849788717000067 ], [ -0.56903031399986, 42.772635804000103 ], [ -0.535647338999894, 42.784211324000054 ], [ -0.533890339999914, 42.80800832200002 ], [ -0.423922892999911, 42.790670878000086 ], [ -0.322792113999952, 42.842502340000081 ], [ -0.23514888599 [...]
-{ "type": "Feature", "properties": { "ISO": "ES-L", "NAME_1": "Lérida" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.706757446000097, 42.846584779000082 ], [ 0.812900838000132, 42.831624451000025 ], [ 0.921111287000116, 42.784366354000085 ], [ 0.950256795000143, 42.796122742000065 ], [ 1.089059692000149, 42.771318054000048 ], [ 1.151484823000118, 42.70672251399999 ], [ 1.342584269000042, 42.708660381000115 ], [ 1.338243449000061, 42.694449361000053 ], [ 1.361084432000069, 42 [...]
-{ "type": "Feature", "properties": { "ISO": "ES-GI", "NAME_1": "Gerona" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 1.712174112944922, 42.493712260112716 ], [ 1.927458129000058, 42.436894023000079 ], [ 1.963734985000116, 42.367234192000055 ], [ 2.009210245000077, 42.347080383000062 ], [ 2.063263794000079, 42.35790659700011 ], [ 2.136954386000099, 42.416223450000061 ], [ 2.277410930000144, 42.428625794000126 ], [ 2.422518351000065, 42.383693136000019 ], [ 2.44556604000 [...]
-{ "type": "Feature", "properties": { "ISO": "ES-OR", "NAME_1": "Orense" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.19130407699987, 42.062084859000024 ], [ -8.222361612999919, 42.153629660000021 ], [ -8.18335665128842, 42.173116382015394 ], [ -8.164867712375042, 42.24590836547867 ], [ -8.235630654431191, 42.231812905241384 ], [ -8.268435831748263, 42.256685953294095 ], [ -8.26197587019027, 42.315232098182776 ], [ -8.31810502322827, 42.360836347719271 ], [ -8.3422859323499 [...]
-{ "type": "Feature", "properties": { "ISO": "ES-PO", "NAME_1": "Pontevedra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.222361612999919, 42.153629660000021 ], [ -8.346746785999898, 42.101694845000097 ], [ -8.626884724999911, 42.051026103000126 ], [ -8.670809691999864, 41.999814758000113 ], [ -8.750803188999953, 41.968980210000041 ], [ -8.777088995999918, 41.937160549000055 ], [ -8.864654100999928, 41.888902085000041 ], [ -8.881255662999934, 41.893296617000033 ], [ -8.8954 [...]
-{ "type": "Feature", "properties": { "ISO": "ES-ZA", "NAME_1": "Zamora" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.727982543999872, 41.930852559000087 ], [ -6.757903197999894, 41.937570496000021 ], [ -6.794386759999924, 41.979712626000051 ], [ -6.824927530999929, 41.983769226000064 ], [ -6.831232055999919, 41.953951925000055 ], [ -6.854951537999881, 41.942944845000071 ], [ -6.945126911999893, 41.943358257000071 ], [ -6.98345618299993, 41.962996166 ], [ -6.967501999917374 [...]
-{ "type": "Feature", "properties": { "ISO": "ES-SA", "NAME_1": "Salamanca" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.845288044999933, 41.051913961000068 ], [ -6.804360310999925, 41.064419658000062 ], [ -6.764776163999954, 41.10886139000003 ], [ -6.755216023999878, 41.158832500000116 ], [ -6.646643839999882, 41.267611390000056 ], [ -6.563496459999897, 41.270711975000026 ], [ -6.482128385697165, 41.302991610357729 ], [ -6.321889127081533, 41.28047375815737 ], [ -6.1286505 [...]
-{ "type": "Feature", "properties": { "ISO": "ES-CC", "NAME_1": "Cáceres" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.915826374999909, 40.25444325799999 ], [ -6.878050903999849, 40.265243632000121 ], [ -6.874509092120888, 40.279188166700521 ], [ -6.814694789832686, 40.244417223376161 ], [ -6.717646450423331, 40.258938300362274 ], [ -6.68857845713012, 40.249739895080097 ], [ -6.57101457366366, 40.276534125249668 ], [ -6.553186203880216, 40.293871567718668 ], [ -6.5579662741 [...]
-{ "type": "Feature", "properties": { "ISO": "ES-BA", "NAME_1": "Badajoz" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.127286336999873, 39.097485453000033 ], [ -7.167490600999884, 39.113479310000073 ], [ -7.155811726999929, 39.151513163000018 ], [ -7.168059040999935, 39.170633443 ], [ -7.258079386999896, 39.211302795000066 ], [ -7.264332233999909, 39.252333883000105 ], [ -7.250844686233279, 39.270627339580017 ], [ -7.203992432204984, 39.265844774616653 ], [ -7.1550043926386 [...]
+{ "type": "Feature", "properties": { "ISO": "ES-HU", "NAME_1": "Huesca" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.745031962999889, 42.918727227 ], [ -0.740286010999881, 42.884799499000067 ], [ -0.648301961999891, 42.849788717000067 ], [ -0.56903031399986, 42.772635804000103 ], [ -0.535647338999894, 42.784211324000054 ], [ -0.533890339999914, 42.80800832200002 ], [ -0.423922892999911, 42.790670878000086 ], [ -0.322792113999952, 42.842502340000081 ], [ -0.235148885999934, [...]
+{ "type": "Feature", "properties": { "ISO": "ES-L", "NAME_1": "Lérida" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.706757446000097, 42.846584779000082 ], [ 0.812900838000132, 42.831624451000025 ], [ 0.921111287000116, 42.784366354000085 ], [ 0.950256795000143, 42.796122742000065 ], [ 1.089059692000149, 42.771318054000048 ], [ 1.151484823000118, 42.706722514 ], [ 1.342584269000042, 42.708660381000115 ], [ 1.338243449000061, 42.694449361000053 ], [ 1.361084432000069, 42.6867 [...]
+{ "type": "Feature", "properties": { "ISO": "ES-GI", "NAME_1": "Gerona" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 1.712174112944922, 42.493712260112716 ], [ 1.927458129000058, 42.436894023000079 ], [ 1.963734985000116, 42.367234192000055 ], [ 2.009210245000077, 42.347080383000062 ], [ 2.063263794000079, 42.35790659700011 ], [ 2.136954386000099, 42.416223450000061 ], [ 2.277410930000144, 42.428625794000126 ], [ 2.422518351000065, 42.383693136000019 ], [ 2.44556604000 [...]
+{ "type": "Feature", "properties": { "ISO": "ES-BA", "NAME_1": "Badajoz" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.27043005399986, 38.61769561800007 ], [ -7.292960977999883, 38.656272074000057 ], [ -7.27043005399986, 38.737507427000125 ], [ -7.15100581899992, 38.819285380000039 ], [ -7.056076212999926, 38.855148824000096 ], [ -7.066049764999917, 38.904603170000129 ], [ -6.973290567999925, 39.013950501000025 ], [ -6.985692911999905, 39.066763815000073 ], [ -7.01576859499 [...]
 { "type": "Feature", "properties": { "ISO": "ES-CA", "NAME_1": "Cádiz" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.338773483242616, 36.141119671999917 ], [ -5.358386758461411, 36.141109447000375 ], [ -5.382517055999926, 36.172308661000045 ], [ -5.425445115999935, 36.179754950000074 ], [ -5.442331508999928, 36.148789781000062 ], [ -5.428700324999909, 36.08079661700009 ], [ -5.438628709999932, 36.06281159100007 ], [ -5.611765102999925, 36.006455796000068 ], [ -5.62970943899 [...]
-{ "type": "Feature", "properties": { "ISO": "ES-H", "NAME_1": "Huelva" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.049358275999907, 38.02021270800013 ], [ -7.023985148999913, 38.022563985000076 ], [ -6.950575759999879, 38.198385888000061 ], [ -6.933808966010986, 38.209295965736203 ], [ -6.797899949722932, 38.172941595977875 ], [ -6.813144497120845, 38.118810533279486 ], [ -6.801904872711702, 38.108681952010443 ], [ -6.617342495060086, 38.086771144872444 ], [ -6.5717122047 [...]
+{ "type": "Feature", "properties": { "ISO": "ES-OR", "NAME_1": "Orense" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.19130407699987, 42.062084859000024 ], [ -8.222361612999919, 42.153629660000021 ], [ -8.18335665128842, 42.173116382015394 ], [ -8.164867712375042, 42.24590836547867 ], [ -8.235630654431191, 42.231812905241384 ], [ -8.268435831748263, 42.256685953294095 ], [ -8.26197587019027, 42.315232098182776 ], [ -8.31810502322827, 42.360836347719271 ], [ -8.3422859323499 [...]
+{ "type": "Feature", "properties": { "ISO": "ES-CC", "NAME_1": "Cáceres" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.250844686233279, 39.270627339580017 ], [ -7.326654011999949, 39.341320699000093 ], [ -7.320917927999886, 39.467411194000036 ], [ -7.384169880999877, 39.483999329000042 ], [ -7.417552856999947, 39.524203593000081 ], [ -7.468092406999887, 39.550248515000064 ], [ -7.515841430999927, 39.593760071000062 ], [ -7.557285929999892, 39.679801331000064 ], [ -7.3414334 [...]
+{ "type": "Feature", "properties": { "ISO": "ES-SA", "NAME_1": "Salamanca" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.874509092120888, 40.279188166700521 ], [ -6.794438435999922, 40.35640085900009 ], [ -6.85128251099988, 40.40952423100002 ], [ -6.857121948999861, 40.442132060000077 ], [ -6.812525186999949, 40.51463409500009 ], [ -6.850455688999944, 40.582226868000035 ], [ -6.814282185999929, 40.647184143000104 ], [ -6.839138549999888, 40.75751332600008 ], [ -6.8366580809 [...]
+{ "type": "Feature", "properties": { "ISO": "ES-ZA", "NAME_1": "Zamora" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.482128385697165, 41.302991610357729 ], [ -6.399578816999849, 41.377475485000033 ], [ -6.379166625999915, 41.377475485000033 ], [ -6.379166625999915, 41.397319234000108 ], [ -6.321133991999943, 41.411013489000126 ], [ -6.282945108999854, 41.465635478000067 ], [ -6.279534463999937, 41.497003072 ], [ -6.205947224999932, 41.570280253000092 ], [ -6.27224808799985 [...]
+{ "type": "Feature", "properties": { "ISO": "ES-PO", "NAME_1": "Pontevedra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.222361612999919, 42.153629660000021 ], [ -8.346746785999898, 42.101694845000097 ], [ -8.626884724999911, 42.051026103000126 ], [ -8.670809691999864, 41.999814758000113 ], [ -8.750803188999953, 41.968980210000041 ], [ -8.777088995999918, 41.937160549000055 ], [ -8.864654100999928, 41.888902085000041 ], [ -8.881255662999934, 41.893296617000033 ], [ -8.8954 [...]
+{ "type": "Feature", "properties": { "ISO": "ES-H", "NAME_1": "Huelva" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.414418097999942, 37.19281647300005 ], [ -7.468867553999871, 37.475568950000039 ], [ -7.52912227399986, 37.556700948000085 ], [ -7.514342813999946, 37.601401062000051 ], [ -7.471606404999932, 37.636902771000067 ], [ -7.444011189999912, 37.730152893000124 ], [ -7.334405476999848, 37.811930847000028 ], [ -7.306861937999969, 37.850765686000088 ], [ -7.26862137899 [...]
 { "type": "Feature", "properties": { "ISO": "ES-B", "NAME_1": "Barcelona" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.778496577555018, 41.64558226081266 ], [ 2.449473504000082, 41.535223700000074 ], [ 2.296722852000073, 41.465318101000037 ], [ 2.163259311000047, 41.326646226000037 ], [ 2.06031334700009, 41.274603583000044 ], [ 1.624359570737568, 41.192165432388776 ], [ 1.624225678772063, 41.223169067998072 ], [ 1.573930265969011, 41.234353150277627 ], [ 1.613942475264992,  [...]
 { "type": "Feature", "properties": { "ISO": "ES-T", "NAME_1": "Tarragona" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.624359570737568, 41.192165432388776 ], [ 1.539235873000052, 41.187445380000042 ], [ 1.217784050000091, 41.104681708000044 ], [ 1.172943556000064, 41.058661200000074 ], [ 1.097666863000086, 41.070868231000077 ], [ 0.990407748000052, 41.03969961100006 ], [ 0.694834832000083, 40.785996812000064 ], [ 0.750173373000052, 40.765570380000042 ], [ 0.76726321700005,  [...]
 { "type": "Feature", "properties": { "ISO": "ES-CS", "NAME_1": "Castellón" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.523759592033164, 40.526163029399385 ], [ 0.350596550000091, 40.284898179000038 ], [ 0.205251498000052, 40.171535549000055 ], [ 0.144541863000086, 40.07884349200009 ], [ 0.06617272200009, 40.031927802000041 ], [ -0.002919074999909, 39.93195221600007 ], [ -0.091297980999911, 39.847927151000079 ], [ -0.194488085256921, 39.715440171426735 ], [ -0.3453923164022 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/sweden.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/sweden.geojson
index 78ee965..03c4ea9 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/sweden.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/sweden.geojson
@@ -2,7 +2,7 @@
 "type": "FeatureCollection",
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
-{ "type": "Feature", "properties": { "ISO": "SE-BD", "NAME_1": "Norrbotten" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.931010376000046, 68.350196025000074 ], [ 20.010282023000087, 68.363890279000017 ], [ 20.245926554000107, 68.477371724000037 ], [ 19.96222294100005, 68.541192119000087 ], [ 20.151772095000126, 68.606821187000023 ], [ 20.236624796000086, 68.659066061000019 ], [ 20.352173299000071, 68.785673320000015 ], [ 20.341114543000089, 68.910058493000108 ], [ 2 [...]
+{ "type": "Feature", "properties": { "ISO": "SE-BD", "NAME_1": "Norrbotten" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.931010376000046, 68.350196025000074 ], [ 20.010282023000087, 68.363890279000017 ], [ 20.245926554000107, 68.477371724000037 ], [ 19.96222294100005, 68.541192119000087 ], [ 20.151772095000126, 68.606821187000023 ], [ 20.236624796000086, 68.659066061000019 ], [ 20.352173299000071, 68.785673320000015 ], [ 20.341114543000089, 68.910058493000108 ], [ 2 [...]
 { "type": "Feature", "properties": { "ISO": "SE-AC", "NAME_1": "Västerbotten" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.332849860000096, 65.11504586000008 ], [ 14.380238078000076, 65.240282492000105 ], [ 14.514286743000099, 65.31808136000005 ], [ 14.510359335000118, 65.464739075000082 ], [ 14.560692179000085, 65.701055400000101 ], [ 14.648852172000147, 65.802392884000128 ], [ 14.54053837100011, 66.125448100000099 ], [ 15.053375285000072, 66.153275859000061 ], [ 1 [...]
 { "type": "Feature", "properties": { "ISO": "SE-Z", "NAME_1": "Jämtland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.332073666000099, 65.113963805000068 ], [ 14.708487583335284, 65.000425523818819 ], [ 14.886151157250083, 64.879166774826786 ], [ 15.043815951944623, 64.831546943136914 ], [ 15.100453321763382, 64.759096585139275 ], [ 15.170009799912293, 64.754910794097839 ], [ 15.269280225601904, 64.722483832063176 ], [ 15.368912388296053, 64.670109768550958 ], [ 15.2915010 [...]
 { "type": "Feature", "properties": { "ISO": "SE-W", "NAME_1": "Dalarna" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.710825598000071, 61.05701155800007 ], [ 12.739149617000066, 61.142444763000086 ], [ 12.839815308000112, 61.226987406000049 ], [ 12.886944214000039, 61.36150116 ], [ 12.613782592000121, 61.547045390000036 ], [ 12.416481975000096, 61.582288717 ], [ 12.161717163000077, 61.724838155000029 ], [ 12.317469929000112, 62.234031881000092 ], [ 12.315149305000119, 62.27 [...]
@@ -12,8 +12,8 @@
 { "type": "Feature", "properties": { "ISO": "SE-X", "NAME_1": "Gävleborg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.498545769000089, 62.14756907800006 ], [ 17.474457227000073, 62.116603908000059 ], [ 17.473155144000089, 62.084662177000041 ], [ 17.447276238000086, 62.068182684000078 ], [ 17.469004754000082, 62.062160549000055 ], [ 17.426117384000065, 62.026556708000044 ], [ 17.460459832000083, 62.003322658000059 ], [ 17.392100457000083, 61.992417710000041 ], [ 17.3859969 [...]
 { "type": "Feature", "properties": { "ISO": "SE-C", "NAME_1": "Uppsala" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.37663821700005, 60.623887437000064 ], [ 17.574961785000085, 60.64789459800005 ], [ 17.658946160000085, 60.608303127000056 ], [ 17.603770379000082, 60.584133205000057 ], [ 17.638194207000083, 60.515448309000078 ], [ 17.741465691000087, 60.498439846000053 ], [ 17.727061394000089, 60.534735419000071 ], [ 17.762217644000089, 60.563299872000073 ], [ 17.816 [...]
 { "type": "Feature", "properties": { "ISO": "SE-AB", "NAME_1": "Stockholm" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.554525821009804, 60.121422020709645 ], [ 18.584320509000065, 60.073919989000046 ], [ 18.578135613000086, 60.142157294000071 ], [ 18.651377800000091, 60.148260809000078 ], [ 18.720713738000086, 60.126044012000079 ], [ 18.735199415000068, 60.114813544000071 ], [ 18.745127800000091, 60.049709377000056 ], [ 18.79664147200009, 60.004950262000079 ], [ 18 [...]
-{ "type": "Feature", "properties": { "ISO": "SE-D", "NAME_1": "Södermanland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.586273634000065, 58.964911200000074 ], [ 17.576914910000085, 58.956691799000055 ], [ 17.61109459700009, 58.943019924000055 ], [ 17.60124759200005, 58.927801825000074 ], [ 17.62671959700009, 58.917792059000078 ], [ 17.617930535000085, 58.902044989000046 ], [ 17.535980665000068, 58.902044989000046 ], [ 17.590668165000068, 58.867254950000074 ], [ 17.569509 [...]
-{ "type": "Feature", "properties": { "ISO": "SE-E", "NAME_1": "Östergötland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.781435028351435, 58.634493030438968 ], [ 16.23373457100007, 58.669256903000075 ], [ 16.257090691000087, 58.651760158000059 ], [ 16.254893425000091, 58.634507554000038 ], [ 16.179209832000083, 58.634507554000038 ], [ 16.285411004000082, 58.615912177000041 ], [ 16.333994988000086, 58.639146226000037 ], [ 16.371592644000089, 58.62055084800005 ], [ 1 [...]
+{ "type": "Feature", "properties": { "ISO": "SE-D", "NAME_1": "Södermanland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.586273634000065, 58.964911200000074 ], [ 17.576914910000085, 58.956691799000055 ], [ 17.61109459700009, 58.943019924000055 ], [ 17.60124759200005, 58.927801825000074 ], [ 17.62671959700009, 58.917792059000078 ], [ 17.617930535000085, 58.902044989000046 ], [ 17.535980665000068, 58.902044989000046 ], [ 17.590668165000068, 58.867254950000074 ], [ 17.569509 [...]
+{ "type": "Feature", "properties": { "ISO": "SE-E", "NAME_1": "Östergötland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.781435028351439, 58.634493030438968 ], [ 16.23373457100007, 58.669256903000075 ], [ 16.257090691000087, 58.651760158000059 ], [ 16.254893425000091, 58.634507554000038 ], [ 16.179209832000083, 58.634507554000038 ], [ 16.285411004000082, 58.615912177000041 ], [ 16.333994988000086, 58.639146226000037 ], [ 16.371592644000089, 58.62055084800005 ], [ 1 [...]
 { "type": "Feature", "properties": { "ISO": "SE-H", "NAME_1": "Kalmar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.68685957100007, 57.989243882000039 ], [ 16.70639082100007, 57.962103583000044 ], [ 16.735362175000091, 57.971909898000035 ], [ 16.74154707100007, 57.946193752000056 ], [ 16.782481316000087, 57.915106512000079 ], [ 16.727305535000085, 57.928778387000079 ], [ 16.76539147200009, 57.898830471000053 ], [ 16.758148634000065, 57.877020575000074 ], [ 16.723399 [...]
 { "type": "Feature", "properties": { "ISO": "SE-K", "NAME_1": "Blekinge" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.066247716358987, 56.335945807752807 ], [ 16.038259311000047, 56.255072333000044 ], [ 15.932139519000089, 56.174709377000056 ], [ 15.851735873000052, 56.086371161000045 ], [ 15.78874759200005, 56.106431382000039 ], [ 15.826508009000065, 56.159369208000044 ], [ 15.731211785000085, 56.157212632000039 ], [ 15.64820397200009, 56.194566148000035 ], [ 15.59 [...]
 { "type": "Feature", "properties": { "ISO": "SE-M", "NAME_1": "Skåne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.553402519119059, 56.054031617297667 ], [ 14.478851759000065, 56.031683661000045 ], [ 14.407725457000083, 55.977036851000037 ], [ 14.346446160000085, 55.953314520000049 ], [ 14.323252800000091, 55.915716864000046 ], [ 14.234711134000065, 55.862697658000059 ], [ 14.208506707000083, 55.821275132000039 ], [ 14.195811394000089, 55.725653387000079 ], [ 14.2736922540 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/switzerland.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/switzerland.geojson
index 4b0636e..407343d 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/switzerland.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/switzerland.geojson
@@ -2,19 +2,19 @@
 "type": "FeatureCollection",
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
-{ "type": "Feature", "properties": { "ISO": "CH-VS", "NAME_1": "Valais" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.84962011600004, 45.939712062000112 ], [ 7.848388712000116, 45.938075663000077 ], [ 7.845288127000089, 45.927792053000061 ], [ 7.846114949000111, 45.922572733000052 ], [ 7.843737833000148, 45.919213766000055 ], [ 7.831232137000143, 45.914459534000045 ], [ 7.825444376000092, 45.914666239 ], [ 7.807564331000037, 45.918490296000058 ], [ 7.780072469000061, 45.9181 [...]
-{ "type": "Feature", "properties": { "ISO": "CH-TI", "NAME_1": "Ticino" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.728973717163285, 46.108235732892751 ], [ 8.723890828000094, 46.109538066000042 ], [ 8.717689656000118, 46.107522685 ], [ 8.702186727000111, 46.097962545000101 ], [ 8.695055379000081, 46.095172018000042 ], [ 8.677485392000079, 46.095792135000025 ], [ 8.630873250000121, 46.114705709000063 ], [ 8.611546264000083, 46.119356588000116 ], [ 8.601831095000136, 46.122 [...]
-{ "type": "Feature", "properties": { "ISO": "CH-GR", "NAME_1": "Graubünden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.22483143702118, 46.23118805818234 ], [ 9.215747111000042, 46.221055807000042 ], [ 9.204171590000101, 46.213562724000028 ], [ 9.192182658000121, 46.209635315000057 ], [ 9.181330607000092, 46.204054260000035 ], [ 9.17574955200007, 46.194132385000032 ], [ 9.171098673000103, 46.182608541000022 ], [ 9.163788024997359, 46.172989267440698 ], [ 9.163348016397833, [...]
-{ "type": "Feature", "properties": { "ISO": "CH-SH", "NAME_1": "Schaffhausen" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.558216187000085, 47.801166077000076 ], [ 8.58312422700007, 47.800235901000022 ], [ 8.601624390000069, 47.794603170000087 ], [ 8.603174682000088, 47.787316793000016 ], [ 8.604104858000142, 47.774397685000011 ], [ 8.607618856000101, 47.762253723000114 ], [ 8.617437378000091, 47.757318624000064 ], [ 8.629839721000053, 47.762796326000043 ], [ 8.63500 [...]
+{ "type": "Feature", "properties": { "ISO": "CH-VS", "NAME_1": "Valais" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.84962011600004, 45.939712062000112 ], [ 7.848388712000116, 45.938075663000077 ], [ 7.845288127000089, 45.927792053000061 ], [ 7.846114949000111, 45.922572733000052 ], [ 7.843737833000148, 45.919213766000055 ], [ 7.831232137000143, 45.914459534000045 ], [ 7.825444376000092, 45.914666239 ], [ 7.807564331000037, 45.918490296000058 ], [ 7.780072469000061, 45.9181 [...]
+{ "type": "Feature", "properties": { "ISO": "CH-TI", "NAME_1": "Ticino" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.728973717163285, 46.108235732892751 ], [ 8.723890828000094, 46.109538066000042 ], [ 8.717689656000118, 46.107522685 ], [ 8.702186727000111, 46.097962545000101 ], [ 8.695055379000081, 46.095172018000042 ], [ 8.677485392000079, 46.095792135000025 ], [ 8.630873250000121, 46.114705709000063 ], [ 8.611546264000083, 46.119356588000116 ], [ 8.601831095000136, 46.122 [...]
+{ "type": "Feature", "properties": { "ISO": "CH-GR", "NAME_1": "Graubünden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.22483143702118, 46.23118805818234 ], [ 9.215747111000042, 46.221055807000042 ], [ 9.204171590000101, 46.213562724000028 ], [ 9.192182658000121, 46.209635315000057 ], [ 9.181330607000092, 46.204054260000035 ], [ 9.17574955200007, 46.194132385000032 ], [ 9.171098673000103, 46.182608541000022 ], [ 9.163788024997359, 46.172989267440698 ], [ 9.163348016397833, [...]
+{ "type": "Feature", "properties": { "ISO": "CH-SH", "NAME_1": "Schaffhausen" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.558216187000085, 47.801166077000076 ], [ 8.58312422700007, 47.800235901000022 ], [ 8.601624390000069, 47.794603170000087 ], [ 8.603174682000088, 47.787316793000016 ], [ 8.604104858000142, 47.774397685000011 ], [ 8.607618856000101, 47.762253723000114 ], [ 8.617437378000091, 47.757318624000064 ], [ 8.629839721000053, 47.762796326000043 ], [ 8.63500 [...]
 { "type": "Feature", "properties": { "ISO": "CH-TG", "NAME_1": "Thurgau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.851935119000075, 47.671281723000092 ], [ 8.852668498000099, 47.670786438000064 ], [ 8.881710652000095, 47.656136170000067 ], [ 8.906205281000041, 47.651795349000096 ], [ 8.945376017000086, 47.654301656000072 ], [ 8.981756225000055, 47.662156474000099 ], [ 8.997672566000091, 47.673835348000082 ], [ 9.016586141000118, 47.678899639000051 ], [ 9.128103881000129, [...]
-{ "type": "Feature", "properties": { "ISO": "CH-ZH", "NAME_1": "Zürich" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.601624390000069, 47.632597555000089 ], [ 8.607308797000115, 47.656291199000023 ], [ 8.598213745000066, 47.656885478000063 ], [ 8.593588682771497, 47.658168560330751 ], [ 8.593770379099681, 47.658331611015001 ], [ 8.607619663416699, 47.670759792930085 ], [ 8.624724561889025, 47.681637682133271 ], [ 8.631649204047505, 47.690577704097734 ], [ 8.640020786130378,  [...]
-{ "type": "Feature", "properties": { "ISO": "CH-AG", "NAME_1": "Aargau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.251051473000132, 47.622003886000087 ], [ 8.276993042000072, 47.616629537000037 ], [ 8.288568562000108, 47.6158027150001 ], [ 8.293942912000091, 47.611461894000044 ], [ 8.299317260000038, 47.60182423900001 ], [ 8.306345255000053, 47.59218658499999 ], [ 8.316163777000014, 47.587845764000022 ], [ 8.354094279000037, 47.581024475000063 ], [ 8.418069702000111, 47.5 [...]
+{ "type": "Feature", "properties": { "ISO": "CH-ZH", "NAME_1": "Zürich" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.601624390000069, 47.632597555000089 ], [ 8.607308797000115, 47.656291199000023 ], [ 8.598213745000066, 47.656885478000063 ], [ 8.593588682771497, 47.658168560330751 ], [ 8.593770379099681, 47.658331611015001 ], [ 8.607619663416699, 47.670759792930085 ], [ 8.624724561889025, 47.681637682133271 ], [ 8.631649204047505, 47.690577704097734 ], [ 8.640020786130378,  [...]
+{ "type": "Feature", "properties": { "ISO": "CH-AG", "NAME_1": "Aargau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.251051473000132, 47.622003886000087 ], [ 8.276993042000072, 47.616629537000037 ], [ 8.288568562000108, 47.6158027150001 ], [ 8.293942912000091, 47.611461894000044 ], [ 8.299317260000038, 47.60182423900001 ], [ 8.306345255000053, 47.592186585 ], [ 8.316163777000014, 47.587845764000022 ], [ 8.354094279000037, 47.581024475000063 ], [ 8.418069702000111, 47.580766 [...]
 { "type": "Feature", "properties": { "ISO": "CH-BS", "NAME_1": "Basel-Stadt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.65966638200004, 47.596579082000076 ], [ 7.646540568000091, 47.571541850000088 ], [ 7.635895223000091, 47.564591370000088 ], [ 7.612337281000094, 47.564731041000115 ], [ 7.609746948000094, 47.564746399000043 ], [ 7.64690103500007, 47.551445236000049 ], [ 7.64674808125892, 47.53477326137687 ], [ 7.640391879881349, 47.529657294348624 ], [ 7.630314976355066, [...]
 { "type": "Feature", "properties": { "ISO": "CH-BL", "NAME_1": "Basel-Landschaft" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.683437540000114, 47.544256694000083 ], [ 7.727320446881095, 47.550422624204714 ], [ 7.730567253975551, 47.548777574425515 ], [ 7.767050814943161, 47.536607774029505 ], [ 7.771701693978002, 47.536065172569636 ], [ 7.774027133945083, 47.535031642896001 ], [ 7.777747836993058, 47.532602851040735 ], [ 7.777127720268084, 47.527771104852604 ], [ 7. [...]
 { "type": "Feature", "properties": { "ISO": "CH-SG", "NAME_1": "Sankt Gallen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.553058590581486, 47.516891337864934 ], [ 9.554951212000105, 47.510899557000116 ], [ 9.584510132000048, 47.480720521000094 ], [ 9.621717163000142, 47.469196676000067 ], [ 9.650345907000116, 47.452091777000035 ], [ 9.649519084000104, 47.409717103000034 ], [ 9.639803914000055, 47.394524231000091 ], [ 9.601046590000124, 47.361270447000052 ], [ 9.59639571100 [...]
 { "type": "Feature", "properties": { "ISO": "CH-SO", "NAME_1": "Solothurn" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.467430053000101, 47.481909078000044 ], [ 7.482726278000058, 47.491262512000063 ], [ 7.484483276000049, 47.492941997000045 ], [ 7.485826864000103, 47.495784200000102 ], [ 7.485930217000146, 47.498393860000121 ], [ 7.485776134000076, 47.498767511000025 ], [ 7.501692335632754, 47.500072537117887 ], [ 7.52091596759783, 47.49508576129881 ], [ 7.528977492 [...]
 { "type": "Feature", "properties": { "ISO": "CH-JU", "NAME_1": "Jura" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.009783569000149, 47.499246522000035 ], [ 7.018878621000056, 47.49767039000001 ], [ 7.027973674000094, 47.492941997000045 ], [ 7.053915242000073, 47.490384013000053 ], [ 7.10373132300009, 47.496275126000043 ], [ 7.127295776000096, 47.492941997000045 ], [ 7.140318237000116, 47.48785186800005 ], [ 7.142169389000088, 47.48765096800004 ], [ 7.15365075700015, 47.4864 [...]
-{ "type": "Feature", "properties": { "ISO": "CH-GE", "NAME_1": "Genève" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.061882772000104, 46.241157939000018 ], [ 6.067670532000079, 46.241623027000045 ], [ 6.089684692000077, 46.246377259000027 ], [ 6.094025513000133, 46.253043518000041 ], [ 6.093095337000108, 46.262293600000064 ], [ 6.093612101000133, 46.273093974000076 ], [ 6.100743448000088, 46.301412659000093 ], [ 6.104050740000076, 46.309215800000104 ], [ 6.118607036585445,  [...]
+{ "type": "Feature", "properties": { "ISO": "CH-GE", "NAME_1": "Genève" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.061882772000104, 46.241157939000018 ], [ 6.067670532000079, 46.241623027000045 ], [ 6.089684692000077, 46.246377259000027 ], [ 6.094025513000133, 46.253043518000041 ], [ 6.093095337000108, 46.262293600000064 ], [ 6.093612101000133, 46.273093974000076 ], [ 6.100743448000088, 46.301412659000093 ], [ 6.104050740000076, 46.309215800000104 ], [ 6.118607036585445,  [...]
 { "type": "Feature", "properties": { "ISO": "CH-VD", "NAME_1": "Vaud" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.118607036585445, 46.331771084867626 ], [ 6.136400187000078, 46.359341940000022 ], [ 6.135056600000098, 46.370400696000033 ], [ 6.12286096200009, 46.385541891000045 ], [ 6.108184855000104, 46.396497294000127 ], [ 6.059013168023284, 46.417385842182853 ], [ 6.054234660000134, 46.419415792000038 ], [ 6.065706827000071, 46.427012228000095 ], [ 6.0675671790001 [...]
 { "type": "Feature", "properties": { "ISO": "CH-NE", "NAME_1": "Neuchâtel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.443117661750705, 46.851455121056972 ], [ 6.4467688390001, 46.857709453000027 ], [ 6.44842248600014, 46.871558737 ], [ 6.445218546000063, 46.882617493000012 ], [ 6.431886027000132, 46.90003245100003 ], [ 6.427751913000122, 46.909075827 ], [ 6.442634725000062, 46.944164124000039 ], [ 6.491107218000138, 46.963387757000064 ], [ 6.598697550000082, 46.9865387980 [...]
 { "type": "Feature", "properties": { "ISO": "CH-BE", "NAME_1": "Bern" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.554453972772592, 47.344035550400292 ], [ 7.562050409398864, 47.342614447998358 ], [ 7.564685906829141, 47.340573228871392 ], [ 7.567476433890306, 47.337756863388506 ], [ 7.569181756233036, 47.333700263556295 ], [ 7.569956902588956, 47.329256090096465 ], [ 7.56887169787052, 47.323985094336592 ], [ 7.567476433890306, 47.321117052010322 ], [ 7.5589498230758 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/syria.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/syria.geojson
index ff0ed98..b070872 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/syria.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/syria.geojson
@@ -3,15 +3,15 @@
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
 { "type": "Feature", "properties": { "ISO": "SY-X01~", "NAME_1": "UNDOF" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.757590349000111, 32.7443468580001 ], [ 35.784202921000087, 32.777948710000075 ], [ 35.834225708000076, 32.827945658000047 ], [ 35.841873820000046, 32.853577169000019 ], [ 35.838049764000118, 32.866031189000111 ], [ 35.849728638000101, 32.895822653 ], [ 35.866885213000046, 32.920782369000065 ], [ 35.874016561000076, 32.922332662000102 ], [ 35.888072550000118 [...]
-{ "type": "Feature", "properties": { "ISO": "SY-HI", "NAME_1": "Homs (Hims)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.391194296000094, 34.622487284000059 ], [ 36.367526489000056, 34.629205221000078 ], [ 36.347372680000092, 34.644139710000033 ], [ 36.323808228000075, 34.679486389000132 ], [ 36.308925415000147, 34.687547913000017 ], [ 36.288151489000086, 34.675558981000066 ], [ 36.284844197000098, 34.66791086799999 ], [ 36.284430786000087, 34.648325501000059 ], [ 36.2807 [...]
-{ "type": "Feature", "properties": { "ISO": "SY-TA", "NAME_1": "Tartus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.060775188000036, 34.627913310000011 ], [ 36.037934204000123, 34.628430075000054 ], [ 36.016230103000112, 34.633649394000074 ], [ 35.99876346800005, 34.645379944000055 ], [ 35.991425415000094, 34.648222148000045 ], [ 35.982640422000088, 34.65023752899999 ], [ 35.969899655243296, 34.649848955419216 ], [ 35.965668165000068, 34.668443101000037 ], [ 35.9474389980 [...]
-{ "type": "Feature", "properties": { "ISO": "SY-RD", "NAME_1": "Rif Dimashq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.445144490000075, 34.04614003600004 ], [ 36.458890422000081, 34.046708476 ], [ 36.475220174000128, 34.053503927000051 ], [ 36.480697876000136, 34.062754008000056 ], [ 36.48266158000007, 34.074510397000054 ], [ 36.488449341000035, 34.088643901000083 ], [ 36.507983032000141, 34.109185283000087 ], [ 36.552734823000094, 34.140992127000018 ], [ 36.57588586400 [...]
-{ "type": "Feature", "properties": { "ISO": "SY-HA", "NAME_1": "Hasaka (Al Haksa)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.211200805000033, 37.324906311000106 ], [ 42.222569621000105, 37.313950908000024 ], [ 42.22380985500007, 37.302375387 ], [ 42.222156209000104, 37.292401835000064 ], [ 42.223189738000087, 37.288138530000126 ], [ 42.236832316000118, 37.286304016000102 ], [ 42.267218059000072, 37.274521790000037 ], [ 42.272902465000072, 37.276743877000015 ], [ 42.2792 [...]
-{ "type": "Feature", "properties": { "ISO": "SY-RA", "NAME_1": "Ar Raqqah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.185855753000112, 36.659520569000037 ], [ 39.239599243000043, 36.661277567000084 ], [ 39.441707633000135, 36.692372694000042 ], [ 39.465167678245734, 36.636006984834466 ], [ 39.474004347422692, 36.619470527143108 ], [ 39.524750603857285, 36.566760565947334 ], [ 39.538238152968347, 36.557122911093472 ], [ 39.546764763782789, 36.553893134460566 ], [ 39.55699 [...]
-{ "type": "Feature", "properties": { "ISO": "SY-HL", "NAME_1": "Aleppo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.224260702000038, 36.908394267000048 ], [ 38.289889770000059, 36.901702169000103 ], [ 38.479955689000121, 36.855735982000041 ], [ 38.529358358000138, 36.833721822000044 ], [ 38.635191662665079, 36.74403945935353 ], [ 38.648163283308861, 36.699155584762423 ], [ 38.648783400033835, 36.695486559457152 ], [ 38.648318312040431, 36.69042226837297 ], [ 38.6463029313 [...]
-{ "type": "Feature", "properties": { "ISO": "SY-ID", "NAME_1": "Idlib" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.593455851000044, 36.21810048499999 ], [ 36.664252563000105, 36.22900421100006 ], [ 36.67004032400007, 36.237324117000114 ], [ 36.669110148000129, 36.259855042000126 ], [ 36.665492798000116, 36.274014384000068 ], [ 36.658464803000129, 36.29049916600006 ], [ 36.648761161997982, 36.305718560862886 ], [ 36.661204460617341, 36.311168931800751 ], [ 36.6957759945664 [...]
+{ "type": "Feature", "properties": { "ISO": "SY-HI", "NAME_1": "Homs (Hims)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.391194296000094, 34.622487284000059 ], [ 36.367526489000056, 34.629205221000078 ], [ 36.347372680000092, 34.644139710000033 ], [ 36.323808228000075, 34.679486389000132 ], [ 36.308925415000147, 34.687547913000017 ], [ 36.288151489000086, 34.675558981000066 ], [ 36.284844197000098, 34.667910868 ], [ 36.284430786000087, 34.648325501000059 ], [ 36.280710083 [...]
+{ "type": "Feature", "properties": { "ISO": "SY-TA", "NAME_1": "Tartus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.060775188000036, 34.627913310000011 ], [ 36.037934204000123, 34.628430075000054 ], [ 36.016230103000112, 34.633649394000074 ], [ 35.99876346800005, 34.645379944000055 ], [ 35.991425415000094, 34.648222148000045 ], [ 35.982640422000088, 34.650237529 ], [ 35.969899655243296, 34.649848955419216 ], [ 35.965668165000068, 34.668443101000037 ], [ 35.947438998000052 [...]
+{ "type": "Feature", "properties": { "ISO": "SY-RD", "NAME_1": "Rif Dimashq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.445144490000075, 34.04614003600004 ], [ 36.458890422000081, 34.046708476 ], [ 36.475220174000128, 34.053503927000051 ], [ 36.480697876000136, 34.062754008000056 ], [ 36.48266158000007, 34.074510397000054 ], [ 36.488449341000035, 34.088643901000083 ], [ 36.507983032000141, 34.109185283000087 ], [ 36.552734823000094, 34.140992127000018 ], [ 36.57588586400 [...]
+{ "type": "Feature", "properties": { "ISO": "SY-HA", "NAME_1": "Hasaka (Al Haksa)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.211200805000033, 37.324906311000106 ], [ 42.222569621000105, 37.313950908000024 ], [ 42.22380985500007, 37.302375387 ], [ 42.222156209000104, 37.292401835000064 ], [ 42.223189738000087, 37.288138530000126 ], [ 42.236832316000118, 37.286304016000102 ], [ 42.267218059000072, 37.274521790000037 ], [ 42.272902465000072, 37.276743877000015 ], [ 42.2792 [...]
+{ "type": "Feature", "properties": { "ISO": "SY-RA", "NAME_1": "Ar Raqqah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.185855753000112, 36.659520569000037 ], [ 39.239599243000043, 36.661277567000084 ], [ 39.441707633000135, 36.692372694000042 ], [ 39.465167678245734, 36.636006984834466 ], [ 39.474004347422692, 36.619470527143108 ], [ 39.524750603857285, 36.566760565947334 ], [ 39.538238152968347, 36.557122911093472 ], [ 39.546764763782789, 36.553893134460566 ], [ 39.55699 [...]
+{ "type": "Feature", "properties": { "ISO": "SY-HL", "NAME_1": "Aleppo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.224260702000038, 36.908394267000048 ], [ 38.289889770000059, 36.901702169000103 ], [ 38.479955689000121, 36.855735982000041 ], [ 38.529358358000138, 36.833721822000044 ], [ 38.635191662665079, 36.74403945935353 ], [ 38.648163283308861, 36.699155584762423 ], [ 38.648783400033835, 36.695486559457152 ], [ 38.648318312040431, 36.69042226837297 ], [ 38.6463029313 [...]
+{ "type": "Feature", "properties": { "ISO": "SY-ID", "NAME_1": "Idlib" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.593455851000044, 36.218100485 ], [ 36.664252563000105, 36.22900421100006 ], [ 36.67004032400007, 36.237324117000114 ], [ 36.669110148000129, 36.259855042000126 ], [ 36.665492798000116, 36.274014384000068 ], [ 36.658464803000129, 36.29049916600006 ], [ 36.648761161997982, 36.305718560862886 ], [ 36.661204460617341, 36.311168931800751 ], [ 36.695775994566475, 3 [...]
 { "type": "Feature", "properties": { "ISO": "SY-LA", "NAME_1": "Lattakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.138496541000052, 35.819778545000062 ], [ 36.155307556598416, 35.822232044573184 ], [ 36.155963982551725, 35.818434150016003 ], [ 36.155343865826751, 35.817297268454126 ], [ 36.153173456389879, 35.811716214331796 ], [ 36.151778192409608, 35.809003200737095 ], [ 36.150227898798448, 35.805360012054905 ], [ 36.149452752442528, 35.801639309006873 ], [ 36.149762 [...]
-{ "type": "Feature", "properties": { "ISO": "SY-SU", "NAME_1": "As Suwayda'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.49460567371284, 32.690055622768739 ], [ 37.415214478000053, 32.647129822000025 ], [ 37.244062134000046, 32.554396464000021 ], [ 37.133371216000057, 32.494529318000062 ], [ 37.133164510000086, 32.494529318000062 ], [ 36.980098918000124, 32.410038351000097 ], [ 36.819385213000146, 32.316788229000068 ], [ 36.80656945800007, 32.313041687000052 ], [ 36.79251 [...]
+{ "type": "Feature", "properties": { "ISO": "SY-SU", "NAME_1": "As Suwayda'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.49460567371284, 32.690055622768739 ], [ 37.415214478000053, 32.647129822000025 ], [ 37.244062134000046, 32.554396464000021 ], [ 37.133371216000057, 32.494580994000088 ], [ 37.133164510000086, 32.494529318000062 ], [ 36.980098918000124, 32.410038351000097 ], [ 36.819385213000146, 32.316788229000068 ], [ 36.80656945800007, 32.313041687000052 ], [ 36.79251 [...]
 { "type": "Feature", "properties": { "ISO": "SY-DR", "NAME_1": "Dar`a" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.927449992000106, 32.692372539000118 ], [ 35.922489054000039, 32.693767802000096 ], [ 35.905229126000052, 32.708573100000123 ], [ 35.895720663000077, 32.713275656000107 ], [ 35.78823368400009, 32.734411317000038 ], [ 35.779035278000094, 32.744281514000122 ], [ 35.779035278000094, 32.744359030000041 ], [ 35.77913863100008, 32.744462383000084 ], [ 35.77490116400 [...]
 { "type": "Feature", "properties": { "ISO": "SY-DY", "NAME_1": "Dayr Az Zawr" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.308457833662089, 35.552247625327652 ], [ 41.261284627000123, 35.494320374000026 ], [ 41.261284627000123, 35.494165344000081 ], [ 41.26118127400008, 35.494165344000081 ], [ 41.261077921000094, 35.494165344000081 ], [ 41.251879517000077, 35.464089661000017 ], [ 41.243094523000082, 35.366524557 ], [ 41.201339966000035, 35.243017884000054 ], [ 41.191521444 [...]
 { "type": "Feature", "properties": { "ISO": "SY-QU", "NAME_1": "Quneitra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.846801924868942, 32.83577678037409 ], [ 35.846628052000142, 32.836472270000073 ], [ 35.86068404100007, 32.880164693000054 ], [ 35.890346313000123, 32.928637187 ], [ 35.912153768000053, 32.947292379000075 ], [ 35.923832642000036, 32.967678731000021 ], [ 35.898097778000135, 32.985532939000066 ], [ 35.877117147000035, 32.992638448000022 ], [ 35.86461145000004 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/thailand.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/thailand.geojson
index 63edef2..3ef8dff 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/thailand.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/thailand.geojson
@@ -9,14 +9,14 @@
 { "type": "Feature", "properties": { "ISO": "TH-31", "NAME_1": "Buri Ram" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.016929610912769, 14.238872480980206 ], [ 102.934057658000029, 14.200968934000073 ], [ 102.913929613960477, 14.164946285142946 ], [ 102.884242385277844, 14.156371365446148 ], [ 102.819388462107781, 14.16525971146649 ], [ 102.713865187828105, 14.132135118341012 ], [ 102.594182569969576, 14.14867157603237 ], [ 102.585966018416968, 14.211045030503726 ], [ 102 [...]
 { "type": "Feature", "properties": { "ISO": "TH-23", "NAME_1": "Trat" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.765012412000033, 12.044563616000119 ], [ 102.843003785000121, 11.866046855000064 ], [ 102.913800496000135, 11.765536194000063 ], [ 102.928786662000107, 11.668694560000048 ], [ 102.913584832000026, 11.645900783000059 ], [ 102.893321160000028, 11.769680080000057 ], [ 102.77702884200005, 11.902533270000049 ], [ 102.76693769600007, 12.011786200000074 ], [  [...]
 { "type": "Feature", "properties": { "ISO": "TH-22", "NAME_1": "Chanthaburi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.490096772000129, 12.995187554000054 ], [ 102.467212769000071, 12.969467876000067 ], [ 102.478891643000054, 12.953629049000071 ], [ 102.464835653000137, 12.927532451000076 ], [ 102.506641887000114, 12.787515157000129 ], [ 102.495273072000032, 12.746096497000082 ], [ 102.441840447878349, 12.728060614006097 ], [ 102.397295363190437, 12.675686550493879 ],  [...]
-{ "type": "Feature", "properties": { "ISO": "TH-91", "NAME_1": "Satun" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 100.199200201827807, 6.699413639527847 ], [ 100.187558634000084, 6.707963766000077 ], [ 100.166836386000057, 6.695122172000083 ], [ 100.156087688000127, 6.620578919000124 ], [ 100.16719812000008, 6.566137797000053 ], [ 100.14570072500004, 6.539524435000104 ], [ 100.127289259000065, 6.44228750200007 ], [ 100.108164910000028, 6.479559637000079 ], [ 100.0900 [...]
+{ "type": "Feature", "properties": { "ISO": "TH-91", "NAME_1": "Satun" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 100.199200201827807, 6.699413639527847 ], [ 100.187558634000084, 6.707963766000077 ], [ 100.166836386000057, 6.695122172000083 ], [ 100.156087688000127, 6.620578919000124 ], [ 100.16719812000008, 6.566137797000053 ], [ 100.14570072500004, 6.539524435000104 ], [ 100.127289259000065, 6.442287502000056 ], [ 100.108164910000028, 6.479559637000079 ], [ 100.090 [...]
 { "type": "Feature", "properties": { "ISO": "TH-90", "NAME_1": "Songkhla" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 100.227504517000057, 6.688869324000095 ], [ 100.199200201827807, 6.699413639527847 ], [ 100.209831984358573, 6.744601548822402 ], [ 100.194329055441528, 6.798861802730016 ], [ 100.213397657775658, 6.885264796932802 ], [ 100.120018344570894, 6.932135320688474 ], [ 100.072992792083653, 6.993733628803909 ], [ 100.06462121000078, 7.045022488497011 ], [ 100 [...]
 { "type": "Feature", "properties": { "ISO": "TH-95", "NAME_1": "Yala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.832997274000093, 6.236674703000034 ], [ 100.823732217667668, 6.298604272968817 ], [ 100.877491489840338, 6.299822496411082 ], [ 100.911184523746726, 6.318426012550447 ], [ 100.925033807164425, 6.43371613199389 ], [ 101.029006788732261, 6.477020982332476 ], [ 101.1034208523904, 6.583784490961477 ], [ 101.101147089266703, 6.637863877715745 ], [ 101.158714634173 [...]
 { "type": "Feature", "properties": { "ISO": "TH-96", "NAME_1": "Narathiwat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.073090040000068, 6.257513739000046 ], [ 102.060002482000073, 6.094797058000083 ], [ 101.934738810000113, 5.98172902400006 ], [ 101.912931356000115, 5.85930755600009 ], [ 101.784153686000082, 5.738100484000057 ], [ 101.726792847000127, 5.786469625000095 ], [ 101.686691936000045, 5.761199849000135 ], [ 101.665918009000052, 5.765592346000034 ], [ 101.63077 [...]
 { "type": "Feature", "properties": { "ISO": "TH-57", "NAME_1": "Chiang Rai" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.937134644000139, 20.445006409000129 ], [ 99.985917196000116, 20.38702545200006 ], [ 100.036146688000031, 20.373124492 ], [ 100.099295288000121, 20.317804870000074 ], [ 100.102964315000122, 20.263596293000134 ], [ 100.134641968000039, 20.239101665000092 ], [ 100.167714885000123, 20.253622742000019 ], [ 100.167094767000037, 20.292612610000035 ], [ 100.2091 [...]
 { "type": "Feature", "properties": { "ISO": "TH-50", "NAME_1": "Chiang Mai" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.295675090000088, 20.062497457000106 ], [ 99.441402629000038, 20.101616516000021 ], [ 99.508733655000128, 20.152804504000059 ], [ 99.565426874050956, 20.120580960243103 ], [ 99.504448683559872, 20.080660916168313 ], [ 99.507342564307862, 20.057380683471763 ], [ 99.590231561037683, 20.007822984543111 ], [ 99.553127883345098, 19.915477200112662 ], [ 99.5256 [...]
-{ "type": "Feature", "properties": { "ISO": "TH-58", "NAME_1": "Mae Hong Son" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.04562219200011, 19.807629293000062 ], [ 98.072907349000047, 19.777295227000096 ], [ 98.111354615000096, 19.777140198000055 ], [ 98.213260539000089, 19.717763978000036 ], [ 98.21915165200005, 19.676991272000052 ], [ 98.237548462000063, 19.664692281000029 ], [ 98.307311645000027, 19.689987895000073 ], [ 98.439603312000088, 19.687739970000067 ], [ 98.4778 [...]
-{ "type": "Feature", "properties": { "ISO": "TH-63", "NAME_1": "Tak" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.524559367000052, 16.85044545500007 ], [ 98.436192668000047, 17.011572571000031 ], [ 98.399915812000074, 17.040149638000102 ], [ 98.299663534000047, 17.064747620000091 ], [ 98.286227661000112, 17.087433574000059 ], [ 98.294392538000125, 17.107587382000034 ], [ 98.268347616000028, 17.107742411000075 ], [ 98.278992961000029, 17.13657786 ], [ 98.092647746000068, 17 [...]
+{ "type": "Feature", "properties": { "ISO": "TH-58", "NAME_1": "Mae Hong Son" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.04562219200011, 19.807629293000062 ], [ 98.072907349000047, 19.777295227000096 ], [ 98.111354615000096, 19.777140198000055 ], [ 98.213260539000089, 19.717763978000036 ], [ 98.21915165200005, 19.676991272000052 ], [ 98.237548462000063, 19.664692281000029 ], [ 98.307311645000027, 19.689987895000073 ], [ 98.439603312000088, 19.687739970000067 ], [ 98.4778 [...]
+{ "type": "Feature", "properties": { "ISO": "TH-63", "NAME_1": "Tak" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.524559367000052, 16.85044545500007 ], [ 98.436192668000047, 17.011572571000031 ], [ 98.399915812000074, 17.040149638000102 ], [ 98.299663534000047, 17.064747620000091 ], [ 98.286227661000112, 17.087433574000059 ], [ 98.294392538000125, 17.107587382000034 ], [ 98.268347616000028, 17.107742411000075 ], [ 98.278992961000029, 17.13657786 ], [ 98.092647746000068, 17 [...]
 { "type": "Feature", "properties": { "ISO": "TH-71", "NAME_1": "Kanchanaburi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.533551066000086, 15.325964865000046 ], [ 98.559906047000027, 15.355317078000027 ], [ 98.569001099000047, 15.402135926000142 ], [ 98.544055414825493, 15.675098034446705 ], [ 98.663673130410587, 15.618220120262322 ], [ 98.730232375024059, 15.515694077719502 ], [ 98.725271437626702, 15.492853095493956 ], [ 98.764545525655421, 15.466937364467753 ], [ 98.89 [...]
 { "type": "Feature", "properties": { "ISO": "TH-77", "NAME_1": "Prachuap Khiri Khan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.466310670000041, 12.126030986000103 ], [ 99.448844035000093, 12.147218323000061 ], [ 99.473752076000039, 12.18726755800013 ], [ 99.387039022000067, 12.465906880000148 ], [ 99.404747115686803, 12.566940858733631 ], [ 99.516230910328204, 12.585950425971362 ], [ 99.624648065355871, 12.545255235540651 ], [ 99.674050733754314, 12.57610606554249 ], [  [...]
 { "type": "Feature", "properties": { "ISO": "TH-76", "NAME_1": "Phetchaburi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.404747115686803, 12.566940858733631 ], [ 99.39375695800004, 12.589775289000016 ], [ 99.276864869000065, 12.6655846150001 ], [ 99.266736288000118, 12.702843323000124 ], [ 99.214129680000099, 12.734650167000069 ], [ 99.210719035000068, 12.792269389000126 ], [ 99.17526900200005, 12.833429667000104 ], [ 99.153151490000027, 12.913553975000085 ], [ 99.1648303 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/uk.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/uk.geojson
index 120eba2..334285f 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/uk.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/uk.geojson
@@ -4,20 +4,20 @@
 "features": [
 { "type": "Feature", "properties": { "ISO": "GB-DRY", "NAME_1": "Derry" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.415755226022895, 54.944372422149513 ], [ -7.408664510999927, 54.951117248000074 ], [ -7.413108682999848, 54.984965312000057 ], [ -7.401119750999953, 54.994835511000062 ], [ -7.405253865999896, 55.003568827000024 ], [ -7.355024372999935, 55.040930888000062 ], [ -7.291152302999905, 55.046615296000098 ], [ -7.266502644999889, 55.065167135000067 ], [ -7.24710038 [...]
 { "type": "Feature", "properties": { "ISO": "GB-STB", "NAME_1": "Strabane" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.556149047999895, 54.738365378000069 ], [ -7.543074910999849, 54.741672669000067 ], [ -7.551704874999899, 54.754695130000087 ], [ -7.543384968999931, 54.793090719000034 ], [ -7.455069945999924, 54.863008932000028 ], [ -7.444734659999909, 54.88445465100007 ], [ -7.445251423999878, 54.932151998 ], [ -7.415755226022895, 54.944372422149513 ], [ -7.391687994805 [...]
-{ "type": "Feature", "properties": { "ISO": "GB-FER", "NAME_1": "Fermanagh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.887136596999937, 54.532124736000029 ], [ -7.848844360999919, 54.54090972900012 ], [ -7.749263875999873, 54.596151836000033 ], [ -7.707951474999902, 54.604763303000041 ], [ -7.670017259289068, 54.57855520335994 ], [ -7.638675502872161, 54.57966624650004 ], [ -7.597515225347365, 54.561321112779126 ], [ -7.548913539927923, 54.565222682980391 ], [ -7.5336689 [...]
+{ "type": "Feature", "properties": { "ISO": "GB-FER", "NAME_1": "Fermanagh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.887136596999937, 54.532124736000029 ], [ -7.848844360999919, 54.54090972900012 ], [ -7.749263875999873, 54.596151836000033 ], [ -7.707951474999902, 54.604763303000041 ], [ -7.670017259289068, 54.57855520335994 ], [ -7.638675502872161, 54.57966624650004 ], [ -7.597515225347365, 54.561321112779126 ], [ -7.548913539927923, 54.565222682980391 ], [ -7.5336689 [...]
 { "type": "Feature", "properties": { "ISO": "GB-DGN", "NAME_1": "Dungannon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.870014702316666, 54.326000603145303 ], [ -6.885957397999903, 54.345624492000056 ], [ -6.905956176999922, 54.349035137000087 ], [ -6.922027547999903, 54.372702942 ], [ -7.01783565299985, 54.413165588000098 ], [ -7.049254923999882, 54.411511943000065 ], [ -7.078503783999906, 54.394717103000076 ], [ -7.127027953999914, 54.349758606000066 ], [ -7.15989416499 [...]
 { "type": "Feature", "properties": { "ISO": "GB-ARM", "NAME_1": "Armagh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.732840128999896, 54.183567200000127 ], [ -6.78782385299985, 54.202997539000094 ], [ -6.823945678999848, 54.232349752000076 ], [ -6.837743285999892, 54.260513408000023 ], [ -6.882185017999888, 54.27725657200007 ], [ -6.856656860999948, 54.292811178000093 ], [ -6.870014702316666, 54.326000603145303 ], [ -6.83001685159644, 54.341334540456671 ], [ -6.8328073795 [...]
-{ "type": "Feature", "properties": { "ISO": "GB-NYM", "NAME_1": "Newry and Mourne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.616464803999889, 54.037271221000069 ], [ -6.672533732999909, 54.068432109000028 ], [ -6.657082478999911, 54.091944886000121 ], [ -6.655790567999873, 54.103313700000015 ], [ -6.666435913999862, 54.114785869000045 ], [ -6.643956664999848, 54.13183909100006 ], [ -6.634551554999888, 54.15013254800003 ], [ -6.648448442999893, 54.173664970000047 ], [ -6 [...]
+{ "type": "Feature", "properties": { "ISO": "GB-NYM", "NAME_1": "Newry and Mourne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.616464803999889, 54.037271221000069 ], [ -6.672533732999909, 54.068432109000028 ], [ -6.657082478999911, 54.091944886000121 ], [ -6.655790567999873, 54.103313700000015 ], [ -6.666435913999862, 54.114785869000045 ], [ -6.643956664999848, 54.13183909100006 ], [ -6.634551554999888, 54.15013254800003 ], [ -6.648448442999893, 54.173664970000047 ], [ -6 [...]
 { "type": "Feature", "properties": { "ISO": "GB-FLN", "NAME_1": "Flintshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.084543423999946, 53.258577179000042 ], [ -3.019759276999935, 53.246699321000051 ], [ -2.955551309999919, 53.215512594000074 ], [ -2.922426716999951, 53.19347259500006 ], [ -2.911445474999937, 53.17471405100008 ], [ -2.956797464999909, 53.144603791000065 ], [ -2.991749843680338, 53.138927314044281 ], [ -3.122749600313796, 53.066373603259137 ], [ -3.19145 [...]
 { "type": "Feature", "properties": { "ISO": "GB-CHW", "NAME_1": "Cheshire West and Chester" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.956797464999909, 53.144603791000065 ], [ -2.912556517999917, 53.170140687000071 ], [ -2.917982543999926, 53.189260966000063 ], [ -3.019759276999935, 53.246699321000051 ], [ -3.084543423999946, 53.258577179000042 ], [ -3.084543423999946, 53.275458075000074 ], [ -3.095943777883065, 53.287143450010205 ], [ -3.066680671275947, 53.305480454759 [...]
 { "type": "Feature", "properties": { "ISO": "GB-WRX", "NAME_1": "Wrexham" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.956797464999909, 53.144603791000065 ], [ -2.897363647999953, 53.102237854000066 ], [ -2.870956989999911, 53.066271057000051 ], [ -2.855118164999908, 53.022862854000039 ], [ -2.818350382999938, 52.989479879000044 ], [ -2.727296508999927, 52.966380514000036 ], [ -2.716237751999927, 52.941782532000047 ], [ -2.717684691999921, 52.921602885000084 ], [ -2.779489 [...]
-{ "type": "Feature", "properties": { "ISO": "GB-SHR", "NAME_1": "Shropshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.140429806999919, 52.796340511000039 ], [ -3.152231810999922, 52.829825542000037 ], [ -3.121897745999945, 52.854914449000034 ], [ -3.126858683999956, 52.884602559000086 ], [ -3.099702717999946, 52.897469992000083 ], [ -3.080349893999937, 52.917623800000058 ], [ -2.992810017999943, 52.952970480000033 ], [ -2.962966878999907, 52.951962790000039 ], [ -2.925 [...]
-{ "type": "Feature", "properties": { "ISO": "GB-POW", "NAME_1": "Powys" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.140429806999919, 52.796340511000039 ], [ -3.113061075999951, 52.784582825000086 ], [ -3.077559366999935, 52.781792298000084 ], [ -3.057508910999957, 52.766211854000062 ], [ -2.999941364999927, 52.756987610000067 ], [ -2.959943806999945, 52.731097717000068 ], [ -2.973689737999962, 52.716395772000055 ], [ -3.013273885999922, 52.708360088000063 ], [ -3.02789831 [...]
+{ "type": "Feature", "properties": { "ISO": "GB-SHR", "NAME_1": "Shropshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.140429806999919, 52.796340511000039 ], [ -3.152231810999922, 52.829825542000037 ], [ -3.121897745999945, 52.854914449000034 ], [ -3.126858683999956, 52.884602559000086 ], [ -3.099702717999946, 52.897469992000083 ], [ -3.080349893999937, 52.917623800000058 ], [ -2.992810017999943, 52.952970480000033 ], [ -2.962966878999907, 52.951962790000039 ], [ -2.925 [...]
+{ "type": "Feature", "properties": { "ISO": "GB-POW", "NAME_1": "Powys" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.140429806999919, 52.796340511000039 ], [ -3.113061075999951, 52.784582825000086 ], [ -3.077559366999935, 52.781792298000084 ], [ -3.057508910999957, 52.766211854000062 ], [ -2.999941364999927, 52.756987610000067 ], [ -2.959943806999945, 52.731097717000068 ], [ -2.973689737999962, 52.716395772000055 ], [ -3.013273885999922, 52.708360088000063 ], [ -3.02789831 [...]
 { "type": "Feature", "properties": { "ISO": "GB-HEF", "NAME_1": "Herefordshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.051249642257176, 51.983502938509787 ], [ -3.079884805999939, 52.016800232000037 ], [ -3.087558755999908, 52.051733500000068 ], [ -3.123086303999912, 52.073256735000086 ], [ -3.113216104999935, 52.101575419000085 ], [ -3.100813760999927, 52.111962382000058 ], [ -3.124662434999948, 52.128963929000065 ], [ -3.078231160999906, 52.147283224000034 ], [ -3. [...]
 { "type": "Feature", "properties": { "ISO": "GB-MON", "NAME_1": "Monmouthshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.051249642257176, 51.983502938509787 ], [ -2.960848143999954, 51.911121928000057 ], [ -2.934725707999917, 51.909261577000052 ], [ -2.873592488999918, 51.929208679000055 ], [ -2.775665648999961, 51.875025940000057 ], [ -2.734996296999952, 51.839885966000054 ], [ -2.702595173999953, 51.838542379000046 ], [ -2.658876912999915, 51.817665101000046 ], [ -2. [...]
 { "type": "Feature", "properties": { "ISO": "GB-GLS", "NAME_1": "Gloucestershire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.665353969999956, 51.617254950000074 ], [ -2.684043334999956, 51.662119039000061 ], [ -2.661615762999929, 51.672247620000064 ], [ -2.684353392999924, 51.72193451000004 ], [ -2.670555785999909, 51.743948670000066 ], [ -2.680581014999916, 51.764929301000052 ], [ -2.675775105999946, 51.786659241000052 ], [ -2.654174356999931, 51.80776906300008 ], [ -2. [...]
-{ "type": "Feature", "properties": { "ISO": "GB-SCB", "NAME_1": "Scottish Borders" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.022857225999928, 55.805487372000073 ], [ -2.078498901999922, 55.790368347000083 ], [ -2.09203812699991, 55.75716624000006 ], [ -2.167537393999908, 55.719907533000082 ], [ -2.242829955999923, 55.649937643000044 ], [ -2.328044392999914, 55.638207092000073 ], [ -2.327320922999945, 55.625132955000083 ], [ -2.281380574999957, 55.592060039000046 ], [ -2 [...]
-{ "type": "Feature", "properties": { "ISO": "GB-NBL", "NAME_1": "Northumberland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.685006726999916, 55.190827462000073 ], [ -2.661357381999949, 55.212548320000053 ], [ -2.625493936999931, 55.227017721000038 ], [ -2.618517618999931, 55.242985739000062 ], [ -2.623065144999941, 55.266395162000038 ], [ -2.551544962999913, 55.314350891000061 ], [ -2.451912800999935, 55.363340149000067 ], [ -2.412742065999907, 55.364528707000034 ], [ -2 [...]
+{ "type": "Feature", "properties": { "ISO": "GB-SCB", "NAME_1": "Scottish Borders" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.022857225999928, 55.805487372000073 ], [ -2.078498901999922, 55.790368347000083 ], [ -2.09203812699991, 55.75716624000006 ], [ -2.167537393999908, 55.719907533000082 ], [ -2.242829955999923, 55.649937643000044 ], [ -2.328044392999914, 55.638207092000073 ], [ -2.327320922999945, 55.625132955000083 ], [ -2.281380574999957, 55.592060039000046 ], [ -2 [...]
+{ "type": "Feature", "properties": { "ISO": "GB-NBL", "NAME_1": "Northumberland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.685006726999916, 55.190827462000073 ], [ -2.661357381999949, 55.212548320000053 ], [ -2.625493936999931, 55.227017721000038 ], [ -2.618517618999931, 55.242985739000062 ], [ -2.623065144999941, 55.266395162000038 ], [ -2.551544962999913, 55.314350891000061 ], [ -2.451912800999935, 55.363340149000067 ], [ -2.412742065999907, 55.364528707000034 ], [ -2 [...]
 { "type": "Feature", "properties": { "ISO": "GB-CMA", "NAME_1": "Cumbria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.850288091122536, 55.111294987273823 ], [ -2.822484496999948, 55.135188701000061 ], [ -2.718924926999932, 55.167228089000048 ], [ -2.685006726999916, 55.190827462000073 ], [ -2.640866868411251, 55.132138984426547 ], [ -2.597820399591797, 55.123560695869401 ], [ -2.587536789591184, 55.102993475868175 ], [ -2.547255011209813, 55.079945787168299 ], [ -2.505319 [...]
 { "type": "Feature", "properties": { "ISO": "GB-DGY", "NAME_1": "Dumfries and Galloway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.850288091122536, 55.111294987273823 ], [ -2.88310095199995, 55.083615621000035 ], [ -2.927697713999919, 55.068422750000082 ], [ -2.953794311999957, 55.041034241000034 ], [ -3.026063801999953, 55.050749410000037 ], [ -3.032962605999955, 55.015247701000078 ], [ -3.05029137799994, 54.981510325000045 ], [ -3.13540605399993, 54.968085028000075 ],  [...]
 { "type": "Feature", "properties": { "ISO": "GB-LMV", "NAME_1": "Limavady" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.149887797207094, 55.048656634593186 ], [ -7.065052863999938, 55.043850002000056 ], [ -7.017201300999943, 55.071112372000073 ], [ -7.009917772999927, 55.102240302000041 ], [ -6.97492428299995, 55.135443427000041 ], [ -6.962554490999935, 55.194647528000075 ], [ -6.883778449999909, 55.17413971600007 ], [ -6.838415196631908, 55.175424793866952 ], [ -6.8408689 [...]
@@ -43,19 +43,19 @@
 { "type": "Feature", "properties": { "ISO": "GB-DUR", "NAME_1": "Durham" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.340820267102664, 54.872682344323849 ], [ -1.296783006999931, 54.77993398600006 ], [ -1.275461391999954, 54.748439846000053 ], [ -1.245347013213661, 54.725398843778088 ], [ -1.294179042728672, 54.711337795802592 ], [ -1.305031094409514, 54.693251044500073 ], [ -1.325856695929758, 54.682166449721876 ], [ -1.333659837231721, 54.647414049518716 ], [ -1.37947099 [...]
 { "type": "Feature", "properties": { "ISO": "GB-HPL", "NAME_1": "Hartlepool" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.245347013213661, 54.725398843778088 ], [ -1.172230597999942, 54.701239325000074 ], [ -1.172230597999942, 54.693793036000045 ], [ -1.192453579999949, 54.689276434000078 ], [ -1.16470292899993, 54.652777411000045 ], [ -1.206288214999915, 54.632961330000057 ], [ -1.192595770437801, 54.619979483026022 ], [ -1.209352178760071, 54.606615506300557 ], [ -1.3187 [...]
 { "type": "Feature", "properties": { "ISO": "GB-RCC", "NAME_1": "Redcar and Cleveland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.192595770437801, 54.619979483026022 ], [ -1.172230597999942, 54.626125393000052 ], [ -1.16470292899993, 54.611802476000037 ], [ -1.15265865799995, 54.613185940000051 ], [ -1.138050910999937, 54.646551825000074 ], [ -1.103627081999946, 54.624660549000055 ], [ -1.042062954999949, 54.617092190000051 ], [ -0.993478969999956, 54.598130601000037 ],  [...]
-{ "type": "Feature", "properties": { "ISO": "GB-NYK", "NAME_1": "North Yorkshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.778835821815733, 54.557411071732488 ], [ -0.534657355999911, 54.461004950000074 ], [ -0.522857225999928, 54.447088934000078 ], [ -0.520415818999936, 54.420070705000057 ], [ -0.462757941999939, 54.38898346600007 ], [ -0.430572068999936, 54.349310614000046 ], [ -0.414540167999917, 54.297308661000045 ], [ -0.390736456999946, 54.28351471600007 ], [ -0. [...]
-{ "type": "Feature", "properties": { "ISO": "GB-ERY", "NAME_1": "East Riding of Yorkshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.199894358530032, 54.152449549000202 ], [ -0.111439581999946, 54.131577867000033 ], [ -0.075510219999956, 54.112127997000073 ], [ -0.163929816999939, 54.083400783000059 ], [ -0.194691535999937, 54.062323309000078 ], [ -0.219471808999913, 54.022772528000075 ], [ -0.197417772999927, 53.994818427000041 ], [ -0.151112433999913, 53.8993187520000 [...]
+{ "type": "Feature", "properties": { "ISO": "GB-NYK", "NAME_1": "North Yorkshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.778835821815733, 54.557411071732488 ], [ -0.534657355999911, 54.461004950000074 ], [ -0.522857225999928, 54.447088934000078 ], [ -0.520415818999936, 54.420070705000057 ], [ -0.462757941999939, 54.38898346600007 ], [ -0.430572068999936, 54.349310614000046 ], [ -0.414540167999917, 54.297308661000045 ], [ -0.390736456999946, 54.28351471600007 ], [ -0. [...]
+{ "type": "Feature", "properties": { "ISO": "GB-ERY", "NAME_1": "East Riding of Yorkshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.199894358530033, 54.152449549000202 ], [ -0.111439581999946, 54.131577867000033 ], [ -0.075510219999956, 54.112127997000073 ], [ -0.163929816999939, 54.083400783000059 ], [ -0.194691535999937, 54.062323309000078 ], [ -0.219471808999913, 54.022772528000075 ], [ -0.197417772999927, 53.994818427000041 ], [ -0.151112433999913, 53.8993187520000 [...]
 { "type": "Feature", "properties": { "ISO": "GB-KHL", "NAME_1": "Kingston upon Hull" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.295643683999913, 53.738796291000085 ], [ -0.431141730999911, 53.71430084800005 ], [ -0.449696417999917, 53.71430084800005 ], [ -0.44423092271893, 53.749019272821158 ], [ -0.42611833299469, 53.773978990338094 ], [ -0.386430832916631, 53.788732612220258 ], [ -0.341033088406334, 53.787569892236718 ], [ -0.309277919940087, 53.764909776265142 ], [ -0 [...]
-{ "type": "Feature", "properties": { "ISO": "GB-NLN", "NAME_1": "North Lincolnshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.699251737664361, 53.691255582021817 ], [ -0.692453579999949, 53.686997789000031 ], [ -0.677479620999918, 53.702826239000046 ], [ -0.649810350999928, 53.710598049000055 ], [ -0.619536912999934, 53.711859442000048 ], [ -0.52993730399993, 53.677679755000042 ], [ -0.486317511999914, 53.694484768000052 ], [ -0.307240363999938, 53.714260158000059 ], [ [...]
-{ "type": "Feature", "properties": { "ISO": "GB-NEL", "NAME_1": "North East Lincolnshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.198468688256314, 53.629559920648411 ], [ -0.09593665299991, 53.577134507000039 ], [ -0.046620245999918, 53.570379950000074 ], [ 0.02179499392032, 53.524706141076592 ], [ -0.058078783309213, 53.510222480582968 ], [ -0.092521125149801, 53.461905016003641 ], [ -0.072806565870337, 53.442448839142571 ], [ -0.113630946610897, 53.426868394960422 ] [...]
+{ "type": "Feature", "properties": { "ISO": "GB-NLN", "NAME_1": "North Lincolnshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.699251737664361, 53.691255582021817 ], [ -0.692453579999949, 53.686997789000031 ], [ -0.677479620999918, 53.702826239000046 ], [ -0.649810350999928, 53.710598049000055 ], [ -0.619536912999934, 53.711859442000048 ], [ -0.52993730399993, 53.677679755000042 ], [ -0.486317511999914, 53.694484768000052 ], [ -0.307240363999938, 53.714260158000059 ], [ [...]
+{ "type": "Feature", "properties": { "ISO": "GB-NEL", "NAME_1": "North East Lincolnshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.198468688256315, 53.629559920648411 ], [ -0.09593665299991, 53.577134507000039 ], [ -0.046620245999918, 53.570379950000074 ], [ 0.02179499392032, 53.524706141076592 ], [ -0.058078783309213, 53.510222480582968 ], [ -0.092521125149801, 53.461905016003641 ], [ -0.072806565870337, 53.442448839142571 ], [ -0.113630946610897, 53.426868394960422 ] [...]
 { "type": "Feature", "properties": { "ISO": "GB-LIN", "NAME_1": "Lincolnshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.02179499392032, 53.524706141076592 ], [ 0.095957879000082, 53.488348700000074 ], [ 0.151866082000083, 53.475816148000035 ], [ 0.167816602000073, 53.464504299000055 ], [ 0.175791863000086, 53.437689520000049 ], [ 0.219493035000085, 53.419501044000071 ], [ 0.211924675000091, 53.412665106000077 ], [ 0.229340040000068, 53.404771226000037 ], [ 0.25611412900 [...]
 { "type": "Feature", "properties": { "ISO": "GB-NFK", "NAME_1": "Norfolk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.278786788862686, 52.804961166665485 ], [ 0.32553144600007, 52.803168036000045 ], [ 0.38453209700009, 52.768377997000073 ], [ 0.379242384000065, 52.790838934000078 ], [ 0.438649936000047, 52.840725002000056 ], [ 0.45671634200005, 52.891994533000059 ], [ 0.48568769600007, 52.933498440000051 ], [ 0.520274285000085, 52.955267645000049 ], [ 0.569590691000087, 52 [...]
 { "type": "Feature", "properties": { "ISO": "GB-SFK", "NAME_1": "Suffolk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.747569207000083, 52.532782294000071 ], [ 1.77116946700005, 52.485907294000071 ], [ 1.754405144000089, 52.467352606000077 ], [ 1.729258660000085, 52.415594794000071 ], [ 1.72787519600007, 52.396307684000078 ], [ 1.683604363000086, 52.32453034100007 ], [ 1.63054446700005, 52.270453192000048 ], [ 1.630869988000086, 52.199774481000077 ], [ 1.58757571700005, 52. [...]
 { "type": "Feature", "properties": { "ISO": "GB-ESS", "NAME_1": "Essex" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.078502234194006, 51.950694975446773 ], [ 1.262054884000065, 51.939154364000046 ], [ 1.281993035000085, 51.946600653000075 ], [ 1.278493686000047, 51.927923895000049 ], [ 1.199554884000065, 51.877671617000033 ], [ 1.264414910000085, 51.863999742000033 ], [ 1.286631707000083, 51.881659247000073 ], [ 1.288259311000047, 51.860581773000035 ], [ 1.276377800000091,  [...]
 { "type": "Feature", "properties": { "ISO": "GB-SOS", "NAME_1": "Southend-on-Sea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.828278547117236, 51.541848484320042 ], [ 0.77125084700009, 51.528265692000048 ], [ 0.646657748000052, 51.535345770000049 ], [ 0.634617954055329, 51.543107408380195 ], [ 0.648570591159853, 51.569462388978025 ], [ 0.685777621639943, 51.577213854335866 ], [ 0.828278547117236, 51.541848484320042 ] ] ] } },
 { "type": "Feature", "properties": { "ISO": "GB-THR", "NAME_1": "Thurrock" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.547171880278029, 51.517725489739519 ], [ 0.456065300000091, 51.505560614000046 ], [ 0.428477410000085, 51.46710846600007 ], [ 0.356366203937171, 51.446369127333355 ], [ 0.337504307178051, 51.448694566401116 ], [ 0.322337274145866, 51.466936347334524 ], [ 0.274665764713234, 51.459908352388538 ], [ 0.21663313181358, 51.477736721272663 ], [ 0.242212966055547, [...]
-{ "type": "Feature", "properties": { "ISO": "GB-KEN", "NAME_1": "Kent" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.384504022142892, 51.453087063017506 ], [ 0.448415561000047, 51.459947007000039 ], [ 0.469574415000068, 51.480414130000042 ], [ 0.511625041358568, 51.487675990141526 ], [ 0.482585890326561, 51.462492173874693 ], [ 0.47948530400356, 51.44853953677017 ], [ 0.485686475750242, 51.437687485988647 ], [ 0.505840284601447, 51.436137193276807 ], [ 0.5120414572474 [...]
-{ "type": "Feature", "properties": { "ISO": "GB-MDW", "NAME_1": "Medway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.511625041358568, 51.487675990141526 ], [ 0.53484134200005, 51.491685289000088 ], [ 0.694834832000083, 51.477036851000037 ], [ 0.709483269000089, 51.470526434000078 ], [ 0.723155144000089, 51.44672272300005 ], [ 0.692393425000091, 51.439520575000074 ], [ 0.640961134000065, 51.444159247000073 ], [ 0.609385613000086, 51.425116278000075 ], [ 0.554535352000073, 5 [...]
+{ "type": "Feature", "properties": { "ISO": "GB-KEN", "NAME_1": "Kent" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.384504022142892, 51.453087063017506 ], [ 0.448415561000047, 51.459947007000039 ], [ 0.469574415000068, 51.480414130000042 ], [ 0.511625041358567, 51.487675990141526 ], [ 0.482585890326561, 51.462492173874693 ], [ 0.47948530400356, 51.44853953677017 ], [ 0.485686475750242, 51.437687485988647 ], [ 0.505840284601447, 51.436137193276807 ], [ 0.5120414572474 [...]
+{ "type": "Feature", "properties": { "ISO": "GB-MDW", "NAME_1": "Medway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.511625041358567, 51.487675990141526 ], [ 0.53484134200005, 51.491685289000088 ], [ 0.694834832000083, 51.477036851000037 ], [ 0.709483269000089, 51.470526434000078 ], [ 0.723155144000089, 51.44672272300005 ], [ 0.692393425000091, 51.439520575000074 ], [ 0.640961134000065, 51.444159247000073 ], [ 0.609385613000086, 51.425116278000075 ], [ 0.554535352000073, 5 [...]
 { "type": "Feature", "properties": { "ISO": "GB-ESX", "NAME_1": "East Sussex" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.86976504741898, 50.925119935336738 ], [ 0.802256707000083, 50.939195054000038 ], [ 0.762461785000085, 50.930894273000035 ], [ 0.664398634000065, 50.870306708000044 ], [ 0.624196811000047, 50.858710028000075 ], [ 0.365244988000086, 50.81899648600006 ], [ 0.342295769000089, 50.795152085000041 ], [ 0.308116082000083, 50.780951239000046 ], [ 0.2710067070000 [...]
 { "type": "Feature", "properties": { "ISO": "GB-BNH", "NAME_1": "Brighton and Hove" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.017548048000094, 50.784857489000046 ], [ -0.173166469999956, 50.829006252000056 ], [ -0.208915355759075, 50.830097137173141 ], [ -0.230342170254971, 50.856896064501768 ], [ -0.230574714251645, 50.867438056021456 ], [ -0.213366462092552, 50.874931138960847 ], [ -0.181688808891408, 50.872450670262197 ], [ -0.171973638772442, 50.885214748961459 ], [  [...]
 { "type": "Feature", "properties": { "ISO": "GB-WSX", "NAME_1": "West Sussex" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.208915355759075, 50.830097137173141 ], [ -0.233143683999913, 50.821926174000055 ], [ -0.269683397999927, 50.831284898000035 ], [ -0.397572394999941, 50.802069403000075 ], [ -0.568959113999938, 50.802069403000075 ], [ -0.73273678299995, 50.767279364000046 ], [ -0.758208787999934, 50.777085679000038 ], [ -0.773101365999935, 50.766017971000053 ], [ -0.766 [...]
@@ -104,8 +104,8 @@
 { "type": "Feature", "properties": { "ISO": "GB-ABE", "NAME_1": "Aberdeen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.044667120999918, 57.226507880000042 ], [ -2.074126756999931, 57.154201565000051 ], [ -2.071400519999941, 57.135565497000073 ], [ -2.052357550999943, 57.127427476000037 ], [ -2.049305792999917, 57.118841864000046 ], [ -2.065256313999953, 57.100531317000048 ], [ -2.074699875798615, 57.109382636099724 ], [ -2.104232957085287, 57.111139635285895 ], [ -2.31977 [...]
 { "type": "Feature", "properties": { "ISO": "GB-ANS", "NAME_1": "Angus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.435943162999934, 56.740383205000057 ], [ -2.451649542999917, 56.690985419000071 ], [ -2.487456834999932, 56.653876044000071 ], [ -2.480620897999927, 56.626532294000071 ], [ -2.514556443999936, 56.591498114000046 ], [ -2.623768683999913, 56.543402411000045 ], [ -2.64093990799995, 56.522365627000056 ], [ -2.699777798999946, 56.503648179000038 ], [ -2.727650519 [...]
 { "type": "Feature", "properties": { "ISO": "GB-DND", "NAME_1": "Dundee" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.819339383405804, 56.471298406296398 ], [ -3.055653449999909, 56.452134507000039 ], [ -3.079341396288442, 56.474899399687502 ], [ -3.063786789628637, 56.500685940403798 ], [ -2.882970954346092, 56.518178412503687 ], [ -2.845040451655507, 56.516705634157688 ], [ -2.83338741699572, 56.50649953942218 ], [ -2.819339383405804, 56.471298406296398 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "GB-PKN", "NAME_1": "Perthshire and Kinross" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.055653449999909, 56.452134507000039 ], [ -3.133900519999941, 56.426947333000044 ], [ -3.238189256999931, 56.367743231000077 ], [ -3.280181443999936, 56.357896226000037 ], [ -3.323475714999915, 56.365912177000041 ], [ -3.311512824999909, 56.356512762000079 ], [ -3.262405158071601, 56.352829830166385 ], [ -3.252819180061124, 56.334649562727122 [...]
-{ "type": "Feature", "properties": { "ISO": "GB-FIF", "NAME_1": "Fife" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.262405158071601, 56.352829830166385 ], [ -3.149566209999932, 56.375555731000077 ], [ -2.950266079999949, 56.431870835000041 ], [ -2.930653449999909, 56.448065497000073 ], [ -2.88499915299991, 56.457993882000039 ], [ -2.850087042999917, 56.44204336100006 ], [ -2.81476803299995, 56.440415757000039 ], [ -2.802805141999954, 56.427964585000041 ], [ -2.808257615999 [...]
+{ "type": "Feature", "properties": { "ISO": "GB-PKN", "NAME_1": "Perthshire and Kinross" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.055653449999909, 56.452134507000039 ], [ -3.133900519999941, 56.426947333000044 ], [ -3.238189256999931, 56.367743231000077 ], [ -3.280181443999936, 56.357896226000037 ], [ -3.323475714999915, 56.365912177000041 ], [ -3.311512824999909, 56.356512762000079 ], [ -3.262405158071858, 56.352829830166385 ], [ -3.252819180061124, 56.334649562727122 [...]
+{ "type": "Feature", "properties": { "ISO": "GB-FIF", "NAME_1": "Fife" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.262405158071858, 56.352829830166385 ], [ -3.149566209999932, 56.375555731000077 ], [ -2.950266079999949, 56.431870835000041 ], [ -2.930653449999909, 56.448065497000073 ], [ -2.88499915299991, 56.457993882000039 ], [ -2.850087042999917, 56.44204336100006 ], [ -2.81476803299995, 56.440415757000039 ], [ -2.802805141999954, 56.427964585000041 ], [ -2.808257615999 [...]
 { "type": "Feature", "properties": { "ISO": "GB-IOW", "NAME_1": "Isle of Wight" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.082753058999913, 50.713324286000045 ], [ -1.062326626999948, 50.685288804000038 ], [ -1.128651495999918, 50.666449286000045 ], [ -1.156361456999946, 50.650783596000053 ], [ -1.16470292899993, 50.64093659100007 ], [ -1.168446417999917, 50.603461005000042 ], [ -1.279204881999931, 50.582505601000037 ], [ -1.315541144999941, 50.589178778000075 ], [ -1.48 [...]
 { "type": "Feature", "properties": { "ISO": "GB-AGY", "NAME_1": "Anglesey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.577259894999941, 53.272040106000077 ], [ -4.558461066999939, 53.252752997000073 ], [ -4.563628709999932, 53.241929429000038 ], [ -4.602406378999945, 53.253078518000052 ], [ -4.632557745999918, 53.282945054000038 ], [ -4.676665818999936, 53.285101630000042 ], [ -4.693959113999938, 53.309637762000079 ], [ -4.667307094999956, 53.323919989000046 ], [ - [...]
 { "type": "Feature", "properties": { "ISO": "GB-ORK", "NAME_1": "Orkney" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.952951626999948, 58.839992580000057 ], [ -2.883656378999945, 58.832180080000057 ], [ -2.885365363999938, 58.820054429000038 ], [ -2.919422980999911, 58.806463934000078 ], [ -2.913970506999931, 58.784857489000046 ], [ -2.926340298999946, 58.779120184000078 ], [ -2.911040818999936, 58.74868398600006 ], [ -2.917836066999939, 58.738348700000074 ], [ -2.9 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/ukraine.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/ukraine.geojson
index fe369e1..a4b3c47 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/ukraine.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/ukraine.geojson
@@ -7,15 +7,15 @@
 { "type": "Feature", "properties": { "ISO": "UA-56", "NAME_1": "Rivne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.547396408000054, 51.919441982000066 ], [ 25.76791508000008, 51.9285110470001 ], [ 26.050585165000086, 51.90481740400007 ], [ 26.175332072000089, 51.856706645000102 ], [ 26.407772665000039, 51.850608826000055 ], [ 26.419244832000061, 51.82092071600006 ], [ 26.445599813000115, 51.805598654 ], [ 26.665741415000127, 51.801387024000078 ], [ 26.920816284000125, 51. [...]
 { "type": "Feature", "properties": { "ISO": "UA-18", "NAME_1": "Zhytomyr" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.210039917000103, 51.651964621000062 ], [ 28.245128214000147, 51.640621643000074 ], [ 28.257788940000097, 51.601760966000128 ], [ 28.310912313000131, 51.574449971000021 ], [ 28.333856649000069, 51.528380433000095 ], [ 28.46123905400006, 51.571659444000048 ], [ 28.603917684000123, 51.553546855000022 ], [ 28.637300659000118, 51.449625550000079 ], [ 28.6635522 [...]
 { "type": "Feature", "properties": { "ISO": "UA-32", "NAME_1": "Kiev" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.660804078000126, 51.49313710600002 ], [ 29.69997481300004, 51.483706157000043 ], [ 29.737905314000045, 51.439496969000047 ], [ 29.828649129000098, 51.429962668000044 ], [ 29.886268351000069, 51.464792582000101 ], [ 29.92507735200013, 51.457867941000032 ], [ 30.00868981900004, 51.48207835 ], [ 30.177310018000128, 51.479494527 ], [ 30.320195353000145, 51.4020832 [...]
-{ "type": "Feature", "properties": { "ISO": "UA-21", "NAME_1": "Transcarpathia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.13283980300011, 48.40479848299999 ], [ 22.148342733000106, 48.508823141000065 ], [ 22.1387309160001, 48.569594625000079 ], [ 22.243220663000102, 48.651191711000038 ], [ 22.310296671000117, 48.68168080700012 ], [ 22.330760539000067, 48.756404928000038 ], [ 22.365693807000071, 48.794387106000059 ], [ 22.36889774600013, 48.856450501000026 ], [ 22.411789 [...]
+{ "type": "Feature", "properties": { "ISO": "UA-21", "NAME_1": "Transcarpathia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.13283980300011, 48.404798483 ], [ 22.148342733000106, 48.508823141000065 ], [ 22.1387309160001, 48.569594625000079 ], [ 22.243220663000102, 48.651191711000038 ], [ 22.310296671000117, 48.68168080700012 ], [ 22.330760539000067, 48.756404928000038 ], [ 22.365693807000071, 48.794387106000059 ], [ 22.36889774600013, 48.856450501000026 ], [ 22.41178918400 [...]
 { "type": "Feature", "properties": { "ISO": "UA-77", "NAME_1": "Chernivtsi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.617889038000015, 48.258967591000058 ], [ 26.303489624000093, 48.212045390000114 ], [ 26.270726766000081, 48.093603007000027 ], [ 26.173058309000055, 47.993144023000056 ], [ 25.901240275000106, 47.965962219000048 ], [ 25.752515503000097, 47.934594626000049 ], [ 25.261744426000064, 47.898576152000047 ], [ 25.218956339000016, 47.87847402000007 ], [ 25.07994 [...]
 { "type": "Feature", "properties": { "ISO": "UA-26", "NAME_1": "Ivano-Frankivs'k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.928857956000115, 47.713937702000109 ], [ 24.877788533000114, 47.718742167000087 ], [ 24.793659302000066, 47.804473369000064 ], [ 24.679144328000064, 47.840130107000064 ], [ 24.649275350000039, 47.895217184000032 ], [ 24.569808452598011, 47.937288541133228 ], [ 24.588194614289989, 47.99593374274798 ], [ 24.641111281060773, 48.052777818141749 ], [ 24 [...]
-{ "type": "Feature", "properties": { "ISO": "UA-51", "NAME_1": "Odessa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.21293379700009, 45.450198466000089 ], [ 28.19949792500006, 45.461773987000058 ], [ 28.217274617000072, 45.493348288000035 ], [ 28.270501343000063, 45.521511943000078 ], [ 28.502011760000045, 45.508747864000028 ], [ 28.498239380000115, 45.558718974 ], [ 28.536893351000117, 45.57980295900002 ], [ 28.511313517000076, 45.635045065000028 ], [ 28.4740031330 [...]
-{ "type": "Feature", "properties": { "ISO": "UA-05", "NAME_1": "Vinnytsya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.62702640800012, 48.45125559500012 ], [ 27.606872599000042, 48.45781850200008 ], [ 27.604805542000065, 48.484121806000033 ], [ 27.503829794000126, 48.472365418000052 ], [ 27.43820153157543, 48.602537543372875 ], [ 27.370402052612633, 48.629719347170123 ], [ 27.399289177853234, 48.708500068123612 ], [ 27.396188592429553, 48.760899970057551 ], [ 27.426109247 [...]
+{ "type": "Feature", "properties": { "ISO": "UA-51", "NAME_1": "Odessa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.21293379700009, 45.450198466000089 ], [ 28.19949792500006, 45.461773987000058 ], [ 28.217274617000072, 45.493348288000035 ], [ 28.270501343000063, 45.521511943000078 ], [ 28.502011760000045, 45.508747864000028 ], [ 28.498239380000115, 45.558718974 ], [ 28.536893351000117, 45.57980295900002 ], [ 28.511313517000076, 45.635045065000028 ], [ 28.4740031330 [...]
+{ "type": "Feature", "properties": { "ISO": "UA-05", "NAME_1": "Vinnytsya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.62702640800012, 48.45125559500012 ], [ 27.606872599000042, 48.45781850200008 ], [ 27.604805542000065, 48.484121806000033 ], [ 27.503829794000126, 48.472365418000052 ], [ 27.43820153157543, 48.602537543372875 ], [ 27.370402052612633, 48.629719347170123 ], [ 27.399289177853234, 48.708500068123612 ], [ 27.396188592429553, 48.760899970057551 ], [ 27.426109247 [...]
 { "type": "Feature", "properties": { "ISO": "UA-46", "NAME_1": "L'viv" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.687844686000091, 49.155915426000078 ], [ 22.737764120000065, 49.275391338000034 ], [ 22.719780721000092, 49.382981670000063 ], [ 22.679576456000063, 49.41894846700005 ], [ 22.640922485000146, 49.528760885000068 ], [ 22.766186157000078, 49.674230042000019 ], [ 22.826647583000124, 49.697381083 ], [ 22.888245890000064, 49.769728088000065 ], [ 22.933101034000032, [...]
 { "type": "Feature", "properties": { "ISO": "UA-59", "NAME_1": "Sumy" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.733578736000084, 52.360991109000011 ], [ 33.804065389000073, 52.35460907000008 ], [ 33.95775109900012, 52.224694519000067 ], [ 34.055729614000143, 52.170330913000029 ], [ 34.073609660000102, 52.139557597000064 ], [ 34.056659790000083, 52.105812887000084 ], [ 34.062550903000101, 52.050209046000063 ], [ 34.101101521000146, 51.992512309000105 ], [ 34.096243937000 [...]
 { "type": "Feature", "properties": { "ISO": "UA-63", "NAME_1": "Kharkiv" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.415214478000053, 50.431858216000066 ], [ 37.435264933000099, 50.424933573000075 ], [ 37.480016724000052, 50.340029195000014 ], [ 37.599182576000089, 50.290884908000052 ], [ 37.590294230000097, 50.203810120000085 ], [ 37.727650187000108, 50.078701477 ], [ 37.915855754000063, 50.003305563000097 ], [ 38.00039839700014, 49.89979766900008 ], [ 38.022923793000132 [...]
-{ "type": "Feature", "properties": { "ISO": "UA-09", "NAME_1": "Luhans'k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.18984419700007, 50.062785136000073 ], [ 38.299914999000123, 50.060511373000068 ], [ 38.356035604000056, 49.980567932000028 ], [ 38.497525675000077, 49.948166809000028 ], [ 38.664647257000127, 49.965168356000063 ], [ 38.687281535000068, 49.913801982000095 ], [ 38.747846313000082, 49.88543162100008 ], [ 38.852232707000098, 49.865794577000045 ], [ 38.93739546 [...]
+{ "type": "Feature", "properties": { "ISO": "UA-09", "NAME_1": "Luhans'k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.18984419700007, 50.062785136000073 ], [ 38.299914999000123, 50.060511373000068 ], [ 38.356035604000056, 49.980567932000028 ], [ 38.497525675000077, 49.948166809000028 ], [ 38.664647257000127, 49.965168356000063 ], [ 38.687281535000068, 49.913801982000095 ], [ 38.747846313000082, 49.88543162100008 ], [ 38.852232707000098, 49.865794577000045 ], [ 38.93739546 [...]
 { "type": "Feature", "properties": { "ISO": "UA-14", "NAME_1": "Donets'k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.036180220000062, 47.857002648000062 ], [ 38.877244100000098, 47.86123993000011 ], [ 38.830942017000098, 47.848243306000072 ], [ 38.770997355000077, 47.780831401000043 ], [ 38.734513794000065, 47.677142639000081 ], [ 38.662166789000139, 47.683292135000059 ], [ 38.56222456900008, 47.626628927000056 ], [ 38.352935018000039, 47.607095236000063 ], [ 38.31903527 [...]
 { "type": "Feature", "properties": { "ISO": "UA-65", "NAME_1": "Kherson" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.001891221798623, 45.729002575039836 ], [ 34.952331334523421, 45.721989122400032 ], [ 34.870656160853116, 45.773327803635198 ], [ 34.80998317508346, 45.784995685202659 ], [ 34.788980987182811, 45.803664296070394 ], [ 34.784313834915508, 45.899340928341132 ], [ 34.763311647014859, 45.9320109978093 ], [ 34.68863720264477, 45.974015372711278 ], [ 34.5299 [...]
 { "type": "Feature", "properties": { "ISO": "UA-23", "NAME_1": "Zaporizhzhya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.827159050000034, 46.62335846600007 ], [ 35.74195397200009, 46.584418036000045 ], [ 35.62867272200009, 46.498480536000045 ], [ 35.491465691000087, 46.447984117000033 ], [ 35.380137566000087, 46.368475653000075 ], [ 35.279540987026905, 46.255145151227737 ], [ 35.264798500018244, 46.260503918023666 ], [ 35.342133009000065, 46.335760809000078 ], [ 35.34603 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/uruguay.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/uruguay.geojson
index 7fc5dce..4ceccb4 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/uruguay.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/uruguay.geojson
@@ -3,17 +3,17 @@
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
 { "type": "Feature", "properties": { "ISO": "UY-PA", "NAME_1": "Paysandú" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.200123619999971, -32.447201041999932 ], [ -58.200111852217844, -32.447129912359713 ], [ -58.199724487999902, -32.444788512999892 ], [ -58.189957641999939, -32.433936461999934 ], [ -58.164946248999939, -32.389494729999868 ], [ -58.101590942999934, -32.311359964999937 ], [ -58.096526652999955, -32.280974222999888 ], [ -58.106913614999968, -32.25182871499995 [...]
-{ "type": "Feature", "properties": { "ISO": "UY-AR", "NAME_1": "Artigas" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.954529174999948, -30.096869811999937 ], [ -56.906366739999982, -30.108548685999921 ], [ -56.869211384999886, -30.102967630999984 ], [ -56.831280884999956, -30.102037454999945 ], [ -56.795159057999854, -30.12384491 ], [ -56.776607218999914, -30.150923359999922 ], [ -56.766995401999907, -30.161362 ], [ -56.704776977999899, -30.19836232499992 ], [ -56.6737452 [...]
-{ "type": "Feature", "properties": { "ISO": "UY-SA", "NAME_1": "Salto" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.017017874175565, -31.074296299234845 ], [ -56.011356770999896, -31.082132669999936 ], [ -56.009874021369001, -31.081945498186201 ], [ -56.03654822442104, -31.160423271716638 ], [ -56.043343675370295, -31.174996025546136 ], [ -56.055720181341314, -31.195873304809197 ], [ -56.066029628864271, -31.204244886892013 ], [ -56.078664517253685, -31.210859469788716 ], [...]
-{ "type": "Feature", "properties": { "ISO": "UY-RV", "NAME_1": "Rivera" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.612905639999923, -30.843387552999971 ], [ -55.591873331999921, -30.848348490999925 ], [ -55.563864704999901, -30.876460469999955 ], [ -55.527484496999932, -30.894547220999883 ], [ -55.511309773999926, -30.906122741999923 ], [ -55.4890889079999, -30.929687194999929 ], [ -55.442580118999871, -30.965550638999957 ], [ -55.36857946799995, -31.037380878999983 ],  [...]
-{ "type": "Feature", "properties": { "ISO": "UY-CL", "NAME_1": "Cerro Largo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.467220705999921, -31.664237422999904 ], [ -54.463725138999905, -31.671864115999966 ], [ -54.436491657999909, -31.694291686999875 ], [ -54.403677124999973, -31.714652200999907 ], [ -54.373498087999877, -31.73894012399991 ], [ -54.3429573169999, -31.76932586599996 ], [ -54.274227661999902, -31.823379414999948 ], [ -54.218778848999932, -31.856659036999886 [...]
+{ "type": "Feature", "properties": { "ISO": "UY-AR", "NAME_1": "Artigas" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.602792548565105, -30.190516953885325 ], [ -57.586842000999866, -30.204046731999952 ], [ -57.567463338999914, -30.25634328199996 ], [ -57.535992390999951, -30.274430033999892 ], [ -57.510980997999951, -30.276703796999911 ], [ -57.467211059999954, -30.269882506999949 ], [ -57.443129842999923, -30.269469095999938 ], [ -57.429797322999889, -30.275463561999871  [...]
+{ "type": "Feature", "properties": { "ISO": "UY-SA", "NAME_1": "Salto" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.819644327999924, -30.911600442999912 ], [ -57.807241984999848, -30.907569681999917 ], [ -57.801867634999979, -30.892480162999917 ], [ -57.796131550999917, -30.868398945999971 ], [ -57.794994669999909, -30.857960306999928 ], [ -57.796028198999892, -30.816205748999977 ], [ -57.799397102094588, -30.791460706446458 ], [ -57.799308845326948, -30.791401869200911 ] [...]
+{ "type": "Feature", "properties": { "ISO": "UY-RV", "NAME_1": "Rivera" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.816521849355169, -31.042550624978453 ], [ -55.778141031999922, -31.020431009999882 ], [ -55.763594116999883, -31.008442076999927 ], [ -55.755506754999971, -30.992939147999905 ], [ -55.744887247999912, -30.958625996999984 ], [ -55.731890624999949, -30.945396829999893 ], [ -55.712744506999883, -30.94343312599996 ], [ -55.688301554999924, -30.947773945999941 ] [...]
 { "type": "Feature", "properties": { "ISO": "UY-RO", "NAME_1": "Rocha" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.520661760331961, -33.124978992086824 ], [ -53.536856648999873, -33.170842386999951 ], [ -53.536133178999961, -33.244636331999914 ], [ -53.514015665999949, -33.394911396999944 ], [ -53.536804971999942, -33.559862568999861 ], [ -53.539647175999932, -33.649262796999949 ], [ -53.511535196999972, -33.6902938839999 ], [ -53.491071329999926, -33.6902938839999 ], [  [...]
 { "type": "Feature", "properties": { "ISO": "UY-TT", "NAME_1": "Treinta y Tres" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.182836311999949, -32.799904104999925 ], [ -53.203853719999898, -32.822439879999905 ], [ -53.270826374999984, -32.863781026999931 ], [ -53.29883500199989, -32.889102477999913 ], [ -53.306999877999914, -32.907189229999929 ], [ -53.309583699999905, -32.944396259999934 ], [ -53.316301635999935, -32.962689717999908 ], [ -53.327308716999937, -32.973645121 [...]
+{ "type": "Feature", "properties": { "ISO": "UY-CL", "NAME_1": "Cerro Largo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.467220705999921, -31.664237422999904 ], [ -54.463725138999905, -31.671864115999966 ], [ -54.436491657999909, -31.694291686999875 ], [ -54.403677124999973, -31.714652200999907 ], [ -54.373498087999877, -31.73894012399991 ], [ -54.3429573169999, -31.76932586599996 ], [ -54.274227661999902, -31.823379414999948 ], [ -54.218778848999932, -31.856659036999886 [...]
 { "type": "Feature", "properties": { "ISO": "UY-MA", "NAME_1": "Maldonado" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.530791795999903, -34.806898695999905 ], [ -54.542062954999949, -34.81178150799991 ], [ -54.60415605399993, -34.826429945999905 ], [ -54.636463995999918, -34.848809502999927 ], [ -54.65689042899993, -34.856622002999927 ], [ -54.69945227799991, -34.867445570999905 ], [ -54.872710740999935, -34.936211846999925 ], [ -54.893706834999932, -34.939222914999903 ] [...]
 { "type": "Feature", "properties": { "ISO": "UY-CA", "NAME_1": "Canelones" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.373763598422975, -34.802871713739947 ], [ -55.376942511999914, -34.801446221999925 ], [ -55.401926235999952, -34.799981377999927 ], [ -55.468203607999953, -34.795402152999941 ], [ -55.50963582199995, -34.799064531999932 ], [ -55.561173054999927, -34.787834173999954 ], [ -55.601794463999909, -34.772414648999927 ], [ -55.646730843999933, -34.78109997799992 [...]
 { "type": "Feature", "properties": { "ISO": "UY-MO", "NAME_1": "Montevideo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.038389708689579, -34.885804421146979 ], [ -56.06963449299991, -34.901002533999929 ], [ -56.105198417999929, -34.898416128999941 ], [ -56.135632689999909, -34.912828736999927 ], [ -56.149891730999911, -34.920342705999929 ], [ -56.156088350999937, -34.941188262999958 ], [ -56.17728986599991, -34.916324502999942 ], [ -56.194509927999945, -34.91350868799992 [...]
 { "type": "Feature", "properties": { "ISO": "UY-SJ", "NAME_1": "San José" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.364590688292822, -34.793534634418471 ], [ -56.376119660999905, -34.782729245999917 ], [ -56.395738337999944, -34.775880065999957 ], [ -56.448432032999904, -34.758272461999923 ], [ -56.485087754999938, -34.753549863999922 ], [ -56.52044438899992, -34.754820884999958 ], [ -56.541900193999936, -34.767022393999923 ], [ -56.558013475999928, -34.765069268999923 [...]
-{ "type": "Feature", "properties": { "ISO": "UY-CO", "NAME_1": "Colonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.167477895822707, -34.448249763786535 ], [ -57.203198013999952, -34.442073492999953 ], [ -57.292158428999926, -34.440332648999913 ], [ -57.346941661999949, -34.443459326999914 ], [ -57.365199921999931, -34.43044041099995 ], [ -57.411428258999933, -34.431505619999939 ], [ -57.436973813999941, -34.444575562999944 ], [ -57.449130182999909, -34.43153807199991 ] [...]
+{ "type": "Feature", "properties": { "ISO": "UY-CO", "NAME_1": "Colonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.167477895822707, -34.448249763786535 ], [ -57.203198013999952, -34.442073492999953 ], [ -57.292158428999926, -34.440332648999913 ], [ -57.346941661999949, -34.443459326999914 ], [ -57.365199921999931, -34.43044041099995 ], [ -57.411428258999933, -34.431505619999939 ], [ -57.436973813999941, -34.444575562999944 ], [ -57.449130182999909, -34.43153807199991 ] [...]
 { "type": "Feature", "properties": { "ISO": "UY-SO", "NAME_1": "Soriano" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.415616509701181, -33.875615065773886 ], [ -58.434641079999949, -33.784926039999903 ], [ -58.439361131999931, -33.69850025799991 ], [ -58.425770636999914, -33.612888278999947 ], [ -58.429025844999899, -33.592054945999905 ], [ -58.435047980999911, -33.572360934999949 ], [ -58.438343878999945, -33.551446221999925 ], [ -58.433216925999943, -33.527764580999929  [...]
 { "type": "Feature", "properties": { "ISO": "UY-RN", "NAME_1": "Río Negro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.391524323426459, -33.424446488709862 ], [ -58.412587042999917, -33.409600518999923 ], [ -58.418934699999909, -33.38990650799991 ], [ -58.412587042999917, -33.371677341999941 ], [ -58.397206183999913, -33.355645440999922 ], [ -58.361195441999939, -33.325778903999947 ], [ -58.350738084999932, -33.305759372999944 ], [ -58.349232550999943, -33.28281015399994 [...]
 { "type": "Feature", "properties": { "ISO": "UY-TA", "NAME_1": "Tacuarembó" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.559358689851649, -32.492486667625599 ], [ -56.50597693508746, -32.356525973594785 ], [ -56.489182094977707, -32.334615166456786 ], [ -56.459700689635099, -32.311619154600294 ], [ -56.422493659155066, -32.288519789057034 ], [ -56.388955654879567, -32.261906426940072 ], [ -56.358750780024479, -32.231882420137595 ], [ -56.351438565137641, -32.2143124327725 [...]
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/zambia.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/zambia.geojson
index 354f6a8..12e6901 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/zambia.geojson
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/zambia.geojson
@@ -2,11 +2,11 @@
 "type": "FeatureCollection",
 "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
 "features": [
-{ "type": "Feature", "properties": { "ISO": "ZM-10", "NAME_1": "Muchinga" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.920863485000098, -9.407900085999913 ], [ 32.927788127000042, -9.479833678999867 ], [ 32.961894572000119, -9.480350443999896 ], [ 32.991970255000126, -9.5018478399999 ], [ 32.974710327000082, -9.601273294999942 ], [ 32.986905965000119, -9.628455098999936 ], [ 33.035740194000084, -9.616982929999921 ], [ 33.058322794000048, -9.654293313999858 ], [ 33.08044030 [...]
-{ "type": "Feature", "properties": { "ISO": "ZM-03", "NAME_1": "Eastern" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.305048860801634, -11.644026180450906 ], [ 33.314017781000075, -11.772200215999902 ], [ 33.297481323000113, -11.862530618999941 ], [ 33.312674194000124, -11.898704120999881 ], [ 33.254899943000055, -12.072646992999935 ], [ 33.252729533000036, -12.139516295999911 ], [ 33.29996179200009, -12.195946959999944 ], [ 33.349467814000036, -12.327928567999905 ], [ 33. [...]
+{ "type": "Feature", "properties": { "ISO": "ZM-10", "NAME_1": "Muchinga" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.920863485000098, -9.407900085999913 ], [ 32.927788127000042, -9.479833678999867 ], [ 32.961894572000119, -9.480350443999896 ], [ 32.991970255000126, -9.50184783999994 ], [ 32.974710327000082, -9.601273294999942 ], [ 32.986905965000119, -9.628455098999936 ], [ 33.035740194000084, -9.616982929999921 ], [ 33.058322794000048, -9.654293313999858 ], [ 33.0804403 [...]
+{ "type": "Feature", "properties": { "ISO": "ZM-03", "NAME_1": "Eastern" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.305048860801634, -11.644026180450906 ], [ 33.314017781000075, -11.772200215999902 ], [ 33.297481323000113, -11.862530618999941 ], [ 33.312674194000124, -11.898704120999881 ], [ 33.254899943000055, -12.072646992999935 ], [ 33.252729533000036, -12.139516295999911 ], [ 33.29996179200009, -12.195946959999944 ], [ 33.349467814000036, -12.327928567999905 ], [ 33. [...]
 { "type": "Feature", "properties": { "ISO": "ZM-05", "NAME_1": "Northern" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.752106975000117, -8.194124042999917 ], [ 30.77825524900004, -8.289105325999927 ], [ 30.828278036000086, -8.388117369999932 ], [ 30.891891724000118, -8.479171244999876 ], [ 30.992350708000117, -8.575909525999947 ], [ 31.077823527000135, -8.616320494999925 ], [ 31.119836467000141, -8.616630553999912 ], [ 31.206756226000039, -8.580767109999968 ], [ 31.2609131 [...]
 { "type": "Feature", "properties": { "ISO": "ZM-09", "NAME_1": "Lusaka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.010653524000077, -15.646227314999905 ], [ 29.837330770000051, -15.614808044999876 ], [ 29.672793009000145, -15.663280537999938 ], [ 29.587216838000131, -15.655735778999897 ], [ 29.508461955000087, -15.703588154999892 ], [ 29.406969442000047, -15.714233499999892 ], [ 29.186311076000067, -15.812832132999873 ], [ 29.086162150000064, -15.884559019999955 ], [ 29. [...]
-{ "type": "Feature", "properties": { "ISO": "ZM-07", "NAME_1": "Southern" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.946861598783755, -15.957235194648547 ], [ 28.898886760000096, -15.995456643999901 ], [ 28.857235555000074, -16.060465595999958 ], [ 28.87098148600009, -16.087233988999927 ], [ 28.847106975000116, -16.20267913799999 ], [ 28.864160197000047, -16.231204528999939 ], [ 28.836771688000113, -16.306342060999953 ], [ 28.857235555000074, -16.38819753 ], [ 28.8088664 [...]
+{ "type": "Feature", "properties": { "ISO": "ZM-07", "NAME_1": "Southern" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.946861598783755, -15.957235194648547 ], [ 28.898886760000096, -15.995456643999901 ], [ 28.857235555000074, -16.060465595999958 ], [ 28.87098148600009, -16.087233988999927 ], [ 28.847106975000116, -16.202679138 ], [ 28.864160197000047, -16.231204528999939 ], [ 28.836771688000113, -16.306342060999953 ], [ 28.857235555000074, -16.38819753 ], [ 28.808866414000 [...]
 { "type": "Feature", "properties": { "ISO": "ZM-01", "NAME_1": "Western" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.019875122000116, -16.253115335999908 ], [ 22.045196574000101, -16.252288512999968 ], [ 21.981531210000099, -16.144284769999928 ], [ 21.980353099615854, -13.694822054793974 ], [ 22.085711704431617, -13.758539726826939 ], [ 22.119198031863675, -13.76164031314994 ], [ 22.168549025217317, -13.74257170991649 ], [ 22.22162072071967, -13.683350517712256 ], [ 22.25 [...]
 { "type": "Feature", "properties": { "ISO": "ZM-06", "NAME_1": "North-Western" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.980353099615854, -13.694822054793974 ], [ 21.979877563000059, -13.001479186999916 ], [ 24.000632772000102, -13.001479186999916 ], [ 23.971797322000072, -12.933369649999904 ], [ 23.895109497000107, -12.849757181999891 ], [ 23.865653931000111, -12.78970916699997 ], [ 23.928699178000045, -12.561609394999891 ], [ 24.030811808000095, -12.385082702999924 ], [...]
 { "type": "Feature", "properties": { "ISO": "ZM-04", "NAME_1": "Luapula" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.586296021000067, -9.544015807999898 ], [ 28.562783244000059, -9.484897969999935 ], [ 28.519685099000043, -9.44562388099996 ], [ 28.515964396000129, -9.378341165999885 ], [ 28.495397176000068, -9.353226419999956 ], [ 28.368531535000074, -9.308577981999917 ], [ 28.35246016500011, -9.271991067999892 ], [ 28.372303914000099, -9.235094094999866 ], [ 28.599060099 [...]