Merge pull request #2558 from szporwolik/dev_fix_state

[Advanced Logbook] Fix state functionality
This commit is contained in:
Florian (DF2ET)
2025-11-24 13:03:44 +01:00
committed by GitHub
28 changed files with 1318 additions and 1 deletions

1
.gitignore vendored
View File

@@ -17,6 +17,7 @@
/assets/qslcard/*
/assets/js/sections/custom.js
/userdata/*
/tmp/*
.idea/*
.DS_Store
sync.sh

View File

@@ -721,6 +721,25 @@ class Logbookadvanced extends CI_Controller {
$this->load->view('logbookadvanced/continentdialog');
}
public function stateDialog() {
$this->load->library('Geojson');
// Get supported countries from Geojson library
$supported_states = $this->geojson::SUPPORTED_STATES;
$country_names = array();
foreach ($supported_states as $dxcc => $info) {
if ($info['enabled']) {
$country_names[] = $info['name'];
}
}
sort($country_names);
$data['supported_countries'] = implode(', ', $country_names);
$this->load->view('logbookadvanced/statedialog', $data);
}
public function distanceDialog() {
$this->load->view('logbookadvanced/distancedialog');
}
@@ -818,6 +837,41 @@ class Logbookadvanced extends CI_Controller {
print json_encode($result);
}
public function fixStateProgress() {
if(!clubaccess_check(9)) return;
$this->load->model('logbook_model');
$this->load->model('logbookadvanced_model');
$qsoID = xss_clean($this->input->post('qsoID'));
// Process single QSO state fix
$result = $this->logbookadvanced_model->fixStateSingle($qsoID);
// Get updated QSO data if successful
if ($result['success']) {
$qsoID_array = [$qsoID];
$qso = $this->logbookadvanced_model->getQsosForAdif(json_encode($qsoID_array), $this->session->userdata('user_id'))->row_array();
if ($qso !== null) {
$qsoObj = new QSO($qso);
$cleaned_qso = $qsoObj->toArray();
$flag = $this->dxccflag->get($qsoObj->getDXCCId());
if ($flag != null) {
$cleaned_qso['flag'] = ' ' . $flag;
} else {
$cleaned_qso['flag'] = '';
}
$result['qso'] = $cleaned_qso;
}
}
header("Content-Type: application/json");
echo json_encode($result);
}
public function updateDistances() {
$this->load->model('logbookadvanced_model');
$result = $this->logbookadvanced_model->update_distances_batch();

View File

@@ -0,0 +1,268 @@
<?php if (! defined('BASEPATH')) exit('No direct script access allowed');
/**
* Geojson Library
*
* This library provides GeoJSON-based geographic operations for Wavelog,
* used for determining states, provinces, and other administrative subdivisions
* from gridsquare locators using point-in-polygon detection.
*
* Main functionality:
* - Convert Maidenhead gridsquares to lat/lng coordinates
* - Determine state/province from coordinates using GeoJSON boundary data
* - Point-in-polygon detection for Polygon and MultiPolygon geometries
*
*/
class Geojson {
/**
* DXCC entities that support state/province subdivision lookups
*
* Key: DXCC number
* Value: Array with 'name' and 'enabled' flag
*/
const SUPPORTED_STATES = [
1 => ['name' => 'Canada', 'enabled' => true], // 13 provinces/territories
27 => ['name' => 'Belarus', 'enabled' => true], // 7 subdivisions
100 => ['name' => 'Argentina', 'enabled' => true], // 24 subdivisions
108 => ['name' => 'Brazil', 'enabled' => true], // 27 subdivisions
144 => ['name' => 'Uruguay', 'enabled' => true], // 19 subdivisions
150 => ['name' => 'Australia', 'enabled' => true], // 8 subdivisions
209 => ['name' => 'Belgium', 'enabled' => true], // 11 subdivisions
212 => ['name' => 'Bulgaria', 'enabled' => true], // 28 subdivisions
227 => ['name' => 'France', 'enabled' => true], // 96 departments
230 => ['name' => 'Germany', 'enabled' => true], // 16 federal states
239 => ['name' => 'Hungary', 'enabled' => true], // 20 subdivisions
245 => ['name' => 'Ireland', 'enabled' => true], // 27 subdivisions
248 => ['name' => 'Italy', 'enabled' => true], // 107 provinces
263 => ['name' => 'Netherlands', 'enabled' => true], // 12 provinces
269 => ['name' => 'Poland', 'enabled' => true], // 16 voivodeships
284 => ['name' => 'Sweden', 'enabled' => true], // 21 subdivisions
287 => ['name' => 'Switzerland', 'enabled' => true], // 26 cantons
291 => ['name' => 'USA', 'enabled' => true], // 52 states/territories
339 => ['name' => 'Japan', 'enabled' => true], // 47 prefectures
386 => ['name' => 'Taiwan', 'enabled' => true], // 22 subdivisions
497 => ['name' => 'Croatia', 'enabled' => true], // 21 subdivisions
];
private $qra;
public function __construct() {
$CI =& get_instance();
$CI->load->library('qra');
$this->qra = $CI->qra;
}
// ============================================================================
// PUBLIC API METHODS - Main entry points for state lookup
// ============================================================================
/**
* Find state from grid square locator
*
* This is the main method used by the application to determine state/province
* from a Maidenhead gridsquare.
*
* @param string $gridsquare Maidenhead grid square (e.g., "FM18lw")
* @param int $dxcc DXCC entity number (e.g., 291 for USA)
* @return array|null State properties (including 'code' and 'name') or null if not found
*/
public function findStateFromGridsquare($gridsquare, $dxcc) {
$coords = $this->gridsquareToLatLng($gridsquare);
if ($coords === null) {
return null;
}
return $this->findStateByDxcc($coords['lat'], $coords['lng'], $dxcc);
}
/**
* Find state by DXCC entity number and coordinates
*
* This method loads the appropriate GeoJSON file for the DXCC entity
* and searches for the state/province containing the given coordinates.
*
* @param float $lat Latitude
* @param float $lng Longitude
* @param int $dxcc DXCC entity number (e.g., 291 for USA)
* @return array|null State properties or null if not found
*/
public function findStateByDxcc($lat, $lng, $dxcc) {
// Check if state lookup is supported for this DXCC
if (!$this->isStateSupported($dxcc)) {
return null;
}
$geojsonFile = "assets/json/geojson/states_{$dxcc}.geojson";
$geojsonData = $this->loadGeoJsonFile($geojsonFile);
if ($geojsonData === null) {
return null;
}
return $this->findFeatureContainingPoint($lat, $lng, $geojsonData);
}
/**
* Check if state lookup is supported for given DXCC entity
*
* @param int $dxcc DXCC entity number
* @return bool True if state lookup is supported and enabled
*/
public function isStateSupported($dxcc) {
return isset(self::SUPPORTED_STATES[$dxcc]) && self::SUPPORTED_STATES[$dxcc]['enabled'] === true;
}
// ============================================================================
// COORDINATE CONVERSION
// ============================================================================
/**
* Convert Maidenhead grid square to latitude/longitude
*
* Uses the Qra library for gridsquare conversion.
* Supports 2, 4, 6, 8, and 10 character gridsquares.
* Also supports grid lines and grid corners (comma-separated).
*
* @param string $gridsquare Maidenhead grid square (e.g., "JO70va")
* @return array|null Array with 'lat' and 'lng' or null on error
*/
public function gridsquareToLatLng($gridsquare) {
if (!is_string($gridsquare) || strlen($gridsquare) < 2) {
return null;
}
$result = $this->qra->qra2latlong($gridsquare);
if ($result === false || !is_array($result) || count($result) < 2) {
return null;
}
// Qra library returns [lat, lng], we need to return associative array
return [
'lat' => $result[0],
'lng' => $result[1]
];
}
// ============================================================================
// GEOJSON FILE OPERATIONS
// ============================================================================
/**
* Load and parse a GeoJSON file
*
* @param string $filepath Path to GeoJSON file (relative to FCPATH)
* @return array|null Decoded GeoJSON data or null on error
*/
public function loadGeoJsonFile($filepath) {
$fullpath = FCPATH . $filepath;
if (!file_exists($fullpath)) {
return null;
}
$geojsonData = file_get_contents($fullpath);
if ($geojsonData === false) {
return null;
}
// Remove BOM if present (UTF-8, UTF-16, UTF-32)
$geojsonData = preg_replace('/^\xEF\xBB\xBF|\xFF\xFE|\xFE\xFF|\x00\x00\xFE\xFF|\xFF\xFE\x00\x00/', '', $geojsonData);
// Additional cleanup: trim whitespace
$geojsonData = trim($geojsonData);
$data = json_decode($geojsonData, true);
if (json_last_error() !== JSON_ERROR_NONE) {
return null;
}
return $data;
}
// ============================================================================
// GEOMETRIC ALGORITHMS - Point-in-polygon detection
// ============================================================================
/**
* Check if a point (latitude, longitude) is inside a polygon
* Uses ray casting algorithm
*
* @param float $lat Latitude of the point
* @param float $lng Longitude of the point
* @param array $polygon GeoJSON polygon coordinates array [[[lng, lat], [lng, lat], ...]]
* @return bool True if point is inside polygon, false otherwise
*/
public function isPointInPolygon($lat, $lng, $polygon) {
if (!is_numeric($lat) || !is_numeric($lng) || !is_array($polygon) || empty($polygon)) {
return false;
}
$inside = false;
$count = count($polygon);
// Ray casting algorithm
for ($i = 0, $j = $count - 1; $i < $count; $j = $i++) {
$xi = $polygon[$i][0]; // longitude
$yi = $polygon[$i][1]; // latitude
$xj = $polygon[$j][0]; // longitude
$yj = $polygon[$j][1]; // latitude
$intersect = (($yi > $lat) !== ($yj > $lat))
&& ($lng < ($xj - $xi) * ($lat - $yi) / ($yj - $yi) + $xi);
if ($intersect) {
$inside = !$inside;
}
}
return $inside;
}
/**
* Find which feature in a GeoJSON FeatureCollection contains a given point
*
* @param float $lat Latitude of the point
* @param float $lng Longitude of the point
* @param array $geojsonData Decoded GeoJSON FeatureCollection
* @return array|null Feature properties if found, null otherwise
*/
public function findFeatureContainingPoint($lat, $lng, $geojsonData) {
if (!isset($geojsonData['features']) || !is_array($geojsonData['features'])) {
return null;
}
foreach ($geojsonData['features'] as $feature) {
if (!isset($feature['geometry']['coordinates']) || !isset($feature['geometry']['type'])) {
continue;
}
$geometryType = $feature['geometry']['type'];
$coordinates = $feature['geometry']['coordinates'];
// Handle Polygon geometry
if ($geometryType === 'Polygon') {
// For Polygon, coordinates[0] is the outer ring
if ($this->isPointInPolygon($lat, $lng, $coordinates[0])) {
return $feature['properties'];
}
}
// Handle MultiPolygon geometry
elseif ($geometryType === 'MultiPolygon') {
foreach ($coordinates as $polygon) {
// For MultiPolygon, each polygon is [[[lng,lat],...]]
// We need to pass just the outer ring (first element)
if ($this->isPointInPolygon($lat, $lng, $polygon[0])) {
return $feature['properties'];
}
}
}
}
return null;
}
}

View File

@@ -1259,6 +1259,124 @@ class Logbookadvanced_model extends CI_Model {
$query = $this->db->query($sql, array(json_decode($ids, true), $this->session->userdata('user_id')));
}
/**
* Fix state for a single QSO using GeoJSON lookup
*
* @param int $qso_id QSO primary key
* @return array Result array with success, dxcc_name, dxcc_number, state_code, skipped
*/
function fixStateSingle($qso_id) {
$this->load->library('Geojson');
// Get QSO data
$sql = "SELECT COL_PRIMARY_KEY, COL_CALL, COL_GRIDSQUARE, COL_DXCC, COL_STATE, d.name as dxcc_name
FROM " . $this->config->item('table_name') . " qsos
JOIN station_profile ON qsos.station_id = station_profile.station_id
LEFT JOIN dxcc_entities d ON qsos.COL_DXCC = d.adif
WHERE qsos.COL_PRIMARY_KEY = ? AND station_profile.user_id = ?";
$query = $this->db->query($sql, [$qso_id, $this->session->userdata('user_id')]);
if ($query->num_rows() === 0) {
return [
'success' => false,
'skipped' => true,
'reason' => 'QSO not found'
];
}
$qso = $query->row();
$callsign = $qso->COL_CALL ?? 'Unknown';
$dxcc = (int)$qso->COL_DXCC;
$gridsquare = $qso->COL_GRIDSQUARE;
$state = $qso->COL_STATE ?? '';
$dxcc_name = $qso->dxcc_name ?? 'Unknown';
// Skip if state is already populated
if (!empty($state)) {
return [
'success' => false,
'skipped' => true,
'callsign' => $callsign,
'dxcc_number' => $dxcc,
'dxcc_name' => $dxcc_name,
'reason' => 'State already set'
];
}
// Check if gridsquare exists
if (empty($gridsquare)) {
return [
'success' => false,
'skipped' => true,
'callsign' => $callsign,
'dxcc_number' => $dxcc,
'dxcc_name' => $dxcc_name,
'reason' => 'No gridsquare'
];
}
// Check if gridsquare is precise enough (at least 6 characters)
if (strlen($gridsquare) < 6) {
return [
'success' => false,
'skipped' => true,
'callsign' => $callsign,
'dxcc_number' => $dxcc,
'dxcc_name' => $dxcc_name,
'reason' => 'Gridsquare not precise enough'
];
}
// Check if state is supported for this DXCC
if (!$this->geojson->isStateSupported($dxcc)) {
return [
'success' => false,
'skipped' => true,
'callsign' => $callsign,
'dxcc_number' => $dxcc,
'dxcc_name' => $dxcc_name,
'reason' => 'DXCC not supported'
];
}
// Find state from gridsquare
$state = $this->geojson->findStateFromGridsquare($gridsquare, $dxcc);
if ($state === null || !isset($state['code'])) {
// Get coordinates for debugging
$coords = $this->geojson->gridsquareToLatLng($gridsquare);
return [
'success' => false,
'skipped' => false,
'callsign' => $callsign,
'dxcc_number' => $dxcc,
'dxcc_name' => $dxcc_name,
'gridsquare' => $gridsquare,
'lat' => $coords['lat'] ?? null,
'lng' => $coords['lng'] ?? null,
'reason' => 'State not found in GeoJSON'
];
}
// Update the state
$update_sql = "UPDATE " . $this->config->item('table_name') . "
SET COL_STATE = ?
WHERE COL_PRIMARY_KEY = ?";
$this->db->query($update_sql, [$state['code'], $qso_id]);
return [
'success' => true,
'skipped' => false,
'callsign' => $callsign,
'dxcc_number' => $dxcc,
'dxcc_name' => $dxcc_name,
'state_code' => $state['code'],
'state_name' => $state['name'] ?? null
];
}
public function check_missing_continent() {
// get all records with no COL_CONT
$this->db->trans_start();

View File

@@ -28,7 +28,21 @@
let lang_gen_advanced_logbook_cq_zones_updated = '<?= __("CQ Zones updated successfully!"); ?>';
let lang_gen_advanced_logbook_select_row_itu_zones = '<?= __("You need to select at least 1 row to fix ITU Zones!"); ?>';
let lang_gen_advanced_logbook_select_row_cq_zones = '<?= __("You need to select at least 1 row to fix CQ Zones!"); ?>';
let lang_gen_advanced_logbook_select_only_one_row_quickfilter = '<?= __("Only 1 row can be selected for Quickfilter!"); ?>';
let lang_gen_advanced_logbook_select_row_state = '<?= __("You need to select at least 1 row to fix State!"); ?>';
let lang_gen_advanced_logbook_state_updated = '<?= __("State updated successfully!"); ?>';
let lang_gen_advanced_logbook_problem_fixing_state = '<?= __("There was a problem fixing State."); ?>';
let lang_gen_advanced_logbook_fixing_state = '<?= __("Fixing State"); ?>';
let lang_gen_advanced_logbook_fixing_state_qsos = '<?= __("Fixing State (%s QSOs)"); ?>';
let lang_gen_advanced_logbook_fixing_state_remaining = '<?= __("Fixing State: %s remaining"); ?>';
let lang_gen_advanced_logbook_fixed = '<?= __("Fixed"); ?>';
let lang_gen_advanced_logbook_fixed_with_count = '<?= __("Fixed: %s"); ?>';
let lang_gen_advanced_logbook_skipped = '<?= __("Skipped"); ?>';
let lang_gen_advanced_logbook_skipped_with_count = '<?= __("Skipped: %s, see details for skipped rows below"); ?>';
let lang_gen_advanced_logbook_state_fix_complete = '<?= __("State Fix Complete"); ?>';
let lang_gen_advanced_logbook_state_not_supported = '<?= __("Not all DXCC entities have state support. If you need support for additional countries, please create a ticket at %s with the GeoJSON file and desired letter coding for your country."); ?>';
let lang_gen_advanced_logbook_github_url = 'https://github.com/wavelog/wavelog/issues';
let lang_gen_advanced_logbook_github_link = '<a href="https://github.com/wavelog/wavelog/issues" target="_blank">Wavelog GitHub</a>';
let lang_gen_advanced_logbook_select_only_one_row_quickfilter = '<?= __("Only 1 row can be selected for Quickfilter!"); ?>'
let lang_gen_advanced_logbook_select_at_least_one_row_quickfilter = '<?= __("You need to select a row to use the Quickfilters!"); ?>';
let lang_gen_advanced_logbook_select_at_least_one_row_qslcard = '<?= __("You need to select a least 1 row to display a QSL card!"); ?>';
let lang_gen_advanced_logbook_continents_updated = '<?= __("Continents updated successfully!"); ?>';
@@ -739,6 +753,7 @@ $options = json_decode($options);
<button type="button" class="btn btn-sm btn-success dropdown-action" id="fixCqZones"><?= __("Fix CQ Zones"); ?></button>
<button type="button" class="btn btn-sm btn-success dropdown-action" id="fixItuZones"><?= __("Fix ITU Zones"); ?></button>
<button type="button" class="btn btn-sm btn-success dropdown-action" id="fixContinent"><?= __("Fix Continent"); ?></button>
<button type="button" class="btn btn-sm btn-success dropdown-action" id="fixState"><?= __("Fix State"); ?></button>
<button type="button" class="btn btn-sm btn-success dropdown-action" id="updateDistances"><?= __("Update Distances"); ?></button>
</div>
</div>

View File

@@ -0,0 +1,11 @@
<div class="container-fluid">
<?= __("Update QSOs with state/province information based on gridsquare and DXCC country."); ?><br /><br />
<?= __("This feature uses GeoJSON boundary data to determine the state/province from the gridsquare locator."); ?><br /><br />
<?= __("Update will only set the state for QSOs where:"); ?>
<ul>
<li><?= __("The state field is empty"); ?></li>
<li><?= __("A gridsquare is present (at least 6 characters)"); ?></li>
<li><?= __("The DXCC country supports state lookup"); ?></li>
</ul>
<?= __("Currently supported countries"); ?>: <?= $supported_countries; ?>
</div>

View File

@@ -1,6 +1,9 @@
let callBookProcessingDialog = null;
let inCallbookProcessing = false;
let inCallbookItemProcessing = false;
let stateFixingDialog = null;
let inStateFixing = false;
let stateFixStats = {fixed: 0, skipped: 0, fixedDxcc: new Set(), skippedDxcc: new Set(), skipReasons: new Set(), skippedDetails: []};
let lastChecked = null;
let silentReset = false;
@@ -505,6 +508,94 @@ function processNextCallbookItem() {
});
}
function processNextStateFixItem() {
if (!inStateFixing) return;
var elements = $('#qsoList tbody input:checked');
var nElements = elements.length;
if (nElements == 0) {
inStateFixing = false;
stateFixingDialog.close();
// Show summary
let message = '';
message += lang_gen_advanced_logbook_fixed_with_count.replace('%s', stateFixStats.fixed);
message += '<br>';
message += lang_gen_advanced_logbook_skipped_with_count.replace('%s', stateFixStats.skipped);
if (stateFixStats.skippedDetails.length > 0) {
message += '<div class="border rounded p-2 mt-2" style="max-height: 150px; overflow-y: auto; background-color: var(--bs-body-bg); color: var(--bs-body-color);">';
message += '<small>';
stateFixStats.skippedDetails.forEach(function(detail, index) {
if (index > 0) message += '<br>';
message += detail;
});
message += '</small>';
message += '</div>';
}
if (stateFixStats.skipped > 0) {
message += '<div class="alert alert-info mt-3">';
message += '<small>' + lang_gen_advanced_logbook_state_not_supported.replace('%s', lang_gen_advanced_logbook_github_link);
message += '</small>';
message += '</div>';
}
BootstrapDialog.alert({
title: lang_gen_advanced_logbook_state_fix_complete,
message: function(dialog) {
return message;
},
type: stateFixStats.fixed > 0 ? BootstrapDialog.TYPE_SUCCESS : BootstrapDialog.TYPE_INFO,
nl2br: false
});
let table = $('#qsoList').DataTable();
table.draw(false);
return;
}
let id = elements.first().closest('tr').attr('id')?.replace(/\D/g, '');
stateFixingDialog.setMessage(lang_gen_advanced_logbook_fixing_state_remaining.replace('%s', nElements));
$.ajax({
url: site_url + '/logbookadvanced/fixStateProgress',
type: 'post',
data: {
qsoID: id
},
dataType: 'json',
success: function (data) {
if (data.success && data.qso) {
updateRow(data.qso);
stateFixStats.fixed++;
if (data.dxcc_name) {
stateFixStats.fixedDxcc.add(data.dxcc_name);
}
} else if (data.skipped) {
stateFixStats.skipped++;
if (data.dxcc_name) {
stateFixStats.skippedDxcc.add(data.dxcc_name);
}
if (data.reason) {
stateFixStats.skipReasons.add(data.reason);
// Build detailed skip entry: CALLSIGN - DXCC - reason
let skipDetail = (data.callsign || 'Unknown') + ' - ' + (data.dxcc_name || 'Unknown DXCC') + ' - ' + data.reason;
stateFixStats.skippedDetails.push(skipDetail);
}
}
unselectQsoID(id);
setTimeout("processNextStateFixItem()", 50);
},
error: function (data) {
stateFixStats.skipped++;
unselectQsoID(id);
setTimeout("processNextStateFixItem()", 50);
},
});
}
function selectQsoID(qsoID) {
var element = $("#qsoID-" + qsoID);
element.find("input[type=checkbox]").prop("checked", true);
@@ -1272,6 +1363,83 @@ $(document).ready(function () {
});
});
// Fix State button handler
$('#fixState').click(function (event) {
const id_list = getSelectedIds();
if (id_list.length === 0) {
BootstrapDialog.alert({
title: lang_gen_advanced_logbook_info,
message: lang_gen_advanced_logbook_select_row_state,
type: BootstrapDialog.TYPE_INFO,
closable: false,
draggable: false,
callback: function (result) {
}
});
return;
}
$.ajax({
url: base_url + 'index.php/logbookadvanced/stateDialog',
type: 'post',
success: function (html) {
BootstrapDialog.show({
title: lang_gen_advanced_logbook_fixing_state,
size: BootstrapDialog.SIZE_NORMAL,
cssClass: 'options',
nl2br: false,
message: html,
buttons: [
{
label: lang_gen_advanced_logbook_update_now + ' <div class="ld ld-ring ld-spin"></div>',
cssClass: 'btn btn-sm btn-primary ld-ext-right',
id: 'updateStateButton',
action: function (dialogItself) {
const id_list = getSelectedIds();
if (inStateFixing) {
return;
}
inStateFixing = true;
// Close the info dialog
dialogItself.close();
// Reset statistics
stateFixStats = {fixed: 0, skipped: 0, fixedDxcc: new Set(), skippedDxcc: new Set(), skipReasons: new Set(), skippedDetails: []};
const nElements = id_list.length;
stateFixingDialog = BootstrapDialog.show({
title: lang_gen_advanced_logbook_fixing_state_qsos.replace('%s', nElements),
message: lang_gen_advanced_logbook_fixing_state_remaining.replace('%s', nElements),
type: BootstrapDialog.TYPE_INFO,
closable: false,
draggable: false,
buttons: [{
label: lang_admin_close,
action: function(dialog) {
inStateFixing = false;
dialog.close();
}
}]
});
processNextStateFixItem();
}
},
{
label: lang_admin_close,
cssClass: 'btn btn-sm btn-secondary',
id: 'closeStateDialogButton',
action: function (dialogItself) {
dialogItself.close();
}
}],
});
}
});
});
function dupeSearch() {
$("#dupes").val("Y");
$('#dupeButton').prop('disabled', true).addClass('running');

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,21 @@
{"type":"FeatureCollection","features":[
{"id":"UY-LA","type":"Feature","properties":{"code":"LA","name":"Lavalleja"},"geometry":{"type":"Polygon","coordinates":[[[-55.6191,-34.2077],[-55.5506,-34.1329],[-55.5134,-34.0718],[-55.4542,-34.0246],[-55.4475,-33.9873],[-55.3926,-33.9109],[-55.3474,-33.8802],[-55.3359,-33.8329],[-55.298,-33.758],[-55.2921,-33.7074],[-55.3282,-33.6497],[-55.3216,-33.61],[-55.2691,-33.5911],[-55.2301,-33.5638],[-55.2007,-33.5033],[-55.1415,-33.4776],[-55.1099,-33.44],[-55.1246,-33.3818],[-55.0563,-33.3503],[-54.9989,-33.3423],[-54.9413,-33.365],[-54.9061,-33.3651],[-54.8357,-33.3377],[-54.7765,-33.3517],[-54.7147,-33.396],[-54.6033,-33.414],[-54.5043,-33.448],[-54.4437,-33.435],[-54.4091,-33.3876],[-54.3546,-33.3572],[-54.2867,-33.3541],[-54.2343,-33.4185],[-54.1257,-33.4653],[-54.2084,-33.4872],[-54.2299,-33.549],[-54.2675,-33.5774],[-54.3478,-33.6166],[-54.383,-33.6726],[-54.3735,-33.7296],[-54.4155,-33.8006],[-54.4275,-33.8645],[-54.4821,-33.926],[-54.5238,-33.9522],[-54.5742,-34.0398],[-54.6465,-34.0526],[-54.6897,-34.0719],[-54.7407,-34.1355],[-54.78,-34.2018],[-54.7815,-34.2566],[-54.8141,-34.2944],[-54.8444,-34.3929],[-54.9007,-34.4218],[-54.9837,-34.443],[-55.0831,-34.5116],[-55.1677,-34.5176],[-55.2811,-34.597],[-55.3383,-34.6157],[-55.4733,-34.6219],[-55.4953,-34.5535],[-55.5442,-34.4999],[-55.537,-34.3954],[-55.5786,-34.331],[-55.6191,-34.2077]]]}},
{"id":"UY-FD","type":"Feature","properties":{"code":"FD","name":"Florida"},"geometry":{"type":"Polygon","coordinates":[[[-55.1111,-33.1182],[-55.0911,-33.2524],[-55.1076,-33.2988],[-55.1484,-33.3438],[-55.1246,-33.3818],[-55.1099,-33.44],[-55.1415,-33.4776],[-55.2007,-33.5033],[-55.2301,-33.5638],[-55.2691,-33.5911],[-55.3216,-33.61],[-55.3282,-33.6497],[-55.2921,-33.7074],[-55.298,-33.758],[-55.3359,-33.8329],[-55.3474,-33.8802],[-55.3926,-33.9109],[-55.4475,-33.9873],[-55.4542,-34.0246],[-55.5134,-34.0718],[-55.5506,-34.1329],[-55.6191,-34.2077],[-55.7442,-34.2224],[-55.8398,-34.2647],[-55.9022,-34.271],[-55.955,-34.2494],[-55.9986,-34.2444],[-56.088,-34.2932],[-56.1356,-34.3646],[-56.2238,-34.3775],[-56.2681,-34.3571],[-56.3507,-34.3573],[-56.3839,-34.3822],[-56.4013,-34.433],[-56.4689,-34.3648],[-56.4245,-34.307],[-56.4201,-34.2409],[-56.4444,-34.1778],[-56.4191,-34.1213],[-56.4187,-34.0554],[-56.449,-33.935],[-56.4627,-33.9024],[-56.4274,-33.8561],[-56.4218,-33.763],[-56.4606,-33.6961],[-56.5175,-33.5219],[-56.533,-33.4955],[-56.4539,-33.4971],[-56.4156,-33.4694],[-56.4195,-33.4088],[-56.3553,-33.4297],[-56.2803,-33.429],[-56.2479,-33.4759],[-56.1721,-33.4776],[-56.0956,-33.4926],[-56.0502,-33.4692],[-56.0217,-33.4337],[-55.9355,-33.4225],[-55.8852,-33.4354],[-55.8299,-33.4263],[-55.7684,-33.4028],[-55.7178,-33.3673],[-55.6224,-33.3611],[-55.4314,-33.2704],[-55.4032,-33.2416],[-55.3039,-33.1963],[-55.2582,-33.2081],[-55.1788,-33.1514],[-55.1111,-33.1182]]]}},
{"id":"UY-FS","type":"Feature","properties":{"code":"FS","name":"Flores"},"geometry":{"type":"Polygon","coordinates":[[[-57.1271,-33.1231],[-57.08,-33.1624],[-57.0282,-33.1843],[-56.9741,-33.1779],[-56.8833,-33.1927],[-56.8472,-33.2431],[-56.8088,-33.2726],[-56.7365,-33.281],[-56.6811,-33.2992],[-56.5657,-33.4204],[-56.5586,-33.4649],[-56.533,-33.4955],[-56.5175,-33.5219],[-56.4606,-33.6961],[-56.4218,-33.763],[-56.4274,-33.8561],[-56.4627,-33.9024],[-56.5721,-33.856],[-56.6029,-33.8497],[-56.6868,-33.8952],[-56.7554,-33.9096],[-56.8207,-33.9671],[-56.8904,-33.9884],[-57.035,-33.9651],[-57.0777,-33.963],[-57.1033,-33.9318],[-57.1301,-33.8426],[-57.1837,-33.7591],[-57.171,-33.6417],[-57.1744,-33.5969],[-57.2267,-33.5763],[-57.2584,-33.5414],[-57.2661,-33.4998],[-57.2983,-33.4298],[-57.3447,-33.3919],[-57.3367,-33.3549],[-57.1473,-33.1638],[-57.1271,-33.1231]]]}},
{"id":"UY-DU","type":"Feature","properties":{"code":"DU","name":"Durazno"},"geometry":{"type":"Polygon","coordinates":[[[-55.3284,-32.4939],[-55.3081,-32.5265],[-55.3039,-32.5728],[-55.3353,-32.6679],[-55.3081,-32.7366],[-55.3403,-32.767],[-55.3156,-32.8313],[-55.3208,-32.8908],[-55.2728,-32.9459],[-55.1776,-32.9974],[-55.1595,-33.0177],[-55.01,-33.025],[-55.0386,-33.0577],[-55.0945,-33.0882],[-55.1111,-33.1182],[-55.1788,-33.1514],[-55.2582,-33.2081],[-55.3039,-33.1963],[-55.4032,-33.2416],[-55.4314,-33.2704],[-55.6224,-33.3611],[-55.7178,-33.3673],[-55.7684,-33.4028],[-55.8299,-33.4263],[-55.8852,-33.4354],[-55.9355,-33.4225],[-56.0217,-33.4337],[-56.0502,-33.4692],[-56.0956,-33.4926],[-56.1721,-33.4776],[-56.2479,-33.4759],[-56.2803,-33.429],[-56.3553,-33.4297],[-56.4195,-33.4088],[-56.4156,-33.4694],[-56.4539,-33.4971],[-56.533,-33.4955],[-56.5586,-33.4649],[-56.5657,-33.4204],[-56.6811,-33.2992],[-56.7365,-33.281],[-56.8088,-33.2726],[-56.8472,-33.2431],[-56.8833,-33.1927],[-56.9741,-33.1779],[-57.0282,-33.1843],[-57.08,-33.1624],[-57.1271,-33.1231],[-57.1302,-33.0753],[-57.1719,-33.071],[-57.1185,-33.0198],[-57.0831,-33.0064],[-57.0238,-33.0242],[-56.9691,-33.0255],[-56.9852,-32.9936],[-56.9323,-32.9866],[-56.915,-32.9589],[-56.8779,-32.9848],[-56.864,-32.9381],[-56.8151,-32.9335],[-56.8046,-32.8891],[-56.7822,-32.8705],[-56.7351,-32.863],[-56.704,-32.8433],[-56.6668,-32.8433],[-56.637,-32.8581],[-56.583,-32.8356],[-56.4706,-32.8308],[-56.4067,-32.8611],[-56.3616,-32.8148],[-56.2249,-32.823],[-56.2187,-32.7936],[-56.1695,-32.726],[-56.0838,-32.7073],[-56.0138,-32.7],[-55.9271,-32.6145],[-55.8818,-32.6027],[-55.8304,-32.6338],[-55.7928,-32.6079],[-55.773,-32.5702],[-55.7817,-32.5378],[-55.7485,-32.5222],[-55.7106,-32.5477],[-55.676,-32.5398],[-55.6343,-32.4953],[-55.5644,-32.5106],[-55.5076,-32.49],[-55.4962,-32.4447],[-55.4451,-32.4385],[-55.4302,-32.471],[-55.3594,-32.4987],[-55.3284,-32.4939]]]}},
{"id":"UY-TA","type":"Feature","properties":{"code":"TA","name":"Tacuarembó"},"geometry":{"type":"Polygon","coordinates":[[[-56.5594,-32.4925],[-56.506,-32.3565],[-56.4892,-32.3346],[-56.4225,-32.2885],[-56.3588,-32.2319],[-56.3227,-32.1032],[-56.2946,-32.0427],[-56.2845,-31.9334],[-56.2449,-31.9071],[-56.2799,-31.8553],[-56.2798,-31.8035],[-56.3216,-31.7513],[-56.3198,-31.7237],[-56.3367,-31.6251],[-56.3539,-31.5997],[-56.3215,-31.5193],[-56.2627,-31.4492],[-56.1871,-31.3952],[-56.158,-31.3047],[-56.1341,-31.2731],[-56.0977,-31.2561],[-56.0587,-31.2619],[-55.9769,-31.3177],[-55.8569,-31.3669],[-55.8148,-31.4204],[-55.8147,-31.4574],[-55.7867,-31.5151],[-55.7389,-31.5493],[-55.6868,-31.5656],[-55.6614,-31.5938],[-55.6468,-31.6413],[-55.661,-31.6994],[-55.6451,-31.7674],[-55.6025,-31.8061],[-55.559,-31.7981],[-55.5037,-31.8064],[-55.3476,-31.7979],[-55.25,-31.8188],[-55.1004,-31.8229],[-55.0422,-31.8432],[-54.9653,-31.849],[-54.8872,-31.875],[-54.8131,-31.9424],[-54.7957,-31.9685],[-54.701,-32.0602],[-54.6545,-32.1228],[-54.6909,-32.1294],[-54.7557,-32.1019],[-54.8145,-32.2051],[-54.8003,-32.2382],[-54.8396,-32.3105],[-54.897,-32.3491],[-54.9214,-32.3796],[-54.9569,-32.3887],[-54.9926,-32.431],[-55.04,-32.4687],[-55.1059,-32.485],[-55.2051,-32.4571],[-55.2396,-32.4589],[-55.3284,-32.4939],[-55.3594,-32.4987],[-55.4302,-32.471],[-55.4451,-32.4385],[-55.4962,-32.4447],[-55.5076,-32.49],[-55.5644,-32.5106],[-55.6343,-32.4953],[-55.676,-32.5398],[-55.7106,-32.5477],[-55.7485,-32.5222],[-55.7817,-32.5378],[-55.773,-32.5702],[-55.7928,-32.6079],[-55.8304,-32.6338],[-55.8818,-32.6027],[-55.9271,-32.6145],[-56.0138,-32.7],[-56.0838,-32.7073],[-56.1695,-32.726],[-56.2187,-32.7936],[-56.2249,-32.823],[-56.3616,-32.8148],[-56.4067,-32.8611],[-56.4706,-32.8308],[-56.583,-32.8356],[-56.637,-32.8581],[-56.6668,-32.8433],[-56.6307,-32.75],[-56.6295,-32.6992],[-56.5997,-32.6644],[-56.564,-32.5381],[-56.5594,-32.4925]]]}},
{"id":"UY-RN","type":"Feature","properties":{"code":"RN","name":"Río Negro"},"geometry":{"type":"Polygon","coordinates":[[[-58.3915,-33.4244],[-58.4126,-33.4096],[-58.4126,-33.3717],[-58.3612,-33.3258],[-58.3492,-33.2828],[-58.3669,-33.1537],[-58.3514,-33.1217],[-58.3103,-33.1088],[-58.1744,-33.1104],[-58.1002,-33.0656],[-58.077,-33.0307],[-58.0485,-32.9117],[-58.0571,-32.8818],[-58.1205,-32.8193],[-58.1378,-32.7634],[-58.1378,-32.6707],[-58.1572,-32.5751],[-58.1915,-32.4919],[-58.111,-32.4847],[-58.0804,-32.4968],[-58.0188,-32.5436],[-57.9956,-32.5821],[-57.909,-32.6027],[-57.7846,-32.6076],[-57.7573,-32.5583],[-57.5835,-32.5362],[-57.5468,-32.4891],[-57.4703,-32.4451],[-57.4015,-32.4506],[-57.3273,-32.4337],[-57.2864,-32.4453],[-57.2512,-32.4376],[-57.1858,-32.3974],[-57.1023,-32.3905],[-57.0397,-32.3634],[-56.9275,-32.4053],[-56.7252,-32.4115],[-56.6705,-32.4258],[-56.5594,-32.4925],[-56.564,-32.5381],[-56.5997,-32.6644],[-56.6295,-32.6992],[-56.6307,-32.75],[-56.6668,-32.8433],[-56.704,-32.8433],[-56.7351,-32.863],[-56.7822,-32.8705],[-56.8046,-32.8891],[-56.8151,-32.9335],[-56.864,-32.9381],[-56.8779,-32.9848],[-56.915,-32.9589],[-56.9323,-32.9866],[-56.9852,-32.9936],[-56.9691,-33.0255],[-57.0238,-33.0242],[-57.0831,-33.0064],[-57.1185,-33.0198],[-57.1719,-33.071],[-57.1302,-33.0753],[-57.1271,-33.1231],[-57.2058,-33.1556],[-57.2401,-33.1157],[-57.2818,-33.1469],[-57.293,-33.1076],[-57.3225,-33.0876],[-57.3847,-33.0753],[-57.4396,-33.0911],[-57.4592,-33.0437],[-57.5031,-33.0242],[-57.5466,-33.0254],[-57.6138,-33.0519],[-57.6505,-33.085],[-57.7444,-33.0542],[-57.7772,-33.0607],[-57.8329,-33.0423],[-57.8685,-33.0443],[-57.9049,-33.0753],[-57.9595,-33.0952],[-57.9651,-33.131],[-58.0333,-33.1262],[-58.0603,-33.1442],[-58.0496,-33.1875],[-58.0284,-33.2051],[-58.0392,-33.2466],[-58.0836,-33.2187],[-58.1309,-33.253],[-58.1473,-33.3121],[-58.2236,-33.308],[-58.2959,-33.377],[-58.3915,-33.4244]]]}},
{"id":"UY-SO","type":"Feature","properties":{"code":"SO","name":"Soriano"},"geometry":{"type":"Polygon","coordinates":[[[-58.4156,-33.8756],[-58.4346,-33.7849],[-58.4394,-33.6985],[-58.4258,-33.6129],[-58.4332,-33.5278],[-58.3854,-33.4703],[-58.3915,-33.4244],[-58.2959,-33.377],[-58.2236,-33.308],[-58.1473,-33.3121],[-58.1309,-33.253],[-58.0836,-33.2187],[-58.0392,-33.2466],[-58.0284,-33.2051],[-58.0496,-33.1875],[-58.0603,-33.1442],[-58.0333,-33.1262],[-57.9651,-33.131],[-57.9595,-33.0952],[-57.9049,-33.0753],[-57.8685,-33.0443],[-57.8329,-33.0423],[-57.7772,-33.0607],[-57.7444,-33.0542],[-57.6505,-33.085],[-57.6138,-33.0519],[-57.5466,-33.0254],[-57.5031,-33.0242],[-57.4592,-33.0437],[-57.4396,-33.0911],[-57.3847,-33.0753],[-57.3225,-33.0876],[-57.293,-33.1076],[-57.2818,-33.1469],[-57.2401,-33.1157],[-57.2058,-33.1556],[-57.1271,-33.1231],[-57.1473,-33.1638],[-57.3367,-33.3549],[-57.3447,-33.3919],[-57.2983,-33.4298],[-57.2661,-33.4998],[-57.2584,-33.5414],[-57.2267,-33.5763],[-57.1744,-33.5969],[-57.171,-33.6417],[-57.1837,-33.7591],[-57.1301,-33.8426],[-57.1033,-33.9318],[-57.0777,-33.963],[-57.182,-33.9494],[-57.293,-33.9464],[-57.3344,-33.9182],[-57.3932,-33.8961],[-57.5656,-33.9351],[-57.6542,-33.9381],[-57.7907,-33.8989],[-57.8502,-33.8619],[-57.9942,-33.8621],[-58.0396,-33.804],[-58.1524,-33.7797],[-58.1856,-33.782],[-58.279,-33.836],[-58.3691,-33.8674],[-58.4156,-33.8756]]]}},
{"id":"UY-CO","type":"Feature","properties":{"code":"CO","name":"Colonia"},"geometry":{"type":"Polygon","coordinates":[[[-57.1675,-34.4482],[-57.2032,-34.4421],[-57.3469,-34.4435],[-57.3652,-34.4304],[-57.437,-34.4446],[-57.4747,-34.4295],[-57.5379,-34.4536],[-57.5695,-34.4265],[-57.6242,-34.4305],[-57.7641,-34.4743],[-57.8225,-34.4751],[-57.9002,-34.4165],[-57.8976,-34.3763],[-58.0169,-34.2531],[-58.0498,-34.24],[-58.077,-34.192],[-58.1194,-34.1692],[-58.1962,-34.1594],[-58.2318,-34.0888],[-58.3165,-33.9865],[-58.3724,-33.9544],[-58.4027,-33.9228],[-58.4156,-33.8756],[-58.3691,-33.8674],[-58.279,-33.836],[-58.1856,-33.782],[-58.1524,-33.7797],[-58.0396,-33.804],[-57.9942,-33.8621],[-57.8502,-33.8619],[-57.7907,-33.8989],[-57.6542,-33.9381],[-57.5656,-33.9351],[-57.3932,-33.8961],[-57.3344,-33.9182],[-57.293,-33.9464],[-57.182,-33.9494],[-57.0777,-33.963],[-57.0467,-34.032],[-57.0176,-34.0466],[-56.9481,-34.1275],[-56.9419,-34.1476],[-56.9965,-34.19],[-57.091,-34.2272],[-57.1028,-34.2677],[-57.0773,-34.296],[-57.106,-34.4041],[-57.1675,-34.4482]]]}},
{"id":"UY-SJ","type":"Feature","properties":{"code":"SJ","name":"San José"},"geometry":{"type":"Polygon","coordinates":[[[-56.3646,-34.7935],[-56.4484,-34.7583],[-56.5736,-34.759],[-56.6464,-34.7226],[-56.7135,-34.707],[-56.7953,-34.6985],[-56.8739,-34.6702],[-56.9042,-34.6355],[-57.0158,-34.5521],[-57.12,-34.463],[-57.1675,-34.4482],[-57.106,-34.4041],[-57.0773,-34.296],[-57.1028,-34.2677],[-57.091,-34.2272],[-56.9965,-34.19],[-56.9419,-34.1476],[-56.9481,-34.1275],[-57.0176,-34.0466],[-57.0467,-34.032],[-57.0777,-33.963],[-57.035,-33.9651],[-56.8904,-33.9884],[-56.8207,-33.9671],[-56.7554,-33.9096],[-56.6868,-33.8952],[-56.6029,-33.8497],[-56.5721,-33.856],[-56.4627,-33.9024],[-56.449,-33.935],[-56.4187,-34.0554],[-56.4191,-34.1213],[-56.4444,-34.1778],[-56.4201,-34.2409],[-56.4245,-34.307],[-56.4689,-34.3648],[-56.4013,-34.433],[-56.4077,-34.4875],[-56.398,-34.5271],[-56.4719,-34.5967],[-56.4549,-34.6676],[-56.3866,-34.7093],[-56.3642,-34.7341],[-56.3646,-34.7935]]]}},
{"id":"UY-MO","type":"Feature","properties":{"code":"MO","name":"Montevideo"},"geometry":{"type":"Polygon","coordinates":[[[-56.0384,-34.8858],[-56.1052,-34.8984],[-56.1499,-34.9203],[-56.213,-34.9077],[-56.3113,-34.9062],[-56.4029,-34.8547],[-56.4208,-34.8282],[-56.3646,-34.7935],[-56.3642,-34.7341],[-56.3128,-34.7134],[-56.2806,-34.7203],[-56.2325,-34.7617],[-56.2028,-34.7585],[-56.1471,-34.7247],[-56.0751,-34.7747],[-56.0359,-34.7796],[-56.0528,-34.848],[-56.0384,-34.8858]]]}},
{"id":"UY-CA","type":"Feature","properties":{"code":"CA","name":"Canelones"},"geometry":{"type":"Polygon","coordinates":[[[-55.3738,-34.8029],[-55.4682,-34.7954],[-55.5096,-34.7991],[-55.6018,-34.7724],[-55.6467,-34.7811],[-55.6934,-34.7647],[-55.7565,-34.7827],[-55.7921,-34.7741],[-55.8891,-34.8035],[-56.0384,-34.8858],[-56.0528,-34.848],[-56.0359,-34.7796],[-56.0751,-34.7747],[-56.1471,-34.7247],[-56.2028,-34.7585],[-56.2325,-34.7617],[-56.2806,-34.7203],[-56.3128,-34.7134],[-56.3642,-34.7341],[-56.3866,-34.7093],[-56.4549,-34.6676],[-56.4719,-34.5967],[-56.398,-34.5271],[-56.4077,-34.4875],[-56.4013,-34.433],[-56.3839,-34.3822],[-56.3507,-34.3573],[-56.2681,-34.3571],[-56.2238,-34.3775],[-56.1356,-34.3646],[-56.088,-34.2932],[-55.9986,-34.2444],[-55.955,-34.2494],[-55.9022,-34.271],[-55.8398,-34.2647],[-55.7442,-34.2224],[-55.6191,-34.2077],[-55.5786,-34.331],[-55.537,-34.3954],[-55.5442,-34.4999],[-55.4953,-34.5535],[-55.4733,-34.6219],[-55.4135,-34.6942],[-55.4185,-34.734],[-55.3738,-34.8029]]]}},
{"id":"UY-MA","type":"Feature","properties":{"code":"MA","name":"Maldonado"},"geometry":{"type":"Polygon","coordinates":[[[-54.5308,-34.8069],[-54.6042,-34.8264],[-54.6365,-34.8488],[-54.6995,-34.8674],[-54.8727,-34.9362],[-54.9137,-34.9452],[-54.9393,-34.9699],[-54.9757,-34.9285],[-55.0331,-34.9168],[-55.0821,-34.884],[-55.1298,-34.8859],[-55.2218,-34.9037],[-55.2602,-34.8976],[-55.3383,-34.8188],[-55.3738,-34.8029],[-55.4185,-34.734],[-55.4135,-34.6942],[-55.4733,-34.6219],[-55.3383,-34.6157],[-55.2811,-34.597],[-55.1677,-34.5176],[-55.0831,-34.5116],[-54.9837,-34.443],[-54.9007,-34.4218],[-54.8444,-34.3929],[-54.8141,-34.2944],[-54.7815,-34.2566],[-54.78,-34.2018],[-54.7407,-34.1355],[-54.6897,-34.0719],[-54.6465,-34.0526],[-54.5742,-34.0398],[-54.5238,-33.9522],[-54.4821,-33.926],[-54.4609,-34.095],[-54.4921,-34.2012],[-54.4837,-34.3027],[-54.4926,-34.3908],[-54.5268,-34.3968],[-54.5382,-34.4408],[-54.5189,-34.515],[-54.4986,-34.5463],[-54.5355,-34.6552],[-54.5176,-34.7436],[-54.5308,-34.8069]]]}},
{"id":"UY-TT","type":"Feature","properties":{"code":"TT","name":"Treinta y Tres"},"geometry":{"type":"Polygon","coordinates":[[[-53.1828,-32.7999],[-53.2039,-32.8224],[-53.2988,-32.8891],[-53.3096,-32.9444],[-53.3273,-32.9736],[-53.4491,-33.0421],[-53.5115,-33.0992],[-53.5207,-33.125],[-53.6161,-33.1437],[-53.6889,-33.17],[-53.7685,-33.1893],[-53.7977,-33.2379],[-53.8459,-33.2627],[-53.8954,-33.3161],[-53.9634,-33.3461],[-53.9888,-33.3905],[-54.0569,-33.4389],[-54.1257,-33.4653],[-54.2343,-33.4185],[-54.2867,-33.3541],[-54.3546,-33.3572],[-54.4091,-33.3876],[-54.4437,-33.435],[-54.5043,-33.448],[-54.6033,-33.414],[-54.7147,-33.396],[-54.7765,-33.3517],[-54.8357,-33.3377],[-54.9061,-33.3651],[-54.9413,-33.365],[-54.9989,-33.3423],[-55.0563,-33.3503],[-55.1246,-33.3818],[-55.1484,-33.3438],[-55.1076,-33.2988],[-55.0911,-33.2524],[-55.1111,-33.1182],[-55.0945,-33.0882],[-55.0386,-33.0577],[-55.01,-33.025],[-55.0274,-32.9629],[-55.0072,-32.94],[-54.9249,-32.8993],[-54.8785,-32.8635],[-54.8196,-32.8382],[-54.7306,-32.8303],[-54.6842,-32.8142],[-54.5967,-32.821],[-54.5638,-32.7902],[-54.5213,-32.7881],[-54.4951,-32.7546],[-54.4113,-32.7497],[-54.3161,-32.7147],[-54.2863,-32.7313],[-54.1302,-32.7565],[-54.0454,-32.7989],[-54.0367,-32.7608],[-53.9684,-32.7077],[-53.9315,-32.7122],[-53.868,-32.7558],[-53.834,-32.766],[-53.6671,-32.7547],[-53.6075,-32.7612],[-53.5,-32.7502],[-53.475,-32.7676],[-53.38,-32.7895],[-53.3038,-32.7785],[-53.1828,-32.7999]]]}},
{"id":"UY-RO","type":"Feature","properties":{"code":"RO","name":"Rocha"},"geometry":{"type":"Polygon","coordinates":[[[-53.5207,-33.125],[-53.5369,-33.1708],[-53.5361,-33.2446],[-53.514,-33.3949],[-53.5368,-33.5599],[-53.5396,-33.6493],[-53.5115,-33.6903],[-53.4567,-33.6875],[-53.4113,-33.7423],[-53.4148,-33.7644],[-53.4731,-33.8346],[-53.5395,-34.0624],[-53.5912,-34.0955],[-53.64,-34.1476],[-53.711,-34.1988],[-53.7583,-34.2785],[-53.7799,-34.336],[-53.7649,-34.3904],[-53.8058,-34.401],[-53.8983,-34.4439],[-53.9722,-34.4872],[-54.1246,-34.6104],[-54.1459,-34.6676],[-54.2368,-34.6845],[-54.2528,-34.6308],[-54.2386,-34.5898],[-54.2801,-34.5823],[-54.3446,-34.6306],[-54.3077,-34.6474],[-54.2801,-34.6823],[-54.3065,-34.7077],[-54.5308,-34.8069],[-54.5176,-34.7436],[-54.5355,-34.6552],[-54.4986,-34.5463],[-54.5189,-34.515],[-54.5382,-34.4408],[-54.5268,-34.3968],[-54.4926,-34.3908],[-54.4837,-34.3027],[-54.4921,-34.2012],[-54.4609,-34.095],[-54.4821,-33.926],[-54.4275,-33.8645],[-54.4155,-33.8006],[-54.3735,-33.7296],[-54.383,-33.6726],[-54.3478,-33.6166],[-54.2675,-33.5774],[-54.2299,-33.549],[-54.2084,-33.4872],[-54.1257,-33.4653],[-54.0569,-33.4389],[-53.9888,-33.3905],[-53.9634,-33.3461],[-53.8954,-33.3161],[-53.8459,-33.2627],[-53.7977,-33.2379],[-53.7685,-33.1893],[-53.6889,-33.17],[-53.6161,-33.1437],[-53.5207,-33.125]]]}},
{"id":"UY-CL","type":"Feature","properties":{"code":"CL","name":"Cerro Largo"},"geometry":{"type":"Polygon","coordinates":[[[-54.4672,-31.6642],[-54.2742,-31.8234],[-54.1696,-31.8959],[-54.1351,-31.909],[-54.1073,-31.8839],[-54.0688,-31.8799],[-53.9989,-31.9297],[-53.9344,-31.9425],[-53.8941,-31.9701],[-53.8814,-32.0012],[-53.8304,-32.0364],[-53.7718,-32.0471],[-53.7514,-32.0688],[-53.75,-32.104],[-53.7214,-32.1624],[-53.6706,-32.2264],[-53.6518,-32.2883],[-53.6487,-32.3386],[-53.5613,-32.4495],[-53.4746,-32.5082],[-53.4156,-32.5642],[-53.316,-32.6027],[-53.2669,-32.6074],[-53.1861,-32.6467],[-53.1108,-32.7224],[-53.1269,-32.7548],[-53.1828,-32.7999],[-53.3038,-32.7785],[-53.38,-32.7895],[-53.475,-32.7676],[-53.5,-32.7502],[-53.6075,-32.7612],[-53.6671,-32.7547],[-53.834,-32.766],[-53.868,-32.7558],[-53.9315,-32.7122],[-53.9684,-32.7077],[-54.0367,-32.7608],[-54.0454,-32.7989],[-54.1302,-32.7565],[-54.2863,-32.7313],[-54.3161,-32.7147],[-54.4113,-32.7497],[-54.4951,-32.7546],[-54.5213,-32.7881],[-54.5638,-32.7902],[-54.5967,-32.821],[-54.6842,-32.8142],[-54.7306,-32.8303],[-54.8196,-32.8382],[-54.8785,-32.8635],[-54.9249,-32.8993],[-55.0072,-32.94],[-55.0274,-32.9629],[-55.01,-33.025],[-55.1595,-33.0177],[-55.1776,-32.9974],[-55.2728,-32.9459],[-55.3208,-32.8908],[-55.3156,-32.8313],[-55.3403,-32.767],[-55.3081,-32.7366],[-55.3353,-32.6679],[-55.3039,-32.5728],[-55.3081,-32.5265],[-55.3284,-32.4939],[-55.2396,-32.4589],[-55.2051,-32.4571],[-55.1059,-32.485],[-55.04,-32.4687],[-54.9926,-32.431],[-54.9569,-32.3887],[-54.9214,-32.3796],[-54.897,-32.3491],[-54.8396,-32.3105],[-54.8003,-32.2382],[-54.8145,-32.2051],[-54.7557,-32.1019],[-54.6909,-32.1294],[-54.6545,-32.1228],[-54.5894,-32.1096],[-54.5817,-32.0611],[-54.5463,-32.0322],[-54.5436,-32.0027],[-54.5885,-31.9854],[-54.5544,-31.9438],[-54.5041,-31.8424],[-54.5039,-31.8004],[-54.5203,-31.7321],[-54.4672,-31.6642]]]}},
{"id":"UY-RV","type":"Feature","properties":{"code":"RV","name":"Rivera"},"geometry":{"type":"Polygon","coordinates":[[[-54.4672,-31.6642],[-54.5203,-31.7321],[-54.5039,-31.8004],[-54.5041,-31.8424],[-54.5544,-31.9438],[-54.5885,-31.9854],[-54.5436,-32.0027],[-54.5463,-32.0322],[-54.5817,-32.0611],[-54.5894,-32.1096],[-54.6545,-32.1228],[-54.701,-32.0602],[-54.7957,-31.9685],[-54.8131,-31.9424],[-54.8872,-31.875],[-54.9653,-31.849],[-55.0422,-31.8432],[-55.1004,-31.8229],[-55.25,-31.8188],[-55.3476,-31.7979],[-55.5037,-31.8064],[-55.559,-31.7981],[-55.6025,-31.8061],[-55.6451,-31.7674],[-55.661,-31.6994],[-55.6468,-31.6413],[-55.6614,-31.5938],[-55.6868,-31.5656],[-55.7389,-31.5493],[-55.7867,-31.5151],[-55.8147,-31.4574],[-55.8148,-31.4204],[-55.8569,-31.3669],[-55.9769,-31.3177],[-56.0587,-31.2619],[-56.0977,-31.2561],[-56.1341,-31.2731],[-56.158,-31.3047],[-56.1869,-31.257],[-56.148,-31.2283],[-56.0787,-31.2109],[-56.0365,-31.1604],[-56.0099,-31.0819],[-55.8643,-31.0768],[-55.7636,-31.0084],[-55.7319,-30.9454],[-55.6658,-30.9493],[-55.6527,-30.939],[-55.6546,-30.8787],[-55.634,-30.8476],[-55.5919,-30.8483],[-55.5275,-30.8945],[-55.4426,-30.9656],[-55.3539,-31.0563],[-55.338,-31.1256],[-55.2937,-31.1537],[-55.26,-31.2287],[-55.2276,-31.2535],[-55.1696,-31.2764],[-55.1222,-31.3135],[-55.0873,-31.3268],[-55.0294,-31.2688],[-54.9696,-31.3408],[-54.9003,-31.3821],[-54.8634,-31.4176],[-54.8198,-31.4353],[-54.6541,-31.4558],[-54.5915,-31.471],[-54.5624,-31.5159],[-54.5097,-31.5523],[-54.4832,-31.5839],[-54.4672,-31.6642]]]}},
{"id":"UY-SA","type":"Feature","properties":{"code":"SA","name":"Salto"},"geometry":{"type":"Polygon","coordinates":[[[-56.017,-31.0743],[-56.0099,-31.0819],[-56.0365,-31.1604],[-56.0787,-31.2109],[-56.148,-31.2283],[-56.1869,-31.257],[-56.158,-31.3047],[-56.1871,-31.3952],[-56.2627,-31.4492],[-56.3215,-31.5193],[-56.3539,-31.5997],[-56.3367,-31.6251],[-56.3198,-31.7237],[-56.3216,-31.7513],[-56.3743,-31.7631],[-56.4423,-31.8323],[-56.4624,-31.8649],[-56.5093,-31.8707],[-56.5803,-31.8523],[-56.6515,-31.8463],[-56.702,-31.8189],[-56.7632,-31.8152],[-56.8413,-31.7934],[-56.9278,-31.8094],[-57.0039,-31.7912],[-57.0682,-31.8091],[-57.1772,-31.7944],[-57.225,-31.7652],[-57.3043,-31.7457],[-57.3478,-31.7197],[-57.3697,-31.6908],[-57.4557,-31.6756],[-57.5954,-31.6106],[-57.7425,-31.5831],[-57.7681,-31.5624],[-57.7959,-31.5125],[-57.8621,-31.4806],[-57.9066,-31.4706],[-57.9536,-31.4997],[-58.0044,-31.4964],[-58.039,-31.5086],[-58.0752,-31.4752],[-58.0626,-31.4443],[-57.9902,-31.3993],[-57.9664,-31.3146],[-57.9356,-31.2903],[-57.9051,-31.241],[-57.9117,-31.1706],[-57.899,-31.1265],[-57.8552,-31.059],[-57.8633,-31.0123],[-57.9117,-30.9474],[-57.8853,-30.9188],[-57.8072,-30.9076],[-57.795,-30.858],[-57.7994,-30.7915],[-57.7633,-30.7526],[-57.7013,-30.7649],[-57.6364,-30.8069],[-57.5721,-30.8633],[-57.4792,-30.8754],[-57.424,-30.9115],[-57.2915,-30.9722],[-57.2439,-30.9854],[-57.1747,-31.0399],[-57.1315,-31.0625],[-57.0714,-31.0779],[-57.0003,-31.0498],[-56.9104,-31.0439],[-56.797,-31.0616],[-56.6785,-31.0419],[-56.6199,-30.9997],[-56.5657,-30.9876],[-56.4806,-30.9385],[-56.4506,-30.8937],[-56.4155,-30.8871],[-56.342,-30.9075],[-56.1833,-30.9375],[-56.1398,-30.9636],[-56.1062,-31.0038],[-56.017,-31.0743]]]}},
{"id":"UY-AR","type":"Feature","properties":{"code":"AR","name":"Artigas"},"geometry":{"type":"Polygon","coordinates":[[[-56.017,-31.0743],[-56.1062,-31.0038],[-56.1398,-30.9636],[-56.1833,-30.9375],[-56.342,-30.9075],[-56.4155,-30.8871],[-56.4506,-30.8937],[-56.4806,-30.9385],[-56.5657,-30.9876],[-56.6199,-30.9997],[-56.6785,-31.0419],[-56.797,-31.0616],[-56.9104,-31.0439],[-57.0003,-31.0498],[-57.0714,-31.0779],[-57.1315,-31.0625],[-57.1747,-31.0399],[-57.2439,-30.9854],[-57.2915,-30.9722],[-57.424,-30.9115],[-57.4792,-30.8754],[-57.5721,-30.8633],[-57.6364,-30.8069],[-57.7013,-30.7649],[-57.7633,-30.7526],[-57.7994,-30.7915],[-57.8179,-30.712],[-57.8858,-30.5899],[-57.8898,-30.5508],[-57.8496,-30.4853],[-57.6527,-30.3291],[-57.6237,-30.2581],[-57.6424,-30.1931],[-57.6117,-30.183],[-57.5868,-30.204],[-57.5675,-30.2563],[-57.536,-30.2744],[-57.4298,-30.2755],[-57.3993,-30.2991],[-57.3538,-30.272],[-57.2965,-30.2933],[-57.2126,-30.2873],[-57.1638,-30.2393],[-57.1508,-30.1823],[-57.1023,-30.1212],[-57.0771,-30.1061],[-57.0379,-30.1146],[-56.9545,-30.0969],[-56.9064,-30.1085],[-56.8313,-30.102],[-56.7952,-30.1238],[-56.767,-30.1614],[-56.6737,-30.2113],[-56.6326,-30.2475],[-56.6313,-30.2847],[-56.5858,-30.2965],[-56.5238,-30.3573],[-56.4413,-30.4088],[-56.3726,-30.4859],[-56.2351,-30.5654],[-56.1835,-30.6146],[-56.1708,-30.6458],[-56.125,-30.6803],[-56.0769,-30.7523],[-56.0114,-30.7982],[-55.989,-30.8558],[-56.0114,-30.9126],[-56.0224,-31.0455],[-56.017,-31.0743]]]}},
{"id":"UY-PA","type":"Feature","properties":{"code":"PA","name":"Paysandú"},"geometry":{"type":"Polygon","coordinates":[[[-58.039,-31.5086],[-58.0044,-31.4964],[-57.9536,-31.4997],[-57.9066,-31.4706],[-57.8621,-31.4806],[-57.7959,-31.5125],[-57.7681,-31.5624],[-57.7425,-31.5831],[-57.5954,-31.6106],[-57.4557,-31.6756],[-57.3697,-31.6908],[-57.3478,-31.7197],[-57.3043,-31.7457],[-57.225,-31.7652],[-57.1772,-31.7944],[-57.0682,-31.8091],[-57.0039,-31.7912],[-56.9278,-31.8094],[-56.8413,-31.7934],[-56.7632,-31.8152],[-56.702,-31.8189],[-56.6515,-31.8463],[-56.5803,-31.8523],[-56.5093,-31.8707],[-56.4624,-31.8649],[-56.4423,-31.8323],[-56.3743,-31.7631],[-56.3216,-31.7513],[-56.2798,-31.8035],[-56.2799,-31.8553],[-56.2449,-31.9071],[-56.2845,-31.9334],[-56.2946,-32.0427],[-56.3227,-32.1032],[-56.3588,-32.2319],[-56.4225,-32.2885],[-56.4892,-32.3346],[-56.506,-32.3565],[-56.5594,-32.4925],[-56.6705,-32.4258],[-56.7252,-32.4115],[-56.9275,-32.4053],[-57.0397,-32.3634],[-57.1023,-32.3905],[-57.1858,-32.3974],[-57.2512,-32.4376],[-57.2864,-32.4453],[-57.3273,-32.4337],[-57.4015,-32.4506],[-57.4703,-32.4451],[-57.5468,-32.4891],[-57.5835,-32.5362],[-57.7573,-32.5583],[-57.7846,-32.6076],[-57.909,-32.6027],[-57.9956,-32.5821],[-58.0188,-32.5436],[-58.0804,-32.4968],[-58.111,-32.4847],[-58.1915,-32.4919],[-58.1997,-32.4448],[-58.1649,-32.3895],[-58.1016,-32.3114],[-58.1069,-32.2518],[-58.1865,-32.1529],[-58.1483,-32.0629],[-58.149,-31.9752],[-58.1588,-31.9439],[-58.2026,-31.8931],[-58.1686,-31.846],[-58.1308,-31.8278],[-58.0593,-31.8115],[-58.0489,-31.7971],[-57.9886,-31.6428],[-57.9796,-31.5988],[-57.9868,-31.5541],[-58.039,-31.5086]]]}}
]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,22 @@
{"type":"FeatureCollection","features":[
{"id":"HU-BK","type":"Feature","properties":{"code":"BN","name":"Bács-Kiskun"},"geometry":{"type":"Polygon","coordinates":[[[20.094,47.0069],[20.1305,46.9929],[20.1403,46.9831],[20.13,46.976],[20.1346,46.9614],[20.1073,46.9526],[20.1074,46.9419],[20.1438,46.9386],[20.1608,46.9171],[20.1257,46.905],[20.1232,46.895],[20.0883,46.8768],[20.0593,46.879],[20.0468,46.8598],[20.0364,46.8665],[20.007,46.8501],[20.0139,46.8366],[20.0054,46.8103],[20.035,46.7969],[20.0444,46.8239],[20.0614,46.8119],[20.0617,46.8042],[20.0249,46.7813],[19.968,46.7279],[20.0113,46.6957],[19.9806,46.637],[19.9941,46.6243],[19.9886,46.603],[19.994,46.5913],[19.9419,46.5493],[19.8897,46.5791],[19.7788,46.5309],[19.8081,46.5058],[19.8482,46.511],[19.8937,46.4804],[19.8996,46.4611],[19.8828,46.4441],[19.9003,46.42],[19.88,46.3853],[19.8566,46.3716],[19.8185,46.3894],[19.7431,46.3491],[19.721,46.361],[19.655,46.3464],[19.6626,46.3295],[19.6904,46.3046],[19.6357,46.2639],[19.6787,46.2212],[19.6965,46.1873],[19.6826,46.1807],[19.6631,46.19],[19.6338,46.1701],[19.5657,46.1777],[19.5555,46.1627],[19.5056,46.144],[19.5257,46.1191],[19.4661,46.0951],[19.4665,46.0808],[19.4163,46.046],[19.382,46.0357],[19.3655,46.0511],[19.2841,46.015],[19.2866,45.997],[19.149,45.9968],[19.137,46.0357],[19.1075,46.0393],[19.0669,46.0001],[19.0808,45.9645],[19.0143,45.9636],[18.996,45.9477],[19.009,45.9242],[18.9873,45.9321],[18.9626,45.9262],[18.9074,45.9351],[18.868,45.9103],[18.8287,45.9041],[18.8135,45.9086],[18.798,45.9183],[18.8057,45.9311],[18.8371,45.9432],[18.828,45.9589],[18.8671,46.0175],[18.8443,46.0299],[18.7797,46.0275],[18.7569,46.0294],[18.7435,46.0389],[18.7445,46.0627],[18.7702,46.0751],[18.7845,46.0903],[18.7845,46.1088],[18.8158,46.1099],[18.8285,46.1165],[18.8373,46.1331],[18.7971,46.1414],[18.798,46.1591],[18.8092,46.1683],[18.8272,46.1446],[18.8493,46.1879],[18.8687,46.1925],[18.8629,46.204],[18.8342,46.2017],[18.8213,46.2079],[18.8537,46.2343],[18.8736,46.2383],[18.8643,46.2688],[18.8748,46.2698],[18.8943,46.2595],[18.9106,46.2608],[18.9216,46.3062],[18.8981,46.3337],[18.8847,46.3969],[18.8893,46.4128],[18.9207,46.4498],[18.9211,46.4788],[18.8948,46.5221],[18.892,46.5649],[18.8624,46.596],[18.8595,46.6113],[18.8826,46.636],[18.9283,46.6407],[18.9667,46.6558],[19.0027,46.6937],[19.0045,46.7117],[18.9853,46.7358],[18.9717,46.774],[18.953,46.7989],[18.925,46.8167],[18.9233,46.8579],[18.9658,46.9356],[18.9504,46.9799],[18.9669,47.0284],[18.9749,47.0424],[18.9562,47.0641],[19.0227,47.0539],[19.025,47.0482],[19.0676,47.034],[19.0927,47.0434],[19.1011,47.064],[19.136,47.0719],[19.1625,47.0968],[19.1992,47.0958],[19.2082,47.0863],[19.2307,47.1216],[19.2572,47.1265],[19.2686,47.1365],[19.2868,47.1341],[19.3463,47.0934],[19.316,47.0688],[19.2948,47.036],[19.3359,46.996],[19.3793,47.0327],[19.4271,47.0636],[19.4757,47.0539],[19.5053,47.1202],[19.5616,47.1059],[19.5861,47.1214],[19.619,47.0823],[19.6421,47.0313],[19.6868,46.9967],[19.78,46.9493],[19.8018,46.9552],[19.8308,46.9434],[19.84,46.9439],[19.8758,46.9959],[19.9293,46.9732],[19.9834,46.9623],[19.9821,46.9806],[19.9977,46.9989],[20.0686,47.0183],[20.094,47.0069]]]}},
{"id":"HU-BA","type":"Feature","properties":{"code":"BA","name":"Baranya"},"geometry":{"type":"Polygon","coordinates":[[[18.7845,46.1088],[18.7845,46.0903],[18.7702,46.0751],[18.7445,46.0627],[18.7435,46.0389],[18.7569,46.0294],[18.7797,46.0275],[18.8443,46.0299],[18.8671,46.0175],[18.828,45.9589],[18.8371,45.9432],[18.8057,45.9311],[18.798,45.9183],[18.8135,45.9086],[18.8092,45.8789],[18.7948,45.8775],[18.7621,45.8889],[18.7497,45.8997],[18.7227,45.9043],[18.7059,45.9168],[18.6719,45.9106],[18.6633,45.8961],[18.6422,45.8876],[18.6545,45.8749],[18.6242,45.8537],[18.6235,45.8391],[18.602,45.8336],[18.594,45.8201],[18.5744,45.8145],[18.5745,45.8003],[18.5534,45.7934],[18.5211,45.7882],[18.4914,45.7941],[18.4821,45.7658],[18.457,45.7691],[18.4466,45.7616],[18.448,45.7372],[18.4074,45.7405],[18.3952,45.7588],[18.3648,45.7732],[18.3343,45.7533],[18.2974,45.7607],[18.2777,45.7553],[18.2445,45.762],[18.2303,45.779],[18.1871,45.7876],[18.1694,45.7763],[18.1509,45.7878],[18.1229,45.7892],[18.1042,45.7688],[18.0827,45.765],[18.0258,45.7779],[17.9984,45.7943],[17.929,45.7839],[17.9061,45.7903],[17.8771,45.7787],[17.8616,45.7642],[17.8499,45.7804],[17.8353,45.7858],[17.8242,45.8084],[17.8126,45.8026],[17.7786,45.8154],[17.7578,45.8106],[17.7387,45.8286],[17.7107,45.8299],[17.694,45.8371],[17.6692,45.8337],[17.6518,45.8465],[17.6857,45.872],[17.7268,45.863],[17.7339,45.8764],[17.7195,45.9044],[17.7226,45.9139],[17.6977,45.9244],[17.6981,45.9386],[17.6666,45.9394],[17.6441,45.9359],[17.6244,45.9851],[17.6545,45.9911],[17.6554,46.006],[17.6334,46.027],[17.6291,46.044],[17.6567,46.0519],[17.6738,46.0621],[17.6797,46.0904],[17.6646,46.1019],[17.6852,46.1095],[17.687,46.1572],[17.7042,46.179],[17.7044,46.1926],[17.7253,46.2071],[17.7152,46.2216],[17.7346,46.2318],[17.7485,46.2045],[17.7685,46.1999],[17.7861,46.2137],[17.8148,46.22],[17.816,46.2109],[17.8438,46.2082],[17.8572,46.2187],[17.8768,46.2242],[17.9175,46.2221],[17.9298,46.2295],[17.9259,46.2572],[17.9501,46.3052],[18.002,46.307],[18.0458,46.2932],[18.0525,46.2973],[18.0758,46.2915],[18.0822,46.2996],[18.1009,46.3008],[18.1127,46.3164],[18.1321,46.323],[18.1494,46.3153],[18.1996,46.3381],[18.1994,46.3539],[18.1841,46.3662],[18.1839,46.3954],[18.2256,46.4077],[18.2664,46.4013],[18.3135,46.4167],[18.3448,46.3976],[18.3421,46.3762],[18.35,46.3603],[18.3863,46.3473],[18.3877,46.3361],[18.3728,46.3253],[18.3747,46.2934],[18.3991,46.2867],[18.4137,46.2903],[18.4199,46.2788],[18.4005,46.2417],[18.3797,46.2314],[18.3831,46.2181],[18.4452,46.2447],[18.4444,46.2534],[18.4794,46.27],[18.4859,46.293],[18.5068,46.2903],[18.523,46.2706],[18.5319,46.2688],[18.5412,46.2516],[18.5302,46.2296],[18.5651,46.2106],[18.5892,46.182],[18.6107,46.1898],[18.6192,46.1745],[18.6458,46.1629],[18.6861,46.1267],[18.6939,46.1316],[18.7501,46.1082],[18.767,46.1145],[18.7845,46.1088]]]}},
{"id":"HU-BE","type":"Feature","properties":{"code":"BE","name":"Békés"},"geometry":{"type":"Polygon","coordinates":[[[21.658,47.0234],[21.6775,47.0176],[21.6876,47.0005],[21.676,46.9961],[21.6665,46.9714],[21.6801,46.9683],[21.6724,46.9529],[21.6579,46.9556],[21.637,46.9329],[21.5992,46.9269],[21.5983,46.909],[21.614,46.8855],[21.6034,46.8837],[21.6007,46.8637],[21.5208,46.8364],[21.5195,46.8003],[21.5088,46.7823],[21.484,46.7651],[21.4848,46.7581],[21.5261,46.738],[21.528,46.7191],[21.5122,46.7105],[21.4925,46.6847],[21.4717,46.6942],[21.4486,46.6876],[21.4353,46.6761],[21.4554,46.6615],[21.4388,46.649],[21.42,46.6449],[21.4101,46.6217],[21.3669,46.6364],[21.3505,46.6287],[21.3269,46.628],[21.3138,46.6168],[21.3025,46.5899],[21.3198,46.5812],[21.2911,46.545],[21.2752,46.541],[21.2605,46.5003],[21.2738,46.476],[21.2959,46.4748],[21.3159,46.4513],[21.312,46.4407],[21.2889,46.4144],[21.2944,46.4059],[21.2226,46.4127],[21.2057,46.4013],[21.1981,46.3456],[21.1737,46.3281],[21.1801,46.304],[21.1695,46.2971],[21.1447,46.3044],[21.1134,46.2997],[21.1016,46.2618],[21.0706,46.253],[21.0625,46.2432],[21.0353,46.2489],[21.0224,46.2657],[20.9916,46.2586],[20.9507,46.2633],[20.9439,46.2771],[20.9243,46.275],[20.9162,46.2614],[20.8894,46.2707],[20.8726,46.2864],[20.7911,46.272],[20.7761,46.2741],[20.7491,46.2885],[20.76,46.3177],[20.7586,46.3497],[20.7392,46.3837],[20.6926,46.3787],[20.6825,46.3503],[20.6255,46.3543],[20.6239,46.3499],[20.5773,46.3659],[20.5478,46.3923],[20.5708,46.4067],[20.582,46.4063],[20.5812,46.4525],[20.6058,46.4579],[20.6002,46.4783],[20.6149,46.527],[20.6119,46.5362],[20.5847,46.5433],[20.5717,46.5554],[20.5798,46.5656],[20.5772,46.6392],[20.5704,46.6425],[20.5774,46.6782],[20.591,46.6784],[20.5804,46.7238],[20.5967,46.7571],[20.5636,46.7749],[20.5067,46.7745],[20.4519,46.8111],[20.4216,46.8029],[20.4064,46.8579],[20.4566,46.8963],[20.5123,46.8947],[20.5411,46.9033],[20.5494,46.9168],[20.5779,46.9121],[20.5963,46.9176],[20.6403,46.9],[20.672,46.9142],[20.6904,46.9107],[20.702,46.9163],[20.7237,46.9393],[20.7214,46.9745],[20.7075,46.9779],[20.7148,46.999],[20.704,47.0062],[20.7077,47.0325],[20.7241,47.0315],[20.7274,47.0422],[20.7551,47.0524],[20.7577,47.0359],[20.8069,47.0361],[20.8092,47.0483],[20.836,47.0562],[20.8485,47.074],[20.8531,47.0897],[20.8407,47.1077],[20.8433,47.1176],[20.8656,47.1211],[20.846,47.1482],[20.8939,47.1735],[20.9099,47.1733],[20.931,47.1873],[20.9445,47.1871],[20.9755,47.2302],[20.9975,47.2314],[21.019,47.225],[21.0508,47.1913],[21.0637,47.1944],[21.064,47.2071],[21.1267,47.1733],[21.1987,47.1668],[21.2287,47.1491],[21.3013,47.1517],[21.2925,47.1329],[21.2999,47.1196],[21.2847,47.1117],[21.2916,47.0874],[21.2336,47.0579],[21.2434,47.0346],[21.2301,47.0205],[21.2472,47.0081],[21.355,46.9781],[21.4111,46.9777],[21.4256,46.9678],[21.4384,46.9703],[21.4435,46.9542],[21.4707,46.9481],[21.4804,46.9396],[21.4979,46.9529],[21.5661,46.96],[21.5577,46.9788],[21.5672,47.0008],[21.6023,46.9966],[21.6232,47.009],[21.658,47.0234]]]}},
{"id":"HU-BZ","type":"Feature","properties":{"code":"BO","name":"Borsod-Abaúj-Zemplén"},"geometry":{"type":"Polygon","coordinates":[[[22.1201,48.3784],[22.1058,48.3595],[22.1084,48.349],[22.0824,48.3248],[22.092,48.3078],[22.0674,48.3098],[22.0679,48.2995],[22.0136,48.2965],[22.0126,48.3096],[21.983,48.2916],[21.976,48.282],[21.9458,48.258],[21.9261,48.2501],[21.9192,48.2391],[21.8959,48.2455],[21.8737,48.2368],[21.8511,48.2396],[21.8411,48.2238],[21.8253,48.232],[21.7996,48.2247],[21.7846,48.2032],[21.7512,48.1907],[21.752,48.2037],[21.7211,48.1904],[21.7119,48.1956],[21.6654,48.1911],[21.612,48.1952],[21.5771,48.2089],[21.516,48.1855],[21.52,48.1757],[21.4789,48.1803],[21.4697,48.1666],[21.4555,48.1789],[21.4419,48.1784],[21.4227,48.1577],[21.4279,48.1366],[21.4134,48.1223],[21.4218,48.1074],[21.4494,48.091],[21.4362,48.0778],[21.4357,48.0476],[21.4121,48.0527],[21.4063,48.0335],[21.3528,48.0334],[21.3354,48.0218],[21.2951,48.0391],[21.2651,48.0385],[21.2534,48.055],[21.2231,48.0391],[21.2182,48.0228],[21.1911,48.0292],[21.1691,48.0262],[21.172,48.0396],[21.128,48.0385],[21.0779,48.0052],[21.121,47.9614],[21.1102,47.9312],[21.091,47.9203],[21.1244,47.913],[21.0827,47.891],[21.0828,47.8645],[21.0551,47.853],[21.0784,47.8198],[21.0673,47.8088],[21.0648,47.7912],[21.0488,47.7769],[21.0426,47.7525],[21.0183,47.759],[20.9982,47.7538],[20.992,47.7356],[20.9986,47.7218],[20.9488,47.7148],[20.9231,47.6951],[20.9014,47.6851],[20.8896,47.6709],[20.8508,47.6729],[20.8568,47.657],[20.8392,47.6586],[20.8277,47.6682],[20.794,47.6814],[20.7634,47.6661],[20.7701,47.6541],[20.705,47.6888],[20.6911,47.6852],[20.6391,47.6867],[20.5809,47.7104],[20.5718,47.7185],[20.5947,47.7393],[20.5296,47.7765],[20.517,47.7955],[20.5044,47.8013],[20.5003,47.8194],[20.5126,47.8377],[20.5041,47.8623],[20.4653,47.8738],[20.4478,47.8944],[20.4648,47.9096],[20.4793,47.9053],[20.5186,47.9285],[20.5135,47.9391],[20.4724,47.9532],[20.45,47.969],[20.4897,48.0228],[20.4901,48.0421],[20.4787,48.0581],[20.5047,48.0682],[20.4811,48.0919],[20.4792,48.1162],[20.4501,48.1506],[20.3877,48.1494],[20.3913,48.1367],[20.3652,48.1157],[20.358,48.0921],[20.3257,48.1084],[20.3178,48.1227],[20.3006,48.1177],[20.2872,48.1223],[20.2791,48.0975],[20.2444,48.0895],[20.2133,48.094],[20.2007,48.106],[20.1708,48.1135],[20.1628,48.1352],[20.1256,48.1433],[20.0991,48.1381],[20.0919,48.1431],[20.0866,48.1522],[20.0631,48.1547],[20.0505,48.1684],[20.0789,48.1832],[20.0887,48.1965],[20.1321,48.2232],[20.1408,48.2435],[20.1361,48.2537],[20.1779,48.2488],[20.208,48.2516],[20.2036,48.2612],[20.2291,48.2625],[20.2416,48.2807],[20.2869,48.262],[20.3132,48.265],[20.3269,48.2728],[20.3386,48.2996],[20.367,48.3179],[20.3696,48.3323],[20.4118,48.3665],[20.4051,48.382],[20.4196,48.3951],[20.4189,48.4206],[20.4508,48.4476],[20.4721,48.456],[20.4661,48.4647],[20.4861,48.4732],[20.4968,48.4878],[20.5095,48.4896],[20.5123,48.5136],[20.5039,48.5303],[20.5201,48.5373],[20.5379,48.5278],[20.5493,48.5444],[20.5874,48.5346],[20.659,48.5609],[20.6829,48.5608],[20.7163,48.5704],[20.7333,48.5658],[20.8465,48.5841],[20.8485,48.5643],[20.8675,48.5521],[20.9191,48.5583],[20.9353,48.5387],[20.9575,48.5338],[20.9587,48.5231],[20.9829,48.5179],[21.0153,48.5328],[21.0664,48.5269],[21.0946,48.5177],[21.101,48.4988],[21.1328,48.4942],[21.1506,48.5168],[21.173,48.5233],[21.2097,48.5279],[21.2216,48.5381],[21.2403,48.5399],[21.2681,48.5262],[21.3066,48.5234],[21.3172,48.5331],[21.322,48.5618],[21.3788,48.5592],[21.4005,48.5644],[21.4163,48.5596],[21.424,48.5799],[21.4412,48.5861],[21.4508,48.5756],[21.488,48.5592],[21.5004,48.5608],[21.5165,48.5502],[21.5162,48.5397],[21.5435,48.5082],[21.5619,48.5118],[21.5798,48.5042],[21.5935,48.5145],[21.6137,48.5105],[21.6237,48.4929],[21.6233,48.4689],[21.6628,48.417],[21.6641,48.3967],[21.7049,48.3825],[21.7035,48.3704],[21.7144,48.3549],[21.7687,48.3401],[21.8017,48.3416],[21.8247,48.332],[21.8351,48.3357],[21.8395,48.3648],[21.8805,48.3625],[21.9292,48.3713],[21.9498,48.3786],[21.9871,48.3763],[22.0296,48.3925],[22.0576,48.3775],[22.078,48.3865],[22.0883,48.3722],[22.1201,48.3784]]]}},
{"id":"HU-BU","type":"Feature","properties":{"code":"BP","name":"Budapest"},"geometry":{"type":"Polygon","coordinates":[[[19.1095,47.6105],[19.1184,47.6006],[19.1419,47.5973],[19.155,47.578],[19.1754,47.5643],[19.1624,47.5592],[19.1926,47.5395],[19.2105,47.5403],[19.2216,47.5324],[19.2462,47.537],[19.2649,47.5084],[19.3199,47.5153],[19.3156,47.4928],[19.3354,47.4635],[19.3022,47.4567],[19.2818,47.4357],[19.2664,47.4378],[19.2069,47.3954],[19.1802,47.3609],[19.1501,47.3566],[19.1403,47.3493],[19.0978,47.3785],[19.1048,47.3863],[19.0833,47.4043],[19.0319,47.3823],[19.0207,47.3911],[18.9577,47.3752],[18.9513,47.3919],[18.9622,47.3999],[18.9574,47.4196],[18.9764,47.4316],[18.9824,47.4613],[18.9633,47.4826],[18.9472,47.4825],[18.936,47.4916],[18.9338,47.5069],[18.9405,47.5511],[18.9295,47.5719],[18.9506,47.5794],[18.9773,47.5732],[18.9896,47.5851],[19.0343,47.587],[19.0255,47.6046],[19.0426,47.6105],[19.0779,47.6074],[19.1095,47.6105]]]}},
{"id":"HU-CS","type":"Feature","properties":{"code":"NG","name":"Csongrád-Csanád"},"geometry":{"type":"Polygon","coordinates":[[[20.7761,46.2741],[20.751,46.2469],[20.7602,46.2044],[20.7297,46.2069],[20.7142,46.1646],[20.6775,46.1427],[20.6564,46.15],[20.6397,46.1256],[20.5453,46.1785],[20.4998,46.1914],[20.4953,46.1693],[20.4642,46.1449],[20.4365,46.1432],[20.4001,46.1575],[20.381,46.1588],[20.3674,46.1497],[20.3544,46.169],[20.3128,46.1487],[20.2885,46.1452],[20.2552,46.1159],[20.2082,46.1346],[20.2072,46.1418],[20.1813,46.1587],[20.1399,46.1445],[20.0923,46.1727],[20.0648,46.1451],[20.0376,46.1464],[20.0244,46.1702],[19.9321,46.1752],[19.9123,46.1634],[19.8535,46.1494],[19.8178,46.1279],[19.7604,46.146],[19.7322,46.1699],[19.7179,46.1697],[19.6965,46.1873],[19.6787,46.2212],[19.6357,46.2639],[19.6904,46.3046],[19.6626,46.3295],[19.655,46.3464],[19.721,46.361],[19.7431,46.3491],[19.8185,46.3894],[19.8566,46.3716],[19.88,46.3853],[19.9003,46.42],[19.8828,46.4441],[19.8996,46.4611],[19.8937,46.4804],[19.8482,46.511],[19.8081,46.5058],[19.7788,46.5309],[19.8897,46.5791],[19.9419,46.5493],[19.994,46.5913],[19.9886,46.603],[19.9941,46.6243],[19.9806,46.637],[20.0113,46.6957],[19.968,46.7279],[20.0249,46.7813],[20.0617,46.8042],[20.066,46.7901],[20.0832,46.7851],[20.0906,46.7623],[20.1076,46.7665],[20.1019,46.7807],[20.1114,46.7848],[20.1742,46.753],[20.2006,46.7816],[20.2332,46.7983],[20.2567,46.794],[20.2922,46.7674],[20.3284,46.7609],[20.3427,46.7672],[20.3496,46.7846],[20.4015,46.7855],[20.4216,46.8029],[20.4519,46.8111],[20.5067,46.7745],[20.5636,46.7749],[20.5967,46.7571],[20.5804,46.7238],[20.591,46.6784],[20.5774,46.6782],[20.5704,46.6425],[20.5772,46.6392],[20.5798,46.5656],[20.5717,46.5554],[20.5847,46.5433],[20.6119,46.5362],[20.6149,46.527],[20.6002,46.4783],[20.6058,46.4579],[20.5812,46.4525],[20.582,46.4063],[20.5708,46.4067],[20.5478,46.3923],[20.5773,46.3659],[20.6239,46.3499],[20.6255,46.3543],[20.6825,46.3503],[20.6926,46.3787],[20.7392,46.3837],[20.7586,46.3497],[20.76,46.3177],[20.7491,46.2885],[20.7761,46.2741]]]}},
{"id":"HU-FE","type":"Feature","properties":{"code":"FE","name":"Fejér"},"geometry":{"type":"Polygon","coordinates":[[[18.9233,46.8579],[18.86,46.848],[18.8757,46.838],[18.8619,46.8213],[18.7955,46.7889],[18.7944,46.7708],[18.7472,46.7672],[18.7171,46.7513],[18.7311,46.7282],[18.6779,46.6949],[18.6519,46.6891],[18.6282,46.6911],[18.6314,46.7066],[18.6028,46.7458],[18.5732,46.759],[18.5551,46.7833],[18.5054,46.7644],[18.5115,46.7468],[18.4657,46.7413],[18.4259,46.7482],[18.4253,46.7704],[18.4156,46.7815],[18.4217,46.79],[18.4066,46.805],[18.4046,46.7701],[18.3876,46.7758],[18.3805,46.7908],[18.3649,46.7777],[18.3376,46.7894],[18.3146,46.7908],[18.3057,46.7971],[18.3118,46.8105],[18.3056,46.8183],[18.2497,46.7892],[18.2488,46.7836],[18.2097,46.7781],[18.1954,46.8195],[18.2071,46.8356],[18.1973,46.864],[18.1876,46.8726],[18.2131,46.8875],[18.1919,46.9307],[18.161,46.9584],[18.2056,46.9848],[18.2122,46.9987],[18.2331,47.0073],[18.2349,47.022],[18.2114,47.052],[18.2032,47.0784],[18.2337,47.0949],[18.2223,47.1061],[18.2244,47.1236],[18.2115,47.1566],[18.2233,47.1792],[18.2235,47.2156],[18.2166,47.2245],[18.1968,47.2249],[18.1747,47.2393],[18.1573,47.2652],[18.1442,47.2651],[18.1066,47.2488],[18.0749,47.2804],[18.0572,47.2773],[18.0473,47.3046],[18.0657,47.3195],[18.0443,47.3217],[18.0363,47.3343],[18.0535,47.3508],[18.0864,47.3579],[18.079,47.3719],[18.1067,47.3994],[18.1039,47.4198],[18.1194,47.4286],[18.1153,47.445],[18.1387,47.4525],[18.1528,47.4401],[18.1942,47.4523],[18.1877,47.4765],[18.2422,47.4585],[18.2477,47.4356],[18.2746,47.4265],[18.2931,47.4072],[18.3121,47.4006],[18.3299,47.4152],[18.343,47.4111],[18.3759,47.4179],[18.3503,47.4369],[18.3736,47.4599],[18.392,47.4501],[18.4205,47.4723],[18.4257,47.4848],[18.4506,47.4926],[18.4871,47.5121],[18.4742,47.526],[18.4919,47.5283],[18.4848,47.5503],[18.5256,47.5554],[18.535,47.5521],[18.5479,47.5696],[18.5743,47.5744],[18.6149,47.5645],[18.6236,47.5712],[18.6619,47.5704],[18.6888,47.5781],[18.6991,47.5634],[18.6911,47.5531],[18.6948,47.5319],[18.7274,47.4919],[18.7519,47.4916],[18.7849,47.4578],[18.7886,47.4278],[18.7573,47.403],[18.8167,47.3476],[18.8619,47.3204],[18.8784,47.3011],[18.8731,47.2913],[18.8802,47.2789],[18.9197,47.2735],[18.9083,47.2296],[18.8823,47.1974],[18.8737,47.1514],[18.8999,47.0744],[18.9474,47.0471],[18.9669,47.0284],[18.9504,46.9799],[18.9658,46.9356],[18.9233,46.8579]]]}},
{"id":"HU-HB","type":"Feature","properties":{"code":"HB","name":"Hajdú-Bihar"},"geometry":{"type":"Polygon","coordinates":[[[22.1285,47.5969],[22.1279,47.5883],[22.0955,47.56],[22.0775,47.5611],[22.0548,47.5488],[22.0698,47.5366],[22.0606,47.5285],[22.0447,47.5388],[22.02,47.5159],[22.0064,47.4758],[22.0245,47.442],[22.0333,47.4118],[22.0087,47.3764],[21.9904,47.3803],[21.9388,47.373],[21.8781,47.2875],[21.8868,47.2732],[21.8504,47.2369],[21.8468,47.2233],[21.8573,47.2176],[21.8573,47.1876],[21.8162,47.1713],[21.7901,47.1229],[21.7905,47.1068],[21.7653,47.108],[21.7251,47.0978],[21.7138,47.0738],[21.6809,47.0453],[21.6485,47.0408],[21.658,47.0234],[21.6232,47.009],[21.6023,46.9966],[21.5672,47.0008],[21.5577,46.9788],[21.5661,46.96],[21.4979,46.9529],[21.4804,46.9396],[21.4707,46.9481],[21.4435,46.9542],[21.4384,46.9703],[21.4256,46.9678],[21.4111,46.9777],[21.355,46.9781],[21.2472,47.0081],[21.2301,47.0205],[21.2434,47.0346],[21.2336,47.0579],[21.2916,47.0874],[21.2847,47.1117],[21.2999,47.1196],[21.2925,47.1329],[21.3013,47.1517],[21.2287,47.1491],[21.1987,47.1668],[21.1267,47.1733],[21.064,47.2071],[21.0637,47.1944],[21.0508,47.1913],[21.019,47.225],[20.9975,47.2314],[20.9755,47.2302],[21.0196,47.2517],[21.0312,47.3424],[20.993,47.4712],[21.0047,47.4897],[20.9879,47.507],[20.989,47.5661],[20.972,47.5846],[20.9431,47.5955],[20.8901,47.5811],[20.8413,47.5961],[20.8223,47.6383],[20.8277,47.6682],[20.8392,47.6586],[20.8568,47.657],[20.8508,47.6729],[20.8896,47.6709],[20.9014,47.6851],[20.9231,47.6951],[20.9488,47.7148],[20.9986,47.7218],[20.992,47.7356],[20.9982,47.7538],[21.0183,47.759],[21.0426,47.7525],[21.0488,47.7769],[21.0648,47.7912],[21.0673,47.8088],[21.0784,47.8198],[21.0551,47.853],[21.0828,47.8645],[21.0827,47.891],[21.1244,47.913],[21.091,47.9203],[21.1102,47.9312],[21.121,47.9614],[21.1453,47.9541],[21.1545,47.9642],[21.1938,47.9575],[21.2302,47.9412],[21.2356,47.9324],[21.2592,47.9256],[21.271,47.9035],[21.32,47.9194],[21.352,47.9219],[21.374,47.9164],[21.4249,47.9217],[21.4291,47.9276],[21.4958,47.9243],[21.5169,47.9418],[21.564,47.929],[21.555,47.9162],[21.5546,47.8896],[21.5643,47.8876],[21.5421,47.8179],[21.5419,47.7911],[21.5853,47.7729],[21.5999,47.7724],[21.6376,47.7277],[21.681,47.7237],[21.7052,47.7308],[21.7186,47.7063],[21.7713,47.704],[21.7665,47.6878],[21.7952,47.6838],[21.8021,47.6729],[21.8313,47.6664],[21.8552,47.6746],[21.8596,47.6841],[21.8843,47.6982],[21.8876,47.7244],[21.924,47.7314],[21.9655,47.7059],[21.9852,47.7025],[21.9801,47.6751],[22.009,47.6634],[22.0014,47.6438],[22.0191,47.6209],[22.0406,47.6329],[22.0633,47.6693],[22.0734,47.6707],[22.102,47.6586],[22.1163,47.6048],[22.1285,47.5969]]]}},
{"id":"HU-HE","type":"Feature","properties":{"code":"HE","name":"Heves"},"geometry":{"type":"Polygon","coordinates":[[[20.7701,47.6541],[20.7582,47.6414],[20.7337,47.6419],[20.7146,47.6325],[20.7159,47.6079],[20.6968,47.599],[20.7084,47.5865],[20.7027,47.5744],[20.6748,47.5663],[20.6652,47.5516],[20.6085,47.5325],[20.5762,47.5133],[20.5206,47.5002],[20.5011,47.4669],[20.4835,47.4621],[20.4596,47.4697],[20.4557,47.4809],[20.4317,47.4771],[20.4435,47.4412],[20.4292,47.43],[20.4005,47.422],[20.3776,47.427],[20.3799,47.4462],[20.35,47.4389],[20.3343,47.4413],[20.2883,47.4855],[20.3021,47.5078],[20.2879,47.539],[20.2534,47.5471],[20.2569,47.5548],[20.2286,47.5618],[20.2058,47.608],[20.167,47.605],[20.1003,47.5895],[20.1325,47.5651],[20.1099,47.5533],[20.0209,47.5804],[20.0065,47.5936],[20.0185,47.6157],[20.006,47.6277],[20.0042,47.6598],[19.9957,47.673],[19.9715,47.6766],[19.9634,47.669],[19.9144,47.655],[19.8753,47.6671],[19.8695,47.6302],[19.8443,47.6226],[19.8381,47.6087],[19.8176,47.5949],[19.7526,47.6208],[19.7056,47.6078],[19.7016,47.5833],[19.6852,47.5907],[19.6661,47.5882],[19.6527,47.5978],[19.6567,47.6141],[19.6385,47.6462],[19.6194,47.6499],[19.5907,47.688],[19.606,47.713],[19.5711,47.7363],[19.6142,47.7624],[19.6267,47.7566],[19.6464,47.7803],[19.6318,47.8062],[19.6525,47.8132],[19.6811,47.8112],[19.6872,47.8193],[19.714,47.8248],[19.7288,47.8441],[19.7611,47.8653],[19.7673,47.9028],[19.7766,47.9044],[19.828,47.8733],[19.8444,47.8785],[19.8526,47.8939],[19.838,47.9034],[19.808,47.9095],[19.8038,47.9226],[19.8723,47.9304],[19.8971,47.9172],[19.9264,47.9178],[19.9413,47.942],[19.9672,47.9515],[19.9644,47.9717],[19.9855,47.9791],[19.9754,47.9893],[19.9815,47.9978],[20.0302,48.0096],[20.0134,48.021],[20.0073,48.0519],[19.971,48.0764],[19.9685,48.0895],[20.0372,48.1056],[20.0447,48.122],[20.0706,48.1201],[20.0775,48.1357],[20.0919,48.1431],[20.0991,48.1381],[20.1256,48.1433],[20.1628,48.1352],[20.1708,48.1135],[20.2007,48.106],[20.2133,48.094],[20.2444,48.0895],[20.2791,48.0975],[20.2872,48.1223],[20.3006,48.1177],[20.3178,48.1227],[20.3257,48.1084],[20.358,48.0921],[20.3652,48.1157],[20.3913,48.1367],[20.3877,48.1494],[20.4501,48.1506],[20.4792,48.1162],[20.4811,48.0919],[20.5047,48.0682],[20.4787,48.0581],[20.4901,48.0421],[20.4897,48.0228],[20.45,47.969],[20.4724,47.9532],[20.5135,47.9391],[20.5186,47.9285],[20.4793,47.9053],[20.4648,47.9096],[20.4478,47.8944],[20.4653,47.8738],[20.5041,47.8623],[20.5126,47.8377],[20.5003,47.8194],[20.5044,47.8013],[20.517,47.7955],[20.5296,47.7765],[20.5947,47.7393],[20.5718,47.7185],[20.5809,47.7104],[20.6391,47.6867],[20.6911,47.6852],[20.705,47.6888],[20.7701,47.6541]]]}},
{"id":"HU-JN","type":"Feature","properties":{"code":"SZ","name":"Jász-Nagykun-Szolnok"},"geometry":{"type":"Polygon","coordinates":[[[20.8277,47.6682],[20.8223,47.6383],[20.8413,47.5961],[20.8901,47.5811],[20.9431,47.5955],[20.972,47.5846],[20.989,47.5661],[20.9879,47.507],[21.0047,47.4897],[20.993,47.4712],[21.0312,47.3424],[21.0196,47.2517],[20.9755,47.2302],[20.9445,47.1871],[20.931,47.1873],[20.9099,47.1733],[20.8939,47.1735],[20.846,47.1482],[20.8656,47.1211],[20.8433,47.1176],[20.8407,47.1077],[20.8531,47.0897],[20.8485,47.074],[20.836,47.0562],[20.8092,47.0483],[20.8069,47.0361],[20.7577,47.0359],[20.7551,47.0524],[20.7274,47.0422],[20.7241,47.0315],[20.7077,47.0325],[20.704,47.0062],[20.7148,46.999],[20.7075,46.9779],[20.7214,46.9745],[20.7237,46.9393],[20.702,46.9163],[20.6904,46.9107],[20.672,46.9142],[20.6403,46.9],[20.5963,46.9176],[20.5779,46.9121],[20.5494,46.9168],[20.5411,46.9033],[20.5123,46.8947],[20.4566,46.8963],[20.4064,46.8579],[20.4216,46.8029],[20.4015,46.7855],[20.3496,46.7846],[20.3427,46.7672],[20.3284,46.7609],[20.2922,46.7674],[20.2567,46.794],[20.2332,46.7983],[20.2006,46.7816],[20.1742,46.753],[20.1114,46.7848],[20.1019,46.7807],[20.1076,46.7665],[20.0906,46.7623],[20.0832,46.7851],[20.066,46.7901],[20.0617,46.8042],[20.0614,46.8119],[20.0444,46.8239],[20.035,46.7969],[20.0054,46.8103],[20.0139,46.8366],[20.007,46.8501],[20.0364,46.8665],[20.0468,46.8598],[20.0593,46.879],[20.0883,46.8768],[20.1232,46.895],[20.1257,46.905],[20.1608,46.9171],[20.1438,46.9386],[20.1074,46.9419],[20.1073,46.9526],[20.1346,46.9614],[20.13,46.976],[20.1403,46.9831],[20.1305,46.9929],[20.094,47.0069],[20.1115,47.0334],[20.0891,47.0418],[20.0794,47.0759],[20.0543,47.106],[20.048,47.1254],[20.0635,47.1507],[20.1005,47.1811],[20.0797,47.2203],[20.0447,47.2383],[19.9878,47.252],[20.018,47.3029],[19.9911,47.33],[19.989,47.3472],[19.9588,47.3698],[19.913,47.3842],[19.8298,47.4278],[19.7992,47.4604],[19.7483,47.4897],[19.7901,47.532],[19.765,47.5304],[19.7368,47.5349],[19.7027,47.5164],[19.6517,47.547],[19.6505,47.5618],[19.6661,47.5882],[19.6852,47.5907],[19.7016,47.5833],[19.7056,47.6078],[19.7526,47.6208],[19.8176,47.5949],[19.8381,47.6087],[19.8443,47.6226],[19.8695,47.6302],[19.8753,47.6671],[19.9144,47.655],[19.9634,47.669],[19.9715,47.6766],[19.9957,47.673],[20.0042,47.6598],[20.006,47.6277],[20.0185,47.6157],[20.0065,47.5936],[20.0209,47.5804],[20.1099,47.5533],[20.1325,47.5651],[20.1003,47.5895],[20.167,47.605],[20.2058,47.608],[20.2286,47.5618],[20.2569,47.5548],[20.2534,47.5471],[20.2879,47.539],[20.3021,47.5078],[20.2883,47.4855],[20.3343,47.4413],[20.35,47.4389],[20.3799,47.4462],[20.3776,47.427],[20.4005,47.422],[20.4292,47.43],[20.4435,47.4412],[20.4317,47.4771],[20.4557,47.4809],[20.4596,47.4697],[20.4835,47.4621],[20.5011,47.4669],[20.5206,47.5002],[20.5762,47.5133],[20.6085,47.5325],[20.6652,47.5516],[20.6748,47.5663],[20.7027,47.5744],[20.7084,47.5865],[20.6968,47.599],[20.7159,47.6079],[20.7146,47.6325],[20.7337,47.6419],[20.7582,47.6414],[20.7701,47.6541],[20.7634,47.6661],[20.794,47.6814],[20.8277,47.6682]]]}},
{"id":"HU-KE","type":"Feature","properties":{"code":"KO","name":"Komárom-Esztergom"},"geometry":{"type":"Polygon","coordinates":[[[18.4506,47.4926],[18.4257,47.4848],[18.4205,47.4723],[18.392,47.4501],[18.3736,47.4599],[18.3503,47.4369],[18.3759,47.4179],[18.343,47.4111],[18.3299,47.4152],[18.3121,47.4006],[18.2931,47.4072],[18.2746,47.4265],[18.2477,47.4356],[18.2422,47.4585],[18.1877,47.4765],[18.1942,47.4523],[18.1528,47.4401],[18.1387,47.4525],[18.1153,47.445],[18.1194,47.4286],[18.1039,47.4198],[18.1067,47.3994],[18.079,47.3719],[18.0864,47.3579],[18.0535,47.3508],[18.0363,47.3343],[18.0175,47.3393],[17.9616,47.3337],[17.9592,47.3494],[17.931,47.3622],[17.9488,47.3666],[17.9492,47.3779],[17.9341,47.3865],[17.9064,47.3823],[17.8788,47.3922],[17.9009,47.4252],[17.8714,47.4567],[17.8868,47.4629],[17.8879,47.4904],[17.9109,47.5047],[17.8842,47.5301],[17.883,47.5486],[17.9089,47.5411],[17.9262,47.5502],[17.9049,47.5598],[17.9204,47.5806],[17.9313,47.6169],[17.9075,47.6211],[17.8886,47.6372],[17.9026,47.6716],[17.8943,47.6876],[17.9046,47.7014],[17.8953,47.7398],[17.948,47.7449],[17.9737,47.758],[18.0048,47.7467],[18.0317,47.7569],[18.076,47.7568],[18.1741,47.7414],[18.2278,47.7422],[18.2927,47.7315],[18.4175,47.7531],[18.4534,47.7648],[18.4975,47.7524],[18.5424,47.7648],[18.6471,47.7591],[18.6835,47.7676],[18.7225,47.7854],[18.7397,47.8129],[18.8071,47.8222],[18.8438,47.8175],[18.9011,47.8007],[18.9099,47.7725],[18.9201,47.7647],[18.9189,47.7391],[18.941,47.7252],[18.9211,47.7104],[18.8987,47.7215],[18.851,47.7133],[18.8472,47.6928],[18.862,47.6706],[18.8622,47.6522],[18.8165,47.6564],[18.7768,47.6715],[18.7778,47.6611],[18.7475,47.6612],[18.7808,47.6393],[18.7411,47.6233],[18.7204,47.6092],[18.7203,47.5952],[18.6888,47.5781],[18.6619,47.5704],[18.6236,47.5712],[18.6149,47.5645],[18.5743,47.5744],[18.5479,47.5696],[18.535,47.5521],[18.5256,47.5554],[18.4848,47.5503],[18.4919,47.5283],[18.4742,47.526],[18.4871,47.5121],[18.4506,47.4926]]]}},
{"id":"HU-NO","type":"Feature","properties":{"code":"NG","name":"Nógrád"},"geometry":{"type":"Polygon","coordinates":[[[20.0505,48.1684],[20.0631,48.1547],[20.0866,48.1522],[20.0919,48.1431],[20.0775,48.1357],[20.0706,48.1201],[20.0447,48.122],[20.0372,48.1056],[19.9685,48.0895],[19.971,48.0764],[20.0073,48.0519],[20.0134,48.021],[20.0302,48.0096],[19.9815,47.9978],[19.9754,47.9893],[19.9855,47.9791],[19.9644,47.9717],[19.9672,47.9515],[19.9413,47.942],[19.9264,47.9178],[19.8971,47.9172],[19.8723,47.9304],[19.8038,47.9226],[19.808,47.9095],[19.838,47.9034],[19.8526,47.8939],[19.8444,47.8785],[19.828,47.8733],[19.7766,47.9044],[19.7673,47.9028],[19.7611,47.8653],[19.7288,47.8441],[19.714,47.8248],[19.6872,47.8193],[19.6811,47.8112],[19.6525,47.8132],[19.6318,47.8062],[19.6464,47.7803],[19.6267,47.7566],[19.6142,47.7624],[19.5711,47.7363],[19.5407,47.7467],[19.5161,47.7234],[19.4903,47.7141],[19.512,47.6979],[19.4795,47.6882],[19.4501,47.7264],[19.4458,47.7683],[19.4139,47.771],[19.4271,47.7963],[19.4454,47.8023],[19.4241,47.817],[19.3915,47.8217],[19.3584,47.8187],[19.3238,47.8322],[19.2301,47.8251],[19.219,47.8349],[19.1753,47.8506],[19.1649,47.8424],[19.1087,47.8492],[19.0972,47.841],[19.0803,47.8425],[19.0638,47.8593],[19.0543,47.8556],[19.0424,47.8799],[19.009,47.893],[18.9425,47.9383],[18.9487,47.9568],[18.9921,47.9778],[19.0045,47.9937],[19.0081,48.0162],[18.9895,48.0293],[18.975,48.0236],[18.9585,48.0298],[18.9308,48.0578],[18.9839,48.0562],[19.0179,48.0775],[19.036,48.0649],[19.0606,48.0589],[19.0831,48.0717],[19.1075,48.0644],[19.1353,48.0733],[19.1891,48.0591],[19.2203,48.0635],[19.2428,48.054],[19.2556,48.07],[19.2783,48.0742],[19.3001,48.0873],[19.3737,48.087],[19.3865,48.092],[19.4009,48.0831],[19.4241,48.0875],[19.4448,48.1013],[19.4565,48.0904],[19.4916,48.1001],[19.4967,48.1398],[19.5142,48.1515],[19.5093,48.1727],[19.5302,48.1901],[19.5282,48.203],[19.5825,48.2177],[19.6333,48.2501],[19.652,48.2389],[19.6728,48.2401],[19.6827,48.2141],[19.6978,48.2047],[19.7275,48.2033],[19.7389,48.2157],[19.7639,48.2141],[19.8091,48.1843],[19.7866,48.1653],[19.7996,48.1542],[19.8232,48.1704],[19.8465,48.1631],[19.8632,48.1706],[19.9011,48.1668],[19.9161,48.1478],[19.9033,48.1256],[19.941,48.1338],[19.9541,48.1523],[19.9671,48.1538],[19.9782,48.166],[19.9911,48.1632],[20.0057,48.1723],[20.0324,48.1773],[20.0505,48.1684]]]}},
{"id":"HU-PE","type":"Feature","properties":{"code":"PE","name":"Pest"},"geometry":{"type":"Polygon","coordinates":[[[18.9308,48.0578],[18.9585,48.0298],[18.975,48.0236],[18.9895,48.0293],[19.0081,48.0162],[19.0045,47.9937],[18.9921,47.9778],[18.9487,47.9568],[18.9425,47.9383],[19.009,47.893],[19.0424,47.8799],[19.0543,47.8556],[19.0638,47.8593],[19.0803,47.8425],[19.0972,47.841],[19.1087,47.8492],[19.1649,47.8424],[19.1753,47.8506],[19.219,47.8349],[19.2301,47.8251],[19.3238,47.8322],[19.3584,47.8187],[19.3915,47.8217],[19.4241,47.817],[19.4454,47.8023],[19.4271,47.7963],[19.4139,47.771],[19.4458,47.7683],[19.4501,47.7264],[19.4795,47.6882],[19.512,47.6979],[19.4903,47.7141],[19.5161,47.7234],[19.5407,47.7467],[19.5711,47.7363],[19.606,47.713],[19.5907,47.688],[19.6194,47.6499],[19.6385,47.6462],[19.6567,47.6141],[19.6527,47.5978],[19.6661,47.5882],[19.6505,47.5618],[19.6517,47.547],[19.7027,47.5164],[19.7368,47.5349],[19.765,47.5304],[19.7901,47.532],[19.7483,47.4897],[19.7992,47.4604],[19.8298,47.4278],[19.913,47.3842],[19.9588,47.3698],[19.989,47.3472],[19.9911,47.33],[20.018,47.3029],[19.9878,47.252],[20.0447,47.2383],[20.0797,47.2203],[20.1005,47.1811],[20.0635,47.1507],[20.048,47.1254],[20.0543,47.106],[20.0794,47.0759],[20.0891,47.0418],[20.1115,47.0334],[20.094,47.0069],[20.0686,47.0183],[19.9977,46.9989],[19.9821,46.9806],[19.9834,46.9623],[19.9293,46.9732],[19.8758,46.9959],[19.84,46.9439],[19.8308,46.9434],[19.8018,46.9552],[19.78,46.9493],[19.6868,46.9967],[19.6421,47.0313],[19.619,47.0823],[19.5861,47.1214],[19.5616,47.1059],[19.5053,47.1202],[19.4757,47.0539],[19.4271,47.0636],[19.3793,47.0327],[19.3359,46.996],[19.2948,47.036],[19.316,47.0688],[19.3463,47.0934],[19.2868,47.1341],[19.2686,47.1365],[19.2572,47.1265],[19.2307,47.1216],[19.2082,47.0863],[19.1992,47.0958],[19.1625,47.0968],[19.136,47.0719],[19.1011,47.064],[19.0927,47.0434],[19.0676,47.034],[19.025,47.0482],[19.0227,47.0539],[18.9562,47.0641],[18.9749,47.0424],[18.9669,47.0284],[18.9474,47.0471],[18.8999,47.0744],[18.8737,47.1514],[18.8823,47.1974],[18.9083,47.2296],[18.9197,47.2735],[18.8802,47.2789],[18.8731,47.2913],[18.8784,47.3011],[18.8619,47.3204],[18.8167,47.3476],[18.7573,47.403],[18.7886,47.4278],[18.7849,47.4578],[18.7519,47.4916],[18.7274,47.4919],[18.6948,47.5319],[18.6911,47.5531],[18.6991,47.5634],[18.6888,47.5781],[18.7203,47.5952],[18.7204,47.6092],[18.7411,47.6233],[18.7808,47.6393],[18.7475,47.6612],[18.7778,47.6611],[18.7768,47.6715],[18.8165,47.6564],[18.8622,47.6522],[18.862,47.6706],[18.8472,47.6928],[18.851,47.7133],[18.8987,47.7215],[18.9211,47.7104],[18.941,47.7252],[18.9189,47.7391],[18.9201,47.7647],[18.9099,47.7725],[18.9011,47.8007],[18.8438,47.8175],[18.8526,47.8263],[18.8323,47.8353],[18.8238,47.8505],[18.7939,47.8647],[18.7641,47.8704],[18.7683,47.9086],[18.7605,47.9191],[18.7769,47.932],[18.7597,47.9737],[18.7749,47.9874],[18.8036,47.9848],[18.8182,47.9935],[18.8186,48.0221],[18.8241,48.0377],[18.8453,48.0516],[18.8561,48.0468],[18.8844,48.0497],[18.889,48.0594],[18.9086,48.0526],[18.9308,48.0578]],[[19.1095,47.6105],[19.0779,47.6074],[19.0426,47.6105],[19.0255,47.6046],[19.0343,47.587],[18.9896,47.5851],[18.9773,47.5732],[18.9506,47.5794],[18.9295,47.5719],[18.9405,47.5511],[18.9338,47.5069],[18.936,47.4916],[18.9472,47.4825],[18.9633,47.4826],[18.9824,47.4613],[18.9764,47.4316],[18.9574,47.4196],[18.9622,47.3999],[18.9513,47.3919],[18.9577,47.3752],[19.0207,47.3911],[19.0319,47.3823],[19.0833,47.4043],[19.1048,47.3863],[19.0978,47.3785],[19.1403,47.3493],[19.1501,47.3566],[19.1802,47.3609],[19.2069,47.3954],[19.2664,47.4378],[19.2818,47.4357],[19.3022,47.4567],[19.3354,47.4635],[19.3156,47.4928],[19.3199,47.5153],[19.2649,47.5084],[19.2462,47.537],[19.2216,47.5324],[19.2105,47.5403],[19.1926,47.5395],[19.1624,47.5592],[19.1754,47.5643],[19.155,47.578],[19.1419,47.5973],[19.1184,47.6006],[19.1095,47.6105]]]}},
{"id":"HU-SO","type":"Feature","properties":{"code":"SO","name":"Somogy"},"geometry":{"type":"Polygon","coordinates":[[[18.161,46.9584],[18.1919,46.9307],[18.2131,46.8875],[18.1876,46.8726],[18.1973,46.864],[18.2071,46.8356],[18.1954,46.8195],[18.2097,46.7781],[18.1668,46.7672],[18.1712,46.7424],[18.1469,46.7437],[18.1121,46.7304],[18.1281,46.7043],[18.127,46.6766],[18.098,46.6574],[18.1054,46.6485],[18.0716,46.6213],[18.086,46.5941],[18.0721,46.5644],[18.0506,46.5547],[18.0374,46.5597],[18.0394,46.4953],[18.0686,46.4349],[18.0665,46.4241],[18.0391,46.4195],[18.021,46.4039],[18.0039,46.4005],[18.0131,46.3836],[18.0509,46.3928],[18.0638,46.3654],[18.0804,46.3679],[18.0861,46.3298],[18.0744,46.3079],[18.0525,46.2973],[18.0458,46.2932],[18.002,46.307],[17.9501,46.3052],[17.9259,46.2572],[17.9298,46.2295],[17.9175,46.2221],[17.8768,46.2242],[17.8572,46.2187],[17.8438,46.2082],[17.816,46.2109],[17.8148,46.22],[17.7861,46.2137],[17.7685,46.1999],[17.7485,46.2045],[17.7346,46.2318],[17.7152,46.2216],[17.7253,46.2071],[17.7044,46.1926],[17.7042,46.179],[17.687,46.1572],[17.6852,46.1095],[17.6646,46.1019],[17.6797,46.0904],[17.6738,46.0621],[17.6567,46.0519],[17.6291,46.044],[17.6334,46.027],[17.6554,46.006],[17.6545,45.9911],[17.6244,45.9851],[17.6441,45.9359],[17.6666,45.9394],[17.6981,45.9386],[17.6977,45.9244],[17.7226,45.9139],[17.7195,45.9044],[17.7339,45.8764],[17.7268,45.863],[17.6857,45.872],[17.6518,45.8465],[17.6217,45.9027],[17.566,45.9361],[17.5274,45.9335],[17.4345,45.9495],[17.4262,45.9263],[17.3859,45.9321],[17.3823,45.9469],[17.3441,45.9418],[17.358,45.9609],[17.3371,45.9937],[17.3324,45.9712],[17.3101,45.9669],[17.3219,45.9886],[17.2939,45.9908],[17.258,46.0133],[17.2907,46.0229],[17.2941,46.0301],[17.2543,46.0291],[17.2572,46.0457],[17.2703,46.0562],[17.2404,46.0655],[17.2351,46.0785],[17.2183,46.0816],[17.2317,46.0988],[17.2094,46.0986],[17.209,46.109],[17.1774,46.1072],[17.1739,46.129],[17.1836,46.1334],[17.1822,46.1499],[17.1591,46.1584],[17.1602,46.1692],[17.1381,46.1729],[17.126,46.1683],[17.0908,46.1906],[17.0836,46.1855],[17.0646,46.2009],[17.0105,46.2203],[16.9751,46.2241],[16.9716,46.2424],[16.9519,46.2399],[16.9262,46.2592],[16.8844,46.2755],[16.8735,46.3259],[16.9011,46.3111],[16.9344,46.3158],[16.9396,46.2903],[16.9557,46.2941],[16.9847,46.3149],[17.0133,46.3047],[17.0403,46.3159],[17.036,46.3294],[17.0584,46.3493],[17.0431,46.3879],[17.0314,46.3933],[17.0387,46.4167],[17.053,46.4172],[17.0683,46.4022],[17.083,46.4193],[17.1115,46.414],[17.1127,46.4068],[17.1395,46.4088],[17.141,46.4284],[17.1862,46.4306],[17.1892,46.4853],[17.2006,46.4847],[17.2247,46.5114],[17.2169,46.6211],[17.222,46.6659],[17.2569,46.6885],[17.2687,46.7338],[17.3634,46.7308],[17.3918,46.745],[17.4188,46.7501],[17.4886,46.7525],[17.6713,46.8136],[17.7109,46.8339],[17.8049,46.8587],[17.8499,46.8779],[17.8854,46.8763],[17.9097,46.8916],[17.9091,46.9172],[18.0603,46.965],[18.1498,46.9534],[18.161,46.9584]]]}},
{"id":"HU-GS","type":"Feature","properties":{"code":"GY","name":"Győr-Moson-Sopron"},"geometry":{"type":"Polygon","coordinates":[[[17.8953,47.7398],[17.9046,47.7014],[17.8943,47.6876],[17.9026,47.6716],[17.8886,47.6372],[17.9075,47.6211],[17.9313,47.6169],[17.9204,47.5806],[17.9049,47.5598],[17.9262,47.5502],[17.9089,47.5411],[17.883,47.5486],[17.8842,47.5301],[17.9109,47.5047],[17.8879,47.4904],[17.8868,47.4629],[17.8714,47.4567],[17.9009,47.4252],[17.8788,47.3922],[17.868,47.3801],[17.8477,47.3778],[17.8156,47.3635],[17.8275,47.3444],[17.812,47.3337],[17.8061,47.3218],[17.7644,47.3195],[17.774,47.2802],[17.7609,47.2766],[17.7514,47.2897],[17.749,47.3123],[17.7192,47.3218],[17.7085,47.3409],[17.7145,47.3551],[17.7549,47.373],[17.7585,47.3837],[17.7799,47.4099],[17.7537,47.4408],[17.7537,47.4566],[17.7352,47.4748],[17.7222,47.4621],[17.7019,47.4711],[17.6821,47.4657],[17.6636,47.4679],[17.661,47.4566],[17.6405,47.4517],[17.6356,47.462],[17.6199,47.4649],[17.6039,47.4564],[17.584,47.4734],[17.5598,47.4622],[17.5658,47.4539],[17.5527,47.4408],[17.5241,47.4551],[17.5257,47.4699],[17.5129,47.4737],[17.4932,47.4527],[17.4908,47.4361],[17.4765,47.4337],[17.4694,47.4218],[17.4301,47.4313],[17.4277,47.4515],[17.4123,47.4634],[17.406,47.4797],[17.3852,47.4833],[17.3812,47.4589],[17.3646,47.4425],[17.2872,47.4318],[17.2288,47.4382],[17.2197,47.4309],[17.1949,47.4436],[17.174,47.4317],[17.1449,47.4373],[17.1255,47.4168],[17.0675,47.4051],[17.0443,47.3964],[17.0696,47.44],[17.0529,47.4601],[16.9938,47.4233],[16.9647,47.4159],[16.9432,47.395],[16.9279,47.4113],[16.9101,47.4186],[16.8831,47.4134],[16.8655,47.424],[16.8483,47.4484],[16.81,47.4343],[16.8038,47.4431],[16.7823,47.4427],[16.7536,47.4346],[16.7137,47.4112],[16.6884,47.4225],[16.6773,47.4196],[16.6456,47.4458],[16.6613,47.4555],[16.6693,47.4735],[16.6518,47.4994],[16.6888,47.5098],[16.7151,47.5393],[16.6977,47.5469],[16.6898,47.5587],[16.6723,47.5594],[16.6637,47.5674],[16.6756,47.5782],[16.6531,47.622],[16.628,47.6279],[16.5906,47.6172],[16.5153,47.6456],[16.4876,47.6398],[16.4819,47.6498],[16.4392,47.6558],[16.4235,47.6651],[16.4434,47.6731],[16.4977,47.7019],[16.5208,47.711],[16.5413,47.7109],[16.552,47.7217],[16.5375,47.7354],[16.5484,47.7508],[16.6076,47.7607],[16.6343,47.7585],[16.6389,47.7487],[16.6575,47.7409],[16.7202,47.7325],[16.747,47.684],[16.8282,47.6825],[16.8399,47.7041],[16.8668,47.7206],[16.8728,47.6896],[16.8843,47.6881],[17.0917,47.708],[17.0715,47.727],[17.0678,47.7686],[17.0531,47.7926],[17.0751,47.8082],[17.0488,47.8277],[17.0534,47.8377],[17.0121,47.8589],[17.0193,47.868],[17.0425,47.8671],[17.0785,47.8772],[17.1021,47.8938],[17.0979,47.9063],[17.1156,47.9257],[17.0938,47.9349],[17.118,47.9601],[17.0966,47.9707],[17.1733,48.0119],[17.2023,48.0197],[17.2269,48.0163],[17.2438,48.0222],[17.254,48.0004],[17.2672,47.9964],[17.3349,47.994],[17.4284,47.9262],[17.4574,47.8841],[17.5317,47.8629],[17.5657,47.8181],[17.6098,47.8223],[17.7127,47.757],[17.7661,47.7489],[17.7837,47.7399],[17.8606,47.7465],[17.8953,47.7398]]]}},
{"id":"HU-SZ","type":"Feature","properties":{"code":"SA","name":"Szabolcs-Szatmár-Bereg"},"geometry":{"type":"Polygon","coordinates":[[[22.1285,47.5969],[22.1163,47.6048],[22.102,47.6586],[22.0734,47.6707],[22.0633,47.6693],[22.0406,47.6329],[22.0191,47.6209],[22.0014,47.6438],[22.009,47.6634],[21.9801,47.6751],[21.9852,47.7025],[21.9655,47.7059],[21.924,47.7314],[21.8876,47.7244],[21.8843,47.6982],[21.8596,47.6841],[21.8552,47.6746],[21.8313,47.6664],[21.8021,47.6729],[21.7952,47.6838],[21.7665,47.6878],[21.7713,47.704],[21.7186,47.7063],[21.7052,47.7308],[21.681,47.7237],[21.6376,47.7277],[21.5999,47.7724],[21.5853,47.7729],[21.5419,47.7911],[21.5421,47.8179],[21.5643,47.8876],[21.5546,47.8896],[21.555,47.9162],[21.564,47.929],[21.5169,47.9418],[21.4958,47.9243],[21.4291,47.9276],[21.4249,47.9217],[21.374,47.9164],[21.352,47.9219],[21.32,47.9194],[21.271,47.9035],[21.2592,47.9256],[21.2356,47.9324],[21.2302,47.9412],[21.1938,47.9575],[21.1545,47.9642],[21.1453,47.9541],[21.121,47.9614],[21.0779,48.0052],[21.128,48.0385],[21.172,48.0396],[21.1691,48.0262],[21.1911,48.0292],[21.2182,48.0228],[21.2231,48.0391],[21.2534,48.055],[21.2651,48.0385],[21.2951,48.0391],[21.3354,48.0218],[21.3528,48.0334],[21.4063,48.0335],[21.4121,48.0527],[21.4357,48.0476],[21.4362,48.0778],[21.4494,48.091],[21.4218,48.1074],[21.4134,48.1223],[21.4279,48.1366],[21.4227,48.1577],[21.4419,48.1784],[21.4555,48.1789],[21.4697,48.1666],[21.4789,48.1803],[21.52,48.1757],[21.516,48.1855],[21.5771,48.2089],[21.612,48.1952],[21.6654,48.1911],[21.7119,48.1956],[21.7211,48.1904],[21.752,48.2037],[21.7512,48.1907],[21.7846,48.2032],[21.7996,48.2247],[21.8253,48.232],[21.8411,48.2238],[21.8511,48.2396],[21.8737,48.2368],[21.8959,48.2455],[21.9192,48.2391],[21.9261,48.2501],[21.9458,48.258],[21.976,48.282],[21.983,48.2916],[22.0126,48.3096],[22.0136,48.2965],[22.0679,48.2995],[22.0674,48.3098],[22.092,48.3078],[22.0824,48.3248],[22.1084,48.349],[22.1058,48.3595],[22.1201,48.3784],[22.1327,48.3911],[22.1535,48.397],[22.1576,48.4108],[22.2048,48.4261],[22.2374,48.4109],[22.2653,48.4099],[22.2554,48.3926],[22.2411,48.3867],[22.2678,48.3602],[22.3203,48.3511],[22.3131,48.3257],[22.3364,48.3081],[22.3394,48.2805],[22.3602,48.2665],[22.3812,48.2367],[22.4012,48.2511],[22.4591,48.243],[22.4912,48.2548],[22.4978,48.241],[22.516,48.2385],[22.5154,48.2271],[22.5388,48.2121],[22.571,48.1976],[22.5641,48.1783],[22.5749,48.1591],[22.5834,48.1602],[22.5992,48.1184],[22.5915,48.1088],[22.62,48.1069],[22.6365,48.0973],[22.6716,48.0921],[22.7376,48.1204],[22.7585,48.1201],[22.77,48.1094],[22.8033,48.1226],[22.8328,48.1097],[22.8255,48.0986],[22.8631,48.0721],[22.8699,48.0505],[22.8829,48.0532],[22.8672,48.0112],[22.838,47.9893],[22.842,47.9815],[22.8709,47.9784],[22.8908,47.9688],[22.897,47.952],[22.8854,47.9504],[22.8433,47.9077],[22.8254,47.9073],[22.7914,47.8903],[22.7565,47.8916],[22.7659,47.879],[22.7609,47.8664],[22.7777,47.8517],[22.7748,47.842],[22.7487,47.8337],[22.7114,47.8346],[22.6797,47.7875],[22.6155,47.7772],[22.6096,47.7716],[22.5489,47.7721],[22.4814,47.8103],[22.4479,47.8034],[22.4256,47.7503],[22.4295,47.7409],[22.3548,47.7493],[22.3165,47.7669],[22.316,47.7429],[22.2847,47.7294],[22.2637,47.7304],[22.2577,47.6987],[22.2272,47.6904],[22.2207,47.6616],[22.2028,47.6547],[22.1889,47.6122],[22.1739,47.5929],[22.1285,47.5969]]]}},
{"id":"HU-VA","type":"Feature","properties":{"code":"VA","name":"Vas"},"geometry":{"type":"Polygon","coordinates":[[[17.174,47.4317],[17.1841,47.4062],[17.2076,47.3918],[17.188,47.3814],[17.2131,47.3609],[17.2589,47.3415],[17.2691,47.3441],[17.294,47.3271],[17.2249,47.3087],[17.2154,47.2996],[17.2176,47.2828],[17.2005,47.2733],[17.2063,47.2114],[17.2129,47.207],[17.2083,47.1765],[17.1959,47.1655],[17.1958,47.1435],[17.2134,47.1118],[17.2153,47.0809],[17.188,47.0654],[17.1662,47.0764],[17.1439,47.079],[17.1069,47.0665],[17.0751,47.0658],[17.0729,47.0473],[17.0735,47.0245],[17.0379,47.0411],[17.0033,47.0355],[17.0172,47.0013],[16.9886,46.981],[16.9808,46.9616],[16.9247,46.9635],[16.9207,46.9711],[16.899,46.976],[16.881,46.9699],[16.8507,46.971],[16.846,46.9786],[16.8078,46.9506],[16.7874,46.9479],[16.7783,46.9253],[16.7354,46.9327],[16.7005,46.9295],[16.686,46.9371],[16.6694,46.9355],[16.6512,46.9203],[16.631,46.9254],[16.5908,46.891],[16.585,46.8704],[16.5676,46.8562],[16.5022,46.8331],[16.5018,46.8036],[16.4876,46.7946],[16.4444,46.7807],[16.4419,46.7748],[16.4036,46.7874],[16.3652,46.7789],[16.3651,46.768],[16.4041,46.7761],[16.391,46.7607],[16.3938,46.7414],[16.3694,46.7224],[16.3566,46.7147],[16.3493,46.7333],[16.3182,46.7558],[16.3289,46.7776],[16.311,46.7808],[16.3153,46.798],[16.34,46.8052],[16.3471,46.8383],[16.3025,46.8601],[16.294,46.872],[16.2373,46.8758],[16.1565,46.8545],[16.1289,46.8577],[16.1145,46.8685],[16.1327,46.8753],[16.1636,46.9035],[16.1792,46.907],[16.1971,46.9393],[16.2219,46.9359],[16.2449,46.946],[16.2532,46.9619],[16.2742,46.962],[16.2766,46.9864],[16.292,47.0131],[16.3017,46.9978],[16.3236,47.0014],[16.3411,46.9949],[16.3493,47.0091],[16.3724,46.9976],[16.412,47.0044],[16.4306,46.992],[16.4469,46.9938],[16.449,47.0045],[16.4843,46.9935],[16.4893,47.0004],[16.512,47.0005],[16.4666,47.0299],[16.448,47.0221],[16.4422,47.0371],[16.5204,47.0567],[16.5072,47.0666],[16.4729,47.0728],[16.4746,47.0842],[16.4623,47.0932],[16.4741,47.1045],[16.5002,47.109],[16.5016,47.1228],[16.5295,47.1259],[16.5164,47.1474],[16.4543,47.1417],[16.4497,47.1507],[16.4632,47.1676],[16.4536,47.1874],[16.4281,47.1843],[16.4157,47.2048],[16.4357,47.2093],[16.441,47.2438],[16.4674,47.2523],[16.4803,47.2615],[16.479,47.2762],[16.4895,47.2799],[16.464,47.3347],[16.4492,47.3379],[16.4341,47.3521],[16.4528,47.3563],[16.4623,47.3815],[16.4471,47.4072],[16.4566,47.4114],[16.4862,47.4061],[16.4837,47.397],[16.5107,47.3964],[16.5115,47.4086],[16.5739,47.4051],[16.5884,47.4224],[16.6212,47.4303],[16.6281,47.4414],[16.6456,47.4458],[16.6773,47.4196],[16.6884,47.4225],[16.7137,47.4112],[16.7536,47.4346],[16.7823,47.4427],[16.8038,47.4431],[16.81,47.4343],[16.8483,47.4484],[16.8655,47.424],[16.8831,47.4134],[16.9101,47.4186],[16.9279,47.4113],[16.9432,47.395],[16.9647,47.4159],[16.9938,47.4233],[17.0529,47.4601],[17.0696,47.44],[17.0443,47.3964],[17.0675,47.4051],[17.1255,47.4168],[17.1449,47.4373],[17.174,47.4317]]]}},
{"id":"HU-TO","type":"Feature","properties":{"code":"TO","name":"Tolna"},"geometry":{"type":"Polygon","coordinates":[[[18.2097,46.7781],[18.2488,46.7836],[18.2497,46.7892],[18.3056,46.8183],[18.3118,46.8105],[18.3057,46.7971],[18.3146,46.7908],[18.3376,46.7894],[18.3649,46.7777],[18.3805,46.7908],[18.3876,46.7758],[18.4046,46.7701],[18.4066,46.805],[18.4217,46.79],[18.4156,46.7815],[18.4253,46.7704],[18.4259,46.7482],[18.4657,46.7413],[18.5115,46.7468],[18.5054,46.7644],[18.5551,46.7833],[18.5732,46.759],[18.6028,46.7458],[18.6314,46.7066],[18.6282,46.6911],[18.6519,46.6891],[18.6779,46.6949],[18.7311,46.7282],[18.7171,46.7513],[18.7472,46.7672],[18.7944,46.7708],[18.7955,46.7889],[18.8619,46.8213],[18.8757,46.838],[18.86,46.848],[18.9233,46.8579],[18.925,46.8167],[18.953,46.7989],[18.9717,46.774],[18.9853,46.7358],[19.0045,46.7117],[19.0027,46.6937],[18.9667,46.6558],[18.9283,46.6407],[18.8826,46.636],[18.8595,46.6113],[18.8624,46.596],[18.892,46.5649],[18.8948,46.5221],[18.9211,46.4788],[18.9207,46.4498],[18.8893,46.4128],[18.8847,46.3969],[18.8981,46.3337],[18.9216,46.3062],[18.9106,46.2608],[18.8943,46.2595],[18.8748,46.2698],[18.8643,46.2688],[18.8736,46.2383],[18.8537,46.2343],[18.8213,46.2079],[18.8342,46.2017],[18.8629,46.204],[18.8687,46.1925],[18.8493,46.1879],[18.8272,46.1446],[18.8092,46.1683],[18.798,46.1591],[18.7971,46.1414],[18.8373,46.1331],[18.8285,46.1165],[18.8158,46.1099],[18.7845,46.1088],[18.767,46.1145],[18.7501,46.1082],[18.6939,46.1316],[18.6861,46.1267],[18.6458,46.1629],[18.6192,46.1745],[18.6107,46.1898],[18.5892,46.182],[18.5651,46.2106],[18.5302,46.2296],[18.5412,46.2516],[18.5319,46.2688],[18.523,46.2706],[18.5068,46.2903],[18.4859,46.293],[18.4794,46.27],[18.4444,46.2534],[18.4452,46.2447],[18.3831,46.2181],[18.3797,46.2314],[18.4005,46.2417],[18.4199,46.2788],[18.4137,46.2903],[18.3991,46.2867],[18.3747,46.2934],[18.3728,46.3253],[18.3877,46.3361],[18.3863,46.3473],[18.35,46.3603],[18.3421,46.3762],[18.3448,46.3976],[18.3135,46.4167],[18.2664,46.4013],[18.2256,46.4077],[18.1839,46.3954],[18.1841,46.3662],[18.1994,46.3539],[18.1996,46.3381],[18.1494,46.3153],[18.1321,46.323],[18.1127,46.3164],[18.1009,46.3008],[18.0822,46.2996],[18.0758,46.2915],[18.0525,46.2973],[18.0744,46.3079],[18.0861,46.3298],[18.0804,46.3679],[18.0638,46.3654],[18.0509,46.3928],[18.0131,46.3836],[18.0039,46.4005],[18.021,46.4039],[18.0391,46.4195],[18.0665,46.4241],[18.0686,46.4349],[18.0394,46.4953],[18.0374,46.5597],[18.0506,46.5547],[18.0721,46.5644],[18.086,46.5941],[18.0716,46.6213],[18.1054,46.6485],[18.098,46.6574],[18.127,46.6766],[18.1281,46.7043],[18.1121,46.7304],[18.1469,46.7437],[18.1712,46.7424],[18.1668,46.7672],[18.2097,46.7781]]]}},
{"id":"HU-VE","type":"Feature","properties":{"code":"VE","name":"Veszprém"},"geometry":{"type":"Polygon","coordinates":[[[17.8788,47.3922],[17.9064,47.3823],[17.9341,47.3865],[17.9492,47.3779],[17.9488,47.3666],[17.931,47.3622],[17.9592,47.3494],[17.9616,47.3337],[18.0175,47.3393],[18.0363,47.3343],[18.0443,47.3217],[18.0657,47.3195],[18.0473,47.3046],[18.0572,47.2773],[18.0749,47.2804],[18.1066,47.2488],[18.1442,47.2651],[18.1573,47.2652],[18.1747,47.2393],[18.1968,47.2249],[18.2166,47.2245],[18.2235,47.2156],[18.2233,47.1792],[18.2115,47.1566],[18.2244,47.1236],[18.2223,47.1061],[18.2337,47.0949],[18.2032,47.0784],[18.2114,47.052],[18.2349,47.022],[18.2331,47.0073],[18.2122,46.9987],[18.2056,46.9848],[18.161,46.9584],[18.1498,46.9534],[18.0603,46.965],[17.9091,46.9172],[17.9097,46.8916],[17.8854,46.8763],[17.8499,46.8779],[17.8049,46.8587],[17.7109,46.8339],[17.6713,46.8136],[17.4886,46.7525],[17.4188,46.7501],[17.3592,46.7926],[17.3484,46.8148],[17.3241,46.8336],[17.324,46.8482],[17.3388,46.8558],[17.3176,46.8724],[17.3255,46.8827],[17.2825,46.9191],[17.2555,46.914],[17.227,46.923],[17.2387,46.9525],[17.2509,46.9582],[17.2486,46.9691],[17.2291,46.9795],[17.224,46.9909],[17.205,47.0023],[17.1829,46.9943],[17.1516,46.9997],[17.0729,47.0473],[17.0751,47.0658],[17.1069,47.0665],[17.1439,47.079],[17.1662,47.0764],[17.188,47.0654],[17.2153,47.0809],[17.2134,47.1118],[17.1958,47.1435],[17.1959,47.1655],[17.2083,47.1765],[17.2129,47.207],[17.2063,47.2114],[17.2005,47.2733],[17.2176,47.2828],[17.2154,47.2996],[17.2249,47.3087],[17.294,47.3271],[17.2691,47.3441],[17.2589,47.3415],[17.2131,47.3609],[17.188,47.3814],[17.2076,47.3918],[17.1841,47.4062],[17.174,47.4317],[17.1949,47.4436],[17.2197,47.4309],[17.2288,47.4382],[17.2872,47.4318],[17.3646,47.4425],[17.3812,47.4589],[17.3852,47.4833],[17.406,47.4797],[17.4123,47.4634],[17.4277,47.4515],[17.4301,47.4313],[17.4694,47.4218],[17.4765,47.4337],[17.4908,47.4361],[17.4932,47.4527],[17.5129,47.4737],[17.5257,47.4699],[17.5241,47.4551],[17.5527,47.4408],[17.5658,47.4539],[17.5598,47.4622],[17.584,47.4734],[17.6039,47.4564],[17.6199,47.4649],[17.6356,47.462],[17.6405,47.4517],[17.661,47.4566],[17.6636,47.4679],[17.6821,47.4657],[17.7019,47.4711],[17.7222,47.4621],[17.7352,47.4748],[17.7537,47.4566],[17.7537,47.4408],[17.7799,47.4099],[17.7585,47.3837],[17.7549,47.373],[17.7145,47.3551],[17.7085,47.3409],[17.7192,47.3218],[17.749,47.3123],[17.7514,47.2897],[17.7609,47.2766],[17.774,47.2802],[17.7644,47.3195],[17.8061,47.3218],[17.812,47.3337],[17.8275,47.3444],[17.8156,47.3635],[17.8477,47.3778],[17.868,47.3801],[17.8788,47.3922]]]}},
{"id":"HU-ZA","type":"Feature","properties":{"code":"ZA","name":"Zala"},"geometry":{"type":"Polygon","coordinates":[[[17.0729,47.0473],[17.1516,46.9997],[17.1829,46.9943],[17.205,47.0023],[17.224,46.9909],[17.2291,46.9795],[17.2486,46.9691],[17.2509,46.9582],[17.2387,46.9525],[17.227,46.923],[17.2555,46.914],[17.2825,46.9191],[17.3255,46.8827],[17.3176,46.8724],[17.3388,46.8558],[17.324,46.8482],[17.3241,46.8336],[17.3484,46.8148],[17.3592,46.7926],[17.4188,46.7501],[17.3918,46.745],[17.3634,46.7308],[17.2687,46.7338],[17.2569,46.6885],[17.222,46.6659],[17.2169,46.6211],[17.2247,46.5114],[17.2006,46.4847],[17.1892,46.4853],[17.1862,46.4306],[17.141,46.4284],[17.1395,46.4088],[17.1127,46.4068],[17.1115,46.414],[17.083,46.4193],[17.0683,46.4022],[17.053,46.4172],[17.0387,46.4167],[17.0314,46.3933],[17.0431,46.3879],[17.0584,46.3493],[17.036,46.3294],[17.0403,46.3159],[17.0133,46.3047],[16.9847,46.3149],[16.9557,46.2941],[16.9396,46.2903],[16.9344,46.3158],[16.9011,46.3111],[16.8735,46.3259],[16.8781,46.3344],[16.8514,46.3542],[16.8473,46.3626],[16.8259,46.3671],[16.7945,46.3862],[16.7784,46.3791],[16.7689,46.3855],[16.7191,46.3925],[16.6645,46.4583],[16.6505,46.4634],[16.6289,46.4613],[16.6244,46.4684],[16.5966,46.4644],[16.5775,46.4832],[16.5223,46.5036],[16.5316,46.531],[16.5181,46.5351],[16.5115,46.5602],[16.4831,46.5665],[16.4802,46.5812],[16.4449,46.6101],[16.4211,46.6139],[16.4134,46.6272],[16.3925,46.6338],[16.3852,46.6452],[16.3919,46.6643],[16.4187,46.6589],[16.4288,46.6952],[16.3738,46.701],[16.3794,46.7123],[16.3694,46.7224],[16.3938,46.7414],[16.391,46.7607],[16.4041,46.7761],[16.3651,46.768],[16.3652,46.7789],[16.4036,46.7874],[16.4419,46.7748],[16.4444,46.7807],[16.4876,46.7946],[16.5018,46.8036],[16.5022,46.8331],[16.5676,46.8562],[16.585,46.8704],[16.5908,46.891],[16.631,46.9254],[16.6512,46.9203],[16.6694,46.9355],[16.686,46.9371],[16.7005,46.9295],[16.7354,46.9327],[16.7783,46.9253],[16.7874,46.9479],[16.8078,46.9506],[16.846,46.9786],[16.8507,46.971],[16.881,46.9699],[16.899,46.976],[16.9207,46.9711],[16.9247,46.9635],[16.9808,46.9616],[16.9886,46.981],[17.0172,47.0013],[17.0033,47.0355],[17.0379,47.0411],[17.0735,47.0245],[17.0729,47.0473]]]}}
]}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,112 @@
{
"type":"FeatureCollection",
"features":[
{"type":"Feature","properties":{"code":"PN","name":"Pordenone"},"geometry":{"type":"Polygon","coordinates":[[[12.979,45.834],[12.9578,45.8474],[12.9521,45.8222],[12.893,45.8197],[12.8612,45.8508],[12.807,45.8203],[12.8043,45.8446],[12.7798,45.8544],[12.6617,45.7924],[12.6314,45.83],[12.6057,45.8382],[12.5933,45.8151],[12.5593,45.8259],[12.506,45.9227],[12.4261,45.947],[12.4282,45.9958],[12.4003,46.042],[12.4375,46.0848],[12.4844,46.1045],[12.4958,46.1526],[12.4473,46.1796],[12.4465,46.2078],[12.4063,46.2073],[12.4017,46.229],[12.3383,46.239],[12.3209,46.2689],[12.3547,46.3197],[12.4115,46.3308],[12.4174,46.3549],[12.4629,46.3693],[12.455,46.3917],[12.4987,46.4122],[12.5415,46.3603],[12.5859,46.3677],[12.6058,46.3445],[12.6782,46.3476],[12.708,46.3253],[12.8091,46.3598],[12.8821,46.3304],[12.9151,46.3468],[12.9736,46.3282],[12.9536,46.3004],[12.9906,46.2732],[12.9739,46.2636],[12.9731,46.2334],[12.9377,46.2119],[12.9652,46.1949],[12.9169,46.0741],[12.9038,45.965],[12.9215,45.9043],[12.9746,45.8734],[12.979,45.834]]]}},
{"type":"Feature","properties":{"code":"IS","name":"Isernia"},"geometry":{"type":"Polygon","coordinates":[[[14.4853,41.7597],[14.4762,41.7458],[14.5188,41.7268],[14.5212,41.6995],[14.4935,41.6714],[14.4337,41.6716],[14.4242,41.6408],[14.48,41.6315],[14.5122,41.5966],[14.493,41.5914],[14.4508,41.5185],[14.3918,41.5077],[14.3825,41.4433],[14.2407,41.4972],[14.1738,41.5007],[14.1647,41.4789],[14.1208,41.507],[14.0784,41.4471],[14.1052,41.4233],[14.1114,41.3864],[14.0424,41.3928],[14.0007,41.4309],[14.007,41.4519],[13.9779,41.4625],[13.9928,41.4821],[13.9729,41.494],[14.0275,41.5232],[14.0053,41.5388],[14.026,41.5557],[13.9989,41.5745],[14.011,41.6075],[13.9883,41.6538],[13.941,41.688],[14.0187,41.6821],[14.0269,41.7027],[14.0532,41.7017],[14.0696,41.7372],[14.0944,41.7379],[14.1072,41.7074],[14.1219,41.7465],[14.1587,41.747],[14.1718,41.7658],[14.1942,41.7481],[14.2019,41.767],[14.1715,41.7784],[14.1472,41.8273],[14.2166,41.8534],[14.2297,41.8771],[14.2842,41.9108],[14.3239,41.8963],[14.343,41.8625],[14.3767,41.8799],[14.4442,41.8398],[14.4651,41.7772],[14.4546,41.7637],[14.4853,41.7597]]]}},
{"type":"Feature","properties":{"code":"BI","name":"Biella"},"geometry":{"type":"Polygon","coordinates":[[[8.027,45.4031],[8.0384,45.4414],[7.8833,45.5322],[7.9022,45.5589],[7.8958,45.59],[7.8975,45.6125],[7.9394,45.6433],[7.9048,45.6847],[7.9366,45.7243],[7.9982,45.719],[8.0592,45.7406],[8.0769,45.7187],[8.123,45.757],[8.1812,45.7521],[8.184,45.729],[8.3279,45.6469],[8.2613,45.6333],[8.2621,45.6195],[8.3127,45.6316],[8.2552,45.6087],[8.2965,45.5536],[8.2774,45.5322],[8.2919,45.5177],[8.2676,45.5169],[8.2189,45.4757],[8.218,45.4538],[8.1665,45.435],[8.1687,45.4111],[8.1228,45.3761],[8.027,45.4031]]]}},
{"type":"Feature","properties":{"code":"LC","name":"Lecco"},"geometry":{"type":"Polygon","coordinates":[[[9.5269,46.0115],[9.4861,46.003],[9.5031,45.9672],[9.5403,45.9492],[9.505,45.8977],[9.524,45.8703],[9.4701,45.858],[9.4963,45.7952],[9.4514,45.7868],[9.4706,45.7681],[9.4458,45.7605],[9.451,45.6844],[9.4766,45.6693],[9.4468,45.6497],[9.4144,45.6765],[9.3723,45.6551],[9.3436,45.672],[9.3141,45.6607],[9.2871,45.7302],[9.2471,45.7426],[9.2499,45.7827],[9.3328,45.8666],[9.3124,45.9054],[9.2865,45.8959],[9.268,45.9265],[9.2761,45.9448],[9.2575,45.9501],[9.2846,45.9671],[9.2609,46.0145],[9.2896,46.0593],[9.2923,46.1158],[9.3619,46.1574],[9.4141,46.1369],[9.415,46.0948],[9.5098,46.0625],[9.5018,46.0457],[9.5269,46.0115]]]}},
{"type":"Feature","properties":{"code":"LO","name":"Lodi"},"geometry":{"type":"Polygon","coordinates":[[[9.4839,45.4487],[9.4619,45.3771],[9.5514,45.3391],[9.5721,45.3656],[9.6165,45.2938],[9.6752,45.2569],[9.719,45.263],[9.7168,45.2301],[9.7769,45.2131],[9.7506,45.1823],[9.7739,45.1885],[9.7856,45.1649],[9.8265,45.1634],[9.8326,45.1497],[9.8709,45.1591],[9.8911,45.1309],[9.8752,45.1196],[9.8968,45.0805],[9.8384,45.0956],[9.8238,45.0526],[9.8133,45.0781],[9.7575,45.1125],[9.7451,45.1109],[9.7496,45.0778],[9.715,45.0582],[9.6349,45.084],[9.6294,45.132],[9.5874,45.0996],[9.5487,45.1327],[9.5316,45.1654],[9.4742,45.2011],[9.4385,45.1876],[9.4022,45.2019],[9.3708,45.2451],[9.3104,45.249],[9.3415,45.2713],[9.321,45.2946],[9.3576,45.2926],[9.3388,45.313],[9.3547,45.3208],[9.3773,45.3023],[9.3932,45.3155],[9.3563,45.3435],[9.353,45.3677],[9.3782,45.3689],[9.3852,45.3993],[9.4072,45.394],[9.4313,45.4675],[9.4839,45.4487]]]}},
{"type":"Feature","properties":{"code":"RN","name":"Rimini"},"geometry":{"type":"Polygon","coordinates":[[[12.7506,43.9685],[12.7279,43.9242],[12.734,43.8703],[12.6823,43.8528],[12.6726,43.8236],[12.6233,43.8212],[12.5895,43.8856],[12.5417,43.864],[12.5359,43.8972],[12.4939,43.9156],[12.5157,43.9415],[12.5135,43.9913],[12.4046,43.9557],[12.4177,43.899],[12.4321,43.8726],[12.4006,43.8728],[12.3925,43.8966],[12.3551,43.8731],[12.3354,43.8241],[12.2847,43.7947],[12.2838,43.7649],[12.2093,43.7571],[12.1946,43.7319],[12.1637,43.7624],[12.1074,43.7538],[12.1029,43.7923],[12.1495,43.8333],[12.1383,43.8476],[12.1681,43.8976],[12.1595,43.9217],[12.2508,43.9107],[12.3125,43.9402],[12.3953,44.0302],[12.3605,44.0498],[12.365,44.0614],[12.4521,44.0872],[12.4287,44.1473],[12.4506,44.1622],[12.6685,43.9997],[12.7506,43.9685]],[[12.2243,43.8099],[12.1698,43.8046],[12.1993,43.7704],[12.2373,43.787],[12.2243,43.8099]]]}},
{"type":"Feature","properties":{"code":"PO","name":"Prato"},"geometry":{"type":"Polygon","coordinates":[[[11.2024,44.1007],[11.1793,44.0458],[11.1916,44.0298],[11.174,44.01],[11.1693,43.9186],[11.1346,43.8848],[11.1453,43.8604],[11.095,43.8201],[11.0625,43.8176],[11.0764,43.7929],[11.0562,43.7824],[11.0559,43.7585],[10.9778,43.7854],[10.9641,43.8125],[11.0303,43.8389],[11.013,43.8698],[11.0206,43.9204],[11.0715,43.9829],[11.0117,44.0055],[11.0404,44.0342],[11.0494,44.0902],[11.1592,44.1124],[11.2024,44.1007]]]}},
{"type":"Feature","properties":{"code":"KR","name":"Crotone"},"geometry":{"type":"Polygon","coordinates":[[[16.8906,38.928],[16.9206,38.9526],[16.8915,38.9734],[16.8914,39.0027],[16.8192,39.0516],[16.7338,39.0589],[16.6793,39.0922],[16.6383,39.1321],[16.6809,39.1314],[16.6693,39.156],[16.6286,39.1627],[16.613,39.1942],[16.7781,39.1959],[16.7467,39.2457],[16.761,39.2919],[16.7063,39.3229],[16.7049,39.3546],[16.7629,39.362],[16.8397,39.3408],[16.9146,39.3832],[16.901,39.4106],[16.9552,39.396],[16.9572,39.437],[17.0237,39.4824],[17.0805,39.422],[17.1568,39.4009],[17.1092,39.3075],[17.1063,39.2533],[17.1484,39.2061],[17.1081,39.1073],[17.1352,39.087],[17.1467,39.0465],[17.2064,39.0258],[17.164,38.9947],[17.1701,38.9568],[17.0942,38.8926],[17.0851,38.9122],[17.0216,38.9058],[16.9806,38.9382],[16.8906,38.928]]]}},
{"type":"Feature","properties":{"code":"VV","name":"Vibo Valentia"},"geometry":{"type":"Polygon","coordinates":[[[16.4198,38.554],[16.3929,38.5738],[16.3493,38.5374],[16.3526,38.5007],[16.3887,38.4758],[16.3929,38.4473],[16.3493,38.4291],[16.2694,38.4442],[16.2333,38.5008],[16.1935,38.4976],[16.08,38.5621],[16.0045,38.5167],[15.9588,38.5255],[15.9186,38.5068],[15.9289,38.5498],[15.8269,38.6192],[15.8482,38.6592],[15.9482,38.6912],[15.986,38.723],[16.1341,38.7175],[16.1822,38.7477],[16.2132,38.8106],[16.2788,38.7917],[16.2572,38.8199],[16.2845,38.8243],[16.3481,38.7902],[16.3705,38.7429],[16.3385,38.7206],[16.3492,38.7073],[16.3263,38.6778],[16.3457,38.6579],[16.329,38.6407],[16.4312,38.5814],[16.4198,38.554]]]}},
{"type":"Feature","properties":{"code":"VB","name":"Verbano-Cusio-Ossola"},"geometry":{"type":"Polygon","coordinates":[[[8.7148,46.098],[8.7055,46.0819],[8.7264,46.018],[8.5706,45.9],[8.5938,45.8282],[8.5603,45.8518],[8.5,45.834],[8.4574,45.8766],[8.4208,45.8298],[8.3993,45.8543],[8.3774,45.8385],[8.3748,45.7842],[8.3499,45.7724],[8.3172,45.7678],[8.321,45.8373],[8.3358,45.845],[8.2937,45.8705],[8.3022,45.8883],[8.2145,45.924],[8.1987,45.9499],[8.086,45.9224],[8.0443,45.9363],[7.9623,45.9008],[7.877,45.9264],[7.8781,45.9734],[7.9088,45.9973],[7.9882,45.9963],[8.0122,46.0119],[8.0128,46.032],[8.0346,46.0433],[8.0224,46.0697],[8.0342,46.1002],[8.1081,46.1116],[8.1535,46.1459],[8.1656,46.1813],[8.139,46.2261],[8.0804,46.2608],[8.1377,46.3016],[8.2117,46.3092],[8.2237,46.3336],[8.2623,46.3458],[8.2634,46.3637],[8.3123,46.3768],[8.3169,46.3972],[8.2897,46.4086],[8.3003,46.4194],[8.3719,46.4528],[8.4455,46.4637],[8.4654,46.4448],[8.4644,46.333],[8.4277,46.2984],[8.4562,46.2635],[8.4431,46.2502],[8.5326,46.2181],[8.5737,46.1644],[8.6027,46.1553],[8.6117,46.1218],[8.7148,46.098]]]}},
{"type":"Feature","properties":{"code":"MB","name":"Monza e della Brianza"},"geometry":{"type":"Polygon","coordinates":[[[9.4766,45.6693],[9.4959,45.6397],[9.4817,45.5968],[9.3794,45.5577],[9.3264,45.5616],[9.3128,45.5368],[9.1769,45.5918],[9.0956,45.5879],[9.1078,45.6227],[9.0529,45.6232],[9.0557,45.6465],[9.067,45.6851],[9.1032,45.6969],[9.1944,45.6677],[9.1953,45.6983],[9.2471,45.7426],[9.2871,45.7302],[9.3141,45.6607],[9.3436,45.672],[9.3723,45.6551],[9.4144,45.6765],[9.4468,45.6497],[9.4766,45.6693]]]}},
{"type":"Feature","properties":{"code":"FM","name":"Fermo"},"geometry":{"type":"Polygon","coordinates":[[[13.7429,43.2941],[13.8495,43.0667],[13.7968,43.0621],[13.7852,43.0798],[13.6569,43.0421],[13.6565,43.0281],[13.6432,43.0378],[13.5564,42.9884],[13.4935,42.9887],[13.4548,42.9659],[13.3981,42.9718],[13.392,42.9398],[13.4102,42.927],[13.3768,42.8904],[13.356,42.9154],[13.2926,42.9255],[13.2418,42.892],[13.2161,42.9511],[13.3194,43.0027],[13.3389,43.0288],[13.3783,43.0424],[13.3963,43.0098],[13.4597,43.0204],[13.4628,43.0642],[13.4838,43.0803],[13.4338,43.0852],[13.4432,43.1494],[13.5193,43.1744],[13.5211,43.2092],[13.5929,43.2092],[13.6077,43.2714],[13.7429,43.2941]]]}},
{"type":"Feature","properties":{"code":"BT","name":"Barletta-Andria-Trani"},"geometry":{"type":"Polygon","coordinates":[[[16.0248,41.4258],[16.5423,41.2295],[16.5038,41.1513],[16.4707,41.148],[16.4363,41.1882],[16.3916,41.1961],[16.3577,41.1613],[16.34,41.1665],[16.3473,41.1253],[16.266,41.0386],[16.2519,40.9622],[16.2025,40.9175],[16.163,40.9286],[16.1211,40.8977],[15.9772,40.958],[15.9718,40.9721],[16.0084,40.9721],[16.027,40.9912],[16.0406,41.0362],[15.9989,41.054],[15.9534,41.1108],[15.8703,41.1399],[16.0207,41.2208],[16.0402,41.2699],[16.0089,41.264],[15.9834,41.3047],[15.9819,41.3608],[16.0385,41.3826],[15.9365,41.425],[15.9502,41.4417],[16.0248,41.4258]]]}},
{"type":"Feature","properties":{"code":"TO","name":"Torino"},"geometry":{"type":"Polygon","coordinates":[[[7.8958,45.59],[7.9022,45.5589],[7.8833,45.5322],[8.0384,45.4414],[8.027,45.4031],[8.008,45.387],[8.0213,45.3301],[7.9586,45.3465],[7.9473,45.3072],[7.99,45.3075],[7.9905,45.2299],[8.0499,45.1846],[8.1519,45.1685],[8.129,45.123],[8.0964,45.1317],[8.0752,45.0974],[8.0478,45.1079],[8.0468,45.1282],[7.9923,45.1283],[7.9285,45.1047],[7.9422,45.0863],[7.9189,45.0746],[7.8959,45.095],[7.893,45.0599],[7.958,45.042],[7.921,45.0232],[7.931,44.9882],[7.8834,44.9362],[7.9263,44.9029],[7.8859,44.8846],[7.919,44.8826],[7.9434,44.8463],[7.9026,44.8215],[7.8642,44.8239],[7.8099,44.8548],[7.7662,44.8155],[7.6848,44.8102],[7.6197,44.8475],[7.6193,44.8289],[7.5936,44.8343],[7.5967,44.8099],[7.5752,44.8061],[7.5755,44.8196],[7.5647,44.799],[7.471,44.7561],[7.4493,44.7641],[7.4597,44.7785],[7.345,44.7518],[7.3447,44.7831],[7.2961,44.7821],[7.159,44.7605],[7.1201,44.7256],[7.0653,44.7138],[7.0324,44.7279],[7.0001,44.789],[7.0239,44.8233],[7.0061,44.84],[6.9315,44.8634],[6.9113,44.8446],[6.8629,44.8507],[6.7508,44.9062],[6.76,44.9338],[6.7462,44.9386],[6.7655,44.9616],[6.7376,44.9908],[6.746,45.0139],[6.6736,45.02],[6.6623,45.0714],[6.6266,45.1043],[6.6802,45.1404],[6.7402,45.137],[6.7692,45.1598],[6.8483,45.1273],[6.8939,45.1373],[6.8935,45.169],[6.9475,45.1705],[6.9658,45.2077],[7.0475,45.2259],[7.067,45.2103],[7.1248,45.2443],[7.136,45.2804],[7.1094,45.3277],[7.1345,45.3317],[7.1859,45.4032],[7.1135,45.4341],[7.1043,45.467],[7.1343,45.5155],[7.1436,45.4778],[7.2227,45.4705],[7.2695,45.5147],[7.3772,45.5169],[7.4893,45.5831],[7.5665,45.5916],[7.6091,45.5629],[7.7327,45.5503],[7.8489,45.6023],[7.8958,45.59]]]}},
{"type":"Feature","properties":{"code":"VC","name":"Vercelli"},"geometry":{"type":"Polygon","coordinates":[[[8.3499,45.7724],[8.392,45.7035],[8.3106,45.6972],[8.3908,45.6166],[8.4119,45.48],[8.4005,45.3962],[8.4333,45.4121],[8.4553,45.3782],[8.4961,45.3742],[8.4995,45.3478],[8.4629,45.3272],[8.5135,45.3133],[8.4983,45.2922],[8.5351,45.2778],[8.5435,45.2546],[8.5221,45.2499],[8.5564,45.2406],[8.5291,45.2395],[8.5437,45.234],[8.5232,45.2216],[8.548,45.2041],[8.5245,45.1983],[8.5812,45.2022],[8.5446,45.1821],[8.5478,45.1682],[8.5072,45.1741],[8.4971,45.198],[8.4715,45.2046],[8.3734,45.2007],[8.3285,45.1692],[8.2663,45.1807],[8.2154,45.164],[8.199,45.1783],[8.1765,45.1598],[8.1519,45.1685],[8.0499,45.1846],[7.9905,45.2299],[7.99,45.3075],[7.9473,45.3072],[7.9586,45.3465],[8.0213,45.3301],[8.008,45.387],[8.027,45.4031],[8.1228,45.3761],[8.1687,45.4111],[8.1665,45.435],[8.218,45.4538],[8.2189,45.4757],[8.2676,45.5169],[8.2919,45.5177],[8.2774,45.5322],[8.2965,45.5536],[8.2552,45.6087],[8.3127,45.6316],[8.2621,45.6195],[8.2613,45.6333],[8.3279,45.6469],[8.184,45.729],[8.1812,45.7521],[8.123,45.757],[8.0769,45.7187],[8.0592,45.7406],[7.9982,45.719],[7.9366,45.7243],[7.8626,45.7922],[7.8759,45.8616],[7.864,45.9164],[7.877,45.9264],[7.9623,45.9008],[8.0443,45.9363],[8.086,45.9224],[8.1987,45.9499],[8.2145,45.924],[8.3022,45.8883],[8.2937,45.8705],[8.3358,45.845],[8.321,45.8373],[8.3172,45.7678],[8.3499,45.7724]]]}},
{"type":"Feature","properties":{"code":"NO","name":"Novara"},"geometry":{"type":"Polygon","coordinates":[[[8.5938,45.8282],[8.5556,45.8],[8.5557,45.775],[8.5938,45.7304],[8.6488,45.7196],[8.6409,45.6765],[8.6812,45.6764],[8.6698,45.6614],[8.6882,45.637],[8.6589,45.6377],[8.7031,45.6001],[8.6933,45.5778],[8.7069,45.5583],[8.7228,45.506],[8.7875,45.4862],[8.8429,45.3938],[8.7191,45.3781],[8.7625,45.3486],[8.7248,45.3357],[8.7161,45.3029],[8.6906,45.2925],[8.6666,45.2922],[8.6288,45.3499],[8.5538,45.3615],[8.5266,45.3432],[8.5379,45.3172],[8.5135,45.3133],[8.4629,45.3272],[8.4995,45.3478],[8.4961,45.3742],[8.4553,45.3782],[8.4333,45.4121],[8.4005,45.3962],[8.4119,45.48],[8.3908,45.6166],[8.3106,45.6972],[8.392,45.7035],[8.3499,45.7724],[8.3748,45.7842],[8.3774,45.8385],[8.3993,45.8543],[8.4208,45.8298],[8.4574,45.8766],[8.5,45.834],[8.5603,45.8518],[8.5938,45.8282]]]}},
{"type":"Feature","properties":{"code":"CN","name":"Cuneo"},"geometry":{"type":"Polygon","coordinates":[[[8.2528,44.5287],[8.2242,44.5142],[8.2233,44.4856],[8.1973,44.4776],[8.2218,44.4296],[8.2035,44.4049],[8.1495,44.3848],[8.1449,44.3458],[8.1064,44.3324],[8.102,44.3009],[8.076,44.314],[8.0597,44.3007],[8.0907,44.2748],[8.0631,44.2531],[8.0811,44.24],[8.0654,44.2169],[8.0972,44.1787],[8.0682,44.145],[8.0118,44.1559],[7.9796,44.1385],[8.0156,44.1107],[7.8839,44.1047],[7.7627,44.1409],[7.7254,44.1255],[7.7193,44.1045],[7.7329,44.0836],[7.7594,44.0843],[7.7143,44.0616],[7.717,44.0833],[7.6664,44.1307],[7.6846,44.1739],[7.6734,44.1773],[7.636,44.1771],[7.6174,44.1498],[7.4282,44.1304],[7.4234,44.1133],[7.3581,44.1163],[7.3419,44.1461],[7.2788,44.1413],[7.1848,44.2006],[7.0053,44.2374],[6.9958,44.2801],[6.9583,44.2955],[6.922,44.3517],[6.8872,44.362],[6.8928,44.4202],[6.9484,44.4298],[6.8762,44.4815],[6.8534,44.5279],[6.9332,44.5734],[6.9377,44.6031],[6.9673,44.6193],[6.9475,44.6536],[6.9627,44.6777],[7.0292,44.6916],[7.0719,44.6801],[7.0653,44.7138],[7.1201,44.7256],[7.159,44.7605],[7.2961,44.7821],[7.3447,44.7831],[7.345,44.7518],[7.4597,44.7785],[7.4493,44.7641],[7.471,44.7561],[7.5647,44.799],[7.5755,44.8196],[7.5752,44.8061],[7.5967,44.8099],[7.5936,44.8343],[7.6193,44.8289],[7.6197,44.8475],[7.6848,44.8102],[7.7662,44.8155],[7.8099,44.8548],[7.8642,44.8239],[7.9026,44.8215],[7.9434,44.8463],[7.9647,44.8566],[7.9947,44.8182],[8.0454,44.7993],[8.0962,44.8219],[8.1306,44.8101],[8.1371,44.7821],[8.0951,44.7585],[8.1332,44.7467],[8.1522,44.7132],[8.1816,44.7512],[8.2066,44.7507],[8.2292,44.7231],[8.2568,44.7322],[8.2595,44.6966],[8.1945,44.6286],[8.2343,44.5986],[8.2456,44.5697],[8.2323,44.5617],[8.2528,44.5287]]]}},
{"type":"Feature","properties":{"code":"AT","name":"Asti"},"geometry":{"type":"Polygon","coordinates":[[[8.129,45.123],[8.1093,45.1009],[8.1184,45.0717],[8.159,45.0275],[8.1879,45.0437],[8.2163,45.0106],[8.2401,45.0628],[8.3115,45.0707],[8.305,45.0596],[8.3585,45.026],[8.3536,44.9941],[8.3874,44.969],[8.3805,44.9243],[8.3588,44.9129],[8.3908,44.8752],[8.3762,44.8467],[8.4235,44.8495],[8.4206,44.8197],[8.5134,44.7872],[8.4896,44.773],[8.5013,44.7719],[8.4879,44.7465],[8.464,44.7548],[8.4222,44.7331],[8.4333,44.7111],[8.4087,44.7069],[8.4206,44.6923],[8.347,44.6929],[8.3549,44.6392],[8.314,44.6019],[8.3692,44.5749],[8.2852,44.558],[8.2616,44.5194],[8.2528,44.5287],[8.2323,44.5617],[8.2456,44.5697],[8.2343,44.5986],[8.1945,44.6286],[8.2595,44.6966],[8.2568,44.7322],[8.2292,44.7231],[8.2066,44.7507],[8.1816,44.7512],[8.1522,44.7132],[8.1332,44.7467],[8.0951,44.7585],[8.1371,44.7821],[8.1306,44.8101],[8.0962,44.8219],[8.0454,44.7993],[7.9947,44.8182],[7.9647,44.8566],[7.9434,44.8463],[7.919,44.8826],[7.8859,44.8846],[7.9263,44.9029],[7.8834,44.9362],[7.931,44.9882],[7.921,45.0232],[7.958,45.042],[7.893,45.0599],[7.8959,45.095],[7.9189,45.0746],[7.9422,45.0863],[7.9285,45.1047],[7.9923,45.1283],[8.0468,45.1282],[8.0478,45.1079],[8.0752,45.0974],[8.0964,45.1317],[8.129,45.123]]]}},
{"type":"Feature","properties":{"code":"AL","name":"Alessandria"},"geometry":{"type":"Polygon","coordinates":[[[8.5478,45.1682],[8.611,45.1236],[8.6091,45.1069],[8.646,45.0753],[8.6347,45.041],[8.6591,45.018],[8.7101,45.0383],[8.7717,45.0068],[8.7962,45.0358],[8.8874,45.0598],[8.9106,44.9955],[8.9606,44.9873],[8.9781,44.9672],[8.9696,44.9435],[8.9997,44.9093],[9.0559,44.8888],[9.0701,44.8647],[9.049,44.8499],[9.0726,44.8171],[9.161,44.8147],[9.1717,44.7717],[9.2136,44.7523],[9.2003,44.6864],[9.203,44.6135],[9.199,44.5928],[9.1352,44.5745],[9.0759,44.6237],[9.0439,44.6144],[9.0147,44.6661],[8.9311,44.6761],[8.8826,44.6387],[8.9094,44.6133],[8.9175,44.5611],[8.8268,44.5618],[8.7871,44.4898],[8.7669,44.492],[8.7676,44.525],[8.7498,44.5257],[8.7499,44.5489],[8.7141,44.5815],[8.6239,44.5864],[8.5978,44.5566],[8.6124,44.5433],[8.5738,44.5233],[8.5762,44.5092],[8.4707,44.5225],[8.4495,44.4974],[8.4186,44.5133],[8.3924,44.477],[8.3585,44.4649],[8.3492,44.4856],[8.2616,44.5194],[8.2852,44.558],[8.3692,44.5749],[8.314,44.6019],[8.3549,44.6392],[8.347,44.6929],[8.4206,44.6923],[8.4087,44.7069],[8.4333,44.7111],[8.4222,44.7331],[8.464,44.7548],[8.4879,44.7465],[8.5013,44.7719],[8.4896,44.773],[8.5134,44.7872],[8.4206,44.8197],[8.4235,44.8495],[8.3762,44.8467],[8.3908,44.8752],[8.3588,44.9129],[8.3805,44.9243],[8.3874,44.969],[8.3536,44.9941],[8.3585,45.026],[8.305,45.0596],[8.3115,45.0707],[8.2401,45.0628],[8.2163,45.0106],[8.1879,45.0437],[8.159,45.0275],[8.1184,45.0717],[8.1093,45.1009],[8.129,45.123],[8.1519,45.1685],[8.1765,45.1598],[8.199,45.1783],[8.2154,45.164],[8.2663,45.1807],[8.3285,45.1692],[8.3734,45.2007],[8.4715,45.2046],[8.4971,45.198],[8.5072,45.1741],[8.5478,45.1682]]]}},
{"type":"Feature","properties":{"code":"AO","name":"Aosta"},"geometry":{"type":"Polygon","coordinates":[[[7.864,45.9164],[7.8759,45.8616],[7.8626,45.7922],[7.9366,45.7243],[7.9048,45.6847],[7.9394,45.6433],[7.8975,45.6125],[7.8958,45.59],[7.8489,45.6023],[7.7327,45.5503],[7.6091,45.5629],[7.5665,45.5916],[7.4893,45.5831],[7.3772,45.5169],[7.2695,45.5147],[7.2227,45.4705],[7.1436,45.4778],[7.1343,45.5155],[7.1043,45.467],[7.0479,45.4725],[7.0532,45.495],[6.9997,45.5046],[6.995,45.5761],[6.9779,45.5889],[7.0008,45.6403],[6.9152,45.6525],[6.9028,45.6803],[6.8541,45.687],[6.8092,45.7248],[6.8013,45.7813],[6.8186,45.8362],[6.9407,45.8471],[6.9977,45.8726],[7.0043,45.8998],[7.0417,45.9228],[7.1082,45.8582],[7.1541,45.8793],[7.1967,45.8607],[7.2164,45.8888],[7.2597,45.8904],[7.2942,45.9217],[7.3837,45.8968],[7.4742,45.9356],[7.4781,45.9526],[7.5423,45.9571],[7.5503,45.9862],[7.5886,45.9708],[7.6637,45.9756],[7.7201,45.9237],[7.7537,45.9396],[7.8001,45.9171],[7.864,45.9164]]]}},
{"type":"Feature","properties":{"code":"IM","name":"Imperia"},"geometry":{"type":"Polygon","coordinates":[[[8.0156,44.1107],[8.0362,44.0575],[7.9795,44.0139],[8.0169,43.9793],[8.1055,43.9736],[8.1354,43.939],[8.0711,43.8905],[7.833,43.8164],[7.7013,43.799],[7.6732,43.776],[7.5754,43.7929],[7.5296,43.7843],[7.499,43.8686],[7.5626,43.9007],[7.5688,43.9464],[7.6521,43.9735],[7.6703,43.9982],[7.663,44.0288],[7.7143,44.0616],[7.7594,44.0843],[7.7329,44.0836],[7.7193,44.1045],[7.7254,44.1255],[7.7627,44.1409],[7.8839,44.1047],[8.0156,44.1107]]]}},
{"type":"Feature","properties":{"code":"SV","name":"Savona"},"geometry":{"type":"Polygon","coordinates":[[[8.4861,44.3083],[8.5012,44.3157],[8.4414,44.2761],[8.4563,44.2584],[8.4161,44.2219],[8.4222,44.1926],[8.2691,44.1393],[8.2317,44.0923],[8.2261,44.044],[8.1631,43.9926],[8.1737,43.9547],[8.1354,43.939],[8.1055,43.9736],[8.0169,43.9793],[7.9795,44.0139],[8.0362,44.0575],[8.0156,44.1107],[7.9796,44.1385],[8.0118,44.1559],[8.0682,44.145],[8.0972,44.1787],[8.0654,44.2169],[8.0811,44.24],[8.0631,44.2531],[8.0907,44.2748],[8.0597,44.3007],[8.076,44.314],[8.102,44.3009],[8.1064,44.3324],[8.1449,44.3458],[8.1495,44.3848],[8.2035,44.4049],[8.2218,44.4296],[8.1973,44.4776],[8.2233,44.4856],[8.2242,44.5142],[8.2528,44.5287],[8.2616,44.5194],[8.3492,44.4856],[8.3585,44.4649],[8.3924,44.477],[8.4186,44.5133],[8.4495,44.4974],[8.4707,44.5225],[8.5762,44.5092],[8.5949,44.4945],[8.6569,44.5005],[8.6689,44.4523],[8.5851,44.4286],[8.5939,44.4035],[8.6332,44.3798],[8.4861,44.3083]]]}},
{"type":"Feature","properties":{"code":"GE","name":"Genova"},"geometry":{"type":"MultiPolygon","coordinates":[[[[8.8313,44.421],[8.7415,44.4266],[8.6332,44.3798],[8.5939,44.4035],[8.5851,44.4286],[8.6689,44.4523],[8.6569,44.5005],[8.5949,44.4945],[8.5762,44.5092],[8.5738,44.5233],[8.6124,44.5433],[8.5978,44.5566],[8.6239,44.5864],[8.7141,44.5815],[8.7499,44.5489],[8.7498,44.5257],[8.7676,44.525],[8.7669,44.492],[8.7871,44.4898],[8.8268,44.5618],[8.9175,44.5611],[8.9094,44.6133],[8.8826,44.6387],[8.9311,44.6761],[9.0147,44.6661],[9.0439,44.6144],[9.0759,44.6237],[9.1352,44.5745],[9.199,44.5928],[9.203,44.6135],[9.2455,44.6196],[9.2456,44.5997],[9.2722,44.5959],[9.3004,44.6078],[9.343,44.5777],[9.3811,44.5767],[9.4056,44.6008],[9.4231,44.5746],[9.4933,44.5559],[9.4968,44.4827],[9.4689,44.4819],[9.4388,44.4279],[9.479,44.4093],[9.4722,44.3863],[9.5182,44.3552],[9.4993,44.3269],[9.5733,44.2708],[9.5715,44.2534],[9.5339,44.253],[9.5113,44.2167],[9.4882,44.2391],[9.4031,44.2553],[9.3769,44.2905],[9.2342,44.3484],[9.2137,44.3336],[9.2175,44.2985],[9.1523,44.3171],[9.1401,44.3611],[8.952,44.3913],[8.924,44.4142],[8.9165,44.3986],[8.8219,44.4149],[8.8524,44.419],[8.8313,44.421]]],[[[8.8005,44.4165],[8.7697,44.4158],[8.8105,44.4222],[8.8005,44.4165]]]]}},
{"type":"Feature","properties":{"code":"SP","name":"La Spezia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[9.8312,44.1062],[9.8109,44.1018],[9.8473,44.0612],[9.8326,44.0501],[9.6675,44.143],[9.6355,44.1335],[9.6071,44.1708],[9.5113,44.2167],[9.5339,44.253],[9.5715,44.2534],[9.5733,44.2708],[9.4993,44.3269],[9.5182,44.3552],[9.4722,44.3863],[9.479,44.4093],[9.6015,44.4368],[9.655,44.4119],[9.6867,44.3659],[9.7111,44.3636],[9.7654,44.3043],[9.8527,44.2702],[9.857,44.234],[9.8754,44.2239],[9.865,44.1807],[9.9079,44.21],[9.934,44.1966],[9.893,44.1665],[9.974,44.1669],[9.9954,44.1179],[9.9835,44.0989],[10.022,44.1196],[10.0693,44.098],[10.0188,44.0445],[9.9637,44.0374],[9.8538,44.1063],[9.8487,44.1096],[9.8485,44.11],[9.8312,44.1062]]],[[[9.8471,44.0335],[9.8332,44.0471],[9.8553,44.0509],[9.8471,44.0335]]]]}},
{"type":"Feature","properties":{"code":"VA","name":"Varese"},"geometry":{"type":"Polygon","coordinates":[[[8.9124,45.8303],[8.9004,45.7848],[8.9515,45.7147],[8.8987,45.6767],[8.935,45.6524],[8.9804,45.6797],[8.9812,45.6455],[9.0557,45.6465],[9.0529,45.6232],[9.0644,45.582],[9.0495,45.5775],[8.9744,45.5865],[8.9782,45.6146],[8.9399,45.6426],[8.9367,45.6235],[8.8678,45.592],[8.863,45.5746],[8.837,45.5685],[8.7862,45.6024],[8.7513,45.5655],[8.7069,45.5583],[8.6933,45.5778],[8.7031,45.6001],[8.6589,45.6377],[8.6882,45.637],[8.6698,45.6614],[8.6812,45.6764],[8.6409,45.6765],[8.6488,45.7196],[8.5938,45.7304],[8.5557,45.775],[8.5556,45.8],[8.5938,45.8282],[8.5706,45.9],[8.7264,46.018],[8.7055,46.0819],[8.7148,46.098],[8.7427,46.1221],[8.7602,46.1017],[8.8061,46.1009],[8.8521,46.0755],[8.7859,45.989],[8.8313,45.988],[8.8943,45.9585],[8.8931,45.9313],[8.9456,45.8672],[8.9124,45.8303]]]}},
{"type":"Feature","properties":{"code":"CO","name":"Como"},"geometry":{"type":"MultiPolygon","coordinates":[[[[9.4141,46.1369],[9.3619,46.1574],[9.2923,46.1158],[9.2896,46.0593],[9.2609,46.0145],[9.2846,45.9671],[9.2575,45.9501],[9.2761,45.9448],[9.268,45.9265],[9.2865,45.8959],[9.3124,45.9054],[9.3328,45.8666],[9.2499,45.7827],[9.2471,45.7426],[9.1953,45.6983],[9.1944,45.6677],[9.1032,45.6969],[9.067,45.6851],[9.0557,45.6465],[8.9812,45.6455],[8.9804,45.6797],[8.935,45.6524],[8.8987,45.6767],[8.9515,45.7147],[8.9004,45.7848],[8.9124,45.8303],[8.9495,45.8435],[9.0338,45.8226],[9.054,45.8729],[9.0888,45.9007],[9.0194,45.9286],[9.0141,45.9602],[8.9888,45.9706],[9.0283,45.9937],[9.009,46.037],[9.0779,46.0653],[9.0898,46.0885],[9.0716,46.1195],[9.1826,46.1705],[9.2213,46.2299],[9.2476,46.2336],[9.4385,46.2159],[9.4141,46.1369]]],[[[8.9752,45.9616],[8.9579,45.9647],[8.9668,45.984],[8.9752,45.9616]]]]}},
{"type":"Feature","properties":{"code":"SO","name":"Sondrio"},"geometry":{"type":"Polygon","coordinates":[[[10.4531,46.5306],[10.4761,46.4955],[10.552,46.4915],[10.6218,46.448],[10.6294,46.4009],[10.5157,46.3432],[10.4981,46.3348],[10.4662,46.3548],[10.4226,46.3358],[10.3703,46.2927],[10.3208,46.2817],[10.2821,46.2134],[10.1799,46.178],[10.1594,46.1595],[10.1643,46.1067],[10.185,46.0809],[10.1696,46.057],[10.1026,46.0508],[10.1008,46.0899],[10.0248,46.0873],[9.9081,46.0464],[9.6435,46.06],[9.5873,46.024],[9.5269,46.0115],[9.5018,46.0457],[9.5098,46.0625],[9.415,46.0948],[9.4141,46.1369],[9.4385,46.2159],[9.2476,46.2336],[9.2516,46.2655],[9.3001,46.3266],[9.2767,46.3694],[9.2806,46.4124],[9.2465,46.4464],[9.2778,46.4616],[9.2819,46.4964],[9.3096,46.5045],[9.3647,46.5077],[9.4103,46.4665],[9.4599,46.5066],[9.4616,46.3763],[9.496,46.364],[9.5443,46.3049],[9.619,46.2873],[9.6757,46.3031],[9.7145,46.2931],[9.7373,46.3507],[9.7775,46.335],[9.9064,46.3809],[9.9254,46.366],[9.9586,46.3781],[9.9964,46.3509],[9.9808,46.3236],[9.9955,46.2855],[10.0555,46.2629],[10.0474,46.2287],[10.0708,46.2171],[10.1423,46.229],[10.1763,46.2579],[10.1043,46.3335],[10.166,46.4088],[10.1307,46.4319],[10.0796,46.4211],[10.0398,46.4457],[10.0534,46.4631],[10.0441,46.5394],[10.1011,46.5828],[10.1022,46.6108],[10.2135,46.6176],[10.2403,46.6351],[10.2582,46.6099],[10.244,46.5784],[10.2835,46.5712],[10.2957,46.5504],[10.4193,46.5511],[10.4531,46.5306]]]}},
{"type":"Feature","properties":{"code":"MI","name":"Milano"},"geometry":{"type":"MultiPolygon","coordinates":[[[[9.0529,45.6232],[9.1078,45.6227],[9.0956,45.5879],[9.1769,45.5918],[9.3128,45.5368],[9.3264,45.5616],[9.3794,45.5577],[9.4817,45.5968],[9.4959,45.6397],[9.5308,45.6007],[9.5263,45.5442],[9.5503,45.5242],[9.541,45.5037],[9.5192,45.5045],[9.4839,45.4487],[9.4313,45.4675],[9.4072,45.394],[9.3852,45.3993],[9.3782,45.3689],[9.353,45.3677],[9.3563,45.3435],[9.3932,45.3155],[9.3773,45.3023],[9.3547,45.3208],[9.3388,45.313],[9.2017,45.3348],[9.1821,45.3107],[9.193,45.2912],[9.1296,45.3111],[9.0814,45.3027],[9.0815,45.3158],[9.0301,45.2965],[9.0205,45.3259],[8.9917,45.3228],[8.9933,45.2974],[9.0187,45.2806],[8.9829,45.265],[8.9446,45.2915],[8.942,45.316],[8.8661,45.3431],[8.8429,45.3938],[8.7875,45.4862],[8.7228,45.506],[8.7069,45.5583],[8.7513,45.5655],[8.7862,45.6024],[8.837,45.5685],[8.863,45.5746],[8.8678,45.592],[8.9367,45.6235],[8.9399,45.6426],[8.9782,45.6146],[8.9744,45.5865],[9.0495,45.5775],[9.0644,45.582],[9.0529,45.6232]]],[[[9.5316,45.1654],[9.4783,45.1615],[9.4385,45.1876],[9.4742,45.2011],[9.5316,45.1654]]]]}},
{"type":"Feature","properties":{"code":"BG","name":"Bergamo"},"geometry":{"type":"Polygon","coordinates":[[[10.1696,46.057],[10.2281,46.0482],[10.2613,46.0171],[10.1996,46.005],[10.1779,45.9726],[10.1252,45.9585],[10.0949,45.9256],[10.109,45.8857],[10.1498,45.8631],[10.0574,45.7762],[10.0637,45.6835],[9.9423,45.6653],[9.8916,45.6044],[9.8506,45.6032],[9.8364,45.556],[9.8902,45.4684],[9.8896,45.4273],[9.8231,45.4565],[9.8079,45.4228],[9.7693,45.4302],[9.7627,45.4557],[9.7152,45.4827],[9.6618,45.4372],[9.6086,45.4755],[9.5508,45.4603],[9.5192,45.5045],[9.541,45.5037],[9.5503,45.5242],[9.5263,45.5442],[9.5308,45.6007],[9.4959,45.6397],[9.4766,45.6693],[9.451,45.6844],[9.4458,45.7605],[9.4706,45.7681],[9.4514,45.7868],[9.4963,45.7952],[9.4701,45.858],[9.524,45.8703],[9.505,45.8977],[9.5403,45.9492],[9.5031,45.9672],[9.4861,46.003],[9.5269,46.0115],[9.5873,46.024],[9.6435,46.06],[9.9081,46.0464],[10.0248,46.0873],[10.1008,46.0899],[10.1026,46.0508],[10.1696,46.057]]]}},
{"type":"Feature","properties":{"code":"BS","name":"Brescia"},"geometry":{"type":"Polygon","coordinates":[[[10.5157,46.3432],[10.5656,46.3263],[10.5796,46.2988],[10.5597,46.2831],[10.5857,46.2453],[10.5414,46.1886],[10.5654,46.1668],[10.5495,46.1174],[10.4809,46.0563],[10.4847,46.0246],[10.453,45.9899],[10.4534,45.9766],[10.4885,45.9693],[10.4847,45.9451],[10.5086,45.9236],[10.4901,45.8871],[10.5025,45.8302],[10.5433,45.8184],[10.526,45.8057],[10.5328,45.7881],[10.5611,45.7839],[10.6414,45.8019],[10.6546,45.8326],[10.6995,45.8417],[10.8402,45.8328],[10.631,45.6095],[10.6477,45.4485],[10.6236,45.4436],[10.6495,45.4408],[10.6546,45.4158],[10.6384,45.3857],[10.58,45.3811],[10.4512,45.4186],[10.467,45.4066],[10.4503,45.3831],[10.4713,45.3323],[10.4284,45.3207],[10.4251,45.2966],[10.3916,45.2738],[10.3973,45.2501],[10.3578,45.2405],[10.3614,45.2154],[10.3177,45.2047],[10.2663,45.2508],[10.2208,45.2418],[10.2198,45.2247],[10.1039,45.2465],[10.0833,45.2679],[9.8987,45.338],[9.8833,45.3576],[9.8896,45.4273],[9.8902,45.4684],[9.8364,45.556],[9.8506,45.6032],[9.8916,45.6044],[9.9423,45.6653],[10.0637,45.6835],[10.0574,45.7762],[10.1498,45.8631],[10.109,45.8857],[10.0949,45.9256],[10.1252,45.9585],[10.1779,45.9726],[10.1996,46.005],[10.2613,46.0171],[10.2281,46.0482],[10.1696,46.057],[10.185,46.0809],[10.1643,46.1067],[10.1594,46.1595],[10.1799,46.178],[10.2821,46.2134],[10.3208,46.2817],[10.3703,46.2927],[10.4226,46.3358],[10.4662,46.3548],[10.4981,46.3348],[10.5157,46.3432]]]}},
{"type":"Feature","properties":{"code":"PV","name":"Pavia"},"geometry":{"type":"Polygon","coordinates":[[[9.3388,45.313],[9.3576,45.2926],[9.321,45.2946],[9.3415,45.2713],[9.3104,45.249],[9.3708,45.2451],[9.4022,45.2019],[9.4385,45.1876],[9.4783,45.1615],[9.5316,45.1654],[9.5487,45.1327],[9.5358,45.122],[9.551,45.0908],[9.5334,45.0789],[9.4993,45.1039],[9.4108,45.0828],[9.3708,45.0482],[9.3756,45.0199],[9.3218,44.9441],[9.285,44.9318],[9.2774,44.8956],[9.3417,44.8698],[9.3631,44.8224],[9.287,44.7725],[9.3326,44.735],[9.3085,44.7056],[9.3246,44.69],[9.2595,44.6799],[9.2351,44.7164],[9.2371,44.6851],[9.2003,44.6864],[9.2136,44.7523],[9.1717,44.7717],[9.161,44.8147],[9.0726,44.8171],[9.049,44.8499],[9.0701,44.8647],[9.0559,44.8888],[8.9997,44.9093],[8.9696,44.9435],[8.9781,44.9672],[8.9606,44.9873],[8.9106,44.9955],[8.8874,45.0598],[8.7962,45.0358],[8.7717,45.0068],[8.7101,45.0383],[8.6591,45.018],[8.6347,45.041],[8.646,45.0753],[8.6091,45.1069],[8.611,45.1236],[8.5478,45.1682],[8.5446,45.1821],[8.5812,45.2022],[8.5245,45.1983],[8.548,45.2041],[8.5232,45.2216],[8.5437,45.234],[8.5291,45.2395],[8.5564,45.2406],[8.5221,45.2499],[8.5435,45.2546],[8.5351,45.2778],[8.4983,45.2922],[8.5135,45.3133],[8.5379,45.3172],[8.5266,45.3432],[8.5538,45.3615],[8.6288,45.3499],[8.6666,45.2922],[8.6906,45.2925],[8.7161,45.3029],[8.7248,45.3357],[8.7625,45.3486],[8.7191,45.3781],[8.8429,45.3938],[8.8661,45.3431],[8.942,45.316],[8.9446,45.2915],[8.9829,45.265],[9.0187,45.2806],[8.9933,45.2974],[8.9917,45.3228],[9.0205,45.3259],[9.0301,45.2965],[9.0815,45.3158],[9.0814,45.3027],[9.1296,45.3111],[9.193,45.2912],[9.1821,45.3107],[9.2017,45.3348],[9.3388,45.313]]]}},
{"type":"Feature","properties":{"code":"CR","name":"Cremona"},"geometry":{"type":"Polygon","coordinates":[[[9.8896,45.4273],[9.8833,45.3576],[9.8987,45.338],[10.0833,45.2679],[10.1039,45.2465],[10.2198,45.2247],[10.2208,45.2418],[10.2663,45.2508],[10.3177,45.2047],[10.311,45.1876],[10.3792,45.1385],[10.4179,45.13],[10.4596,45.1475],[10.4925,45.1324],[10.4591,45.1199],[10.4667,45.0955],[10.4173,45.0919],[10.4132,45.0422],[10.4938,45.0563],[10.492,45.083],[10.5331,45.0745],[10.5343,45.0453],[10.5112,45.0183],[10.4644,45.0147],[10.4557,44.9824],[10.5969,45.004],[10.5078,44.9724],[10.4955,44.9477],[10.464,44.9372],[10.4357,44.9431],[10.4057,44.9845],[10.3585,44.9655],[10.2111,45.034],[10.1577,45.0441],[10.1052,45.0222],[10.0835,45.044],[10.0502,45.0413],[10.0216,45.0759],[10.0285,45.0962],[9.989,45.1321],[9.9185,45.0996],[9.9247,45.134],[9.8911,45.1309],[9.8709,45.1591],[9.8326,45.1497],[9.8265,45.1634],[9.7856,45.1649],[9.7739,45.1885],[9.7506,45.1823],[9.7769,45.2131],[9.7168,45.2301],[9.719,45.263],[9.6752,45.2569],[9.6165,45.2938],[9.5721,45.3656],[9.5514,45.3391],[9.4619,45.3771],[9.4839,45.4487],[9.5192,45.5045],[9.5508,45.4603],[9.6086,45.4755],[9.6618,45.4372],[9.7152,45.4827],[9.7627,45.4557],[9.7693,45.4302],[9.8079,45.4228],[9.8231,45.4565],[9.8896,45.4273]]]}},
{"type":"Feature","properties":{"code":"MN","name":"Mantova"},"geometry":{"type":"Polygon","coordinates":[[[11.2055,45.1095],[11.1775,45.0973],[11.1884,45.0841],[11.1753,45.0601],[11.2404,45.043],[11.2659,45.0562],[11.274,45.0183],[11.4267,44.9501],[11.3016,44.9624],[11.2723,44.9383],[11.2462,44.9514],[11.1524,44.9332],[11.0735,44.963],[11.0595,44.9489],[10.9975,44.9551],[10.9414,44.9219],[10.8879,44.9143],[10.898,44.9218],[10.7437,44.9491],[10.7274,44.992],[10.6947,44.9619],[10.6867,44.9866],[10.5988,44.9147],[10.5043,44.9224],[10.464,44.9372],[10.4955,44.9477],[10.5078,44.9724],[10.5969,45.004],[10.4557,44.9824],[10.4644,45.0147],[10.5112,45.0183],[10.5343,45.0453],[10.5331,45.0745],[10.492,45.083],[10.4938,45.0563],[10.4132,45.0422],[10.4173,45.0919],[10.4667,45.0955],[10.4591,45.1199],[10.4925,45.1324],[10.4596,45.1475],[10.4179,45.13],[10.3792,45.1385],[10.311,45.1876],[10.3177,45.2047],[10.3614,45.2154],[10.3578,45.2405],[10.3973,45.2501],[10.3916,45.2738],[10.4251,45.2966],[10.4284,45.3207],[10.4713,45.3323],[10.4503,45.3831],[10.467,45.4066],[10.4512,45.4186],[10.58,45.3811],[10.6384,45.3857],[10.6546,45.4158],[10.6652,45.4277],[10.7161,45.4161],[10.6977,45.3801],[10.7146,45.3679],[10.6855,45.3537],[10.715,45.3341],[10.7064,45.3163],[10.7305,45.3159],[10.7283,45.2913],[10.7828,45.3154],[10.8466,45.2566],[10.9368,45.2329],[10.935,45.2142],[10.9971,45.1869],[10.9945,45.1504],[11.0501,45.15],[11.0284,45.1267],[11.0397,45.1131],[11.0976,45.0952],[11.1006,45.1127],[11.1274,45.1032],[11.1459,45.126],[11.2055,45.1095]]]}},
{"type":"Feature","properties":{"code":"BZ","name":"Bolzano"},"geometry":{"type":"Polygon","coordinates":[[[12.4776,46.6798],[12.3798,46.6429],[12.3852,46.6228],[12.2612,46.6291],[12.1922,46.5946],[12.1943,46.6193],[12.0683,46.6751],[12.0742,46.6426],[12.0467,46.5847],[11.9984,46.5329],[11.9661,46.5447],[11.8283,46.5089],[11.8112,46.5328],[11.7746,46.5092],[11.6328,46.4993],[11.6503,46.4831],[11.6248,46.4711],[11.6017,46.3898],[11.5637,46.3809],[11.5572,46.3509],[11.4769,46.3639],[11.4545,46.3347],[11.3595,46.2996],[11.3976,46.2648],[11.3588,46.2657],[11.3338,46.2977],[11.3056,46.2588],[11.2064,46.2198],[11.1746,46.2327],[11.2024,46.2556],[11.1388,46.2833],[11.2036,46.3421],[11.1916,46.3598],[11.2056,46.3672],[11.2204,46.462],[11.1871,46.5087],[11.1297,46.4816],[11.0894,46.5018],[11.0824,46.5314],[11.0348,46.5141],[11.062,46.4862],[11.0727,46.4415],[10.9757,46.484],[10.913,46.444],[10.8836,46.4512],[10.8613,46.4361],[10.8004,46.443],[10.765,46.486],[10.6846,46.4515],[10.6218,46.448],[10.552,46.4915],[10.4761,46.4955],[10.4531,46.5306],[10.4726,46.5436],[10.4923,46.6151],[10.446,46.6411],[10.4016,46.637],[10.3861,46.6802],[10.4175,46.7143],[10.4011,46.7341],[10.4421,46.7529],[10.4247,46.7888],[10.4784,46.8587],[10.5507,46.8392],[10.6679,46.8759],[10.7634,46.8233],[10.7305,46.7879],[10.7888,46.7947],[10.8832,46.7631],[10.9232,46.7749],[11.0221,46.7652],[11.0398,46.8051],[11.0835,46.8222],[11.0714,46.8529],[11.1015,46.8899],[11.0959,46.9122],[11.1652,46.9407],[11.1645,46.9656],[11.3193,46.9924],[11.4009,46.9652],[11.4793,47.0109],[11.5381,46.9841],[11.6272,47.0126],[11.7472,46.9689],[11.9321,47.0376],[12.1867,47.0918],[12.2402,47.0679],[12.2167,47.0585],[12.2048,47.0279],[12.121,47.0067],[12.1315,46.9629],[12.1682,46.9379],[12.1441,46.914],[12.1902,46.9062],[12.2162,46.8739],[12.2422,46.8911],[12.274,46.8844],[12.3069,46.8409],[12.2824,46.815],[12.2838,46.7829],[12.3574,46.7747],[12.3837,46.7166],[12.4776,46.6798]]]}},
{"type":"Feature","properties":{"code":"TN","name":"Trento"},"geometry":{"type":"Polygon","coordinates":[[[11.6843,45.9841],[11.6858,45.9693],[11.6276,45.9606],[11.5876,45.969],[11.5772,46.0065],[11.5389,46.0133],[11.4912,46.0085],[11.4468,45.9809],[11.3737,45.9835],[11.3807,45.9427],[11.3583,45.9437],[11.3493,45.9095],[11.313,45.9298],[11.2583,45.9207],[11.2393,45.856],[11.1888,45.8136],[11.2028,45.7834],[11.1735,45.7867],[11.1784,45.7381],[11.1385,45.6968],[11.0924,45.6952],[11.0564,45.7185],[11.0165,45.7057],[11.0115,45.7189],[10.9863,45.6888],[10.9683,45.6801],[10.9722,45.7018],[10.9375,45.6734],[10.8896,45.7151],[10.8438,45.7186],[10.885,45.7747],[10.8728,45.7886],[10.8876,45.8116],[10.8402,45.8328],[10.6995,45.8417],[10.6546,45.8326],[10.6414,45.8019],[10.5611,45.7839],[10.5328,45.7881],[10.526,45.8057],[10.5433,45.8184],[10.5025,45.8302],[10.4901,45.8871],[10.5086,45.9236],[10.4847,45.9451],[10.4885,45.9693],[10.4534,45.9766],[10.453,45.9899],[10.4847,46.0246],[10.4809,46.0563],[10.5495,46.1174],[10.5654,46.1668],[10.5414,46.1886],[10.5857,46.2453],[10.5597,46.2831],[10.5796,46.2988],[10.5656,46.3263],[10.5157,46.3432],[10.6294,46.4009],[10.6218,46.448],[10.6846,46.4515],[10.765,46.486],[10.8004,46.443],[10.8613,46.4361],[10.8836,46.4512],[10.913,46.444],[10.9757,46.484],[11.0727,46.4415],[11.062,46.4862],[11.0348,46.5141],[11.0824,46.5314],[11.0894,46.5018],[11.1297,46.4816],[11.1871,46.5087],[11.2204,46.462],[11.2056,46.3672],[11.1916,46.3598],[11.2036,46.3421],[11.1388,46.2833],[11.2024,46.2556],[11.1746,46.2327],[11.2064,46.2198],[11.3056,46.2588],[11.3338,46.2977],[11.3588,46.2657],[11.3976,46.2648],[11.3595,46.2996],[11.4545,46.3347],[11.4769,46.3639],[11.5572,46.3509],[11.5637,46.3809],[11.6017,46.3898],[11.6248,46.4711],[11.6503,46.4831],[11.6328,46.4993],[11.7746,46.5092],[11.8112,46.5328],[11.8283,46.5089],[11.8132,46.4781],[11.8772,46.4718],[11.8891,46.4427],[11.8503,46.4342],[11.8354,46.3662],[11.8202,46.3766],[11.7744,46.3582],[11.8319,46.3251],[11.838,46.2703],[11.8852,46.2788],[11.892,46.2526],[11.9291,46.2488],[11.9096,46.2244],[11.9623,46.188],[11.9509,46.1703],[11.9286,46.1758],[11.8876,46.1187],[11.6853,46.0936],[11.7064,46.046],[11.6667,46.0378],[11.6819,46.0284],[11.6667,46.0171],[11.6843,45.9841]]]}},
{"type":"Feature","properties":{"code":"VR","name":"Verona"},"geometry":{"type":"Polygon","coordinates":[[[11.1385,45.6968],[11.1566,45.6796],[11.159,45.6398],[11.1822,45.6183],[11.2143,45.6252],[11.2445,45.5871],[11.2515,45.5422],[11.3238,45.494],[11.3181,45.4328],[11.3393,45.4239],[11.3459,45.3975],[11.3308,45.3872],[11.3543,45.3535],[11.4503,45.3252],[11.4327,45.3077],[11.4883,45.2853],[11.487,45.266],[11.3926,45.2594],[11.4288,45.1505],[11.4169,45.1293],[11.4458,45.0807],[11.4017,45.0528],[11.3608,45.0573],[11.3057,45.0922],[11.2239,45.0836],[11.2055,45.1095],[11.1459,45.126],[11.1274,45.1032],[11.1006,45.1127],[11.0976,45.0952],[11.0397,45.1131],[11.0284,45.1267],[11.0501,45.15],[10.9945,45.1504],[10.9971,45.1869],[10.935,45.2142],[10.9368,45.2329],[10.8466,45.2566],[10.7828,45.3154],[10.7283,45.2913],[10.7305,45.3159],[10.7064,45.3163],[10.715,45.3341],[10.6855,45.3537],[10.7146,45.3679],[10.6977,45.3801],[10.7161,45.4161],[10.6652,45.4277],[10.6546,45.4158],[10.6495,45.4408],[10.6236,45.4436],[10.6477,45.4485],[10.631,45.6095],[10.8402,45.8328],[10.8876,45.8116],[10.8728,45.7886],[10.885,45.7747],[10.8438,45.7186],[10.8896,45.7151],[10.9375,45.6734],[10.9722,45.7018],[10.9683,45.6801],[10.9863,45.6888],[11.0115,45.7189],[11.0165,45.7057],[11.0564,45.7185],[11.0924,45.6952],[11.1385,45.6968]]]}},
{"type":"Feature","properties":{"code":"VI","name":"Vicenza"},"geometry":{"type":"Polygon","coordinates":[[[11.6843,45.9841],[11.7161,45.9716],[11.7289,45.9342],[11.7873,45.9243],[11.7742,45.8896],[11.7996,45.8806],[11.7427,45.8549],[11.7646,45.8032],[11.8218,45.7807],[11.834,45.747],[11.8141,45.7434],[11.8217,45.6872],[11.7065,45.6803],[11.6799,45.6407],[11.6466,45.6342],[11.6447,45.5961],[11.6743,45.5919],[11.6577,45.5402],[11.7217,45.5438],[11.7302,45.5599],[11.759,45.5204],[11.7279,45.5205],[11.7454,45.4717],[11.7069,45.476],[11.6832,45.4294],[11.6157,45.388],[11.6198,45.3303],[11.5883,45.313],[11.5803,45.2873],[11.6177,45.2585],[11.487,45.266],[11.4883,45.2853],[11.4327,45.3077],[11.4503,45.3252],[11.3543,45.3535],[11.3308,45.3872],[11.3459,45.3975],[11.3393,45.4239],[11.3181,45.4328],[11.3238,45.494],[11.2515,45.5422],[11.2445,45.5871],[11.2143,45.6252],[11.1822,45.6183],[11.159,45.6398],[11.1566,45.6796],[11.1385,45.6968],[11.1784,45.7381],[11.1735,45.7867],[11.2028,45.7834],[11.1888,45.8136],[11.2393,45.856],[11.2583,45.9207],[11.313,45.9298],[11.3493,45.9095],[11.3583,45.9437],[11.3807,45.9427],[11.3737,45.9835],[11.4468,45.9809],[11.4912,46.0085],[11.5389,46.0133],[11.5772,46.0065],[11.5876,45.969],[11.6276,45.9606],[11.6858,45.9693],[11.6843,45.9841]]]}},
{"type":"Feature","properties":{"code":"BL","name":"Belluno"},"geometry":{"type":"Polygon","coordinates":[[[12.732,46.6338],[12.7062,46.6208],[12.7086,46.602],[12.637,46.5726],[12.6202,46.5438],[12.63,46.5007],[12.6624,46.468],[12.5308,46.4649],[12.4925,46.4243],[12.4987,46.4122],[12.455,46.3917],[12.4629,46.3693],[12.4174,46.3549],[12.4115,46.3308],[12.3547,46.3197],[12.3209,46.2689],[12.3383,46.239],[12.4017,46.229],[12.4063,46.2073],[12.4465,46.2078],[12.4473,46.1796],[12.4958,46.1526],[12.4844,46.1045],[12.4375,46.0848],[12.4003,46.042],[12.3915,46.0713],[12.3152,46.0808],[12.2262,46.0131],[12.111,46.0032],[12.0622,45.9627],[12.0311,45.9737],[11.9616,45.9547],[11.9505,45.8958],[11.8692,45.8807],[11.8253,45.9081],[11.7996,45.8806],[11.7742,45.8896],[11.7873,45.9243],[11.7289,45.9342],[11.7161,45.9716],[11.6843,45.9841],[11.6667,46.0171],[11.6819,46.0284],[11.6667,46.0378],[11.7064,46.046],[11.6853,46.0936],[11.8876,46.1187],[11.9286,46.1758],[11.9509,46.1703],[11.9623,46.188],[11.9096,46.2244],[11.9291,46.2488],[11.892,46.2526],[11.8852,46.2788],[11.838,46.2703],[11.8319,46.3251],[11.7744,46.3582],[11.8202,46.3766],[11.8354,46.3662],[11.8503,46.4342],[11.8891,46.4427],[11.8772,46.4718],[11.8132,46.4781],[11.8283,46.5089],[11.9661,46.5447],[11.9984,46.5329],[12.0467,46.5847],[12.0742,46.6426],[12.0683,46.6751],[12.1943,46.6193],[12.1922,46.5946],[12.2612,46.6291],[12.3852,46.6228],[12.3798,46.6429],[12.4776,46.6798],[12.567,46.6508],[12.6901,46.656],[12.732,46.6338]]]}},
{"type":"Feature","properties":{"code":"TV","name":"Treviso"},"geometry":{"type":"Polygon","coordinates":[[[12.4003,46.042],[12.4282,45.9958],[12.4261,45.947],[12.506,45.9227],[12.5593,45.8259],[12.5933,45.8151],[12.6057,45.8382],[12.6314,45.83],[12.6617,45.7924],[12.6621,45.7556],[12.6466,45.7474],[12.6695,45.746],[12.6708,45.7168],[12.685,45.713],[12.6025,45.6801],[12.5752,45.6972],[12.5337,45.679],[12.504,45.6876],[12.4857,45.6396],[12.4377,45.6397],[12.4243,45.6232],[12.4531,45.5718],[12.4395,45.5593],[12.3524,45.5879],[12.3353,45.5618],[12.2794,45.5676],[12.2797,45.5358],[12.2462,45.5305],[12.2057,45.5412],[12.2123,45.5645],[12.1917,45.5835],[12.1614,45.5743],[12.113,45.613],[12.0925,45.5983],[12.0742,45.6417],[12.0319,45.6472],[11.9652,45.6079],[11.9011,45.628],[11.8981,45.6131],[11.8809,45.6658],[11.8217,45.6872],[11.8141,45.7434],[11.834,45.747],[11.8218,45.7807],[11.7646,45.8032],[11.7427,45.8549],[11.7996,45.8806],[11.8253,45.9081],[11.8692,45.8807],[11.9505,45.8958],[11.9616,45.9547],[12.0311,45.9737],[12.0622,45.9627],[12.111,46.0032],[12.2262,46.0131],[12.3152,46.0808],[12.3915,46.0713],[12.4003,46.042]]]}},
{"type":"Feature","properties":{"code":"VE","name":"Venezia"},"geometry":{"type":"Polygon","coordinates":[[[12.979,45.834],[12.9934,45.8142],[12.9742,45.8076],[12.9913,45.8],[12.9812,45.7869],[13.012,45.7625],[13.0083,45.7249],[13.0292,45.7362],[13.0634,45.6568],[13.101,45.6435],[12.9084,45.6144],[12.7365,45.5317],[12.4681,45.445],[12.4269,45.418],[12.3934,45.4262],[12.3334,45.3585],[12.329,45.3375],[12.3428,45.3338],[12.3252,45.3313],[12.3039,45.2802],[12.2972,45.2364],[12.3142,45.2332],[12.3,45.2116],[12.3324,45.1628],[12.2827,45.1434],[12.2843,45.1258],[12.26,45.1131],[12.1678,45.094],[12.1416,45.0556],[12.0255,45.1196],[12.0291,45.1378],[11.9688,45.134],[11.9778,45.1871],[12.123,45.2104],[12.1839,45.1951],[12.1539,45.217],[12.1935,45.234],[12.2062,45.2731],[12.1863,45.3023],[12.1275,45.3009],[12.0878,45.3316],[12.0287,45.3175],[12.0123,45.3424],[12.0347,45.3573],[11.9752,45.3974],[12.0028,45.4084],[11.9955,45.4231],[12.027,45.4471],[11.9761,45.4611],[11.9973,45.5181],[12.0083,45.5321],[12.026,45.5194],[12.0354,45.5713],[12.0829,45.5806],[12.0925,45.5983],[12.113,45.613],[12.1614,45.5743],[12.1917,45.5835],[12.2123,45.5645],[12.2057,45.5412],[12.2462,45.5305],[12.2797,45.5358],[12.2794,45.5676],[12.3353,45.5618],[12.3524,45.5879],[12.4395,45.5593],[12.4531,45.5718],[12.4243,45.6232],[12.4377,45.6397],[12.4857,45.6396],[12.504,45.6876],[12.5337,45.679],[12.5752,45.6972],[12.6025,45.6801],[12.685,45.713],[12.6708,45.7168],[12.6695,45.746],[12.6466,45.7474],[12.6621,45.7556],[12.6617,45.7924],[12.7798,45.8544],[12.8043,45.8446],[12.807,45.8203],[12.8612,45.8508],[12.893,45.8197],[12.9521,45.8222],[12.9578,45.8474],[12.979,45.834]]]}},
{"type":"Feature","properties":{"code":"PD","name":"Padova"},"geometry":{"type":"Polygon","coordinates":[[[12.0925,45.5983],[12.0829,45.5806],[12.0354,45.5713],[12.026,45.5194],[12.0083,45.5321],[11.9973,45.5181],[11.9761,45.4611],[12.027,45.4471],[11.9955,45.4231],[12.0028,45.4084],[11.9752,45.3974],[12.0347,45.3573],[12.0123,45.3424],[12.0287,45.3175],[12.0878,45.3316],[12.1275,45.3009],[12.1863,45.3023],[12.2062,45.2731],[12.1935,45.234],[12.1539,45.217],[12.1839,45.1951],[12.123,45.2104],[11.9778,45.1871],[11.9688,45.134],[11.8653,45.1334],[11.7582,45.0954],[11.5726,45.1241],[11.493,45.1031],[11.4169,45.1293],[11.4288,45.1505],[11.3926,45.2594],[11.487,45.266],[11.6177,45.2585],[11.5803,45.2873],[11.5883,45.313],[11.6198,45.3303],[11.6157,45.388],[11.6832,45.4294],[11.7069,45.476],[11.7454,45.4717],[11.7279,45.5205],[11.759,45.5204],[11.7302,45.5599],[11.7217,45.5438],[11.6577,45.5402],[11.6743,45.5919],[11.6447,45.5961],[11.6466,45.6342],[11.6799,45.6407],[11.7065,45.6803],[11.8217,45.6872],[11.8809,45.6658],[11.8981,45.6131],[11.9011,45.628],[11.9652,45.6079],[12.0319,45.6472],[12.0742,45.6417],[12.0925,45.5983]]]}},
{"type":"Feature","properties":{"code":"RO","name":"Rovigo"},"geometry":{"type":"Polygon","coordinates":[[[12.3968,44.7907],[12.3533,44.817],[12.3405,44.8501],[12.2941,44.8604],[12.2819,44.91],[12.2947,44.9274],[12.2762,44.9433],[12.225,44.923],[12.1707,44.942],[12.1424,44.9279],[12.1131,44.9604],[12.0475,44.977],[11.8065,44.9772],[11.7456,44.9573],[11.7341,44.9271],[11.6174,44.888],[11.5341,44.9362],[11.4294,44.929],[11.4267,44.9501],[11.274,45.0183],[11.2659,45.0562],[11.2404,45.043],[11.1753,45.0601],[11.1884,45.0841],[11.1775,45.0973],[11.2055,45.1095],[11.2239,45.0836],[11.3057,45.0922],[11.3608,45.0573],[11.4017,45.0528],[11.4458,45.0807],[11.4169,45.1293],[11.493,45.1031],[11.5726,45.1241],[11.7582,45.0954],[11.8653,45.1334],[11.9688,45.134],[12.0291,45.1378],[12.0255,45.1196],[12.1416,45.0556],[12.1678,45.094],[12.26,45.1131],[12.2843,45.1258],[12.2827,45.1434],[12.3324,45.1628],[12.3372,45.0895],[12.4441,45.0132],[12.5541,44.9656],[12.5091,44.9264],[12.465,44.8437],[12.429,44.8309],[12.3968,44.7907]]]}},
{"type":"Feature","properties":{"code":"UD","name":"Udine"},"geometry":{"type":"Polygon","coordinates":[[[13.497,46.0514],[13.4603,46.0054],[13.4645,45.9842],[13.3867,45.913],[13.4259,45.8681],[13.4117,45.8561],[13.4403,45.7857],[13.42,45.7569],[13.4611,45.7497],[13.3898,45.7237],[13.2438,45.757],[13.2458,45.7195],[13.1488,45.6988],[13.101,45.6435],[13.0634,45.6568],[13.0292,45.7362],[13.0083,45.7249],[13.012,45.7625],[12.9812,45.7869],[12.9913,45.8],[12.9742,45.8076],[12.9934,45.8142],[12.979,45.834],[12.9746,45.8734],[12.9215,45.9043],[12.9038,45.965],[12.9169,46.0741],[12.9652,46.1949],[12.9377,46.2119],[12.9731,46.2334],[12.9739,46.2636],[12.9906,46.2732],[12.9536,46.3004],[12.9736,46.3282],[12.9151,46.3468],[12.8821,46.3304],[12.8091,46.3598],[12.708,46.3253],[12.6782,46.3476],[12.6058,46.3445],[12.5859,46.3677],[12.5415,46.3603],[12.4987,46.4122],[12.4925,46.4243],[12.5308,46.4649],[12.6624,46.468],[12.63,46.5007],[12.6202,46.5438],[12.637,46.5726],[12.7086,46.602],[12.7062,46.6208],[12.732,46.6338],[12.7746,46.6468],[12.8373,46.6274],[12.847,46.6058],[13.1684,46.5888],[13.2325,46.5536],[13.3202,46.5529],[13.3728,46.5794],[13.4254,46.5579],[13.5041,46.5661],[13.5182,46.5473],[13.7139,46.5231],[13.6888,46.4399],[13.5975,46.4393],[13.5654,46.3982],[13.439,46.3602],[13.439,46.3223],[13.3755,46.2982],[13.4225,46.2344],[13.4091,46.2149],[13.4235,46.2063],[13.4844,46.2246],[13.5533,46.2086],[13.5669,46.1857],[13.6632,46.1801],[13.6439,46.1371],[13.497,46.0514]]]}},
{"type":"Feature","properties":{"code":"GO","name":"Gorizia"},"geometry":{"type":"Polygon","coordinates":[[[13.5362,45.7843],[13.5164,45.7443],[13.5528,45.7241],[13.4611,45.7112],[13.4602,45.6941],[13.4243,45.6772],[13.3438,45.6804],[13.2458,45.7195],[13.2438,45.757],[13.3898,45.7237],[13.4611,45.7497],[13.42,45.7569],[13.4403,45.7857],[13.4117,45.8561],[13.4259,45.8681],[13.3867,45.913],[13.4645,45.9842],[13.4603,46.0054],[13.497,46.0514],[13.5076,46.0335],[13.4762,46.0063],[13.5278,45.9671],[13.5682,45.9681],[13.5905,45.9898],[13.6429,45.983],[13.6375,45.9354],[13.5727,45.8476],[13.5963,45.8079],[13.5809,45.7818],[13.5619,45.7784],[13.5335,45.8047],[13.5481,45.7902],[13.5362,45.7843]]]}},
{"type":"Feature","properties":{"code":"TS","name":"Trieste"},"geometry":{"type":"Polygon","coordinates":[[[13.6963,45.7209],[13.632,45.7682],[13.5809,45.7818],[13.5963,45.8079],[13.6694,45.7996],[13.7963,45.7427],[13.8581,45.6657],[13.9189,45.6336],[13.8422,45.5831],[13.7199,45.5997],[13.8089,45.6067],[13.7804,45.6121],[13.7797,45.6119],[13.7803,45.6125],[13.7768,45.6135],[13.774,45.6128],[13.7767,45.6136],[13.7757,45.6356],[13.7442,45.6391],[13.7691,45.653],[13.7538,45.6797],[13.7201,45.701],[13.7113,45.7108],[13.6963,45.7209]]]}},
{"type":"Feature","properties":{"code":"PC","name":"Piacenza"},"geometry":{"type":"Polygon","coordinates":[[[10.0835,45.044],[10.0455,45.0292],[10.0334,44.9867],[9.9942,44.9552],[9.9939,44.9077],[10.0123,44.8879],[9.9867,44.8456],[9.8822,44.8037],[9.8807,44.7687],[9.8198,44.7617],[9.8158,44.7388],[9.7622,44.7054],[9.7652,44.6813],[9.702,44.6714],[9.6752,44.6876],[9.6249,44.6563],[9.6318,44.6406],[9.4933,44.5559],[9.4231,44.5746],[9.4056,44.6008],[9.3811,44.5767],[9.343,44.5777],[9.3004,44.6078],[9.2722,44.5959],[9.2456,44.5997],[9.2455,44.6196],[9.203,44.6135],[9.2003,44.6864],[9.2371,44.6851],[9.2351,44.7164],[9.2595,44.6799],[9.3246,44.69],[9.3085,44.7056],[9.3326,44.735],[9.287,44.7725],[9.3631,44.8224],[9.3417,44.8698],[9.2774,44.8956],[9.285,44.9318],[9.3218,44.9441],[9.3756,45.0199],[9.3708,45.0482],[9.4108,45.0828],[9.4993,45.1039],[9.5334,45.0789],[9.551,45.0908],[9.5358,45.122],[9.5487,45.1327],[9.5874,45.0996],[9.6294,45.132],[9.6349,45.084],[9.715,45.0582],[9.7496,45.0778],[9.7451,45.1109],[9.7575,45.1125],[9.8133,45.0781],[9.8238,45.0526],[9.8384,45.0956],[9.8968,45.0805],[9.8752,45.1196],[9.8911,45.1309],[9.9247,45.134],[9.9185,45.0996],[9.989,45.1321],[10.0285,45.0962],[10.0216,45.0759],[10.0502,45.0413],[10.0835,45.044]]]}},
{"type":"Feature","properties":{"code":"PR","name":"Parma"},"geometry":{"type":"Polygon","coordinates":[[[10.464,44.9372],[10.5043,44.9224],[10.4637,44.8978],[10.4743,44.8758],[10.4235,44.7982],[10.4252,44.7394],[10.4473,44.7193],[10.4138,44.6659],[10.4008,44.5616],[10.3425,44.5257],[10.3316,44.4848],[10.2554,44.4523],[10.2081,44.3943],[10.1574,44.3794],[10.142,44.3539],[10.0983,44.3463],[10.01,44.3892],[9.9893,44.4043],[10.0004,44.4439],[9.9243,44.4724],[9.8199,44.4664],[9.7565,44.4062],[9.7605,44.39],[9.6867,44.3659],[9.655,44.4119],[9.6015,44.4368],[9.479,44.4093],[9.4388,44.4279],[9.4689,44.4819],[9.4968,44.4827],[9.4933,44.5559],[9.6318,44.6406],[9.6249,44.6563],[9.6752,44.6876],[9.702,44.6714],[9.7652,44.6813],[9.7622,44.7054],[9.8158,44.7388],[9.8198,44.7617],[9.8807,44.7687],[9.8822,44.8037],[9.9867,44.8456],[10.0123,44.8879],[9.9939,44.9077],[9.9942,44.9552],[10.0334,44.9867],[10.0455,45.0292],[10.0835,45.044],[10.1052,45.0222],[10.1577,45.0441],[10.2111,45.034],[10.3585,44.9655],[10.4057,44.9845],[10.4357,44.9431],[10.464,44.9372]]]}},
{"type":"Feature","properties":{"code":"RE","name":"Reggio nell'Emilia"},"geometry":{"type":"Polygon","coordinates":[[[10.8879,44.9143],[10.8783,44.8677],[10.8501,44.8665],[10.815,44.8072],[10.842,44.7955],[10.8155,44.7548],[10.8153,44.6565],[10.7825,44.63],[10.7667,44.5427],[10.6576,44.4584],[10.6142,44.3748],[10.528,44.3509],[10.516,44.2822],[10.4701,44.2261],[10.4303,44.2274],[10.3716,44.2694],[10.3071,44.2843],[10.2539,44.2686],[10.142,44.3539],[10.1574,44.3794],[10.2081,44.3943],[10.2554,44.4523],[10.3316,44.4848],[10.3425,44.5257],[10.4008,44.5616],[10.4138,44.6659],[10.4473,44.7193],[10.4252,44.7394],[10.4235,44.7982],[10.4743,44.8758],[10.4637,44.8978],[10.5043,44.9224],[10.5988,44.9147],[10.6867,44.9866],[10.6947,44.9619],[10.7274,44.992],[10.7437,44.9491],[10.898,44.9218],[10.8879,44.9143]]]}},
{"type":"Feature","properties":{"code":"MO","name":"Modena"},"geometry":{"type":"Polygon","coordinates":[[[11.2462,44.9514],[11.2604,44.9331],[11.2347,44.906],[11.3411,44.8726],[11.3686,44.8427],[11.3116,44.8275],[11.2933,44.8028],[11.2078,44.8043],[11.1299,44.7829],[11.1168,44.7097],[11.0781,44.647],[11.1278,44.6314],[11.1183,44.6178],[11.1525,44.5866],[11.1077,44.5451],[11.1082,44.5247],[11.0561,44.5341],[11.0654,44.5001],[11.0506,44.4707],[10.9902,44.4406],[11.0482,44.4161],[11.0224,44.3733],[11.0401,44.331],[11.0079,44.2969],[10.9499,44.2932],[10.9737,44.277],[10.9571,44.226],[10.9072,44.2054],[10.8897,44.2245],[10.8503,44.2278],[10.8552,44.2074],[10.8089,44.1548],[10.8148,44.1162],[10.7543,44.1541],[10.644,44.1601],[10.6241,44.1204],[10.5925,44.1156],[10.5251,44.1562],[10.4852,44.2045],[10.4929,44.217],[10.4701,44.2261],[10.516,44.2822],[10.528,44.3509],[10.6142,44.3748],[10.6576,44.4584],[10.7667,44.5427],[10.7825,44.63],[10.8153,44.6565],[10.8155,44.7548],[10.842,44.7955],[10.815,44.8072],[10.8501,44.8665],[10.8783,44.8677],[10.8879,44.9143],[10.9414,44.9219],[10.9975,44.9551],[11.0595,44.9489],[11.0735,44.963],[11.1524,44.9332],[11.2462,44.9514]]]}},
{"type":"Feature","properties":{"code":"BO","name":"Bologna"},"geometry":{"type":"Polygon","coordinates":[[[11.7892,44.5543],[11.7787,44.5035],[11.7498,44.4976],[11.7967,44.4857],[11.7813,44.4363],[11.8404,44.4236],[11.8362,44.4126],[11.733,44.3061],[11.6961,44.2887],[11.6976,44.3093],[11.6728,44.3155],[11.6654,44.2787],[11.6399,44.2737],[11.627,44.2478],[11.5554,44.2232],[11.5617,44.1855],[11.5356,44.1904],[11.5249,44.1577],[11.4476,44.1995],[11.4513,44.2206],[11.4211,44.2392],[11.3805,44.2],[11.3428,44.2058],[11.2807,44.1553],[11.1957,44.1514],[11.2637,44.1043],[11.2024,44.1007],[11.1592,44.1124],[11.0494,44.0902],[11.002,44.1109],[11.0124,44.1382],[10.9161,44.0623],[10.8921,44.0924],[10.8148,44.1162],[10.8089,44.1548],[10.8552,44.2074],[10.8503,44.2278],[10.8897,44.2245],[10.9072,44.2054],[10.9571,44.226],[10.9737,44.277],[10.9499,44.2932],[11.0079,44.2969],[11.0401,44.331],[11.0224,44.3733],[11.0482,44.4161],[10.9902,44.4406],[11.0506,44.4707],[11.0654,44.5001],[11.0561,44.5341],[11.1082,44.5247],[11.1077,44.5451],[11.1525,44.5866],[11.1183,44.6178],[11.1278,44.6314],[11.0781,44.647],[11.1168,44.7097],[11.1299,44.7829],[11.2078,44.8043],[11.2933,44.8028],[11.2461,44.7584],[11.2731,44.7504],[11.2532,44.7163],[11.2754,44.7056],[11.3734,44.78],[11.4528,44.7605],[11.5927,44.7117],[11.674,44.6323],[11.7239,44.6367],[11.728,44.6542],[11.7908,44.6362],[11.8064,44.6236],[11.7856,44.585],[11.7456,44.58],[11.7892,44.5543]]]}},
{"type":"Feature","properties":{"code":"FE","name":"Ferrara"},"geometry":{"type":"Polygon","coordinates":[[[12.3968,44.7907],[12.3154,44.7914],[12.3877,44.7897],[12.3086,44.8423],[12.2578,44.8152],[12.2663,44.8044],[12.2861,44.8172],[12.2423,44.7271],[12.2411,44.6867],[12.2687,44.6292],[12.1538,44.5485],[12.076,44.5613],[12.0595,44.5485],[12.0281,44.5605],[12.0022,44.6002],[11.7892,44.5543],[11.7456,44.58],[11.7856,44.585],[11.8064,44.6236],[11.7908,44.6362],[11.728,44.6542],[11.7239,44.6367],[11.674,44.6323],[11.5927,44.7117],[11.4528,44.7605],[11.3734,44.78],[11.2754,44.7056],[11.2532,44.7163],[11.2731,44.7504],[11.2461,44.7584],[11.2933,44.8028],[11.3116,44.8275],[11.3686,44.8427],[11.3411,44.8726],[11.2347,44.906],[11.2604,44.9331],[11.2462,44.9514],[11.2723,44.9383],[11.3016,44.9624],[11.4267,44.9501],[11.4294,44.929],[11.5341,44.9362],[11.6174,44.888],[11.7341,44.9271],[11.7456,44.9573],[11.8065,44.9772],[12.0475,44.977],[12.1131,44.9604],[12.1424,44.9279],[12.1707,44.942],[12.225,44.923],[12.2762,44.9433],[12.2947,44.9274],[12.2819,44.91],[12.2941,44.8604],[12.3405,44.8501],[12.3533,44.817],[12.3968,44.7907]]]}},
{"type":"Feature","properties":{"code":"RA","name":"Ravenna"},"geometry":{"type":"Polygon","coordinates":[[[12.3835,44.2245],[12.3493,44.1907],[12.2802,44.2332],[12.2262,44.2141],[12.2017,44.2262],[12.2088,44.2556],[12.1712,44.2442],[12.1032,44.272],[12.108,44.2886],[12.055,44.3053],[12.0356,44.3308],[11.9759,44.2557],[11.9262,44.241],[11.9283,44.2156],[11.8886,44.1707],[11.8294,44.199],[11.7808,44.1804],[11.7567,44.1949],[11.7202,44.1587],[11.7159,44.1226],[11.6788,44.1229],[11.6526,44.1012],[11.6162,44.1185],[11.5846,44.1122],[11.6154,44.1583],[11.5249,44.1577],[11.5356,44.1904],[11.5617,44.1855],[11.5554,44.2232],[11.627,44.2478],[11.6399,44.2737],[11.6654,44.2787],[11.6728,44.3155],[11.6976,44.3093],[11.6961,44.2887],[11.733,44.3061],[11.8362,44.4126],[11.8404,44.4236],[11.7813,44.4363],[11.7967,44.4857],[11.7498,44.4976],[11.7787,44.5035],[11.7892,44.5543],[12.0022,44.6002],[12.0281,44.5605],[12.0595,44.5485],[12.076,44.5613],[12.1538,44.5485],[12.2687,44.6292],[12.2893,44.4631],[12.3835,44.2245]]]}},
{"type":"Feature","properties":{"code":"FC","name":"Forli'-Cesena"},"geometry":{"type":"Polygon","coordinates":[[[12.3835,44.2245],[12.4506,44.1622],[12.4287,44.1473],[12.4521,44.0872],[12.365,44.0614],[12.3605,44.0498],[12.3953,44.0302],[12.3125,43.9402],[12.2508,43.9107],[12.1595,43.9217],[12.1681,43.8976],[12.1383,43.8476],[12.1495,43.8333],[12.1029,43.7923],[12.1074,43.7538],[12.0712,43.7407],[12.053,43.757],[11.9865,43.7619],[11.9097,43.8127],[11.8417,43.808],[11.7102,43.8774],[11.717,43.9218],[11.6842,43.9351],[11.6909,43.9569],[11.6455,43.9898],[11.7489,44.1041],[11.7485,44.1247],[11.7159,44.1226],[11.7202,44.1587],[11.7567,44.1949],[11.7808,44.1804],[11.8294,44.199],[11.8886,44.1707],[11.9283,44.2156],[11.9262,44.241],[11.9759,44.2557],[12.0356,44.3308],[12.055,44.3053],[12.108,44.2886],[12.1032,44.272],[12.1712,44.2442],[12.2088,44.2556],[12.2017,44.2262],[12.2262,44.2141],[12.2802,44.2332],[12.3493,44.1907],[12.3835,44.2245]]]}},
{"type":"Feature","properties":{"code":"PU","name":"Pesaro e Urbino"},"geometry":{"type":"Polygon","coordinates":[[[13.1724,43.7502],[13.0626,43.7233],[13.0771,43.7126],[13.0698,43.693],[12.9862,43.6554],[12.9605,43.5971],[12.923,43.5878],[12.9001,43.5531],[12.8059,43.5041],[12.7991,43.4789],[12.7674,43.4598],[12.732,43.4618],[12.7089,43.4247],[12.6632,43.4368],[12.6194,43.4166],[12.4998,43.5215],[12.4592,43.5165],[12.4374,43.5386],[12.3948,43.5088],[12.3667,43.5341],[12.3318,43.5245],[12.3145,43.5482],[12.3703,43.5794],[12.3713,43.6112],[12.3547,43.6173],[12.2995,43.5859],[12.2182,43.6035],[12.2178,43.6043],[12.2138,43.6109],[12.1855,43.6418],[12.2327,43.6556],[12.2451,43.6815],[12.2972,43.686],[12.3062,43.7288],[12.3157,43.6779],[12.336,43.6776],[12.3305,43.708],[12.3713,43.709],[12.3271,43.751],[12.2838,43.7649],[12.2847,43.7947],[12.3354,43.8241],[12.3551,43.8731],[12.3925,43.8966],[12.4006,43.8728],[12.4321,43.8726],[12.4177,43.899],[12.4874,43.8965],[12.4939,43.9156],[12.5359,43.8972],[12.5417,43.864],[12.5895,43.8856],[12.6233,43.8212],[12.6726,43.8236],[12.6823,43.8528],[12.734,43.8703],[12.7279,43.9242],[12.7506,43.9685],[12.9073,43.923],[13.1724,43.7502]],[[12.4288,43.5914],[12.4306,43.6064],[12.4078,43.6021],[12.4288,43.5914]]]}},
{"type":"Feature","properties":{"code":"AN","name":"Ancona"},"geometry":{"type":"Polygon","coordinates":[[[13.6416,43.4739],[13.6015,43.4591],[13.6556,43.4473],[13.6567,43.4312],[13.6261,43.4183],[13.588,43.4196],[13.5957,43.4465],[13.4474,43.4449],[13.3362,43.3914],[13.2856,43.4252],[13.2808,43.4612],[13.2444,43.4594],[13.2062,43.4161],[13.1502,43.4136],[13.0918,43.4359],[13.0718,43.4165],[13.086,43.3945],[13.0156,43.3105],[12.9693,43.2826],[12.8858,43.2701],[12.8964,43.2284],[12.8623,43.2113],[12.8366,43.2175],[12.8248,43.2666],[12.789,43.2832],[12.7987,43.325],[12.749,43.3788],[12.7797,43.4142],[12.7674,43.4598],[12.7991,43.4789],[12.8059,43.5041],[12.9001,43.5531],[12.923,43.5878],[12.9605,43.5971],[12.9862,43.6554],[13.0698,43.693],[13.0771,43.7126],[13.0626,43.7233],[13.1724,43.7502],[13.4292,43.6178],[13.4816,43.6068],[13.5082,43.6187],[13.5026,43.6315],[13.5308,43.62],[13.5759,43.5688],[13.627,43.5484],[13.6227,43.504],[13.6416,43.4739]]]}},
{"type":"Feature","properties":{"code":"MC","name":"Macerata"},"geometry":{"type":"Polygon","coordinates":[[[13.6416,43.4739],[13.7429,43.2941],[13.6077,43.2714],[13.5929,43.2092],[13.5211,43.2092],[13.5193,43.1744],[13.4432,43.1494],[13.4338,43.0852],[13.4838,43.0803],[13.4628,43.0642],[13.4597,43.0204],[13.3963,43.0098],[13.3783,43.0424],[13.3389,43.0288],[13.3194,43.0027],[13.2161,42.9511],[13.2418,42.892],[13.2353,42.8677],[13.2122,42.8417],[13.1609,42.8319],[13.1122,42.8893],[13.0544,42.9202],[13.0008,42.9084],[12.9901,42.8709],[12.9762,42.8698],[12.9767,42.9261],[12.8958,42.9646],[12.9082,42.9853],[12.888,43.0098],[12.9067,43.0354],[12.8899,43.0589],[12.8973,43.0935],[12.8813,43.1212],[12.843,43.1223],[12.8309,43.1415],[12.8626,43.1662],[12.8623,43.2113],[12.8964,43.2284],[12.8858,43.2701],[12.9693,43.2826],[13.0156,43.3105],[13.086,43.3945],[13.0718,43.4165],[13.0918,43.4359],[13.1502,43.4136],[13.2062,43.4161],[13.2444,43.4594],[13.2808,43.4612],[13.2856,43.4252],[13.3362,43.3914],[13.4474,43.4449],[13.5957,43.4465],[13.588,43.4196],[13.6261,43.4183],[13.6567,43.4312],[13.6556,43.4473],[13.6015,43.4591],[13.6416,43.4739]]]}},
{"type":"Feature","properties":{"code":"AP","name":"Ascoli Piceno"},"geometry":{"type":"Polygon","coordinates":[[[13.8495,43.0667],[13.9167,42.8946],[13.7225,42.8553],[13.6636,42.8071],[13.6244,42.8165],[13.5722,42.8004],[13.5345,42.8166],[13.4934,42.7366],[13.448,42.7322],[13.437,42.6989],[13.3578,42.6941],[13.2863,42.7404],[13.2542,42.7215],[13.1892,42.7336],[13.2165,42.7715],[13.2414,42.7628],[13.264,42.8082],[13.2353,42.8677],[13.2418,42.892],[13.2926,42.9255],[13.356,42.9154],[13.3768,42.8904],[13.4102,42.927],[13.392,42.9398],[13.3981,42.9718],[13.4548,42.9659],[13.4935,42.9887],[13.5564,42.9884],[13.6432,43.0378],[13.6565,43.0281],[13.6569,43.0421],[13.7852,43.0798],[13.7968,43.0621],[13.8495,43.0667]]]}},
{"type":"Feature","properties":{"code":"MS","name":"Massa Carrara"},"geometry":{"type":"Polygon","coordinates":[[[10.142,44.3539],[10.2539,44.2686],[10.2308,44.2284],[10.1868,44.2062],[10.1996,44.1727],[10.1865,44.1237],[10.2326,44.1087],[10.2391,44.0716],[10.1736,43.9874],[10.1431,43.9756],[10.0188,44.0445],[10.0693,44.098],[10.022,44.1196],[9.9835,44.0989],[9.9954,44.1179],[9.974,44.1669],[9.893,44.1665],[9.934,44.1966],[9.9079,44.21],[9.865,44.1807],[9.8754,44.2239],[9.857,44.234],[9.8527,44.2702],[9.7654,44.3043],[9.7111,44.3636],[9.6867,44.3659],[9.7605,44.39],[9.7565,44.4062],[9.8199,44.4664],[9.9243,44.4724],[10.0004,44.4439],[9.9893,44.4043],[10.01,44.3892],[10.0983,44.3463],[10.142,44.3539]]]}},
{"type":"Feature","properties":{"code":"LU","name":"Lucca"},"geometry":{"type":"Polygon","coordinates":[[[10.4701,44.2261],[10.4929,44.217],[10.4852,44.2045],[10.5251,44.1562],[10.5925,44.1156],[10.6241,44.1204],[10.7223,44.083],[10.719,44.0439],[10.7378,44.0249],[10.6713,43.9811],[10.6477,43.9094],[10.6508,43.87],[10.6784,43.8755],[10.7278,43.8142],[10.7111,43.7864],[10.6616,43.8062],[10.6227,43.7567],[10.554,43.7497],[10.4533,43.7654],[10.439,43.7875],[10.452,43.8045],[10.4252,43.835],[10.38,43.8125],[10.3071,43.8294],[10.2593,43.8157],[10.2312,43.8828],[10.1431,43.9756],[10.1736,43.9874],[10.2391,44.0716],[10.2326,44.1087],[10.1865,44.1237],[10.1996,44.1727],[10.1868,44.2062],[10.2308,44.2284],[10.2539,44.2686],[10.3071,44.2843],[10.3716,44.2694],[10.4303,44.2274],[10.4701,44.2261]]]}},
{"type":"Feature","properties":{"code":"PT","name":"Pistoia"},"geometry":{"type":"Polygon","coordinates":[[[10.8148,44.1162],[10.8921,44.0924],[10.9161,44.0623],[11.0124,44.1382],[11.002,44.1109],[11.0494,44.0902],[11.0404,44.0342],[11.0117,44.0055],[11.0715,43.9829],[11.0206,43.9204],[11.013,43.8698],[11.0303,43.8389],[10.9641,43.8125],[10.942,43.8234],[10.9158,43.8006],[10.8127,43.7888],[10.8157,43.8087],[10.7866,43.7986],[10.7278,43.8142],[10.6784,43.8755],[10.6508,43.87],[10.6477,43.9094],[10.6713,43.9811],[10.7378,44.0249],[10.719,44.0439],[10.7223,44.083],[10.6241,44.1204],[10.644,44.1601],[10.7543,44.1541],[10.8148,44.1162]]]}},
{"type":"Feature","properties":{"code":"FI","name":"Firenze"},"geometry":{"type":"Polygon","coordinates":[[[11.5249,44.1577],[11.6154,44.1583],[11.5846,44.1122],[11.6162,44.1185],[11.6526,44.1012],[11.6788,44.1229],[11.7159,44.1226],[11.7485,44.1247],[11.7489,44.1041],[11.6455,43.9898],[11.6909,43.9569],[11.6842,43.9351],[11.717,43.9218],[11.7102,43.8774],[11.6604,43.872],[11.6527,43.8418],[11.6302,43.8467],[11.6285,43.8212],[11.6048,43.8102],[11.572,43.7343],[11.6097,43.6863],[11.4839,43.6261],[11.5215,43.5811],[11.4645,43.5869],[11.3975,43.5482],[11.3072,43.5182],[11.2696,43.5458],[11.2677,43.5228],[11.2296,43.4897],[11.1757,43.4883],[11.1931,43.5143],[11.1835,43.5227],[11.1236,43.4751],[11.034,43.5467],[10.9654,43.514],[10.9515,43.4514],[10.8698,43.4605],[10.8254,43.536],[10.8485,43.5627],[10.8306,43.5699],[10.8409,43.5881],[10.8255,43.6204],[10.8741,43.6142],[10.8883,43.6396],[10.934,43.6577],[10.8772,43.7192],[10.7979,43.7055],[10.7111,43.7864],[10.7278,43.8142],[10.7866,43.7986],[10.8157,43.8087],[10.8127,43.7888],[10.9158,43.8006],[10.942,43.8234],[10.9641,43.8125],[10.9778,43.7854],[11.0559,43.7585],[11.0562,43.7824],[11.0764,43.7929],[11.0625,43.8176],[11.095,43.8201],[11.1453,43.8604],[11.1346,43.8848],[11.1693,43.9186],[11.174,44.01],[11.1916,44.0298],[11.1793,44.0458],[11.2024,44.1007],[11.2637,44.1043],[11.1957,44.1514],[11.2807,44.1553],[11.3428,44.2058],[11.3805,44.2],[11.4211,44.2392],[11.4513,44.2206],[11.4476,44.1995],[11.5249,44.1577]]]}},
{"type":"Feature","properties":{"code":"LI","name":"Livorno"},"geometry":{"type":"MultiPolygon","coordinates":[[[[10.7175,43.1088],[10.7131,43.0722],[10.7804,43.0634],[10.7768,43.0234],[10.7962,43.0177],[10.7802,43.0042],[10.7414,43.0146],[10.7505,42.9855],[10.7063,42.9419],[10.5918,42.9542],[10.5502,42.9471],[10.5435,42.9208],[10.4953,42.9318],[10.483,42.9884],[10.5161,42.9991],[10.5369,43.086],[10.5258,43.2403],[10.5015,43.2908],[10.4593,43.322],[10.425,43.3984],[10.3812,43.4501],[10.3304,43.4738],[10.2941,43.5524],[10.3199,43.5843],[10.2981,43.5619],[10.299,43.5815],[10.4343,43.6335],[10.5089,43.6292],[10.4643,43.5398],[10.4999,43.4477],[10.4872,43.4376],[10.507,43.4322],[10.4942,43.4079],[10.5063,43.3693],[10.54,43.3678],[10.5231,43.3256],[10.6148,43.2828],[10.697,43.2947],[10.667,43.2651],[10.6621,43.2295],[10.6906,43.2239],[10.6897,43.2064],[10.6431,43.1908],[10.6635,43.1733],[10.6631,43.1458],[10.7175,43.1244],[10.7175,43.1088]]],[[[10.4314,42.8246],[10.4342,42.7756],[10.3857,42.7593],[10.4328,42.7349],[10.422,42.7076],[10.3827,42.715],[10.3446,42.7639],[10.3182,42.76],[10.3195,42.736],[10.3098,42.7592],[10.283,42.7349],[10.241,42.7497],[10.2368,42.726],[10.1391,42.7326],[10.1037,42.7676],[10.1053,42.7899],[10.1399,42.8093],[10.186,42.8123],[10.2446,42.7882],[10.2694,42.8035],[10.2631,42.8301],[10.3574,42.7993],[10.4123,42.8732],[10.444,42.8468],[10.4314,42.8246]]],[[[9.8355,43.0491],[9.8418,43.0298],[9.8013,43.0069],[9.8001,43.0538],[9.8256,43.0729],[9.8355,43.0491]]],[[[10.33,42.3222],[10.2937,42.3173],[10.2927,42.3443],[10.3143,42.3506],[10.33,42.3222]]],[[[10.0984,42.5889],[10.0877,42.5679],[10.0456,42.5814],[10.074,42.5909],[10.0797,42.6194],[10.0984,42.5889]]],[[[9.9014,43.4396],[9.9076,43.4255],[9.8897,43.4231],[9.9014,43.4396]]]]}},
{"type":"Feature","properties":{"code":"PI","name":"Pisa"},"geometry":{"type":"Polygon","coordinates":[[[10.7111,43.7864],[10.7979,43.7055],[10.8772,43.7192],[10.934,43.6577],[10.8883,43.6396],[10.8741,43.6142],[10.8255,43.6204],[10.8409,43.5881],[10.8306,43.5699],[10.8485,43.5627],[10.8254,43.536],[10.8698,43.4605],[10.9515,43.4514],[10.979,43.4068],[11.002,43.4013],[11.014,43.3652],[10.9977,43.344],[10.9721,43.3443],[10.97,43.3137],[10.9521,43.302],[10.986,43.2874],[10.9965,43.2395],[10.9395,43.2452],[10.9272,43.2311],[10.9414,43.204],[10.9115,43.1626],[10.8154,43.1507],[10.8005,43.1626],[10.7681,43.1431],[10.7554,43.154],[10.7491,43.1244],[10.7175,43.1088],[10.7175,43.1244],[10.6631,43.1458],[10.6635,43.1733],[10.6431,43.1908],[10.6897,43.2064],[10.6906,43.2239],[10.6621,43.2295],[10.667,43.2651],[10.697,43.2947],[10.6148,43.2828],[10.5231,43.3256],[10.54,43.3678],[10.5063,43.3693],[10.4942,43.4079],[10.507,43.4322],[10.4872,43.4376],[10.4999,43.4477],[10.4643,43.5398],[10.5089,43.6292],[10.4343,43.6335],[10.299,43.5815],[10.2593,43.8157],[10.3071,43.8294],[10.38,43.8125],[10.4252,43.835],[10.452,43.8045],[10.439,43.7875],[10.4533,43.7654],[10.554,43.7497],[10.6227,43.7567],[10.6616,43.8062],[10.7111,43.7864]]]}},
{"type":"Feature","properties":{"code":"AR","name":"Arezzo"},"geometry":{"type":"MultiPolygon","coordinates":[[[[11.7102,43.8774],[11.8417,43.808],[11.9097,43.8127],[11.9865,43.7619],[12.053,43.757],[12.0712,43.7407],[12.1074,43.7538],[12.1637,43.7624],[12.1946,43.7319],[12.2093,43.7571],[12.2838,43.7649],[12.3271,43.751],[12.3713,43.709],[12.3305,43.708],[12.336,43.6776],[12.3157,43.6779],[12.3062,43.7288],[12.2972,43.686],[12.2451,43.6815],[12.2327,43.6556],[12.1855,43.6418],[12.2138,43.6109],[12.1627,43.5614],[12.1532,43.5287],[12.0954,43.5226],[12.0925,43.5011],[12.1432,43.4703],[12.0252,43.4151],[12.0329,43.4002],[12.0773,43.4021],[12.077,43.3658],[12.1249,43.3579],[12.1325,43.2931],[12.177,43.2818],[12.1938,43.3131],[12.2235,43.295],[12.0924,43.2359],[12.034,43.2467],[12.0272,43.1912],[11.9612,43.1669],[11.9034,43.1745],[11.8878,43.1563],[11.8337,43.2245],[11.7963,43.2219],[11.7213,43.2543],[11.658,43.3217],[11.5315,43.3923],[11.5506,43.4596],[11.5018,43.4607],[11.4608,43.5103],[11.4359,43.5116],[11.3975,43.5482],[11.4645,43.5869],[11.5215,43.5811],[11.4839,43.6261],[11.6097,43.6863],[11.572,43.7343],[11.6048,43.8102],[11.6285,43.8212],[11.6302,43.8467],[11.6527,43.8418],[11.6604,43.872],[11.7102,43.8774]]],[[[12.2243,43.8099],[12.2373,43.787],[12.1993,43.7704],[12.1698,43.8046],[12.2243,43.8099]]]]}},
{"type":"Feature","properties":{"code":"SI","name":"Siena"},"geometry":{"type":"Polygon","coordinates":[[[11.9612,43.1669],[11.9124,43.1284],[11.9361,43.0559],[11.9566,43.0687],[11.9824,43.0509],[11.9327,42.9085],[11.9521,42.901],[11.9586,42.8743],[11.9333,42.8693],[11.895,42.8347],[11.8154,42.8238],[11.8069,42.7949],[11.7685,42.82],[11.746,42.7858],[11.6251,42.7983],[11.6373,42.8516],[11.6197,42.8814],[11.6238,42.9285],[11.5716,42.9703],[11.5306,42.9652],[11.515,42.9812],[11.4562,42.9573],[11.3504,42.972],[11.3805,42.9961],[11.3611,43.01],[11.3615,43.0832],[11.0836,43.0836],[11.0511,43.1436],[11.0591,43.1839],[10.9115,43.1626],[10.9414,43.204],[10.9272,43.2311],[10.9395,43.2452],[10.9965,43.2395],[10.986,43.2874],[10.9521,43.302],[10.97,43.3137],[10.9721,43.3443],[10.9977,43.344],[11.014,43.3652],[11.002,43.4013],[10.979,43.4068],[10.9515,43.4514],[10.9654,43.514],[11.034,43.5467],[11.1236,43.4751],[11.1835,43.5227],[11.1931,43.5143],[11.1757,43.4883],[11.2296,43.4897],[11.2677,43.5228],[11.2696,43.5458],[11.3072,43.5182],[11.3975,43.5482],[11.4359,43.5116],[11.4608,43.5103],[11.5018,43.4607],[11.5506,43.4596],[11.5315,43.3923],[11.658,43.3217],[11.7213,43.2543],[11.7963,43.2219],[11.8337,43.2245],[11.8878,43.1563],[11.9034,43.1745],[11.9612,43.1669]]]}},
{"type":"Feature","properties":{"code":"GR","name":"Grosseto"},"geometry":{"type":"MultiPolygon","coordinates":[[[[11.1379,42.4346],[11.1661,42.4376],[11.1859,42.4685],[11.1915,42.5131],[11.1761,42.5422],[11.1568,42.5628],[11.1222,42.5612],[11.0853,42.6268],[11.01,42.6592],[10.9515,42.7369],[10.7344,42.8013],[10.7655,42.8169],[10.7866,42.8887],[10.7063,42.9419],[10.7505,42.9855],[10.7414,43.0146],[10.7802,43.0042],[10.7962,43.0177],[10.7768,43.0234],[10.7804,43.0634],[10.7131,43.0722],[10.7175,43.1088],[10.7491,43.1244],[10.7554,43.154],[10.7681,43.1431],[10.8005,43.1626],[10.8154,43.1507],[10.9115,43.1626],[11.0591,43.1839],[11.0511,43.1436],[11.0836,43.0836],[11.3615,43.0832],[11.3611,43.01],[11.3805,42.9961],[11.3504,42.972],[11.4562,42.9573],[11.515,42.9812],[11.5306,42.9652],[11.5716,42.9703],[11.6238,42.9285],[11.6197,42.8814],[11.6373,42.8516],[11.6251,42.7983],[11.746,42.7858],[11.8187,42.7458],[11.8016,42.7072],[11.7811,42.7053],[11.8048,42.644],[11.7498,42.6396],[11.736,42.6067],[11.7111,42.6109],[11.6434,42.5663],[11.5807,42.5679],[11.5844,42.5428],[11.5612,42.5173],[11.6163,42.4884],[11.6177,42.436],[11.4889,42.4394],[11.4521,42.3823],[11.2533,42.4196],[11.2101,42.4087],[11.2132,42.3885],[11.19,42.3636],[11.1532,42.3611],[11.0897,42.4083],[11.1049,42.4476],[11.1379,42.4346]]],[[[10.8861,42.3898],[10.9247,42.3553],[10.9211,42.3196],[10.8666,42.3544],[10.8861,42.3898]]],[[[11.1138,42.2607],[11.1122,42.2402],[11.0984,42.2423],[11.0919,42.255],[11.1138,42.2607]]]]}},
{"type":"Feature","properties":{"code":"PG","name":"Perugia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[12.7674,43.4598],[12.7797,43.4142],[12.749,43.3788],[12.7987,43.325],[12.789,43.2832],[12.8248,43.2666],[12.8366,43.2175],[12.8623,43.2113],[12.8626,43.1662],[12.8309,43.1415],[12.843,43.1223],[12.8813,43.1212],[12.8973,43.0935],[12.8899,43.0589],[12.9067,43.0354],[12.888,43.0098],[12.9082,42.9853],[12.8958,42.9646],[12.9767,42.9261],[12.9762,42.8698],[12.9901,42.8709],[13.0008,42.9084],[13.0544,42.9202],[13.1122,42.8893],[13.1609,42.8319],[13.2122,42.8417],[13.2353,42.8677],[13.264,42.8082],[13.2414,42.7628],[13.2165,42.7715],[13.1892,42.7336],[13.1741,42.6661],[13.1455,42.6462],[13.1182,42.6577],[13.0586,42.6228],[13.0243,42.639],[13.0112,42.6171],[12.9525,42.6189],[12.9301,42.6029],[12.8963,42.6164],[12.8606,42.6669],[12.8281,42.671],[12.7338,42.6241],[12.7201,42.597],[12.6977,42.6372],[12.6222,42.6735],[12.6143,42.6946],[12.5839,42.6882],[12.5799,42.7055],[12.6284,42.7215],[12.5892,42.7491],[12.5737,42.7139],[12.5324,42.711],[12.4932,42.7347],[12.4171,42.6804],[12.4016,42.6995],[12.386,42.6733],[12.3687,42.6869],[12.3727,42.7129],[12.3285,42.7532],[12.2973,42.7489],[12.292,42.7666],[12.3273,42.8504],[12.3306,42.8896],[12.3047,42.8897],[12.3185,42.9157],[12.1886,42.9395],[12.0508,42.9408],[11.9997,42.9099],[12.0301,42.8813],[11.9333,42.8693],[11.9586,42.8743],[11.9979,42.9087],[11.9576,42.9168],[11.9521,42.901],[11.9327,42.9085],[11.9824,43.0509],[11.9566,43.0687],[11.9361,43.0559],[11.9124,43.1284],[11.9612,43.1669],[12.0272,43.1912],[12.034,43.2467],[12.0924,43.2359],[12.2235,43.295],[12.1938,43.3131],[12.177,43.2818],[12.1325,43.2931],[12.1249,43.3579],[12.077,43.3658],[12.0773,43.4021],[12.0329,43.4002],[12.0252,43.4151],[12.1432,43.4703],[12.0925,43.5011],[12.0954,43.5226],[12.1532,43.5287],[12.1627,43.5614],[12.2138,43.6109],[12.2178,43.6043],[12.2182,43.6035],[12.2995,43.5859],[12.3547,43.6173],[12.3713,43.6112],[12.3703,43.5794],[12.3145,43.5482],[12.3318,43.5245],[12.3667,43.5341],[12.3948,43.5088],[12.4374,43.5386],[12.4592,43.5165],[12.4998,43.5215],[12.6194,43.4166],[12.6632,43.4368],[12.7089,43.4247],[12.732,43.4618],[12.7674,43.4598]]],[[[12.4288,43.5914],[12.4078,43.6021],[12.4306,43.6064],[12.4288,43.5914]]]]}},
{"type":"Feature","properties":{"code":"TR","name":"Terni"},"geometry":{"type":"MultiPolygon","coordinates":[[[[12.8963,42.6164],[12.8805,42.6093],[12.8927,42.5635],[12.7111,42.5008],[12.7416,42.4705],[12.7247,42.4604],[12.6639,42.4411],[12.6214,42.4687],[12.6061,42.4035],[12.5312,42.3651],[12.5111,42.4036],[12.4881,42.3987],[12.4663,42.3949],[12.4447,42.3988],[12.4672,42.4238],[12.4137,42.4256],[12.4137,42.4552],[12.4304,42.458],[12.4124,42.4676],[12.4214,42.4925],[12.3918,42.4988],[12.3512,42.4737],[12.3254,42.4948],[12.2906,42.4915],[12.3074,42.4973],[12.2748,42.5092],[12.2903,42.519],[12.2668,42.5335],[12.275,42.5599],[12.2387,42.5722],[12.2476,42.5967],[12.2291,42.6111],[12.2429,42.6291],[12.2043,42.6605],[12.161,42.6769],[12.1241,42.6493],[12.1067,42.6647],[12.03,42.6432],[11.9413,42.6833],[11.9488,42.696],[11.9301,42.7129],[11.9687,42.7346],[11.9795,42.7646],[11.9285,42.78],[11.895,42.8347],[11.9333,42.8693],[12.0301,42.8813],[11.9997,42.9099],[12.0508,42.9408],[12.1886,42.9395],[12.3185,42.9157],[12.3047,42.8897],[12.3306,42.8896],[12.3273,42.8504],[12.292,42.7666],[12.2973,42.7489],[12.3285,42.7532],[12.3727,42.7129],[12.3687,42.6869],[12.386,42.6733],[12.4016,42.6995],[12.4171,42.6804],[12.4932,42.7347],[12.5324,42.711],[12.5737,42.7139],[12.5892,42.7491],[12.6284,42.7215],[12.5799,42.7055],[12.5839,42.6882],[12.6143,42.6946],[12.6222,42.6735],[12.6977,42.6372],[12.7201,42.597],[12.7338,42.6241],[12.8281,42.671],[12.8606,42.6669],[12.8963,42.6164]]],[[[11.9586,42.8743],[11.9521,42.901],[11.9576,42.9168],[11.9979,42.9087],[11.9586,42.8743]]]]}},
{"type":"Feature","properties":{"code":"VT","name":"Viterbo"},"geometry":{"type":"Polygon","coordinates":[[[11.895,42.8347],[11.9285,42.78],[11.9795,42.7646],[11.9687,42.7346],[11.9301,42.7129],[11.9488,42.696],[11.9413,42.6833],[12.03,42.6432],[12.1067,42.6647],[12.1241,42.6493],[12.161,42.6769],[12.2043,42.6605],[12.2429,42.6291],[12.2291,42.6111],[12.2476,42.5967],[12.2387,42.5722],[12.275,42.5599],[12.2668,42.5335],[12.2903,42.519],[12.2748,42.5092],[12.3074,42.4973],[12.2906,42.4915],[12.3254,42.4948],[12.3512,42.4737],[12.3918,42.4988],[12.4214,42.4925],[12.4124,42.4676],[12.4304,42.458],[12.4137,42.4552],[12.4137,42.4256],[12.4672,42.4238],[12.4447,42.3988],[12.4546,42.3574],[12.4751,42.356],[12.4622,42.3371],[12.4892,42.3195],[12.4745,42.3163],[12.4815,42.3041],[12.5196,42.2948],[12.4889,42.27],[12.4621,42.2057],[12.4266,42.1813],[12.4115,42.1822],[12.4122,42.2574],[12.4088,42.2298],[12.3715,42.2111],[12.3703,42.1729],[12.3295,42.1463],[12.2714,42.1819],[12.2157,42.1867],[12.1359,42.1473],[12.1178,42.1615],[12.0033,42.1579],[11.9741,42.2131],[11.9114,42.2411],[11.8715,42.2219],[11.8228,42.1465],[11.7338,42.1581],[11.6969,42.2334],[11.6396,42.2899],[11.4521,42.3823],[11.4889,42.4394],[11.6177,42.436],[11.6163,42.4884],[11.5612,42.5173],[11.5844,42.5428],[11.5807,42.5679],[11.6434,42.5663],[11.7111,42.6109],[11.736,42.6067],[11.7498,42.6396],[11.8048,42.644],[11.7811,42.7053],[11.8016,42.7072],[11.8187,42.7458],[11.746,42.7858],[11.7685,42.82],[11.8069,42.7949],[11.8154,42.8238],[11.895,42.8347]]]}},
{"type":"Feature","properties":{"code":"RI","name":"Rieti"},"geometry":{"type":"Polygon","coordinates":[[[13.3578,42.6941],[13.3497,42.6687],[13.4096,42.6397],[13.394,42.5913],[13.2933,42.5695],[13.1914,42.5875],[13.1558,42.5401],[13.1784,42.4793],[13.1162,42.4439],[13.1942,42.3892],[13.1533,42.357],[13.2265,42.3193],[13.2346,42.2779],[13.2814,42.2378],[13.3356,42.2224],[13.3415,42.1984],[13.3799,42.1804],[13.2488,42.1274],[13.1927,42.1583],[13.1697,42.1507],[13.0871,42.1779],[13.0848,42.1422],[13.0306,42.1154],[12.9784,42.1304],[12.9486,42.0893],[12.9208,42.1152],[12.8668,42.1036],[12.8495,42.1433],[12.7806,42.1668],[12.7952,42.1806],[12.7745,42.1883],[12.7109,42.153],[12.6513,42.1503],[12.6083,42.1816],[12.6132,42.202],[12.6372,42.208],[12.6338,42.2478],[12.605,42.2743],[12.5787,42.2641],[12.5839,42.2839],[12.5581,42.2691],[12.5573,42.2896],[12.5196,42.2948],[12.4815,42.3041],[12.4745,42.3163],[12.4892,42.3195],[12.4622,42.3371],[12.4751,42.356],[12.4546,42.3574],[12.4447,42.3988],[12.4663,42.3949],[12.4881,42.3987],[12.5111,42.4036],[12.5312,42.3651],[12.6061,42.4035],[12.6214,42.4687],[12.6639,42.4411],[12.7247,42.4604],[12.7416,42.4705],[12.7111,42.5008],[12.8927,42.5635],[12.8805,42.6093],[12.8963,42.6164],[12.9301,42.6029],[12.9525,42.6189],[13.0112,42.6171],[13.0243,42.639],[13.0586,42.6228],[13.1182,42.6577],[13.1455,42.6462],[13.1741,42.6661],[13.1892,42.7336],[13.2542,42.7215],[13.2863,42.7404],[13.3578,42.6941]]]}},
{"type":"Feature","properties":{"code":"RM","name":"Roma"},"geometry":{"type":"Polygon","coordinates":[[[12.2436,41.7379],[12.2562,41.7462],[12.2252,41.7448],[12.2035,41.8297],[12.141,41.9161],[11.9157,42.0394],[11.8352,42.0295],[11.7338,42.1581],[11.8228,42.1465],[11.8715,42.2219],[11.9114,42.2411],[11.9741,42.2131],[12.0033,42.1579],[12.1178,42.1615],[12.1359,42.1473],[12.2157,42.1867],[12.2714,42.1819],[12.3295,42.1463],[12.3703,42.1729],[12.3715,42.2111],[12.4088,42.2298],[12.4122,42.2574],[12.4115,42.1822],[12.4266,42.1813],[12.4621,42.2057],[12.4889,42.27],[12.5196,42.2948],[12.5573,42.2896],[12.5581,42.2691],[12.5839,42.2839],[12.5787,42.2641],[12.605,42.2743],[12.6338,42.2478],[12.6372,42.208],[12.6132,42.202],[12.6083,42.1816],[12.6513,42.1503],[12.7109,42.153],[12.7745,42.1883],[12.7952,42.1806],[12.7806,42.1668],[12.8495,42.1433],[12.8668,42.1036],[12.9208,42.1152],[12.9486,42.0893],[12.9784,42.1304],[13.0306,42.1154],[13.0185,42.0749],[13.0581,42.0156],[13.101,42.008],[13.105,42.026],[13.2963,41.9486],[13.1842,41.846],[13.0979,41.861],[13.0716,41.8542],[13.0562,41.8271],[13.0092,41.8245],[12.9924,41.7686],[13.0869,41.719],[13.0991,41.6788],[13.1499,41.6589],[13.162,41.6168],[13.1503,41.5966],[13.1751,41.5836],[13.1037,41.545],[13.0511,41.581],[13.0141,41.5761],[13.0194,41.6106],[12.9431,41.6742],[12.9391,41.7134],[12.8385,41.7061],[12.8539,41.6976],[12.8513,41.6664],[12.8231,41.6556],[12.8107,41.6203],[12.7934,41.6238],[12.7559,41.5727],[12.7324,41.5814],[12.7393,41.6039],[12.6618,41.5982],[12.6531,41.662],[12.6428,41.6544],[12.6339,41.6719],[12.5305,41.5988],[12.5708,41.5774],[12.5877,41.5428],[12.6525,41.5362],[12.6809,41.5086],[12.7218,41.5048],[12.7479,41.4733],[12.7387,41.4472],[12.7732,41.4163],[12.6691,41.4565],[12.6224,41.4447],[12.4371,41.6408],[12.2519,41.7369],[12.249,41.7375],[12.2436,41.7379]]]}},
{"type":"Feature","properties":{"code":"LT","name":"Latina"},"geometry":{"type":"MultiPolygon","coordinates":[[[[13.1751,41.5836],[13.1973,41.5871],[13.2076,41.5492],[13.2719,41.5227],[13.2989,41.4708],[13.2547,41.4326],[13.3065,41.4026],[13.4273,41.3973],[13.4283,41.4562],[13.4453,41.465],[13.5482,41.4196],[13.579,41.3803],[13.5605,41.368],[13.6252,41.316],[13.6513,41.318],[13.6571,41.3374],[13.7021,41.3595],[13.763,41.3014],[13.8198,41.3215],[13.8202,41.3381],[13.8737,41.3383],[13.8948,41.3116],[13.8867,41.2936],[13.8284,41.281],[13.8335,41.2522],[13.772,41.2421],[13.7621,41.2226],[13.7069,41.2539],[13.682,41.2441],[13.6213,41.2608],[13.5723,41.2376],[13.5716,41.2162],[13.5898,41.2074],[13.5498,41.2066],[13.3816,41.279],[13.2839,41.2976],[13.1638,41.2725],[13.0683,41.2217],[13.0401,41.231],[12.9939,41.3201],[12.9367,41.3713],[12.8545,41.4115],[12.7732,41.4163],[12.7387,41.4472],[12.7479,41.4733],[12.7218,41.5048],[12.6809,41.5086],[12.6525,41.5362],[12.5877,41.5428],[12.5708,41.5774],[12.5305,41.5988],[12.6339,41.6719],[12.6428,41.6544],[12.6531,41.662],[12.6618,41.5982],[12.7393,41.6039],[12.7324,41.5814],[12.7559,41.5727],[12.7934,41.6238],[12.8107,41.6203],[12.8231,41.6556],[12.8513,41.6664],[12.8539,41.6976],[12.8385,41.7061],[12.9391,41.7134],[12.9431,41.6742],[13.0194,41.6106],[13.0141,41.5761],[13.0511,41.581],[13.1037,41.545],[13.1751,41.5836]]],[[[12.9674,40.9213],[12.9534,40.8801],[12.9491,40.9175],[12.995,40.934],[12.9674,40.9213]]],[[[13.4275,40.7898],[13.4076,40.7855],[13.431,40.8039],[13.4275,40.7898]]]]}},
{"type":"Feature","properties":{"code":"FR","name":"Frosinone"},"geometry":{"type":"Polygon","coordinates":[[[13.941,41.688],[13.9883,41.6538],[14.011,41.6075],[13.9989,41.5745],[14.026,41.5557],[14.0053,41.5388],[14.0275,41.5232],[13.9729,41.494],[13.9928,41.4821],[13.9779,41.4625],[13.8612,41.4176],[13.8863,41.3844],[13.8737,41.3383],[13.8202,41.3381],[13.8198,41.3215],[13.763,41.3014],[13.7021,41.3595],[13.6571,41.3374],[13.6513,41.318],[13.6252,41.316],[13.5605,41.368],[13.579,41.3803],[13.5482,41.4196],[13.4453,41.465],[13.4283,41.4562],[13.4273,41.3973],[13.3065,41.4026],[13.2547,41.4326],[13.2989,41.4708],[13.2719,41.5227],[13.2076,41.5492],[13.1973,41.5871],[13.1751,41.5836],[13.1503,41.5966],[13.162,41.6168],[13.1499,41.6589],[13.0991,41.6788],[13.0869,41.719],[12.9924,41.7686],[13.0092,41.8245],[13.0562,41.8271],[13.0716,41.8542],[13.0979,41.861],[13.1842,41.846],[13.2963,41.9486],[13.3835,41.9051],[13.3598,41.8694],[13.3795,41.8175],[13.4169,41.8347],[13.5051,41.8016],[13.5204,41.773],[13.5718,41.7543],[13.6313,41.7826],[13.6477,41.811],[13.7056,41.7875],[13.7296,41.7989],[13.7659,41.7487],[13.8917,41.7352],[13.941,41.688]]]}},
{"type":"Feature","properties":{"code":"CE","name":"Caserta"},"geometry":{"type":"Polygon","coordinates":[[[14.3825,41.4433],[14.4773,41.419],[14.5049,41.3826],[14.4446,41.3566],[14.4395,41.3443],[14.475,41.3382],[14.4891,41.3006],[14.4484,41.2905],[14.4167,41.2436],[14.4185,41.2216],[14.4626,41.1907],[14.4636,41.1569],[14.4225,41.1352],[14.3793,41.1616],[14.352,41.1521],[14.3938,41.1158],[14.4342,41.1078],[14.4398,41.0711],[14.413,41.0572],[14.4592,41.0424],[14.5077,41.0556],[14.5312,41.0133],[14.5208,40.9871],[14.4763,40.9814],[14.4185,40.9816],[14.4105,41.0022],[14.2976,41.0047],[14.293,40.9697],[14.2522,40.9461],[14.2325,40.9584],[14.1383,40.9447],[14.1403,40.9791],[14.1122,40.979],[14.0926,40.96],[14.018,40.9479],[14.0326,40.899],[13.9225,41.0265],[13.8357,41.1628],[13.7621,41.2226],[13.772,41.2421],[13.8335,41.2522],[13.8284,41.281],[13.8867,41.2936],[13.8948,41.3116],[13.8737,41.3383],[13.8863,41.3844],[13.8612,41.4176],[13.9779,41.4625],[14.007,41.4519],[14.0007,41.4309],[14.0424,41.3928],[14.1114,41.3864],[14.1052,41.4233],[14.0784,41.4471],[14.1208,41.507],[14.1647,41.4789],[14.1738,41.5007],[14.2407,41.4972],[14.3825,41.4433]]]}},
{"type":"Feature","properties":{"code":"BN","name":"Benevento"},"geometry":{"type":"MultiPolygon","coordinates":[[[[15.1492,41.2804],[15.1222,41.2562],[15.0817,41.2528],[15.0665,41.2709],[15.051,41.2582],[14.9846,41.2696],[15.0049,41.2082],[14.9625,41.177],[14.9569,41.1474],[14.9953,41.1504],[15.0109,41.1181],[14.9745,41.0932],[14.8331,41.0357],[14.8063,41.0406],[14.806,41.0588],[14.7747,41.0546],[14.7638,41.0097],[14.7363,41.0172],[14.709,41.0614],[14.6401,41.0425],[14.5966,41.0588],[14.5719,41.0095],[14.5312,41.0133],[14.5077,41.0556],[14.4592,41.0424],[14.413,41.0572],[14.4398,41.0711],[14.4342,41.1078],[14.3938,41.1158],[14.352,41.1521],[14.3793,41.1616],[14.4225,41.1352],[14.4636,41.1569],[14.4626,41.1907],[14.4185,41.2216],[14.4167,41.2436],[14.4484,41.2905],[14.4891,41.3006],[14.475,41.3382],[14.4395,41.3443],[14.4446,41.3566],[14.5049,41.3826],[14.5663,41.3921],[14.603,41.364],[14.6855,41.4113],[14.7169,41.4008],[14.7647,41.4174],[14.7849,41.4521],[14.8566,41.4248],[15.0076,41.4864],[15.0468,41.4433],[15.0988,41.4338],[15.0865,41.4046],[15.0983,41.3906],[15.0585,41.3721],[15.0612,41.3576],[15.0722,41.3325],[15.1306,41.3172],[15.1492,41.2804]]],[[[14.6936,40.9753],[14.6789,41.0195],[14.6957,41.0339],[14.7156,41.007],[14.6936,40.9753]]]]}},
{"type":"Feature","properties":{"code":"NA","name":"Napoli"},"geometry":{"type":"MultiPolygon","coordinates":[[[[14.1592,40.808],[14.0887,40.8306],[14.0717,40.8186],[14.0896,40.7779],[14.0417,40.7911],[14.0326,40.899],[14.018,40.9479],[14.0926,40.96],[14.1122,40.979],[14.1403,40.9791],[14.1383,40.9447],[14.2325,40.9584],[14.2522,40.9461],[14.293,40.9697],[14.2976,41.0047],[14.4105,41.0022],[14.4185,40.9816],[14.4763,40.9814],[14.5208,40.9871],[14.5312,41.0133],[14.5719,41.0095],[14.5853,40.934],[14.6697,40.9049],[14.5743,40.9091],[14.5595,40.888],[14.6055,40.8476],[14.5646,40.8352],[14.5903,40.8182],[14.5759,40.7869],[14.507,40.773],[14.5066,40.7392],[14.5607,40.7317],[14.5906,40.694],[14.5552,40.6679],[14.5776,40.6274],[14.5179,40.6219],[14.5106,40.6454],[14.4821,40.6475],[14.4687,40.6202],[14.3235,40.57],[14.3394,40.6282],[14.3997,40.638],[14.4036,40.6563],[14.4818,40.7005],[14.4471,40.7547],[14.4135,40.7523],[14.3601,40.7857],[14.3601,40.7854],[14.3603,40.7849],[14.2741,40.8446],[14.2206,40.8264],[14.2215,40.8255],[14.1873,40.7923],[14.1606,40.7933],[14.1734,40.8023],[14.1592,40.808]]],[[[13.8719,40.7608],[13.954,40.742],[13.9653,40.7127],[13.8737,40.6969],[13.851,40.711],[13.8719,40.7608]]],[[[14.2602,40.5615],[14.2529,40.5416],[14.1979,40.5368],[14.1997,40.561],[14.2602,40.5615]]],[[[14.0208,40.7572],[14.0174,40.7393],[13.9902,40.7431],[14.01,40.7686],[14.0208,40.7572]]]]}},
{"type":"Feature","properties":{"code":"AV","name":"Avellino"},"geometry":{"type":"Polygon","coordinates":[[[15.5429,41.0559],[15.5723,40.9967],[15.5272,40.9078],[15.4676,40.8896],[15.4608,40.8672],[15.3542,40.8827],[15.3784,40.8677],[15.3777,40.8364],[15.335,40.8349],[15.2955,40.8381],[15.28,40.7978],[15.2516,40.7875],[15.2388,40.7677],[15.2471,40.7177],[15.169,40.7066],[15.1323,40.7611],[15.0092,40.7732],[14.9174,40.8097],[14.8352,40.7935],[14.7476,40.8033],[14.7313,40.842],[14.6862,40.8414],[14.676,40.8215],[14.6055,40.8476],[14.5595,40.888],[14.5743,40.9091],[14.6697,40.9049],[14.5853,40.934],[14.5719,41.0095],[14.5966,41.0588],[14.6401,41.0425],[14.709,41.0614],[14.7363,41.0172],[14.7638,41.0097],[14.7747,41.0546],[14.806,41.0588],[14.8063,41.0406],[14.8331,41.0357],[14.9745,41.0932],[15.0109,41.1181],[14.9953,41.1504],[14.9569,41.1474],[14.9625,41.177],[15.0049,41.2082],[14.9846,41.2696],[15.051,41.2582],[15.0665,41.2709],[15.0817,41.2528],[15.1222,41.2562],[15.1492,41.2804],[15.2007,41.2864],[15.2757,41.2495],[15.2457,41.235],[15.2624,41.1976],[15.2093,41.1677],[15.2106,41.1489],[15.2643,41.1053],[15.3666,41.0848],[15.4013,41.106],[15.4461,41.078],[15.5429,41.0559]],[[14.6936,40.9753],[14.7156,41.007],[14.6957,41.0339],[14.6789,41.0195],[14.6936,40.9753]]]}},
{"type":"Feature","properties":{"code":"SA","name":"Salerno"},"geometry":{"type":"Polygon","coordinates":[[[15.335,40.8349],[15.3883,40.7954],[15.3815,40.7242],[15.5036,40.6637],[15.4495,40.6091],[15.5393,40.5681],[15.5266,40.5573],[15.5505,40.5092],[15.5389,40.4881],[15.6627,40.3925],[15.7101,40.3773],[15.7047,40.3422],[15.7269,40.3154],[15.8064,40.2732],[15.7952,40.2214],[15.7125,40.1784],[15.7058,40.1177],[15.6516,40.0786],[15.6762,40.0549],[15.6453,40.043],[15.6255,40.0741],[15.5307,40.0738],[15.419,39.9906],[15.3569,39.9991],[15.3149,40.0319],[15.2709,40.023],[15.2853,40.0351],[15.2712,40.0742],[15.1321,40.1715],[15.04,40.1705],[14.9909,40.2189],[14.9089,40.2434],[14.9435,40.2757],[14.9448,40.3356],[14.9973,40.3569],[14.9991,40.3897],[14.8971,40.5616],[14.8086,40.6519],[14.7476,40.6778],[14.6883,40.6336],[14.6341,40.649],[14.5721,40.6114],[14.4687,40.6202],[14.4821,40.6475],[14.5106,40.6454],[14.5179,40.6219],[14.5776,40.6274],[14.5552,40.6679],[14.5906,40.694],[14.5607,40.7317],[14.5066,40.7392],[14.507,40.773],[14.5759,40.7869],[14.5903,40.8182],[14.5646,40.8352],[14.6055,40.8476],[14.676,40.8215],[14.6862,40.8414],[14.7313,40.842],[14.7476,40.8033],[14.8352,40.7935],[14.9174,40.8097],[15.0092,40.7732],[15.1323,40.7611],[15.169,40.7066],[15.2471,40.7177],[15.2388,40.7677],[15.2516,40.7875],[15.28,40.7978],[15.2955,40.8381],[15.335,40.8349]]]}},
{"type":"Feature","properties":{"code":"AQ","name":"L'Aquila"},"geometry":{"type":"Polygon","coordinates":[[[13.7653,42.4201],[13.8086,42.3787],[13.8045,42.3345],[13.8443,42.2812],[13.833,42.2465],[13.7992,42.2372],[13.8108,42.1967],[13.7892,42.1539],[13.8455,42.1427],[13.8989,42.1656],[14.0061,42.0731],[14.0852,42.0867],[14.104,42.048],[14.0815,42.0183],[14.0979,41.9523],[14.0818,41.9394],[14.1063,41.8934],[14.1397,41.8857],[14.1832,41.9035],[14.2297,41.8771],[14.2166,41.8534],[14.1472,41.8273],[14.1715,41.7784],[14.2019,41.767],[14.1942,41.7481],[14.1718,41.7658],[14.1587,41.747],[14.1219,41.7465],[14.1072,41.7074],[14.0944,41.7379],[14.0696,41.7372],[14.0532,41.7017],[14.0269,41.7027],[14.0187,41.6821],[13.941,41.688],[13.8917,41.7352],[13.7659,41.7487],[13.7296,41.7989],[13.7056,41.7875],[13.6477,41.811],[13.6313,41.7826],[13.5718,41.7543],[13.5204,41.773],[13.5051,41.8016],[13.4169,41.8347],[13.3795,41.8175],[13.3598,41.8694],[13.3835,41.9051],[13.2963,41.9486],[13.105,42.026],[13.101,42.008],[13.0581,42.0156],[13.0185,42.0749],[13.0306,42.1154],[13.0848,42.1422],[13.0871,42.1779],[13.1697,42.1507],[13.1927,42.1583],[13.2488,42.1274],[13.3799,42.1804],[13.3415,42.1984],[13.3356,42.2224],[13.2814,42.2378],[13.2346,42.2779],[13.2265,42.3193],[13.1533,42.357],[13.1942,42.3892],[13.1162,42.4439],[13.1784,42.4793],[13.1558,42.5401],[13.1914,42.5875],[13.2933,42.5695],[13.394,42.5913],[13.4261,42.519],[13.4756,42.4831],[13.5257,42.4724],[13.5252,42.45],[13.723,42.4427],[13.7653,42.4201]]]}},
{"type":"Feature","properties":{"code":"TE","name":"Teramo"},"geometry":{"type":"Polygon","coordinates":[[[14.1463,42.5306],[13.99,42.5419],[13.9557,42.5343],[13.9579,42.5054],[13.9251,42.5153],[13.8846,42.5092],[13.8841,42.4894],[13.8106,42.4929],[13.7653,42.4201],[13.723,42.4427],[13.5252,42.45],[13.5257,42.4724],[13.4756,42.4831],[13.4261,42.519],[13.394,42.5913],[13.4096,42.6397],[13.3497,42.6687],[13.3578,42.6941],[13.437,42.6989],[13.448,42.7322],[13.4934,42.7366],[13.5345,42.8166],[13.5722,42.8004],[13.6244,42.8165],[13.6636,42.8071],[13.7225,42.8553],[13.9167,42.8946],[13.9958,42.7083],[14.1463,42.5306]]]}},
{"type":"Feature","properties":{"code":"PE","name":"Pescara"},"geometry":{"type":"Polygon","coordinates":[[[14.2331,42.4654],[14.2545,42.4449],[14.2287,42.4155],[14.1944,42.4368],[14.1651,42.4328],[14.1576,42.3942],[14.1176,42.3623],[14.1197,42.3349],[14.0757,42.3251],[14.1115,42.2956],[14.0852,42.2784],[14.1137,42.2744],[14.1086,42.2445],[14.1331,42.2243],[14.094,42.2052],[14.0963,42.1813],[14.1292,42.1588],[14.1099,42.1428],[14.1131,42.1041],[14.0852,42.0867],[14.0061,42.0731],[13.8989,42.1656],[13.8455,42.1427],[13.7892,42.1539],[13.8108,42.1967],[13.7992,42.2372],[13.833,42.2465],[13.8443,42.2812],[13.8045,42.3345],[13.8086,42.3787],[13.7653,42.4201],[13.8106,42.4929],[13.8841,42.4894],[13.8846,42.5092],[13.9251,42.5153],[13.9579,42.5054],[13.9557,42.5343],[13.99,42.5419],[14.1463,42.5306],[14.2331,42.4654]]]}},
{"type":"Feature","properties":{"code":"CH","name":"Chieti"},"geometry":{"type":"Polygon","coordinates":[[[14.7795,42.0698],[14.7608,42.0422],[14.7802,42.0297],[14.7272,42.0032],[14.6686,41.9466],[14.6638,41.9163],[14.6142,41.8892],[14.568,41.8181],[14.4853,41.7597],[14.4546,41.7637],[14.4651,41.7772],[14.4442,41.8398],[14.3767,41.8799],[14.343,41.8625],[14.3239,41.8963],[14.2842,41.9108],[14.2297,41.8771],[14.1832,41.9035],[14.1397,41.8857],[14.1063,41.8934],[14.0818,41.9394],[14.0979,41.9523],[14.0815,42.0183],[14.104,42.048],[14.0852,42.0867],[14.1131,42.1041],[14.1099,42.1428],[14.1292,42.1588],[14.0963,42.1813],[14.094,42.2052],[14.1331,42.2243],[14.1086,42.2445],[14.1137,42.2744],[14.0852,42.2784],[14.1115,42.2956],[14.0757,42.3251],[14.1197,42.3349],[14.1176,42.3623],[14.1576,42.3942],[14.1651,42.4328],[14.1944,42.4368],[14.2287,42.4155],[14.2545,42.4449],[14.3907,42.3731],[14.5127,42.2497],[14.7117,42.1777],[14.7187,42.105],[14.7795,42.0698]]]}},
{"type":"Feature","properties":{"code":"CB","name":"Campobasso"},"geometry":{"type":"Polygon","coordinates":[[[15.138,41.9266],[15.1388,41.8793],[15.101,41.8375],[15.116,41.7991],[15.097,41.7674],[15.1209,41.7204],[15.1615,41.7094],[15.0502,41.6573],[15.0255,41.6223],[14.9595,41.646],[14.9341,41.6202],[14.9503,41.5927],[14.9372,41.5275],[15.0076,41.4864],[14.8566,41.4248],[14.7849,41.4521],[14.7647,41.4174],[14.7169,41.4008],[14.6855,41.4113],[14.603,41.364],[14.5663,41.3921],[14.5049,41.3826],[14.4773,41.419],[14.3825,41.4433],[14.3918,41.5077],[14.4508,41.5185],[14.493,41.5914],[14.5122,41.5966],[14.48,41.6315],[14.4242,41.6408],[14.4337,41.6716],[14.4935,41.6714],[14.5212,41.6995],[14.5188,41.7268],[14.4762,41.7458],[14.4853,41.7597],[14.568,41.8181],[14.6142,41.8892],[14.6638,41.9163],[14.6686,41.9466],[14.7272,42.0032],[14.7802,42.0297],[14.7608,42.0422],[14.7795,42.0698],[14.8892,42.0244],[14.9936,42.0048],[15.0791,41.9426],[15.138,41.9266]]]}},
{"type":"Feature","properties":{"code":"FG","name":"Foggia"},"geometry":{"type":"Polygon","coordinates":[[[16.0248,41.4258],[15.9502,41.4417],[15.9365,41.425],[16.0385,41.3826],[15.9819,41.3608],[15.9834,41.3047],[16.0089,41.264],[16.0402,41.2699],[16.0207,41.2208],[15.8703,41.1399],[15.812,41.1166],[15.7906,41.0878],[15.5857,41.0983],[15.5402,41.0722],[15.5429,41.0559],[15.4461,41.078],[15.4013,41.106],[15.3666,41.0848],[15.2643,41.1053],[15.2106,41.1489],[15.2093,41.1677],[15.2624,41.1976],[15.2457,41.235],[15.2757,41.2495],[15.2007,41.2864],[15.1492,41.2804],[15.1306,41.3172],[15.0722,41.3325],[15.0612,41.3576],[15.0585,41.3721],[15.0983,41.3906],[15.0865,41.4046],[15.0988,41.4338],[15.0468,41.4433],[15.0076,41.4864],[14.9372,41.5275],[14.9503,41.5927],[14.9341,41.6202],[14.9595,41.646],[15.0255,41.6223],[15.0502,41.6573],[15.1615,41.7094],[15.1209,41.7204],[15.097,41.7674],[15.116,41.7991],[15.101,41.8375],[15.1388,41.8793],[15.138,41.9266],[15.4192,41.9009],[15.623,41.9274],[15.7772,41.9186],[16.0121,41.9504],[16.0611,41.9491],[16.153,41.9087],[16.1997,41.8262],[16.1868,41.7723],[15.8975,41.6049],[15.8991,41.5479],[15.9251,41.4945],[16.0248,41.4258]]]}},
{"type":"Feature","properties":{"code":"BA","name":"Bari"},"geometry":{"type":"Polygon","coordinates":[[[17.3892,40.8923],[17.2953,40.8172],[17.3995,40.7853],[17.3937,40.7485],[17.3536,40.7486],[17.3046,40.7435],[17.283,40.7682],[17.2972,40.7734],[17.2892,40.7876],[17.3118,40.7898],[17.2873,40.8034],[17.2428,40.7999],[17.2479,40.766],[17.1599,40.7438],[17.1469,40.7095],[17.0226,40.7131],[17.0009,40.7314],[17.0155,40.7598],[16.9287,40.7387],[16.9307,40.7129],[16.9119,40.7071],[16.8559,40.7236],[16.8086,40.692],[16.7868,40.7333],[16.7249,40.7138],[16.6634,40.7489],[16.6529,40.7363],[16.5797,40.7637],[16.5724,40.7369],[16.5545,40.7577],[16.5358,40.7519],[16.5386,40.725],[16.5011,40.7623],[16.4138,40.7019],[16.2441,40.838],[16.2025,40.9175],[16.2519,40.9622],[16.266,41.0386],[16.3473,41.1253],[16.34,41.1665],[16.3577,41.1613],[16.3916,41.1961],[16.4363,41.1882],[16.4707,41.148],[16.5038,41.1513],[16.5423,41.2295],[17.0571,41.077],[17.2791,40.9717],[17.3501,40.9057],[17.3892,40.8923]]]}},
{"type":"Feature","properties":{"code":"TA","name":"Taranto"},"geometry":{"type":"Polygon","coordinates":[[[17.3536,40.7486],[17.3498,40.7329],[17.4261,40.6878],[17.4283,40.6314],[17.4734,40.6106],[17.4483,40.5542],[17.487,40.4822],[17.511,40.4789],[17.5464,40.4384],[17.5773,40.4385],[17.5838,40.4602],[17.6359,40.46],[17.6826,40.4408],[17.6934,40.4118],[17.7286,40.3916],[17.7715,40.397],[17.7983,40.3796],[17.7853,40.3107],[17.7639,40.2961],[17.5076,40.295],[17.2033,40.4083],[17.2547,40.4411],[17.2467,40.4621],[17.113,40.5198],[16.9874,40.4911],[16.8665,40.3981],[16.8237,40.4195],[16.8028,40.4574],[16.7202,40.4798],[16.737,40.5078],[16.7054,40.555],[16.7283,40.6014],[16.7098,40.6328],[16.7272,40.6884],[16.6965,40.7026],[16.7249,40.7138],[16.7868,40.7333],[16.8086,40.692],[16.8559,40.7236],[16.9119,40.7071],[16.9307,40.7129],[16.9287,40.7387],[17.0155,40.7598],[17.0009,40.7314],[17.0226,40.7131],[17.1469,40.7095],[17.1599,40.7438],[17.2479,40.766],[17.2428,40.7999],[17.2873,40.8034],[17.3118,40.7898],[17.2892,40.7876],[17.2972,40.7734],[17.283,40.7682],[17.3046,40.7435],[17.3536,40.7486]]]}},
{"type":"Feature","properties":{"code":"BR","name":"Brindisi"},"geometry":{"type":"Polygon","coordinates":[[[17.9678,40.6598],[17.9678,40.6596],[17.9272,40.64],[17.9986,40.649],[18.0451,40.5973],[18.0374,40.564],[18.0974,40.5154],[18.0743,40.4763],[18.0598,40.4794],[18.0742,40.4759],[18.0691,40.4604],[18.0414,40.4889],[18.0176,40.4626],[17.9533,40.4576],[17.9356,40.4284],[17.8238,40.4039],[17.7983,40.3796],[17.7715,40.397],[17.7286,40.3916],[17.6934,40.4118],[17.6826,40.4408],[17.6359,40.46],[17.5838,40.4602],[17.5773,40.4385],[17.5464,40.4384],[17.511,40.4789],[17.487,40.4822],[17.4483,40.5542],[17.4734,40.6106],[17.4283,40.6314],[17.4261,40.6878],[17.3498,40.7329],[17.3536,40.7486],[17.3937,40.7485],[17.3995,40.7853],[17.2953,40.8172],[17.3892,40.8923],[17.4941,40.8227],[17.7072,40.7582],[17.8385,40.6913],[17.9356,40.6862],[17.953,40.6641],[17.984,40.6637],[17.9678,40.6596],[17.9678,40.6598]]]}},
{"type":"Feature","properties":{"code":"LE","name":"Lecce"},"geometry":{"type":"Polygon","coordinates":[[[18.4756,40.0455],[18.4358,40.0247],[18.4072,39.9754],[18.3908,39.8176],[18.369,39.7938],[18.334,39.7958],[18.2656,39.8357],[18.2047,39.8385],[18.0772,39.9069],[17.9977,39.9909],[18.018,40.0303],[17.9721,40.0546],[18.0011,40.067],[18.0109,40.1068],[17.9198,40.1921],[17.9045,40.2562],[17.8569,40.2854],[17.7639,40.2961],[17.7853,40.3107],[17.7983,40.3796],[17.8238,40.4039],[17.9356,40.4284],[17.9533,40.4576],[18.0176,40.4626],[18.0414,40.4889],[18.0691,40.4604],[18.0742,40.4759],[18.0598,40.4794],[18.0743,40.4763],[18.0974,40.5154],[18.2409,40.4439],[18.4313,40.2842],[18.4872,40.1484],[18.5171,40.135],[18.5066,40.1262],[18.5204,40.1071],[18.4831,40.0772],[18.4756,40.0455]]]}},
{"type":"Feature","properties":{"code":"PZ","name":"Potenza"},"geometry":{"type":"Polygon","coordinates":[[[16.2025,40.9175],[16.2441,40.838],[16.1221,40.797],[16.1149,40.7676],[16.1491,40.731],[16.1475,40.6992],[16.0609,40.6606],[16.0482,40.6356],[16.121,40.5836],[16.0757,40.5446],[16.1163,40.5007],[16.097,40.4817],[16.1415,40.4525],[16.1061,40.4091],[16.1515,40.3778],[16.1634,40.3385],[16.1896,40.32],[16.1618,40.3122],[16.1955,40.2654],[16.3055,40.272],[16.3334,40.3045],[16.3756,40.3104],[16.3486,40.2054],[16.3965,40.1538],[16.3505,40.1233],[16.3737,40.1078],[16.3553,40.0909],[16.373,40.0905],[16.3625,40.0727],[16.3831,40.0813],[16.3986,40.0557],[16.3978,40.0156],[16.3378,39.9362],[16.3597,39.9196],[16.3506,39.8987],[16.3096,39.934],[16.2689,39.936],[16.2143,39.9266],[16.2147,39.896],[16.159,39.9194],[16.138,39.9014],[16.049,39.8948],[16.0068,39.9573],[16.0307,39.9934],[15.9792,39.9824],[15.928,40.0011],[15.8978,39.9817],[15.8502,40.006],[15.82,40.0019],[15.7559,39.9236],[15.6746,40.0295],[15.6453,40.043],[15.6762,40.0549],[15.6516,40.0786],[15.7058,40.1177],[15.7125,40.1784],[15.7952,40.2214],[15.8064,40.2732],[15.7269,40.3154],[15.7047,40.3422],[15.7101,40.3773],[15.6627,40.3925],[15.5389,40.4881],[15.5505,40.5092],[15.5266,40.5573],[15.5393,40.5681],[15.4495,40.6091],[15.5036,40.6637],[15.3815,40.7242],[15.3883,40.7954],[15.335,40.8349],[15.3777,40.8364],[15.3784,40.8677],[15.3542,40.8827],[15.4608,40.8672],[15.4676,40.8896],[15.5272,40.9078],[15.5723,40.9967],[15.5429,41.0559],[15.5402,41.0722],[15.5857,41.0983],[15.7906,41.0878],[15.812,41.1166],[15.8703,41.1399],[15.9534,41.1108],[15.9989,41.054],[16.0406,41.0362],[16.027,40.9912],[16.0084,40.9721],[15.9718,40.9721],[15.9772,40.958],[16.1211,40.8977],[16.163,40.9286],[16.2025,40.9175]],[[15.9803,40.6483],[15.9414,40.6379],[15.9545,40.6115],[15.984,40.6058],[15.9803,40.6483]]]}},
{"type":"Feature","properties":{"code":"MT","name":"Matera"},"geometry":{"type":"MultiPolygon","coordinates":[[[[16.7249,40.7138],[16.6965,40.7026],[16.7272,40.6884],[16.7098,40.6328],[16.7283,40.6014],[16.7054,40.555],[16.737,40.5078],[16.7202,40.4798],[16.8028,40.4574],[16.8237,40.4195],[16.8665,40.3981],[16.6918,40.1517],[16.6439,40.119],[16.6209,40.1321],[16.53,40.1181],[16.434,40.128],[16.4211,40.1439],[16.3986,40.0557],[16.3831,40.0813],[16.3625,40.0727],[16.373,40.0905],[16.3553,40.0909],[16.3737,40.1078],[16.3505,40.1233],[16.3965,40.1538],[16.3486,40.2054],[16.3756,40.3104],[16.3334,40.3045],[16.3055,40.272],[16.1955,40.2654],[16.1618,40.3122],[16.1896,40.32],[16.1634,40.3385],[16.1515,40.3778],[16.1061,40.4091],[16.1415,40.4525],[16.097,40.4817],[16.1163,40.5007],[16.0757,40.5446],[16.121,40.5836],[16.0482,40.6356],[16.0609,40.6606],[16.1475,40.6992],[16.1491,40.731],[16.1149,40.7676],[16.1221,40.797],[16.2441,40.838],[16.4138,40.7019],[16.5011,40.7623],[16.5386,40.725],[16.5358,40.7519],[16.5545,40.7577],[16.5724,40.7369],[16.5797,40.7637],[16.6529,40.7363],[16.6634,40.7489],[16.7249,40.7138]]],[[[15.9803,40.6483],[15.984,40.6058],[15.9545,40.6115],[15.9414,40.6379],[15.9803,40.6483]]]]}},
{"type":"Feature","properties":{"code":"CS","name":"Cosenza"},"geometry":{"type":"Polygon","coordinates":[[[16.6439,40.119],[16.606,40.0806],[16.5988,40.0432],[16.627,39.9569],[16.4897,39.7997],[16.492,39.7521],[16.5294,39.7244],[16.5229,39.6593],[16.6223,39.6213],[16.7704,39.6208],[16.8666,39.5386],[17.0237,39.4824],[16.9572,39.437],[16.9552,39.396],[16.901,39.4106],[16.9146,39.3832],[16.8397,39.3408],[16.7629,39.362],[16.7049,39.3546],[16.7063,39.3229],[16.761,39.2919],[16.7467,39.2457],[16.7781,39.1959],[16.613,39.1942],[16.536,39.1446],[16.5044,39.1596],[16.4791,39.1223],[16.5127,39.1098],[16.4783,39.1082],[16.47,39.0512],[16.4425,39.0696],[16.4244,39.0618],[16.3937,39.1039],[16.2588,39.1126],[16.2341,39.0922],[16.213,39.1034],[16.2142,39.0829],[16.1438,39.0491],[16.0939,39.0488],[16.0367,39.3484],[15.9867,39.4544],[15.9252,39.5265],[15.874,39.5539],[15.8156,39.6819],[15.769,39.8357],[15.7916,39.8631],[15.7559,39.9236],[15.82,40.0019],[15.8502,40.006],[15.8978,39.9817],[15.928,40.0011],[15.9792,39.9824],[16.0307,39.9934],[16.0068,39.9573],[16.049,39.8948],[16.138,39.9014],[16.159,39.9194],[16.2147,39.896],[16.2143,39.9266],[16.2689,39.936],[16.3096,39.934],[16.3506,39.8987],[16.3597,39.9196],[16.3378,39.9362],[16.3978,40.0156],[16.3986,40.0557],[16.4211,40.1439],[16.434,40.128],[16.53,40.1181],[16.6209,40.1321],[16.6439,40.119]]]}},
{"type":"Feature","properties":{"code":"CZ","name":"Catanzaro"},"geometry":{"type":"Polygon","coordinates":[[[16.8906,38.928],[16.6251,38.8258],[16.5674,38.7667],[16.5348,38.7097],[16.5586,38.6806],[16.582,38.4701],[16.541,38.4633],[16.4579,38.5129],[16.4094,38.5122],[16.4391,38.5384],[16.4198,38.554],[16.4312,38.5814],[16.329,38.6407],[16.3457,38.6579],[16.3263,38.6778],[16.3492,38.7073],[16.3385,38.7206],[16.3705,38.7429],[16.3481,38.7902],[16.2845,38.8243],[16.2572,38.8199],[16.2788,38.7917],[16.2132,38.8106],[16.2168,38.9239],[16.1561,38.9515],[16.0939,39.0488],[16.1438,39.0491],[16.2142,39.0829],[16.213,39.1034],[16.2341,39.0922],[16.2588,39.1126],[16.3937,39.1039],[16.4244,39.0618],[16.4425,39.0696],[16.47,39.0512],[16.4783,39.1082],[16.5127,39.1098],[16.4791,39.1223],[16.5044,39.1596],[16.536,39.1446],[16.613,39.1942],[16.6286,39.1627],[16.6693,39.156],[16.6809,39.1314],[16.6383,39.1321],[16.6793,39.0922],[16.7338,39.0589],[16.8192,39.0516],[16.8914,39.0027],[16.8915,38.9734],[16.9206,38.9526],[16.8906,38.928]]]}},
{"type":"Feature","properties":{"code":"RC","name":"Reggio di Calabria"},"geometry":{"type":"Polygon","coordinates":[[[16.4198,38.554],[16.4391,38.5384],[16.4094,38.5122],[16.4579,38.5129],[16.541,38.4633],[16.582,38.4701],[16.5708,38.4267],[16.4988,38.3614],[16.3303,38.2978],[16.1685,38.1398],[16.1442,38.0312],[16.0645,37.9256],[15.7612,37.9166],[15.678,37.9541],[15.6362,38.0076],[15.6571,38.0397],[15.6302,38.0932],[15.6553,38.1338],[15.6334,38.2233],[15.7492,38.2571],[15.8171,38.3007],[15.9186,38.5068],[15.9588,38.5255],[16.0045,38.5167],[16.08,38.5621],[16.1935,38.4976],[16.2333,38.5008],[16.2694,38.4442],[16.3493,38.4291],[16.3929,38.4473],[16.3887,38.4758],[16.3526,38.5007],[16.3493,38.5374],[16.3929,38.5738],[16.4198,38.554]]]}},
{"type":"Feature","properties":{"code":"TP","name":"Trapani"},"geometry":{"type":"MultiPolygon","coordinates":[[[[12.9771,38.0403],[13.0038,37.9905],[13.0536,37.9587],[13.0469,37.9174],[13.0238,37.9023],[12.9384,37.9041],[12.9289,37.8861],[12.9586,37.8648],[12.9455,37.84],[12.9707,37.8238],[13.0983,37.8135],[13.0749,37.7883],[13.1003,37.7711],[13.0121,37.7426],[12.9586,37.7268],[12.8932,37.662],[12.888,37.6419],[12.9169,37.6448],[12.8965,37.5771],[12.781,37.5808],[12.6728,37.56],[12.6064,37.6413],[12.5177,37.6608],[12.4761,37.699],[12.4701,37.747],[12.4255,37.8031],[12.4617,37.8173],[12.4859,37.8737],[12.4592,37.9084],[12.52,38.0106],[12.4916,38.017],[12.5185,38.0213],[12.5694,38.0689],[12.6457,38.0782],[12.6604,38.1118],[12.7112,38.1097],[12.7376,38.1396],[12.7159,38.1729],[12.7291,38.189],[12.7681,38.1796],[12.811,38.0813],[12.8686,38.0513],[12.8789,38.0291],[12.9771,38.0403]]],[[[12.0013,36.8197],[12.0535,36.7906],[12.0521,36.7561],[12.0284,36.7358],[11.9921,36.7379],[11.9266,36.8023],[11.9528,36.8394],[12.0013,36.8197]]],[[[12.3084,37.9524],[12.3239,37.9292],[12.3692,37.9224],[12.3662,37.9065],[12.2816,37.9191],[12.2781,37.945],[12.3084,37.9524]]],[[[12.0639,37.99],[12.0917,37.9474],[12.0444,37.9585],[12.0279,37.9916],[12.0639,37.99]]],[[[12.3335,38.0207],[12.3509,37.9884],[12.3227,37.9951],[12.3335,38.0207]]],[[[12.45,37.8962],[12.4465,37.844],[12.4288,37.8923],[12.45,37.8962]]]]}},
{"type":"Feature","properties":{"code":"PA","name":"Palermo"},"geometry":{"type":"MultiPolygon","coordinates":[[[[14.1835,38.0194],[14.2529,37.917],[14.2919,37.9186],[14.2682,37.8758],[14.28,37.8401],[14.2609,37.7924],[14.2939,37.7429],[14.2522,37.6935],[14.1612,37.6692],[14.1635,37.6372],[14.135,37.6167],[14.0568,37.648],[14.0252,37.6319],[14.0192,37.5982],[13.9566,37.5856],[13.9233,37.5965],[13.9307,37.6073],[13.8993,37.6181],[13.9045,37.6575],[13.8139,37.7046],[13.8081,37.7451],[13.7768,37.7225],[13.7766,37.7017],[13.7437,37.7066],[13.7325,37.6829],[13.6788,37.6922],[13.6568,37.6587],[13.5646,37.6354],[13.518,37.6412],[13.5117,37.6592],[13.4637,37.6466],[13.4529,37.6604],[13.4263,37.6432],[13.395,37.6596],[13.3834,37.6514],[13.4007,37.618],[13.3812,37.5995],[13.4005,37.5582],[13.3564,37.5393],[13.3207,37.5881],[13.3339,37.6087],[13.3193,37.6255],[13.3482,37.657],[13.3278,37.6624],[13.3006,37.639],[13.2758,37.6472],[13.2523,37.6118],[13.2124,37.6404],[13.2138,37.6743],[13.1878,37.6916],[13.0794,37.6902],[13.0121,37.7426],[13.1003,37.7711],[13.0749,37.7883],[13.0983,37.8135],[12.9707,37.8238],[12.9455,37.84],[12.9586,37.8648],[12.9289,37.8861],[12.9384,37.9041],[13.0238,37.9023],[13.0469,37.9174],[13.0536,37.9587],[13.0038,37.9905],[12.9771,38.0403],[13.0778,38.0877],[13.0524,38.1387],[13.1056,38.1909],[13.1914,38.1693],[13.238,38.1866],[13.2414,38.2041],[13.274,38.1982],[13.3165,38.2247],[13.3657,38.1823],[13.3627,38.1298],[13.3836,38.109],[13.4427,38.0948],[13.5086,38.1196],[13.5379,38.1126],[13.5413,38.0575],[13.6522,37.9978],[13.7215,37.987],[13.7036,37.9899],[13.7107,37.9775],[13.7974,37.9751],[13.9458,38.0282],[14.0359,38.0415],[14.064,38.0187],[14.1835,38.0194]],[[14.0397,37.6892],[14.0107,37.6901],[14.018,37.6574],[14.0857,37.6767],[14.0912,37.7043],[14.0435,37.7259],[14.0293,37.7044],[14.0397,37.6892]]],[[[13.1861,38.7166],[13.2004,38.7096],[13.186,38.6962],[13.1528,38.6935],[13.1596,38.7122],[13.1861,38.7166]]],[[[13.1567,37.6255],[13.1447,37.6434],[13.1832,37.6353],[13.1567,37.6255]]]]}},
{"type":"Feature","properties":{"code":"ME","name":"Messina"},"geometry":{"type":"MultiPolygon","coordinates":[[[[15.2581,37.8072],[15.1526,37.8955],[15.1109,37.9062],[14.9799,37.8931],[14.9292,37.9609],[14.8572,37.9264],[14.8414,37.9589],[14.8285,37.9351],[14.8014,37.9532],[14.7651,37.9405],[14.7565,37.916],[14.7785,37.9041],[14.7669,37.8885],[14.7385,37.9022],[14.7381,37.8485],[14.7586,37.8684],[14.7779,37.8624],[14.8028,37.8109],[14.7423,37.8181],[14.6805,37.7953],[14.5972,37.8105],[14.5525,37.8397],[14.5702,37.8796],[14.505,37.8508],[14.4768,37.811],[14.454,37.8169],[14.4614,37.8433],[14.4063,37.8664],[14.3961,37.8483],[14.28,37.8401],[14.2682,37.8758],[14.2919,37.9186],[14.2529,37.917],[14.1835,38.0194],[14.309,38.0079],[14.427,38.0406],[14.5252,38.0422],[14.6414,38.076],[14.7478,38.1654],[14.7875,38.1514],[14.8885,38.1717],[14.9163,38.1923],[14.9698,38.1524],[15.0448,38.1519],[15.0562,38.1315],[15.096,38.1209],[15.2121,38.1864],[15.241,38.2425],[15.2312,38.2715],[15.2529,38.2467],[15.2413,38.2169],[15.2928,38.2064],[15.4261,38.2413],[15.5414,38.3014],[15.652,38.2692],[15.5731,38.2347],[15.5576,38.1904],[15.576,38.1941],[15.4936,38.0746],[15.2581,37.8072]]],[[[14.9625,38.5212],[14.9626,38.4909],[14.9807,38.4832],[14.9553,38.4744],[14.9532,38.4392],[14.8977,38.4864],[14.9125,38.5184],[14.9625,38.5212]]],[[[14.8668,38.5831],[14.8713,38.5367],[14.7959,38.5621],[14.8074,38.5831],[14.8668,38.5831]]],[[[14.9637,38.4121],[14.9971,38.3962],[15.0028,38.3709],[14.9494,38.3846],[14.9395,38.4113],[14.9595,38.4323],[14.9637,38.4121]]],[[[15.2151,38.7715],[15.1891,38.7955],[15.2162,38.8117],[15.2423,38.805],[15.2151,38.7715]]],[[[14.5871,38.5586],[14.5558,38.5578],[14.5395,38.5785],[14.5757,38.5813],[14.5871,38.5586]]],[[[14.3518,38.5306],[14.3403,38.5482],[14.363,38.554],[14.3518,38.5306]]]]}},
{"type":"Feature","properties":{"code":"AG","name":"Agrigento"},"geometry":{"type":"MultiPolygon","coordinates":[[[[13.7325,37.6829],[13.8226,37.6758],[13.8106,37.6418],[13.8309,37.6186],[13.7886,37.6235],[13.754,37.5917],[13.6711,37.5801],[13.69,37.5556],[13.6904,37.5008],[13.6506,37.4612],[13.7498,37.4279],[13.849,37.4371],[13.8611,37.404],[13.9084,37.3872],[13.8851,37.3566],[13.9642,37.3292],[13.9969,37.2931],[14.0315,37.2922],[14.0067,37.2414],[14.0156,37.2275],[13.9913,37.2205],[14.0043,37.1936],[13.9823,37.1927],[14.03,37.1546],[14.0363,37.1061],[13.8952,37.0974],[13.8241,37.1445],[13.7514,37.1493],[13.6634,37.1934],[13.6418,37.2272],[13.5555,37.2854],[13.4485,37.296],[13.2716,37.3917],[13.1693,37.4918],[13.0781,37.5057],[13.02,37.4956],[12.9606,37.5642],[12.8965,37.5771],[12.9169,37.6448],[12.888,37.6419],[12.8932,37.662],[12.9586,37.7268],[13.0121,37.7426],[13.0794,37.6902],[13.1878,37.6916],[13.2138,37.6743],[13.2124,37.6404],[13.2523,37.6118],[13.2758,37.6472],[13.3006,37.639],[13.3278,37.6624],[13.3482,37.657],[13.3193,37.6255],[13.3339,37.6087],[13.3207,37.5881],[13.3564,37.5393],[13.4005,37.5582],[13.3812,37.5995],[13.4007,37.618],[13.3834,37.6514],[13.395,37.6596],[13.4263,37.6432],[13.4529,37.6604],[13.4637,37.6466],[13.5117,37.6592],[13.518,37.6412],[13.5646,37.6354],[13.6568,37.6587],[13.6788,37.6922],[13.7325,37.6829]],[[13.1567,37.6255],[13.1832,37.6353],[13.1447,37.6434],[13.1567,37.6255]]],[[[12.5314,35.5291],[12.6279,35.5204],[12.6327,35.4937],[12.5178,35.5202],[12.5314,35.5291]]],[[[12.8773,35.8748],[12.8809,35.8546],[12.8485,35.8683],[12.8773,35.8748]]]]}},
{"type":"Feature","properties":{"code":"CL","name":"Caltanissetta"},"geometry":{"type":"MultiPolygon","coordinates":[[[[14.135,37.6167],[14.1644,37.6122],[14.1235,37.5292],[14.1594,37.481],[14.056,37.4069],[14.0817,37.3807],[14.0835,37.3393],[14.1288,37.3454],[14.1672,37.324],[14.2526,37.3458],[14.3168,37.3268],[14.3158,37.303],[14.3527,37.3061],[14.3528,37.2781],[14.3817,37.2861],[14.3928,37.2619],[14.3815,37.1922],[14.4022,37.1774],[14.4319,37.1898],[14.4764,37.1345],[14.452,37.0963],[14.4283,37.0939],[14.4441,37.0529],[14.3379,37.0016],[14.2566,37.0587],[14.1706,37.0911],[14.0363,37.1061],[14.03,37.1546],[13.9823,37.1927],[14.0043,37.1936],[13.9913,37.2205],[14.0156,37.2275],[14.0067,37.2414],[14.0315,37.2922],[13.9969,37.2931],[13.9642,37.3292],[13.8851,37.3566],[13.9084,37.3872],[13.8611,37.404],[13.849,37.4371],[13.7498,37.4279],[13.6506,37.4612],[13.6904,37.5008],[13.69,37.5556],[13.6711,37.5801],[13.754,37.5917],[13.7886,37.6235],[13.8309,37.6186],[13.8106,37.6418],[13.8226,37.6758],[13.7325,37.6829],[13.7437,37.7066],[13.7766,37.7017],[13.7768,37.7225],[13.8081,37.7451],[13.8139,37.7046],[13.9045,37.6575],[13.8993,37.6181],[13.9307,37.6073],[13.9233,37.5965],[13.9566,37.5856],[14.0192,37.5982],[14.0252,37.6319],[14.0568,37.648],[14.135,37.6167]]],[[[14.0397,37.6892],[14.0293,37.7044],[14.0435,37.7259],[14.0912,37.7043],[14.0857,37.6767],[14.018,37.6574],[14.0107,37.6901],[14.0397,37.6892]]]]}},
{"type":"Feature","properties":{"code":"EN","name":"Enna"},"geometry":{"type":"Polygon","coordinates":[[[14.7423,37.8181],[14.7445,37.7896],[14.7144,37.7761],[14.7368,37.7536],[14.7063,37.7315],[14.7165,37.6973],[14.7244,37.6814],[14.7512,37.6862],[14.7979,37.7127],[14.7924,37.6528],[14.8259,37.6317],[14.829,37.5889],[14.7909,37.5613],[14.791,37.507],[14.7639,37.5044],[14.6813,37.5579],[14.6344,37.5359],[14.543,37.5426],[14.5265,37.5184],[14.4878,37.5086],[14.5278,37.4969],[14.5169,37.4768],[14.5418,37.45],[14.588,37.4501],[14.6336,37.4246],[14.5812,37.4024],[14.5814,37.3642],[14.4894,37.35],[14.5215,37.3243],[14.5027,37.3091],[14.4463,37.3486],[14.4221,37.3386],[14.4556,37.3092],[14.433,37.2922],[14.3527,37.3061],[14.3158,37.303],[14.3168,37.3268],[14.2526,37.3458],[14.1672,37.324],[14.1288,37.3454],[14.0835,37.3393],[14.0817,37.3807],[14.056,37.4069],[14.1594,37.481],[14.1235,37.5292],[14.1644,37.6122],[14.135,37.6167],[14.1635,37.6372],[14.1612,37.6692],[14.2522,37.6935],[14.2939,37.7429],[14.2609,37.7924],[14.28,37.8401],[14.3961,37.8483],[14.4063,37.8664],[14.4614,37.8433],[14.454,37.8169],[14.4768,37.811],[14.505,37.8508],[14.5702,37.8796],[14.5525,37.8397],[14.5972,37.8105],[14.6805,37.7953],[14.7423,37.8181]]]}},
{"type":"Feature","properties":{"code":"CT","name":"Catania"},"geometry":{"type":"Polygon","coordinates":[[[15.2581,37.8072],[15.2053,37.741],[15.2183,37.7084],[15.1743,37.6321],[15.1771,37.5763],[15.1153,37.5306],[15.1,37.4839],[15.0904,37.5],[15.091,37.3587],[14.9824,37.3738],[14.9154,37.4127],[14.7874,37.3379],[14.7794,37.3245],[14.8046,37.3155],[14.8416,37.3247],[14.8922,37.3107],[14.8475,37.26],[14.8112,37.2566],[14.7745,37.2287],[14.783,37.21],[14.8255,37.196],[14.8715,37.2041],[14.8346,37.1627],[14.8439,37.1303],[14.7939,37.132],[14.7752,37.1393],[14.7963,37.1066],[14.7657,37.0955],[14.7274,37.096],[14.7292,37.1174],[14.7088,37.1272],[14.6283,37.0807],[14.6119,37.0913],[14.564,37.0515],[14.5441,37.053],[14.534,37.0754],[14.4441,37.0529],[14.4283,37.0939],[14.452,37.0963],[14.4764,37.1345],[14.4319,37.1898],[14.4022,37.1774],[14.3815,37.1922],[14.3928,37.2619],[14.3817,37.2861],[14.3528,37.2781],[14.3527,37.3061],[14.433,37.2922],[14.4556,37.3092],[14.4221,37.3386],[14.4463,37.3486],[14.5027,37.3091],[14.5215,37.3243],[14.4894,37.35],[14.5814,37.3642],[14.5812,37.4024],[14.6336,37.4246],[14.588,37.4501],[14.5418,37.45],[14.5169,37.4768],[14.5278,37.4969],[14.4878,37.5086],[14.5265,37.5184],[14.543,37.5426],[14.6344,37.5359],[14.6813,37.5579],[14.7639,37.5044],[14.791,37.507],[14.7909,37.5613],[14.829,37.5889],[14.8259,37.6317],[14.7924,37.6528],[14.7979,37.7127],[14.7512,37.6862],[14.7244,37.6814],[14.7165,37.6973],[14.7063,37.7315],[14.7368,37.7536],[14.7144,37.7761],[14.7445,37.7896],[14.7423,37.8181],[14.8028,37.8109],[14.7779,37.8624],[14.7586,37.8684],[14.7381,37.8485],[14.7385,37.9022],[14.7669,37.8885],[14.7785,37.9041],[14.7565,37.916],[14.7651,37.9405],[14.8014,37.9532],[14.8285,37.9351],[14.8414,37.9589],[14.8572,37.9264],[14.9292,37.9609],[14.9799,37.8931],[15.1109,37.9062],[15.1526,37.8955],[15.2581,37.8072]]]}},
{"type":"Feature","properties":{"code":"RG","name":"Ragusa"},"geometry":{"type":"Polygon","coordinates":[[[15.0004,36.7028],[14.9566,36.6941],[14.8768,36.7311],[14.8345,36.7221],[14.8398,36.7079],[14.781,36.7037],[14.6898,36.7212],[14.5883,36.777],[14.4935,36.7865],[14.3379,37.0016],[14.4441,37.0529],[14.534,37.0754],[14.5441,37.053],[14.564,37.0515],[14.6119,37.0913],[14.6283,37.0807],[14.7088,37.1272],[14.7292,37.1174],[14.7274,37.096],[14.7657,37.0955],[14.7963,37.1066],[14.7752,37.1393],[14.7939,37.132],[14.8431,37.0607],[14.8249,37.0676],[14.8184,37.0534],[14.8379,37.0551],[14.9378,36.9033],[14.8607,36.9576],[14.8605,36.9739],[14.8371,36.9744],[14.8388,36.9468],[14.8968,36.9253],[14.8776,36.9145],[14.884,36.8988],[14.9386,36.8637],[14.9233,36.8481],[14.8692,36.8692],[14.8544,36.8277],[14.9852,36.7807],[15.0004,36.7028]]]}},
{"type":"Feature","properties":{"code":"SR","name":"Siracusa"},"geometry":{"type":"Polygon","coordinates":[[[15.091,37.3587],[15.1053,37.3101],[15.1867,37.2794],[15.2066,37.2934],[15.2575,37.2435],[15.2256,37.2408],[15.2245,37.2162],[15.2145,37.2471],[15.1848,37.2369],[15.1865,37.1915],[15.206,37.1533],[15.2448,37.1459],[15.2201,37.1434],[15.2369,37.1154],[15.2957,37.1067],[15.2965,37.0528],[15.2796,37.0656],[15.271,37.0514],[15.2816,37.0335],[15.315,37.0371],[15.3365,37.0021],[15.2988,37.0149],[15.2678,37.0025],[15.2624,36.975],[15.2082,36.9633],[15.1108,36.8483],[15.0943,36.778],[15.1402,36.685],[15.1323,36.6671],[15.1161,36.6748],[15.0785,36.6465],[15.0429,36.6885],[15.0004,36.7028],[14.9852,36.7807],[14.8544,36.8277],[14.8692,36.8692],[14.9233,36.8481],[14.9386,36.8637],[14.884,36.8988],[14.8776,36.9145],[14.8968,36.9253],[14.8388,36.9468],[14.8371,36.9744],[14.8605,36.9739],[14.8607,36.9576],[14.9378,36.9033],[14.8379,37.0551],[14.8184,37.0534],[14.8249,37.0676],[14.8431,37.0607],[14.7939,37.132],[14.8439,37.1303],[14.8346,37.1627],[14.8715,37.2041],[14.8255,37.196],[14.783,37.21],[14.7745,37.2287],[14.8112,37.2566],[14.8475,37.26],[14.8922,37.3107],[14.8416,37.3247],[14.8046,37.3155],[14.7794,37.3245],[14.7874,37.3379],[14.9154,37.4127],[14.9824,37.3738],[15.091,37.3587]]]}},
{"type":"Feature","properties":{"code":"SS","name":"Sassari"},"geometry":{"type":"MultiPolygon","coordinates":[[[[9.7488,40.6604],[9.6918,40.6791],[9.6835,40.6581],[9.6514,40.6923],[9.5831,40.7061],[9.512,40.6489],[9.4206,40.6586],[9.4143,40.6341],[9.3785,40.6164],[9.3935,40.5921],[9.2864,40.5259],[9.1887,40.5366],[9.1821,40.5087],[9.2788,40.5108],[9.2845,40.4766],[9.2512,40.4664],[9.2254,40.4106],[9.1832,40.3713],[9.0615,40.3368],[9.028,40.2966],[8.9484,40.3685],[8.9008,40.3885],[8.898,40.4058],[8.8649,40.3897],[8.827,40.413],[8.8121,40.3644],[8.7373,40.3533],[8.6439,40.297],[8.6202,40.319],[8.5119,40.4226],[8.4436,40.3956],[8.3998,40.4076],[8.3739,40.4908],[8.3392,40.5092],[8.3031,40.5887],[8.1981,40.5712],[8.2195,40.601],[8.1948,40.6184],[8.1644,40.5603],[8.1509,40.5794],[8.1449,40.6238],[8.1867,40.6392],[8.205,40.6827],[8.1338,40.7314],[8.2238,40.8864],[8.176,40.9342],[8.1983,40.9692],[8.2384,40.9529],[8.2327,40.9108],[8.3139,40.8448],[8.3847,40.8512],[8.3479,40.8398],[8.4588,40.8196],[8.5634,40.8322],[8.6989,40.9145],[8.7909,40.9227],[8.873,40.9955],[8.8799,41.0287],[8.929,41.0437],[9.0133,41.1254],[9.0462,41.1379],[9.0862,41.128],[9.1232,41.1563],[9.1525,41.1554],[9.1711,41.174],[9.1541,41.1972],[9.1673,41.2294],[9.1413,41.2324],[9.1442,41.2469],[9.1627,41.2356],[9.2351,41.2591],[9.2805,41.2278],[9.2767,41.1932],[9.2867,41.2192],[9.3009,41.2021],[9.2895,41.1934],[9.3203,41.2031],[9.3319,41.1853],[9.3382,41.2047],[9.3633,41.2076],[9.3702,41.1832],[9.4233,41.1768],[9.4051,41.1579],[9.4322,41.1515],[9.4425,41.1018],[9.4717,41.1257],[9.4669,41.1435],[9.5102,41.1407],[9.5262,41.1568],[9.5266,41.1337],[9.5458,41.1337],[9.5404,41.1144],[9.5612,41.1197],[9.5706,41.1005],[9.5517,41.0793],[9.5403,41.0898],[9.5059,41.0094],[9.5612,41.0377],[9.5555,41.0038],[9.5951,41.0227],[9.6649,40.9954],[9.6514,40.9841],[9.611,41.0032],[9.5825,40.983],[9.5939,40.9685],[9.5682,40.9424],[9.5748,40.928],[9.5239,40.9335],[9.5024,40.9275],[9.5038,40.9127],[9.5634,40.9191],[9.5887,40.8996],[9.6443,40.92],[9.616,40.8896],[9.6507,40.8794],[9.6652,40.8533],[9.7279,40.8445],[9.6863,40.8352],[9.6919,40.8113],[9.6704,40.7882],[9.718,40.7483],[9.715,40.7099],[9.746,40.6872],[9.7488,40.6604]]],[[[8.3254,41.1055],[8.3504,41.0884],[8.3324,41.05],[8.2834,41.0644],[8.2573,41.0513],[8.2672,41.0461],[8.2346,41.0241],[8.2636,41.0027],[8.2558,40.985],[8.2103,40.9878],[8.2293,41.0232],[8.2203,41.0409],[8.2853,41.0767],[8.2752,41.1043],[8.3183,41.1208],[8.3254,41.1055]]],[[[9.4309,41.2603],[9.4477,41.233],[9.4381,41.2142],[9.3813,41.2103],[9.3781,41.2347],[9.4133,41.2507],[9.4144,41.268],[9.4309,41.2603]]],[[[9.4711,41.2452],[9.4887,41.2201],[9.4638,41.1844],[9.4817,41.1828],[9.4366,41.1809],[9.4711,41.2452]]],[[[9.7341,40.9226],[9.7416,40.9111],[9.6731,40.8891],[9.7341,40.9226]]],[[[9.3437,41.251],[9.3606,41.2425],[9.3457,41.2289],[9.3329,41.2356],[9.3437,41.251]]],[[[9.41,41.1864],[9.3981,41.1977],[9.4196,41.2075],[9.41,41.1864]]],[[[9.7299,40.8758],[9.7364,40.8595],[9.7101,40.8693],[9.7299,40.8758]]],[[[9.3551,41.2766],[9.3351,41.2835],[9.3558,41.2887],[9.3551,41.2766]]]]}},
{"type":"Feature","properties":{"code":"NU","name":"Nuoro"},"geometry":{"type":"Polygon","coordinates":[[[9.7488,40.6604],[9.7518,40.6009],[9.8284,40.5284],[9.7639,40.3907],[9.684,40.3387],[9.6239,40.2528],[9.6341,40.1798],[9.685,40.1116],[9.7357,40.0775],[9.6866,39.9842],[9.6868,39.9484],[9.7161,39.9302],[9.682,39.9003],[9.6967,39.8534],[9.6684,39.7767],[9.676,39.7109],[9.6472,39.6517],[9.6514,39.5492],[9.5236,39.5887],[9.5083,39.6281],[9.4863,39.6169],[9.4384,39.6417],[9.4167,39.6172],[9.3856,39.7165],[9.4137,39.7507],[9.3621,39.8052],[9.3773,39.8221],[9.3698,39.8404],[9.4044,39.8476],[9.417,39.8837],[9.3855,39.9161],[9.3549,39.9035],[9.213,39.9147],[9.1849,39.8575],[9.2002,39.8263],[9.1656,39.8326],[9.1704,39.8492],[9.1288,39.8885],[9.1051,39.8693],[9.0391,39.9121],[8.9881,39.9148],[8.9956,39.96],[9.0177,39.9819],[8.9567,39.9927],[8.9456,40.0132],[8.9882,40.0572],[9.0266,40.0377],[9.0412,40.0555],[9.0352,40.0958],[9.0024,40.1344],[9.0186,40.1463],[8.998,40.1804],[9.0125,40.1988],[8.9825,40.2183],[8.8569,40.2107],[8.7412,40.1806],[8.7431,40.2008],[8.7096,40.2142],[8.6727,40.2044],[8.6677,40.2497],[8.6164,40.2732],[8.6202,40.319],[8.6439,40.297],[8.7373,40.3533],[8.8121,40.3644],[8.827,40.413],[8.8649,40.3897],[8.898,40.4058],[8.9008,40.3885],[8.9484,40.3685],[9.028,40.2966],[9.0615,40.3368],[9.1832,40.3713],[9.2254,40.4106],[9.2512,40.4664],[9.2845,40.4766],[9.2788,40.5108],[9.1821,40.5087],[9.1887,40.5366],[9.2864,40.5259],[9.3935,40.5921],[9.3785,40.6164],[9.4143,40.6341],[9.4206,40.6586],[9.512,40.6489],[9.5831,40.7061],[9.6514,40.6923],[9.6835,40.6581],[9.6918,40.6791],[9.7488,40.6604]]]}},
{"type":"Feature","properties":{"code":"CA","name":"Cagliari"},"geometry":{"type":"Polygon","coordinates":[[[9.4423,39.1269],[9.2975,39.2133],[9.2098,39.2268],[9.1648,39.2044],[9.1587,39.1813],[9.0951,39.2139],[9.0302,39.1635],[9.0089,39.1213],[9.0458,39.0561],[9.0242,39.0038],[8.9106,38.9156],[8.9098,38.9571],[8.8319,39.0474],[8.8531,39.0845],[8.8202,39.1306],[8.8552,39.1798],[8.8615,39.2733],[8.9427,39.3041],[8.9402,39.3252],[8.9607,39.3418],[9.0062,39.327],[9.0824,39.353],[9.1873,39.3279],[9.2424,39.348],[9.281,39.4132],[9.3687,39.4234],[9.3704,39.3961],[9.3313,39.3501],[9.3668,39.3148],[9.4088,39.3167],[9.4426,39.2946],[9.4864,39.2071],[9.4736,39.1598],[9.4423,39.1269]]]}},
{"type":"Feature","properties":{"code":"OR","name":"Oristano"},"geometry":{"type":"Polygon","coordinates":[[[8.6202,40.319],[8.6164,40.2732],[8.6677,40.2497],[8.6727,40.2044],[8.7096,40.2142],[8.7431,40.2008],[8.7412,40.1806],[8.8569,40.2107],[8.9825,40.2183],[9.0125,40.1988],[8.998,40.1804],[9.0186,40.1463],[9.0024,40.1344],[9.0352,40.0958],[9.0412,40.0555],[9.0266,40.0377],[8.9882,40.0572],[8.9456,40.0132],[8.9567,39.9927],[9.0177,39.9819],[8.9956,39.96],[8.9881,39.9148],[9.0391,39.9121],[9.1051,39.8693],[9.1288,39.8885],[9.1704,39.8492],[9.1656,39.8326],[9.1135,39.8497],[9.0543,39.801],[8.9866,39.8257],[8.9525,39.7785],[8.8885,39.7944],[8.893,39.773],[8.9243,39.7584],[8.9017,39.733],[8.913,39.7215],[8.8814,39.7049],[8.8615,39.668],[8.7841,39.6539],[8.7431,39.6271],[8.6965,39.6454],[8.6713,39.6312],[8.6282,39.6544],[8.608,39.6899],[8.5213,39.6929],[8.5022,39.713],[8.5454,39.7952],[8.5539,39.8576],[8.5703,39.8646],[8.5442,39.866],[8.5317,39.8974],[8.4919,39.9096],[8.4665,39.9036],[8.4356,39.858],[8.4347,39.8841],[8.3988,39.9037],[8.3914,39.9755],[8.4141,40.017],[8.3763,40.0358],[8.4537,40.0508],[8.493,40.0869],[8.4558,40.1767],[8.483,40.2854],[8.4587,40.3196],[8.3843,40.3436],[8.3998,40.4076],[8.4436,40.3956],[8.5119,40.4226],[8.6202,40.319]]]}},
{"type":"Feature","properties":{"code":"SU","name":"Sud Sardegna"},"geometry":{"type":"MultiPolygon","coordinates":[[[[8.3643,39.0329],[8.3498,39.0764],[8.3603,39.1099],[8.4257,39.1089],[8.4646,39.058],[8.4885,39.0847],[8.4668,39.1186],[8.4374,39.1202],[8.4371,39.156],[8.4129,39.174],[8.4126,39.1512],[8.4014,39.1937],[8.3666,39.2278],[8.4368,39.2902],[8.4204,39.3326],[8.3967,39.3377],[8.373,39.3748],[8.4121,39.4225],[8.387,39.4753],[8.444,39.535],[8.4706,39.5989],[8.4444,39.6783],[8.4513,39.7696],[8.5022,39.713],[8.5213,39.6929],[8.608,39.6899],[8.6282,39.6544],[8.6713,39.6312],[8.6965,39.6454],[8.7431,39.6271],[8.7841,39.6539],[8.8615,39.668],[8.8814,39.7049],[8.913,39.7215],[8.9017,39.733],[8.9243,39.7584],[8.893,39.773],[8.8885,39.7944],[8.9525,39.7785],[8.9866,39.8257],[9.0543,39.801],[9.1135,39.8497],[9.1656,39.8326],[9.2002,39.8263],[9.1849,39.8575],[9.213,39.9147],[9.3549,39.9035],[9.3855,39.9161],[9.417,39.8837],[9.4044,39.8476],[9.3698,39.8404],[9.3773,39.8221],[9.3621,39.8052],[9.4137,39.7507],[9.3856,39.7165],[9.4167,39.6172],[9.4384,39.6417],[9.4863,39.6169],[9.5083,39.6281],[9.5236,39.5887],[9.6514,39.5492],[9.6315,39.5033],[9.646,39.4614],[9.5974,39.3472],[9.6332,39.2958],[9.604,39.2922],[9.5749,39.2517],[9.5628,39.1947],[9.5789,39.1756],[9.564,39.1416],[9.5229,39.1202],[9.5238,39.0947],[9.5031,39.1079],[9.5027,39.1312],[9.4423,39.1269],[9.4736,39.1598],[9.4864,39.2071],[9.4426,39.2946],[9.4088,39.3167],[9.3668,39.3148],[9.3313,39.3501],[9.3704,39.3961],[9.3687,39.4234],[9.281,39.4132],[9.2424,39.348],[9.1873,39.3279],[9.0824,39.353],[9.0062,39.327],[8.9607,39.3418],[8.9402,39.3252],[8.9427,39.3041],[8.8615,39.2733],[8.8552,39.1798],[8.8202,39.1306],[8.8531,39.0845],[8.8319,39.0474],[8.9098,38.9571],[8.9106,38.9156],[8.8327,38.8773],[8.7207,38.9375],[8.6641,38.9125],[8.6703,38.8972],[8.6497,38.8949],[8.6566,38.8706],[8.6399,38.8649],[8.6464,38.8942],[8.6067,38.8928],[8.6232,38.9392],[8.6073,38.9616],[8.5867,38.9558],[8.565,39.0454],[8.4661,39.057],[8.4448,38.9699],[8.4141,38.9553],[8.3643,39.0329]]],[[[8.3082,39.1802],[8.3101,39.1126],[8.2902,39.0955],[8.2479,39.1085],[8.2503,39.1334],[8.2196,39.1476],[8.2717,39.1798],[8.3082,39.1802]]]]}}
]
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,23 @@
{"type":"FeatureCollection","features":[
{"id":"SE-AC","type":"Feature","properties":{"code":"AC","name":"Västerbotten"},"geometry":{"type":"Polygon","coordinates":[[[15.4468,66.3214],[15.7517,66.2675],[16.3208,66.0983],[16.4622,66.0494],[16.775,66.0208],[16.8961,65.9844],[17.3336,65.7994],[17.6817,65.6333],[17.9214,65.5908],[18.0953,65.5717],[18.1825,65.5724],[18.2815,65.5128],[18.5164,65.4472],[18.7566,65.404],[18.8189,65.3741],[19.159,65.2872],[19.2405,65.2508],[19.2509,65.2081],[19.4009,65.136],[19.4661,65.1355],[19.5725,65.1664],[19.6494,65.2214],[19.9053,65.3697],[20.1856,65.3214],[20.4983,65.2525],[20.8808,65.1803],[21.2431,65.1558],[21.5337,65.0587],[21.3808,64.9717],[21.2439,64.9478],[21.183,64.83],[21.0361,64.8244],[21.1069,64.7778],[21.215,64.7828],[21.3078,64.7614],[21.305,64.6619],[21.1619,64.7228],[21.1339,64.6739],[21.2714,64.6153],[21.3733,64.6053],[21.5542,64.5325],[21.4872,64.4836],[21.5847,64.4778],[21.6072,64.4425],[21.4581,64.3611],[21.2672,64.295],[21.235,64.3061],[20.9575,64.1394],[20.905,64.0494],[20.8956,64.0025],[20.7778,63.8692],[20.67,63.8303],[20.535,63.7992],[20.4942,63.8192],[20.4136,63.6911],[20.2986,63.6464],[20.2639,63.6658],[20.1,63.6558],[19.8994,63.6092],[19.7492,63.5167],[19.7792,63.4625],[19.705,63.4319],[19.6358,63.4467],[19.6164,63.4947],[19.5017,63.5494],[19.4244,63.5405],[19.4736,63.453],[19.3517,63.4353],[19.3092,63.4636],[19.2892,63.5003],[19.1356,63.6281],[18.9394,63.7572],[18.8119,63.7742],[18.545,63.8211],[18.4672,63.8503],[18.4364,63.9236],[18.4647,63.9514],[18.4158,63.9839],[18.3211,63.9728],[17.9578,63.8978],[17.8036,63.8717],[17.4797,63.8822],[16.8558,63.9308],[16.7419,63.9787],[16.6019,64.0547],[16.2189,64.2442],[16.0228,64.2355],[15.995,64.3158],[15.6042,64.4367],[15.5486,64.505],[15.42,64.5722],[15.3164,64.6553],[15.1555,64.7203],[15.0522,64.743],[14.9919,64.8075],[14.7447,64.9253],[14.5472,64.9944],[14.2964,65.1021],[14.3689,65.2467],[14.4931,65.3136],[14.5006,65.5858],[14.5322,65.6961],[14.6347,65.8269],[14.5405,66.0075],[14.505,66.1325],[15.0253,66.15],[15.468,66.2839],[15.4468,66.3214]]]}},
{"id":"SE-AB","type":"Feature","properties":{"code":"AB","name":"Stockholm"},"geometry":{"type":"MultiPolygon","coordinates":[[[[18.5653,59.4475],[18.5228,59.4947],[18.6436,59.5567],[18.7389,59.5483],[18.5914,59.5011],[18.6069,59.4672],[18.5653,59.4475]]],[[[18.3775,59.0194],[18.3572,59.035],[18.4442,59.1158],[18.4906,59.0981],[18.4242,59.0364],[18.3775,59.0194]]],[[[17.7064,58.9044],[17.6411,58.9658],[17.6606,59.0397],[17.718,59.0181],[17.6878,58.9269],[17.7064,58.9044]]],[[[17.5897,59.6394],[17.7572,59.5839],[17.7867,59.5358],[17.72,59.4428],[17.5519,59.4886],[17.5461,59.537],[17.5431,59.573],[17.5295,59.601],[17.5897,59.6394]]],[[[17.7778,59.3086],[17.6719,59.3347],[17.6056,59.4167],[17.6506,59.4242],[17.7739,59.3728],[17.7778,59.3086]]],[[[17.2869,59.2591],[17.3642,59.2772],[17.362,59.3247],[17.4708,59.2964],[17.5858,59.2822],[17.8472,59.2645],[17.9845,59.3339],[18.0525,59.3164],[18.207,59.3294],[18.2722,59.3644],[18.3486,59.3733],[18.4786,59.3403],[18.428,59.4258],[18.5231,59.4211],[18.6078,59.3719],[18.6397,59.3092],[18.5222,59.2958],[18.3536,59.3055],[18.3167,59.2161],[18.3753,59.1422],[18.2214,59.117],[18.0214,59.0419],[17.8958,58.9097],[17.8947,58.8589],[17.7894,58.9431],[17.7567,59.0183],[17.7647,59.1239],[17.6639,59.1683],[17.6103,59.0344],[17.6289,59.0117],[17.5783,58.9505],[17.5495,58.9811],[17.3769,58.9803],[17.3056,59.0383],[17.2422,59.2036],[17.2869,59.2591]]],[[[18.5074,60.1527],[18.6394,60.1442],[18.8164,60.0964],[18.8231,60.0589],[18.8867,59.9628],[18.9297,59.9247],[19.0706,59.8897],[19.07,59.8386],[19.0258,59.8322],[18.9361,59.87],[18.8647,59.798],[19.0739,59.7742],[19.0322,59.72],[18.8414,59.7125],[18.7455,59.6892],[18.6944,59.6453],[18.7342,59.6325],[18.6456,59.5805],[18.3783,59.4675],[18.2706,59.475],[18.2595,59.4447],[18.3111,59.3908],[18.175,59.4055],[18.1958,59.4553],[18.1155,59.4531],[18.0467,59.3928],[18.0914,59.3344],[17.9411,59.3355],[17.8161,59.3711],[17.7589,59.4275],[17.8019,59.5147],[17.8453,59.533],[17.8228,59.5808],[17.7397,59.664],[17.8969,59.6892],[18.0725,59.7356],[18.1161,59.7814],[18.3733,59.865],[18.4481,59.9925],[18.5074,60.1527]]],[[[17.8175,59.2778],[17.6819,59.2897],[17.6108,59.313],[17.5205,59.4069],[17.5706,59.4286],[17.6228,59.3786],[17.6378,59.3205],[17.8175,59.2778]]],[[[18.5272,59.2231],[18.4355,59.2536],[18.3919,59.2903],[18.5036,59.2889],[18.6103,59.2542],[18.5272,59.2231]]]]}},
{"id":"SE-BD","type":"Feature","properties":{"code":"BD","name":"Norrbotten"},"geometry":{"type":"Polygon","coordinates":[[[21.5337,65.0587],[21.2431,65.1558],[20.8808,65.1803],[20.4983,65.2525],[20.1856,65.3214],[19.9053,65.3697],[19.6494,65.2214],[19.5725,65.1664],[19.4661,65.1355],[19.4009,65.136],[19.2509,65.2081],[19.2405,65.2508],[19.159,65.2872],[18.8189,65.3741],[18.7566,65.404],[18.5164,65.4472],[18.2815,65.5128],[18.1825,65.5724],[18.0953,65.5717],[17.9214,65.5908],[17.6817,65.6333],[17.3336,65.7994],[16.8961,65.9844],[16.775,66.0208],[16.4622,66.0494],[16.3208,66.0983],[15.7517,66.2675],[15.4468,66.3214],[15.3628,66.48],[15.6258,66.6058],[16.01,66.8908],[16.3539,67.0178],[16.4058,67.1633],[16.3375,67.2608],[16.1042,67.3878],[16.0858,67.4116],[16.1922,67.5],[16.3825,67.5156],[16.5703,67.6569],[16.7269,67.8992],[17.1883,68.0303],[17.2736,68.0905],[17.5925,68.0297],[17.8311,67.9536],[17.8842,67.9455],[17.9397,67.9978],[18.1553,68.1661],[18.0458,68.4094],[18.0908,68.5078],[18.3581,68.5392],[18.6119,68.4753],[18.9522,68.4878],[19.8606,68.35],[19.9567,68.3447],[20.0303,68.395],[20.1672,68.4439],[20.2111,68.4822],[20.0881,68.5017],[19.9564,68.5439],[20.063,68.5831],[20.2025,68.6622],[20.3503,68.7867],[20.3147,68.9283],[20.0969,69.0422],[20.5353,69.0564],[20.8464,69.0119],[20.9286,68.9731],[20.8953,68.8936],[21.0814,68.8667],[21.2167,68.8161],[21.4206,68.7242],[21.5008,68.6683],[21.6011,68.6561],[21.7017,68.6208],[21.7183,68.5911],[21.8972,68.57],[22.0639,68.4761],[22.1675,68.4644],[22.3719,68.4636],[22.5817,68.4272],[22.6739,68.4208],[22.8236,68.388],[22.8997,68.3317],[23.067,68.2864],[23.1422,68.23],[23.1608,68.1736],[23.3236,68.1314],[23.3945,68.0425],[23.6489,67.9547],[23.6078,67.8975],[23.5111,67.8836],[23.47,67.8169],[23.5078,67.6655],[23.4311,67.4655],[23.4869,67.4381],[23.582,67.45],[23.7678,67.4161],[23.7831,67.3322],[23.7317,67.2817],[23.6055,67.2594],[23.5716,67.1567],[23.6811,67.0475],[23.9359,66.8842],[24.0078,66.8006],[23.937,66.7869],[23.89,66.743],[23.9028,66.6803],[23.8919,66.5817],[23.6589,66.4605],[23.6392,66.4305],[23.6619,66.3122],[23.7222,66.2003],[23.9308,66.1355],[23.9678,66.0725],[24.0314,66.0203],[24.1606,65.84],[24.1211,65.7989],[24.0403,65.8067],[23.9167,65.7578],[23.7739,65.7928],[23.6539,65.8064],[23.5183,65.8008],[23.4347,65.7605],[23.2422,65.8047],[23.1411,65.7147],[23.0811,65.6989],[22.8289,65.8153],[22.7903,65.8564],[22.6758,65.9022],[22.7047,65.8075],[22.685,65.7639],[22.4792,65.8511],[22.3578,65.8558],[22.3292,65.8297],[22.2578,65.6911],[22.249,65.6325],[22.3856,65.6289],[22.4236,65.5589],[22.3661,65.5542],[22.2063,65.5788],[21.8639,65.6667],[22.0225,65.5981],[22.1161,65.583],[22.1642,65.5331],[21.9369,65.508],[22.0303,65.4622],[22.0105,65.4239],[21.9294,65.398],[21.6758,65.3911],[21.5869,65.4164],[21.4683,65.3808],[21.5343,65.3273],[21.6219,65.323],[21.7047,65.2875],[21.6547,65.2442],[21.5653,65.2317],[21.4689,65.3109],[21.3381,65.3697],[21.2661,65.3333],[21.4172,65.3061],[21.5592,65.2108],[21.6214,65.1422],[21.5839,65.0628],[21.5337,65.0587]]]}},
{"id":"SE-C","type":"Feature","properties":{"code":"C","name":"Uppsala"},"geometry":{"type":"MultiPolygon","coordinates":[[[[17.3771,60.619],[17.4061,60.6317],[17.5553,60.6433],[17.6497,60.6114],[17.6022,60.5806],[17.6536,60.507],[17.7311,60.4917],[17.733,60.5475],[17.7731,60.5711],[17.8806,60.5969],[17.9497,60.5972],[18.2081,60.3517],[18.4319,60.3439],[18.4658,60.2994],[18.6078,60.2372],[18.58,60.2244],[18.4406,60.2428],[18.3139,60.3014],[18.4217,60.1872],[18.5074,60.1527],[18.4481,59.9925],[18.3733,59.865],[18.1161,59.7814],[18.0725,59.7356],[17.8969,59.6892],[17.7397,59.664],[17.6608,59.6853],[17.6313,59.7841],[17.5878,59.8047],[17.4478,59.6883],[17.5105,59.5872],[17.5431,59.573],[17.5461,59.537],[17.4033,59.5533],[17.4192,59.4928],[17.3989,59.4692],[17.2619,59.5044],[17.1853,59.5386],[17.1172,59.5478],[17.0314,59.5364],[16.9397,59.5461],[16.865,59.5847],[16.8358,59.6761],[16.7789,59.735],[16.7225,59.7611],[16.7875,59.838],[16.9472,59.8594],[17.0206,59.8289],[17.0992,59.89],[17.1003,59.945],[17.1886,60.0042],[17.3019,60.0553],[17.3486,60.2203],[17.2578,60.2433],[17.1846,60.2959],[17.1986,60.352],[17.1725,60.3825],[17.2869,60.4455],[17.3771,60.619]]],[[[18.5617,60.3053],[18.4011,60.3653],[18.3717,60.4942],[18.4225,60.4867],[18.5072,60.3481],[18.5617,60.3053]]],[[[17.5897,59.6394],[17.5295,59.601],[17.5086,59.6933],[17.5375,59.7322],[17.6203,59.7264],[17.5897,59.6394]]]]}},
{"id":"SE-D","type":"Feature","properties":{"code":"D","name":"Södermanland"},"geometry":{"type":"MultiPolygon","coordinates":[[[[17.2564,59.3733],[17.1472,59.3867],[17.0897,59.46],[17.2669,59.4442],[17.3172,59.398],[17.2564,59.3733]]],[[[17.2869,59.2591],[17.2422,59.2036],[17.3056,59.0383],[17.3769,58.9803],[17.5495,58.9811],[17.5783,58.9505],[17.6306,58.915],[17.5528,58.8544],[17.4683,58.8053],[17.35,58.7522],[17.2711,58.7369],[17.1567,58.7328],[17.0936,58.7625],[17.0336,58.7428],[17.1342,58.7022],[17.0344,58.6372],[16.9153,58.6169],[16.7361,58.629],[16.7025,58.6661],[16.5928,58.6864],[16.3825,58.7011],[16.3572,58.7403],[16.2578,58.8192],[15.9503,58.9403],[15.8428,58.9958],[15.7981,58.9992],[15.618,58.9728],[15.6011,59.0419],[15.6839,59.0864],[15.7778,59.1094],[15.769,59.1937],[15.8489,59.2039],[15.8658,59.2608],[15.938,59.3175],[16.0053,59.345],[16.1692,59.3411],[16.2444,59.3514],[16.2708,59.3775],[16.2764,59.444],[16.3139,59.4519],[16.6595,59.4742],[16.8061,59.3905],[16.8508,59.4075],[16.6933,59.4761],[16.8289,59.4914],[16.8975,59.4675],[17.0352,59.3817],[17.1744,59.3731],[17.3106,59.3489],[17.2519,59.2697],[17.2869,59.2591]]]]}},
{"id":"SE-E","type":"Feature","properties":{"code":"E","name":"Östergötland"},"geometry":{"type":"Polygon","coordinates":[[[14.7854,58.6614],[14.8669,58.693],[14.9531,58.6905],[15.0208,58.7197],[15.05,58.7636],[15.2292,58.8544],[15.3967,58.8139],[15.5264,58.8822],[15.5205,58.9278],[15.618,58.9728],[15.7981,58.9992],[15.8428,58.9958],[15.9503,58.9403],[16.2578,58.8192],[16.3572,58.7403],[16.3825,58.7011],[16.5928,58.6864],[16.7025,58.6661],[16.7361,58.629],[16.4128,58.6589],[16.2422,58.6647],[16.1936,58.6275],[16.3706,58.6053],[16.4367,58.6414],[16.6494,58.6206],[16.7803,58.588],[16.9386,58.4842],[16.8347,58.445],[16.7378,58.4286],[16.6006,58.4469],[16.4756,58.4797],[16.4133,58.4747],[16.71,58.4036],[16.77,58.3672],[16.8258,58.1767],[16.7503,58.0128],[16.6393,57.9875],[16.6,58.0139],[16.5686,58.0692],[16.3614,58.11],[16.2328,58.1153],[16.1044,58.0747],[15.9858,58.0522],[15.9804,58.0131],[16.0003,57.9167],[16.0408,57.8642],[15.905,57.8011],[15.8083,57.8017],[15.695,57.8411],[15.5667,57.8222],[15.4303,57.7064],[15.42,57.6858],[15.1144,57.7017],[15.0564,57.7761],[14.9961,57.8942],[15.02,57.9606],[14.995,58.075],[14.933,58.1206],[14.8844,58.0878],[14.7644,58.0686],[14.7356,58.0839],[14.4142,58.0992],[14.3053,58.1097],[14.4122,58.263],[14.5708,58.4439],[14.7854,58.6614]]]}},
{"id":"SE-F","type":"Feature","properties":{"code":"F","name":"Jönköping"},"geometry":{"type":"Polygon","coordinates":[[[14.3053,58.1097],[14.4142,58.0992],[14.7356,58.0839],[14.7644,58.0686],[14.8844,58.0878],[14.933,58.1206],[14.995,58.075],[15.02,57.9606],[14.9961,57.8942],[15.0564,57.7761],[15.1144,57.7017],[15.42,57.6858],[15.5975,57.5969],[15.6183,57.4761],[15.5783,57.4308],[15.5019,57.4058],[15.4806,57.3025],[15.5011,57.1996],[15.3839,57.2133],[15.1289,57.2122],[14.9408,57.1269],[14.8892,57.1411],[14.8714,57.1825],[14.7853,57.2178],[14.7205,57.2139],[14.615,57.1844],[14.3406,57.1305],[14.3119,57.02],[14.3586,56.9875],[14.3603,56.9558],[14.3064,56.8905],[14.2233,56.883],[14.1811,56.9681],[14.133,57.0111],[14.0517,57.0394],[13.9503,57.0389],[13.7189,57.0225],[13.6682,56.9728],[13.5583,57.0042],[13.5583,57.0544],[13.4667,57.0839],[13.3497,57.1022],[13.1928,57.0744],[13.1528,57.0278],[13.0969,57.0136],[13.0504,57.1279],[13.1811,57.2381],[13.2883,57.3075],[13.3583,57.3289],[13.4986,57.4047],[13.63,57.5189],[13.6503,57.5544],[13.71,57.7483],[13.7205,57.8203],[13.7683,57.8069],[13.8781,57.8311],[13.9745,57.7853],[14.1094,57.8837],[14.1836,57.9611],[14.3053,58.1097]]]}},
{"id":"SE-G","type":"Feature","properties":{"code":"G","name":"Kronoberg"},"geometry":{"type":"Polygon","coordinates":[[[13.6682,56.9728],[13.7189,57.0225],[13.9503,57.0389],[14.0517,57.0394],[14.133,57.0111],[14.1811,56.9681],[14.2233,56.883],[14.3064,56.8905],[14.3603,56.9558],[14.3586,56.9875],[14.3119,57.02],[14.3406,57.1305],[14.615,57.1844],[14.7205,57.2139],[14.7853,57.2178],[14.8714,57.1825],[14.8892,57.1411],[14.9408,57.1269],[15.1289,57.2122],[15.3839,57.2133],[15.5011,57.1996],[15.5425,57.1508],[15.7233,57.0683],[15.7958,57.0122],[15.8178,56.9767],[15.8047,56.9075],[15.6553,56.8981],[15.5436,56.9211],[15.525,56.8647],[15.3919,56.72],[15.3567,56.5533],[15.3581,56.4806],[15.3155,56.4569],[15.2042,56.4422],[15.0781,56.4403],[15.0025,56.4211],[14.9189,56.3686],[14.69,56.3736],[14.5917,56.4344],[14.5087,56.4473],[14.3919,56.47],[14.0742,56.5128],[14.0122,56.47],[13.8786,56.4403],[13.5419,56.3964],[13.4528,56.4083],[13.4506,56.5092],[13.3942,56.5647],[13.3183,56.6769],[13.295,56.7978],[13.3083,56.8561],[13.4778,56.8667],[13.5839,56.8808],[13.6494,56.9244],[13.6682,56.9728]]]}},
{"id":"SE-H","type":"Feature","properties":{"code":"H","name":"Kalmar"},"geometry":{"type":"MultiPolygon","coordinates":[[[[16.4297,56.2089],[16.4033,56.2742],[16.3933,56.5292],[16.4203,56.5864],[16.5425,56.7764],[16.6167,56.8736],[16.7494,56.9397],[16.8481,57.0642],[16.9631,57.2294],[16.9592,57.2742],[17.01,57.3375],[17.0567,57.3592],[17.1242,57.3208],[17.0505,57.1867],[16.9267,57.0381],[16.8483,56.8439],[16.7703,56.7958],[16.6356,56.5189],[16.5705,56.3944],[16.5756,56.3614],[16.4961,56.2408],[16.4297,56.2089]]],[[[16.0547,56.3136],[15.9586,56.3067],[15.8503,56.3147],[15.7869,56.335],[15.6939,56.4075],[15.5525,56.4883],[15.3581,56.4806],[15.3567,56.5533],[15.3919,56.72],[15.525,56.8647],[15.5436,56.9211],[15.6553,56.8981],[15.8047,56.9075],[15.8178,56.9767],[15.7958,57.0122],[15.7233,57.0683],[15.5425,57.1508],[15.5011,57.1996],[15.4806,57.3025],[15.5019,57.4058],[15.5783,57.4308],[15.6183,57.4761],[15.5975,57.5969],[15.42,57.6858],[15.4303,57.7064],[15.5667,57.8222],[15.695,57.8411],[15.8083,57.8017],[15.905,57.8011],[16.0408,57.8642],[16.0003,57.9167],[15.9804,58.0131],[15.9858,58.0522],[16.1044,58.0747],[16.2328,58.1153],[16.3614,58.11],[16.5686,58.0692],[16.6,58.0139],[16.6393,57.9875],[16.7706,57.8844],[16.7417,57.8725],[16.6136,57.8922],[16.6028,57.9403],[16.4956,57.9855],[16.5097,57.8886],[16.5646,57.8554],[16.7033,57.7455],[16.7125,57.7],[16.5611,57.5656],[16.6325,57.5522],[16.6892,57.4853],[16.6714,57.4108],[16.6242,57.3744],[16.5461,57.3817],[16.4722,57.2903],[16.4603,57.1675],[16.5633,57.0939],[16.5847,57.0439],[16.4928,57.0392],[16.4544,56.9553],[16.4267,56.8436],[16.375,56.7208],[16.3081,56.655],[16.2725,56.6567],[16.2161,56.6072],[16.1239,56.4617],[16.0547,56.3136]]]]}},
{"id":"SE-I","type":"Feature","properties":{"code":"I","name":"Gotland"},"geometry":{"type":"MultiPolygon","coordinates":[[[[19.0039,57.8989],[19.0333,57.8269],[18.9294,57.7397],[18.8092,57.7036],[18.7597,57.508],[18.7694,57.4672],[18.8089,57.4392],[18.7828,57.3664],[18.6719,57.3022],[18.7119,57.2417],[18.3914,57.13],[18.3392,57.0686],[18.3494,56.9903],[18.3025,56.9375],[18.1689,56.91],[18.1583,56.9417],[18.2567,57.0322],[18.2544,57.0792],[18.1733,57.1419],[18.1483,57.2353],[18.1581,57.3158],[18.1114,57.5194],[18.1792,57.5883],[18.2947,57.6458],[18.3819,57.7186],[18.4672,57.8119],[18.6819,57.9136],[18.725,57.9228],[18.8819,57.9197],[19.0039,57.8989]]],[[[19.1261,57.8397],[19.0778,57.8583],[19.0361,57.9186],[19.1047,57.9753],[19.2964,57.9767],[19.1417,57.9078],[19.1261,57.8397]]],[[[19.2369,58.3372],[19.225,58.3897],[19.3247,58.3697],[19.2369,58.3372]]]]}},
{"id":"SE-K","type":"Feature","properties":{"code":"K","name":"Blekinge"},"geometry":{"type":"Polygon","coordinates":[[[14.5087,56.4473],[14.5917,56.4344],[14.69,56.3736],[14.9189,56.3686],[15.0025,56.4211],[15.0781,56.4403],[15.2042,56.4422],[15.3155,56.4569],[15.3581,56.4806],[15.5525,56.4883],[15.6939,56.4075],[15.7869,56.335],[15.8503,56.3147],[15.9586,56.3067],[16.0547,56.3136],[16.0083,56.2178],[15.8655,56.0922],[15.7886,56.1119],[15.7758,56.1478],[15.5981,56.1947],[15.3492,56.1342],[15.1136,56.1517],[15.0806,56.1686],[14.6967,56.1611],[14.6819,56.1155],[14.7147,56.0992],[14.7667,56.0303],[14.72,56.0003],[14.6353,56.0075],[14.6036,56.0519],[14.5414,56.0511],[14.5719,56.0803],[14.5744,56.13],[14.5519,56.2036],[14.4244,56.2114],[14.3789,56.2947],[14.4428,56.3944],[14.5087,56.4473]]]}},
{"id":"SE-M","type":"Feature","properties":{"code":"M","name":"Skåne"},"geometry":{"type":"Polygon","coordinates":[[[14.5087,56.4473],[14.4428,56.3944],[14.3789,56.2947],[14.4244,56.2114],[14.5519,56.2036],[14.5744,56.13],[14.5719,56.0803],[14.5414,56.0511],[14.3303,55.9369],[14.2636,55.8861],[14.2172,55.8303],[14.1933,55.7667],[14.2033,55.7069],[14.277,55.6472],[14.3728,55.5378],[14.1935,55.3862],[14.1225,55.3794],[14.0375,55.3894],[13.9358,55.4314],[13.7306,55.4255],[13.6322,55.4158],[13.4658,55.3736],[13.3756,55.34],[13.29,55.3419],[12.9822,55.4005],[12.9181,55.5386],[12.9311,55.5811],[13.0347,55.6239],[13.0597,55.693],[12.6814,56.0619],[12.5778,56.1458],[12.4756,56.285],[12.6292,56.2589],[12.7187,56.2228],[12.7872,56.2222],[12.8331,56.2692],[12.7408,56.3522],[12.6367,56.3878],[12.6356,56.4422],[12.7325,56.4675],[12.8527,56.4399],[12.952,56.4153],[12.9528,56.3469],[13.1475,56.3311],[13.4528,56.4083],[13.5419,56.3964],[13.8786,56.4403],[14.0122,56.47],[14.0742,56.5128],[14.3919,56.47],[14.5087,56.4473]]]}},
{"id":"SE-N","type":"Feature","properties":{"code":"N","name":"Halland"},"geometry":{"type":"Polygon","coordinates":[[[11.9111,57.5266],[12.0494,57.5136],[12.2428,57.5681],[12.2945,57.5408],[12.3739,57.3953],[12.3553,57.3108],[12.392,57.2561],[12.4686,57.2647],[12.5425,57.3111],[12.6689,57.3108],[12.9967,57.1614],[13.0504,57.1279],[13.0969,57.0136],[13.1528,57.0278],[13.1928,57.0744],[13.3497,57.1022],[13.4667,57.0839],[13.5583,57.0544],[13.5583,57.0042],[13.6682,56.9728],[13.6494,56.9244],[13.5839,56.8808],[13.4778,56.8667],[13.3083,56.8561],[13.295,56.7978],[13.3183,56.6769],[13.3942,56.5647],[13.4506,56.5092],[13.4528,56.4083],[13.1475,56.3311],[12.9528,56.3469],[12.952,56.4153],[12.8527,56.4399],[12.9108,56.4669],[12.9375,56.5211],[12.8875,56.6383],[12.8217,56.6583],[12.7253,56.6397],[12.6708,56.6761],[12.6136,56.7469],[12.5975,56.8133],[12.4847,56.8817],[12.3503,56.9144],[12.35,56.97],[12.2861,57.0325],[12.1253,57.2186],[12.1419,57.3136],[12.095,57.4269],[12.0117,57.4342],[11.9894,57.3475],[11.9014,57.4267],[11.9111,57.5266]]]}},
{"id":"SE-O","type":"Feature","properties":{"code":"O","name":"Västra Götaland"},"geometry":{"type":"MultiPolygon","coordinates":[[[[11.8064,58.1206],[11.6764,58.0989],[11.6067,58.1186],[11.4672,58.1014],[11.4106,58.1475],[11.6689,58.2844],[11.7367,58.2817],[11.8136,58.2136],[11.8064,58.1206]]],[[[14.2387,58.9982],[14.3728,58.79],[14.4458,58.7075],[14.5381,58.6853],[14.6731,58.6997],[14.7854,58.6614],[14.5708,58.4439],[14.4122,58.263],[14.3053,58.1097],[14.1836,57.9611],[14.1094,57.8837],[13.9745,57.7853],[13.8781,57.8311],[13.7683,57.8069],[13.7205,57.8203],[13.71,57.7483],[13.6503,57.5544],[13.63,57.5189],[13.4986,57.4047],[13.3583,57.3289],[13.2883,57.3075],[13.1811,57.2381],[13.0504,57.1279],[12.9967,57.1614],[12.6689,57.3108],[12.5425,57.3111],[12.4686,57.2647],[12.392,57.2561],[12.3553,57.3108],[12.3739,57.3953],[12.2945,57.5408],[12.2428,57.5681],[12.0494,57.5136],[11.9111,57.5266],[11.9133,57.6136],[11.8647,57.6028],[11.83,57.6614],[11.8878,57.6939],[11.7414,57.6886],[11.6997,57.7158],[11.723,57.8072],[11.6681,57.8458],[11.688,57.8817],[11.7572,57.8972],[11.8014,58.0264],[11.7767,58.0594],[11.8861,58.2119],[11.7869,58.3183],[11.7233,58.3289],[11.5361,58.2303],[11.4914,58.2467],[11.5139,58.2997],[11.6108,58.3933],[11.5508,58.3978],[11.5219,58.3294],[11.4506,58.2778],[11.3986,58.2592],[11.3111,58.3492],[11.2383,58.3469],[11.2014,58.3994],[11.2664,58.5794],[11.2478,58.6575],[11.1808,58.7092],[11.1817,58.7478],[11.2339,58.7969],[11.2314,58.8453],[11.1942,58.9175],[11.1069,58.95],[11.1133,59.0036],[11.1867,59.075],[11.315,59.1014],[11.35,59.0844],[11.4194,58.9897],[11.4392,58.8853],[11.4967,58.8847],[11.6267,58.9092],[11.7511,59.0903],[11.7394,59.1272],[11.7695,59.2175],[12.0047,59.1789],[12.0294,59.2325],[12.1814,59.2355],[12.2472,59.1789],[12.4231,59.1131],[12.5553,59.1053],[12.5769,59.1522],[12.6925,59.1322],[12.7997,58.9903],[12.9083,58.7886],[13.2306,58.7],[13.3997,58.7319],[13.333,58.7906],[13.3558,58.8558],[13.4183,58.9622],[13.5686,59.0378],[13.8644,59.0331],[14.0878,59.0356],[14.1855,59.0231],[14.2387,58.9982]]],[[[11.5944,57.9325],[11.5225,57.9519],[11.4981,58.0314],[11.53,58.0492],[11.7359,58.0417],[11.7342,57.9986],[11.5944,57.9325]]]]}},
{"id":"SE-S","type":"Feature","properties":{"code":"S","name":"Värmland"},"geometry":{"type":"Polygon","coordinates":[[[12.6378,61.0575],[12.6964,60.9658],[13.1292,60.7425],[13.2428,60.6533],[13.4767,60.42],[13.5625,60.3914],[13.6714,60.3769],[13.7383,60.31],[13.9322,60.1653],[13.98,60.1764],[13.9953,60.2147],[14.0856,60.205],[14.1522,60.1708],[14.1572,60.1211],[14.1955,60.0822],[14.3633,60.0344],[14.4292,59.9977],[14.4422,59.9538],[14.3981,59.8875],[14.3958,59.7275],[14.4203,59.6258],[14.4672,59.5136],[14.4258,59.4244],[14.2778,59.3097],[14.245,59.1925],[14.2494,59.1531],[14.3136,59.0511],[14.2387,58.9982],[14.1855,59.0231],[14.0878,59.0356],[13.8644,59.0331],[13.5686,59.0378],[13.4183,58.9622],[13.3558,58.8558],[13.333,58.7906],[13.3997,58.7319],[13.2306,58.7],[12.9083,58.7886],[12.7997,58.9903],[12.6925,59.1322],[12.5769,59.1522],[12.5553,59.1053],[12.4231,59.1131],[12.2472,59.1789],[12.1814,59.2355],[12.0294,59.2325],[12.0047,59.1789],[11.7695,59.2175],[11.7983,59.2453],[11.7831,59.3247],[11.6662,59.5955],[11.7564,59.6356],[11.8283,59.6519],[11.8964,59.695],[11.9031,59.7383],[11.8811,59.8039],[11.816,59.8461],[11.9569,59.8969],[12.14,59.8883],[12.3236,59.9764],[12.4619,60.0636],[12.4983,60.1247],[12.5278,60.3342],[12.5897,60.3992],[12.6081,60.4686],[12.5944,60.5169],[12.5058,60.63],[12.3647,60.7794],[12.2719,60.9461],[12.21,61.0025],[12.4078,61.0539],[12.5672,61.048],[12.6378,61.0575]]]}},
{"id":"SE-T","type":"Feature","properties":{"code":"T","name":"Örebro"},"geometry":{"type":"Polygon","coordinates":[[[14.4292,59.9977],[14.7342,59.9692],[14.7081,60.0589],[14.7742,60.0855],[14.8664,60.0306],[14.9697,60.0461],[15.0389,60.0347],[15.1561,59.9936],[15.2364,59.9158],[15.4034,59.8352],[15.4761,59.7589],[15.5986,59.5775],[15.6744,59.5161],[15.7011,59.4053],[15.5983,59.3758],[15.5861,59.2786],[15.6783,59.2497],[15.7847,59.2311],[15.769,59.1937],[15.7778,59.1094],[15.6839,59.0864],[15.6011,59.0419],[15.618,58.9728],[15.5205,58.9278],[15.5264,58.8822],[15.3967,58.8139],[15.2292,58.8544],[15.05,58.7636],[15.0208,58.7197],[14.9531,58.6905],[14.8669,58.693],[14.7854,58.6614],[14.6731,58.6997],[14.5381,58.6853],[14.4458,58.7075],[14.3728,58.79],[14.2387,58.9982],[14.3136,59.0511],[14.2494,59.1531],[14.245,59.1925],[14.2778,59.3097],[14.4258,59.4244],[14.4672,59.5136],[14.4203,59.6258],[14.3958,59.7275],[14.3981,59.8875],[14.4422,59.9538],[14.4292,59.9977]]]}},
{"id":"SE-Y","type":"Feature","properties":{"code":"Y","name":"Västernorrland"},"geometry":{"type":"MultiPolygon","coordinates":[[[[19.3092,63.4636],[19.2306,63.3275],[19.1233,63.2617],[19.0667,63.1786],[18.9725,63.21],[18.9561,63.2453],[18.8897,63.2736],[18.8061,63.2503],[18.8839,63.2271],[18.8975,63.1917],[18.7847,63.1619],[18.7392,63.1678],[18.5669,63.1175],[18.4892,63.0353],[18.5764,62.9511],[18.4669,62.8583],[18.1994,62.7761],[18.0828,62.7811],[18.1378,62.8206],[18.0372,62.8392],[17.9747,62.8114],[18.0047,62.6933],[17.8853,62.6561],[18.0455,62.6236],[18.0625,62.5942],[17.8433,62.4872],[17.7672,62.5033],[17.6586,62.4733],[17.6714,62.4378],[17.5383,62.45],[17.4375,62.53],[17.4014,62.5344],[17.3255,62.4803],[17.3758,62.3244],[17.4653,62.2655],[17.6239,62.2394],[17.5567,62.1955],[17.508,62.2006],[17.4833,62.1251],[17.2114,62.1461],[16.9255,62.1733],[16.735,62.1997],[16.4461,62.2283],[16.2836,62.2269],[15.9806,62.2586],[15.6564,62.3233],[15.4844,62.32],[15.324,62.2555],[15.2322,62.2714],[15.1411,62.2383],[14.9333,62.2933],[14.7883,62.3878],[14.7572,62.5728],[15.0142,62.5744],[15.1275,62.5447],[15.3094,62.5855],[15.4139,62.5928],[15.6858,62.6267],[15.9972,62.6922],[16.1194,62.6697],[16.3358,62.6867],[16.4058,62.7028],[16.4803,62.7817],[16.7169,62.9055],[16.9464,62.9247],[17.0047,62.9361],[16.5794,63.1636],[16.5125,63.1944],[16.1172,63.3397],[15.9619,63.4853],[15.9342,63.5461],[15.8078,63.6147],[15.7964,63.6364],[15.9253,63.6578],[16.1339,63.6678],[16.2861,63.6675],[16.5758,63.7244],[16.5628,63.7931],[16.6128,63.885],[16.7419,63.9787],[16.8558,63.9308],[17.4797,63.8822],[17.8036,63.8717],[17.9578,63.8978],[18.3211,63.9728],[18.4158,63.9839],[18.4647,63.9514],[18.4364,63.9236],[18.4672,63.8503],[18.545,63.8211],[18.8119,63.7742],[18.9394,63.7572],[19.1356,63.6281],[19.2892,63.5003],[19.3092,63.4636]]],[[[18.0497,62.67],[18.0192,62.7003],[18.0392,62.7356],[18.1414,62.7392],[18.155,62.7122],[18.0497,62.67]]],[[[17.4847,62.3631],[17.4222,62.3725],[17.4061,62.4669],[17.4722,62.4583],[17.5222,62.3775],[17.4847,62.3631]]]]}},
{"id":"SE-W","type":"Feature","properties":{"code":"W","name":"Dalarna"},"geometry":{"type":"Polygon","coordinates":[[[12.2946,62.2582],[12.4503,62.2122],[12.5414,62.1972],[12.6994,62.2031],[12.7678,62.1953],[12.9822,62.0558],[13.1164,62.0131],[13.2547,62.0383],[13.3403,61.9939],[13.1942,61.9275],[13.475,61.7158],[13.4742,61.6705],[13.5153,61.6336],[13.6869,61.6192],[14.2725,61.5908],[14.3708,61.55],[14.4385,61.5701],[14.6558,61.5733],[14.6917,61.5125],[14.6897,61.4739],[14.7672,61.4633],[15.0567,61.4653],[15.1319,61.5186],[15.3553,61.3733],[15.6578,61.2047],[15.7325,61.0669],[15.8189,61.0158],[15.9603,60.9806],[16.1528,60.96],[16.2725,60.8514],[16.3875,60.7717],[16.3967,60.7133],[16.255,60.6028],[16.1547,60.5833],[16.2192,60.478],[16.3864,60.368],[16.5405,60.32],[16.6139,60.2286],[16.6853,60.1878],[16.6055,60.1626],[16.3464,60.0628],[16.275,60.0492],[16.1625,60.0506],[16.1442,60.1139],[16.0119,60.1694],[15.7789,60.1442],[15.7428,60.1261],[15.6767,60.0078],[15.7128,59.9917],[15.6681,59.9255],[15.4989,59.9275],[15.4034,59.8352],[15.2364,59.9158],[15.1561,59.9936],[15.0389,60.0347],[14.9697,60.0461],[14.8664,60.0306],[14.7742,60.0855],[14.7081,60.0589],[14.7342,59.9692],[14.4292,59.9977],[14.3633,60.0344],[14.1955,60.0822],[14.1572,60.1211],[14.1522,60.1708],[14.0856,60.205],[13.9953,60.2147],[13.98,60.1764],[13.9322,60.1653],[13.7383,60.31],[13.6714,60.3769],[13.5625,60.3914],[13.4767,60.42],[13.2428,60.6533],[13.1292,60.7425],[12.6964,60.9658],[12.6378,61.0575],[12.7722,61.2008],[12.8561,61.3625],[12.53,61.5661],[12.3928,61.5805],[12.1244,61.7286],[12.2946,62.2582]]]}},
{"id":"SE-X","type":"Feature","properties":{"code":"X","name":"Gävleborg"},"geometry":{"type":"Polygon","coordinates":[[[15.324,62.2555],[15.4844,62.32],[15.6564,62.3233],[15.9806,62.2586],[16.2836,62.2269],[16.4461,62.2283],[16.735,62.1997],[16.9255,62.1733],[17.2114,62.1461],[17.4833,62.1251],[17.4636,62.0064],[17.3933,61.9855],[17.3453,61.9264],[17.3364,61.8181],[17.3857,61.7565],[17.5236,61.7017],[17.5011,61.6397],[17.4328,61.6311],[17.3861,61.6919],[17.3394,61.7125],[17.2208,61.7231],[17.263,61.6711],[17.19,61.6361],[17.1008,61.6392],[17.1178,61.5556],[17.1681,61.5175],[17.2228,61.4419],[17.1047,61.3917],[17.2047,61.3286],[17.2747,61.3178],[17.2039,61.2203],[17.1506,60.945],[17.2411,60.8958],[17.2761,60.843],[17.2769,60.7294],[17.1961,60.7011],[17.3597,60.6405],[17.3771,60.619],[17.2869,60.4455],[17.1725,60.3825],[17.1986,60.352],[17.1846,60.2959],[17.0597,60.2486],[16.909,60.2697],[16.8444,60.2092],[16.7442,60.1786],[16.6853,60.1878],[16.6139,60.2286],[16.5405,60.32],[16.3864,60.368],[16.2192,60.478],[16.1547,60.5833],[16.255,60.6028],[16.3967,60.7133],[16.3875,60.7717],[16.2725,60.8514],[16.1528,60.96],[15.9603,60.9806],[15.8189,61.0158],[15.7325,61.0669],[15.6578,61.2047],[15.3553,61.3733],[15.1319,61.5186],[15.0567,61.4653],[14.7672,61.4633],[14.6897,61.4739],[14.6917,61.5125],[14.6558,61.5733],[14.4385,61.5701],[14.4803,61.5925],[14.5294,61.7867],[14.6595,61.8792],[14.7042,61.8633],[14.7533,61.7961],[14.8083,61.7819],[15.0114,61.8475],[15.0489,61.8739],[15.0742,61.9981],[15.3531,62.1039],[15.3922,62.1403],[15.3811,62.1708],[15.3039,62.2333],[15.324,62.2555]]]}},
{"id":"SE-U","type":"Feature","properties":{"code":"U","name":"Västmanland"},"geometry":{"type":"Polygon","coordinates":[[[16.6853,60.1878],[16.7442,60.1786],[16.8444,60.2092],[16.909,60.2697],[17.0597,60.2486],[17.1846,60.2959],[17.2578,60.2433],[17.3486,60.2203],[17.3019,60.0553],[17.1886,60.0042],[17.1003,59.945],[17.0992,59.89],[17.0206,59.8289],[16.9472,59.8594],[16.7875,59.838],[16.7225,59.7611],[16.7789,59.735],[16.8358,59.6761],[16.865,59.5847],[16.7869,59.5589],[16.6617,59.548],[16.5653,59.6092],[16.4975,59.5869],[16.5475,59.5569],[16.4892,59.502],[16.3336,59.4633],[16.1686,59.4653],[16.1814,59.4394],[16.2764,59.444],[16.2708,59.3775],[16.2444,59.3514],[16.1692,59.3411],[16.0053,59.345],[15.938,59.3175],[15.8658,59.2608],[15.8489,59.2039],[15.769,59.1937],[15.7847,59.2311],[15.6783,59.2497],[15.5861,59.2786],[15.5983,59.3758],[15.7011,59.4053],[15.6744,59.5161],[15.5986,59.5775],[15.4761,59.7589],[15.4034,59.8352],[15.4989,59.9275],[15.6681,59.9255],[15.7128,59.9917],[15.6767,60.0078],[15.7428,60.1261],[15.7789,60.1442],[16.0119,60.1694],[16.1442,60.1139],[16.1625,60.0506],[16.275,60.0492],[16.3464,60.0628],[16.6055,60.1626],[16.6853,60.1878]]]}},
{"id":"SE-Z","type":"Feature","properties":{"code":"Z","name":"Jämtland"},"geometry":{"type":"Polygon","coordinates":[[[14.2964,65.1021],[14.5472,64.9944],[14.7447,64.9253],[14.9919,64.8075],[15.0522,64.743],[15.1555,64.7203],[15.3164,64.6553],[15.42,64.5722],[15.5486,64.505],[15.6042,64.4367],[15.995,64.3158],[16.0228,64.2355],[16.2189,64.2442],[16.6019,64.0547],[16.7419,63.9787],[16.6128,63.885],[16.5628,63.7931],[16.5758,63.7244],[16.2861,63.6675],[16.1339,63.6678],[15.9253,63.6578],[15.7964,63.6364],[15.8078,63.6147],[15.9342,63.5461],[15.9619,63.4853],[16.1172,63.3397],[16.5125,63.1944],[16.5794,63.1636],[17.0047,62.9361],[16.9464,62.9247],[16.7169,62.9055],[16.4803,62.7817],[16.4058,62.7028],[16.3358,62.6867],[16.1194,62.6697],[15.9972,62.6922],[15.6858,62.6267],[15.4139,62.5928],[15.3094,62.5855],[15.1275,62.5447],[15.0142,62.5744],[14.7572,62.5728],[14.7883,62.3878],[14.9333,62.2933],[15.1411,62.2383],[15.2322,62.2714],[15.324,62.2555],[15.3039,62.2333],[15.3811,62.1708],[15.3922,62.1403],[15.3531,62.1039],[15.0742,61.9981],[15.0489,61.8739],[15.0114,61.8475],[14.8083,61.7819],[14.7533,61.7961],[14.7042,61.8633],[14.6595,61.8792],[14.5294,61.7867],[14.4803,61.5925],[14.4385,61.5701],[14.3708,61.55],[14.2725,61.5908],[13.6869,61.6192],[13.5153,61.6336],[13.4742,61.6705],[13.475,61.7158],[13.1942,61.9275],[13.3403,61.9939],[13.2547,62.0383],[13.1164,62.0131],[12.9822,62.0558],[12.7678,62.1953],[12.6994,62.2031],[12.5414,62.1972],[12.4503,62.2122],[12.2946,62.2582],[12.1997,62.4047],[12.0847,62.5292],[12.0475,62.59],[12.0467,62.6653],[12.0895,62.7494],[12.0289,62.8925],[12.1686,63.0158],[12.0369,63.1739],[11.9364,63.2722],[12.195,63.4853],[12.1394,63.5842],[12.3467,63.7289],[12.4731,63.8333],[12.6339,63.9428],[12.8469,64.0253],[12.9883,64.0644],[13.23,64.093],[13.9817,64.013],[14.1547,64.1858],[14.1514,64.3336],[14.1164,64.4706],[13.9008,64.5075],[13.6633,64.5772],[13.7075,64.6397],[13.8328,64.7333],[14.0914,64.9492],[14.2353,65.0489],[14.2964,65.1021]]]}}
]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long