first commit

This commit is contained in:
uf0 2019-08-05 18:25:05 +02:00
commit 057142dbda
19 changed files with 2710 additions and 0 deletions

14
.babelrc Normal file
View file

@ -0,0 +1,14 @@
{
"presets": [
[
"env",
{
"targets": {
"browsers": "last 2 Firefox versions, last 2 Chrome versions, last 2 Edge versions, last 2 Safari versions"
},
"exclude": ["/mapbox-gl"]
}
]
],
"plugins": ["@babel/plugin-proposal-class-properties"]
}

4
.gitignore vendored Normal file
View file

@ -0,0 +1,4 @@
node_modules
.DS_Store
.cache
dist

33
index.html Normal file
View file

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Daspo free zone</title>
<link
href="https://api.mapbox.com/mapbox-gl-js/v1.0.0/mapbox-gl.css"
rel="stylesheet"
/>
</head>
<body>
<div id="container">
<nav id="menu"></nav>
<div id="map"></div>
<!-- <div class="map-overlay top">
<div class="map-overlay-inner">
<label>Layer opacity: <span id="slider-value">100%</span></label>
<input
id="slider"
type="range"
min="0"
max="100"
step="0"
value="100"
/>
</div>
</div> -->
</div>
<script src="./index.js"></script>
</body>
</html>

452
index.js Normal file
View file

@ -0,0 +1,452 @@
import * as mapboxgl from "mapbox-gl";
import Bbox from "@turf/bbox";
import BboxPolygon from "@turf/bbox-polygon";
import Center from "@turf/center";
import BooleanContains from "@turf/boolean-contains";
import BooleanOverlap from "@turf/boolean-overlap";
import Buffer from "@turf/buffer";
import confini from "./layers/confini.json";
import confiniHole from "./layers/confini_hole.json";
import aree_omogenee from "./layers/aree_omogenee.json";
import scuole_buffer from "./layers/scuole_buffer.json";
import luoghi_monumentali_buffer from "./layers/luoghi_monumentali_buffer.json";
import mercati_buffer from "./layers/mercati_buffer.json";
import musei_buffer from "./layers/musei_buffer.json";
import ospedali_cliniche_buffer from "./layers/ospedali_cliniche_buffer.json";
import stazioni_ferrovie_buffer from "./layers/stazioni_ferrovie_buffer.json";
import stazioni_metro_buffer from "./layers/stazioni_metro_buffer.json";
import parchi_buffer from "./layers/parchi_buffer.json";
import "./style.css";
mapboxgl.accessToken =
"pk.eyJ1IjoidGVvIiwiYSI6IllvZUo1LUkifQ.dirqtn275pAKdnqtLM2HSw";
const bounds = Bbox(confini);
const maxBounds = Bbox(Buffer(confini, 10));
const map = new mapboxgl.Map({
container: "map",
zoom: 11,
center: Center(confini).geometry.coordinates,
style: "mapbox://styles/teo/cjyxhh5n92wy51ck4a4uiymtu/draft",
maxBounds: [[maxBounds[0], maxBounds[1]], [maxBounds[2], maxBounds[3]]],
maxZoom: 16
});
const nav = new mapboxgl.NavigationControl();
map.addControl(nav, "top-left");
map.fitBounds([[bounds[0], bounds[1]], [bounds[2], bounds[3]]], {
padding: 20
});
// const slider = document.getElementById("slider");
// const sliderValue = document.getElementById("slider-value");
map.on("load", function() {
map.setLayoutProperty("building", "visibility", "none");
map.setLayoutProperty("building-outline", "visibility", "none");
map.addSource("aree_omogeneeSource", {
type: "geojson",
data: aree_omogenee
});
map.addSource("scuoleBufferSource", {
type: "geojson",
data: scuole_buffer
});
map.addSource("luoghiMonumentaliBufferSource", {
type: "geojson",
data: luoghi_monumentali_buffer
});
map.addSource("mercatiBufferSource", {
type: "geojson",
data: mercati_buffer
});
map.addSource("museiBufferSource", {
type: "geojson",
data: musei_buffer
});
map.addSource("ospedaliClinicheBufferSource", {
type: "geojson",
data: ospedali_cliniche_buffer
});
map.addSource("stazioniFerrovieBufferSource", {
type: "geojson",
data: stazioni_ferrovie_buffer
});
map.addSource("stazioniMetroBufferSource", {
type: "geojson",
data: stazioni_metro_buffer
});
map.addSource("parchiBufferSource", {
type: "geojson",
data: parchi_buffer
});
map.addSource("confiniHoleSource", {
type: "geojson",
data: confiniHole
});
map.addSource("confiniSource", {
type: "geojson",
data: confini
});
map.addSource("osmbuildings", {
type: "vector",
url: "https://data.osmbuildings.org/0.2/rkc8ywdl/tile.json"
});
const layers = map.getStyle().layers;
//console.log(layers);
let labelLayerId = "";
for (let i = 0; i < layers.length; i++) {
if (layers[i].type === "symbol" && layers[i].layout["text-field"]) {
labelLayerId = layers[i].id;
break;
}
}
map.addLayer(
{
id: "aree_omogenee",
type: "fill",
source: "aree_omogeneeSource",
paint: {
"fill-color": "#f5553d",
"fill-opacity": 1
}
},
"building-outline"
);
map.addLayer(
{
id: "parchi_buffer",
type: "fill",
source: "parchiBufferSource",
paint: {
"fill-color": "#f5553d",
"fill-opacity": 1
}
},
"building-outline"
);
map.addLayer(
{
id: "mercati_buffer",
type: "fill",
source: "mercatiBufferSource",
paint: {
"fill-color": "#f5553d",
"fill-opacity": 1
}
},
"building-outline"
);
map.addLayer(
{
id: "scuole_buffer",
type: "fill",
source: "scuoleBufferSource",
paint: {
"fill-color": "#f5553d",
"fill-opacity": 1
}
},
"building-outline"
);
map.addLayer(
{
id: "musei_buffer",
type: "fill",
source: "museiBufferSource",
paint: {
"fill-color": "#f5553d",
"fill-opacity": 1
}
},
"building-outline"
);
map.addLayer(
{
id: "ospedali_cliniche_buffer",
type: "fill",
source: "ospedaliClinicheBufferSource",
paint: {
"fill-color": "#f5553d",
"fill-opacity": 1
}
},
"building-outline"
);
map.addLayer(
{
id: "stazioni_ferrovie_buffer",
type: "fill",
source: "stazioniFerrovieBufferSource",
paint: {
"fill-color": "#f5553d",
"fill-opacity": 1
}
},
"building-outline"
);
map.addLayer(
{
id: "stazioni_metro_buffer",
type: "fill",
source: "stazioniMetroBufferSource",
paint: {
"fill-color": "#f5553d",
"fill-opacity": 1
}
},
"building-outline"
);
map.addLayer(
{
id: "luoghi_monumentali_buffer",
type: "fill",
source: "luoghiMonumentaliBufferSource",
paint: {
"fill-color": "#f5553d",
"fill-opacity": 1
}
},
"building-outline"
);
map.addLayer(
{
id: "buildings-base",
type: "fill",
source: "osmbuildings",
"source-layer": "building",
// filter: ["all", ["==", "minHeight", 0]],
// layout: {},
paint: {
"fill-color": "#fff",
"fill-opacity": { stops: [[16, 0], [17.5, 1]] }
}
},
labelLayerId
);
map.addLayer(
{
id: "buildings-3d",
type: "fill-extrusion",
source: "osmbuildings",
"source-layer": "building",
paint: {
"fill-extrusion-color": "#f5553d",
"fill-extrusion-height": [
"interpolate",
["linear"],
["zoom"],
15,
0,
15.05,
[
"number",
["get", "height"],
["*", ["number", ["get", "levels"], 3], 3]
]
],
"fill-extrusion-base": [
"interpolate",
["linear"],
["zoom"],
15,
0,
15.05,
[
"number",
["get", "minHeight"],
["*", ["number", ["get", "minLevel"], 0], 3]
]
],
"fill-extrusion-opacity": {
stops: [[15, 0], [15.5, 1], [16, 1], [17.5, 0.6]]
}
},
//filter: ["!=", ["string", ["get", "shape"], ""], "none"]
filter: ["match", ["get", "id"], "", true, false]
},
labelLayerId
);
map.addLayer(
{
id: "confiniHole",
source: "confiniHoleSource",
type: "fill",
paint: {
"fill-color": "#fff"
}
},
"settlement-subdivision-label"
);
map.addLayer(
{
id: "confini",
source: "confiniSource",
type: "line",
paint: {
"line-color": "#000"
}
},
"settlement-subdivision-label"
);
});
map.on("moveend", function() {
if (map.getZoom() >= 15) {
const aulenti = aree_omogenee.features.filter(
f => f.properties.area === "C.so Garibladi, C.so Como, Gae Aulenti"
)[0];
let buildings = map.queryRenderedFeatures({
layers: ["buildings-base"],
filter: ["!=", ["string", ["get", "shape"], ""], "none"]
});
let features = map.queryRenderedFeatures({
layers: [
"aree_omogenee",
"parchi_buffer",
"luoghi_monumentali_buffer",
"mercati_buffer",
"musei_buffer",
"ospedali_cliniche_buffer",
"scuole_buffer",
"stazioni_ferrovie_buffer",
"stazioni_metro_buffer"
]
});
const filtered = buildings
.filter(b => {
let inside = false;
for (let feature of features) {
//console.log(b, feature);
if (BooleanContains(feature, b)) {
inside = true;
break;
} else {
inside = false;
}
}
return inside;
})
.map(b => b.properties.id);
const ids = [...new Set(filtered)].filter(i => i);
const filter = ["match", ["get", "id"], ids, true, false];
if (ids.length) {
map.setFilter("buildings-3d", filter);
}
}
});
map.on("zoomend", function() {
if (map.getZoom() >= 15) {
const aulenti = aree_omogenee.features.filter(
f => f.properties.area === "C.so Garibladi, C.so Como, Gae Aulenti"
)[0];
let buildings = map.queryRenderedFeatures({
layers: ["buildings-base"],
filter: ["!=", ["string", ["get", "shape"], ""], "none"]
});
let features = map.queryRenderedFeatures({
layers: [
"aree_omogenee",
"parchi_buffer",
"luoghi_monumentali_buffer",
"mercati_buffer",
"musei_buffer",
"ospedali_cliniche_buffer",
"scuole_buffer",
"stazioni_ferrovie_buffer",
"stazioni_metro_buffer"
]
});
const filtered = buildings
.filter(b => {
let inside = false;
for (let feature of features) {
//console.log(b, feature);
if (BooleanContains(feature, b)) {
inside = true;
break;
} else {
inside = false;
}
}
return inside;
})
.map(b => b.properties.id);
const ids = [...new Set(filtered)].filter(i => i);
const filter = ["match", ["get", "id"], ids, true, false];
if (ids.length) {
map.setFilter("buildings-3d", filter);
}
}
});
// var toggleableLayerIds = ["wbbuilding", "aereal"];
//
// for (var i = 0; i < toggleableLayerIds.length; i++) {
// var id = toggleableLayerIds[i];
//
// var link = document.createElement("a");
// link.href = "#";
// link.className = "active";
// link.textContent = id;
//
// link.onclick = function(e) {
// var clickedLayer = this.textContent;
// e.preventDefault();
// e.stopPropagation();
//
// var visibility = map.getLayoutProperty(clickedLayer, "visibility");
//
// if (visibility === "visible") {
// map.setLayoutProperty(clickedLayer, "visibility", "none");
// this.className = "";
// } else {
// this.className = "active";
// map.setLayoutProperty(clickedLayer, "visibility", "visible");
// }
// };
//
// var layers = document.getElementById("menu");
// layers.appendChild(link);
// }

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

1
layers/confini.json Normal file

File diff suppressed because one or more lines are too long

1
layers/confini_hole.json Normal file

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,22 @@
{
"type": "FeatureCollection",
"name": "luoghi_monumentali_buffer",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.182366905755323, 45.453952970141295 ], [ 9.182303417520998, 45.453674923892294 ], [ 9.182120958237366, 45.453424294000506 ], [ 9.181837389330369, 45.453225613359329 ], [ 9.181480468488346, 45.453098329592009 ], [ 9.181085132550738, 45.453054901620426 ], [ 9.180690078051466, 45.453099580290065 ], [ 9.180333973982673, 45.453227992338945 ], [ 9.180051677251672, 45.453427568407662 ], [ 9.179870821041227, 45.453678773222272 ], [ 9.179809109876619, 45.453957017605411 ], [ 9.179872586178785, 45.454235065245285 ], [ 9.180055038139885, 45.454485698704048 ], [ 9.180338607130942, 45.454684383725883 ], [ 9.180695535431511, 45.454811671014262 ], [ 9.181090883353232, 45.45485510030236 ], [ 9.181485949784671, 45.454810420241898 ], [ 9.18184206117599, 45.454682004626015 ], [ 9.18212435782293, 45.454482424176653 ], [ 9.182305206574837, 45.454231215840984 ], [ 9.182366905755323, 45.453952970141295 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.193804008175331, 45.458520841921491 ], [ 9.193740458554494, 45.458242802353645 ], [ 9.193557933868714, 45.457992191039686 ], [ 9.193274301945573, 45.45779353905418 ], [ 9.192917326641123, 45.457666291215276 ], [ 9.192521950125103, 45.457622902928065 ], [ 9.192126872902888, 45.457667621153732 ], [ 9.191770766190743, 45.45779606875864 ], [ 9.19148848715508, 45.45799567290323 ], [ 9.191307667247292, 45.458246895565381 ], [ 9.191246007439956, 45.458525145820545 ], [ 9.19130954512744, 45.458803186781786 ], [ 9.191492062493253, 45.459053801664759 ], [ 9.191775694505788, 45.459252458031578 ], [ 9.19213267727485, 45.459379709390639 ], [ 9.192528065779475, 45.459423098992247 ], [ 9.192923154935043, 45.459378379373192 ], [ 9.19327926896716, 45.459249928199277 ], [ 9.193561547913422, 45.459050319673331 ], [ 9.193742360356602, 45.458799093491045 ], [ 9.193804008175331, 45.458520841921491 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.171928100522456, 45.46253608673684 ], [ 9.171864653818087, 45.462258035044279 ], [ 9.17168221293441, 45.462007388829086 ], [ 9.171398637497273, 45.461808682582465 ], [ 9.17104168583492, 45.46168136643395 ], [ 9.170646297803769, 45.461637902474791 ], [ 9.170251175036471, 45.46168254507279 ], [ 9.169894993206736, 45.461810924496696 ], [ 9.169668659180196, 45.461970870673227 ], [ 9.169514315787337, 45.461953902472054 ], [ 9.169119189908701, 45.46199854115639 ], [ 9.168763003511959, 45.462126917049957 ], [ 9.168480621562123, 45.462326464332442 ], [ 9.168299685583033, 45.462577650547871 ], [ 9.168237907908157, 45.462855888339874 ], [ 9.168301337469476, 45.463133942042198 ], [ 9.168483767035509, 45.463384593623921 ], [ 9.168767340170568, 45.463583307055217 ], [ 9.169124298749326, 45.463710630258461 ], [ 9.169519700119706, 45.463754099450902 ], [ 9.169562517382596, 45.463749262307431 ], [ 9.169681306631537, 45.4637916321498 ], [ 9.17007670899079, 45.463835099412066 ], [ 9.17047184692929, 45.463790457412451 ], [ 9.170828039896564, 45.463662076218256 ], [ 9.171110420202055, 45.46346252318186 ], [ 9.171199901276447, 45.463338291665416 ], [ 9.171403041968999, 45.463265072470236 ], [ 9.17168541826387, 45.463065518004314 ], [ 9.171866340746256, 45.462814326467111 ], [ 9.171928100522456, 45.46253608673684 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.187860032539326, 45.459578908438914 ], [ 9.187796510915963, 45.459300865571102 ], [ 9.18761400910198, 45.459050244769237 ], [ 9.187330392686496, 45.458851578036715 ], [ 9.186973424007951, 45.458724311635201 ], [ 9.186578044587742, 45.458680902786682 ], [ 9.186182955215569, 45.458725600464867 ], [ 9.185826828296788, 45.458854029547297 ], [ 9.185544522975407, 45.459053619007399 ], [ 9.18536367327545, 45.459304832260486 ], [ 9.185301983085516, 45.459583079303236 ], [ 9.185330442471789, 45.459707674324719 ], [ 9.185118964165946, 45.459731596894066 ], [ 9.18476282849535, 45.459860022650304 ], [ 9.184480514402662, 45.460059609459258 ], [ 9.184299656770435, 45.460310820995808 ], [ 9.184237960263724, 45.46058906742465 ], [ 9.184301465869328, 45.460867112233579 ], [ 9.184483958911482, 45.461117738261784 ], [ 9.184767576740036, 45.461316411980526 ], [ 9.18512455685369, 45.461443685199612 ], [ 9.185519954491664, 45.461487099029412 ], [ 9.18591506367526, 45.461442403634813 ], [ 9.186271206669263, 45.461313974310187 ], [ 9.186553520675803, 45.461114383119558 ], [ 9.186734370845237, 45.460863168061685 ], [ 9.186796055363034, 45.460584920316961 ], [ 9.186767592302365, 45.460460325685631 ], [ 9.186979072624519, 45.46043640006387 ], [ 9.187335206865921, 45.460307967413065 ], [ 9.187617512100667, 45.460108373571465 ], [ 9.187798354337819, 45.459857156797312 ], [ 9.187860032539326, 45.459578908438914 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.179916056287814, 45.456945953617037 ], [ 9.179903498519955, 45.456890949463421 ], [ 9.179721039439993, 45.456640315879348 ], [ 9.179437462788499, 45.456441629404317 ], [ 9.179080527012072, 45.456314338232588 ], [ 9.178685170411979, 45.456270902010736 ], [ 9.178290091544492, 45.456315572391709 ], [ 9.177933961786751, 45.456443976924866 ], [ 9.177651640560365, 45.45664354698652 ], [ 9.177470763445729, 45.456894747890779 ], [ 9.17740903701443, 45.457172990843176 ], [ 9.17747250518204, 45.457451039672016 ], [ 9.17765495693733, 45.457701676823163 ], [ 9.17793853367178, 45.457900367679336 ], [ 9.178290939340199, 45.458026044176059 ], [ 9.178303495796138, 45.458081048497988 ], [ 9.178485953269242, 45.458331684285376 ], [ 9.178769536080654, 45.458530373047317 ], [ 9.179126485157189, 45.458657665121038 ], [ 9.179521858776672, 45.45870109977124 ], [ 9.179916953311867, 45.458656425124616 ], [ 9.180273092461583, 45.458528014444461 ], [ 9.180295686446961, 45.458512042552336 ], [ 9.180451964564282, 45.458726702011489 ], [ 9.180735556249864, 45.458925385865072 ], [ 9.181092512226179, 45.45905267177563 ], [ 9.181487890095536, 45.459096099611216 ], [ 9.181882985814616, 45.4590514181656 ], [ 9.182225642675016, 45.458927862154646 ], [ 9.182099693452106, 45.45910279743449 ], [ 9.18203798741976, 45.459381042748838 ], [ 9.182101480841341, 45.459659088858707 ], [ 9.182159537222391, 45.459738827718212 ], [ 9.182036471636753, 45.459652612748968 ], [ 9.181679509755927, 45.459525329810788 ], [ 9.181284128740584, 45.459481902646623 ], [ 9.180889029536592, 45.459526582022818 ], [ 9.180532885511528, 45.459654994608364 ], [ 9.18025055748357, 45.459854570991382 ], [ 9.180069681699059, 45.460105775867355 ], [ 9.180055589971449, 45.460169306985094 ], [ 9.179897150743175, 45.460151902683954 ], [ 9.179502045751095, 45.460196577266295 ], [ 9.179145894350881, 45.460324985523492 ], [ 9.178863558082526, 45.460524558467419 ], [ 9.178682673998912, 45.46077576113013 ], [ 9.17862094935407, 45.461054004545076 ], [ 9.178684427889079, 45.46133205249528 ], [ 9.178866897578205, 45.461582687512561 ], [ 9.179150498057572, 45.461781375188373 ], [ 9.179507468524505, 45.461908665966298 ], [ 9.179902865162795, 45.46195209923777 ], [ 9.180297982091663, 45.461907423264471 ], [ 9.180654140817584, 45.461779011439553 ], [ 9.180936477002406, 45.461579434113908 ], [ 9.181117353625147, 45.461328227929094 ], [ 9.181131444444553, 45.461264696694698 ], [ 9.181289887165123, 45.461282099275017 ], [ 9.181684998305283, 45.461237418507601 ], [ 9.182041149655275, 45.461109002354249 ], [ 9.182323477599052, 45.460909421589584 ], [ 9.182504345922426, 45.460658213191785 ], [ 9.182566051033602, 45.460379967689356 ], [ 9.182502554509211, 45.460101921877715 ], [ 9.182444497270966, 45.460022183198959 ], [ 9.182567564282827, 45.460108397720809 ], [ 9.18292453183644, 45.460235677861924 ], [ 9.183319919363386, 45.460279099332119 ], [ 9.183715021874864, 45.460234411548392 ], [ 9.184071162288838, 45.460105989060033 ], [ 9.184353478059926, 45.459906403261812 ], [ 9.184534334165615, 45.459655191624577 ], [ 9.184596028210116, 45.45937694499392 ], [ 9.184532522853297, 45.459098900275592 ], [ 9.184350036137175, 45.458848274226213 ], [ 9.184066432173152, 45.458649599362943 ], [ 9.183709472081043, 45.458522322743256 ], [ 9.183314096541938, 45.458478902589377 ], [ 9.182919005965701, 45.458523588981535 ], [ 9.18257635307207, 45.458647147075077 ], [ 9.182702299809366, 45.458472211259519 ], [ 9.182764001595942, 45.458193965548517 ], [ 9.18270050658624, 45.457915919737815 ], [ 9.182518031809364, 45.457665290691025 ], [ 9.182234440208049, 45.457466611218742 ], [ 9.181877491692076, 45.457339328829683 ], [ 9.181482125809566, 45.457295902310783 ], [ 9.181087042025247, 45.457340582365248 ], [ 9.180730912197539, 45.457468995595647 ], [ 9.180708318750952, 45.457484967575979 ], [ 9.180552043106745, 45.457270308416938 ], [ 9.180268460378679, 45.457071624036274 ], [ 9.179916056287814, 45.456945953617037 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.190081067511597, 45.461132883513422 ], [ 9.190017533205777, 45.460854841977103 ], [ 9.189835016527722, 45.460604224816187 ], [ 9.189551384521506, 45.460405563677654 ], [ 9.189194401051553, 45.460278304275505 ], [ 9.188799009086958, 45.460234903146635 ], [ 9.188403910645148, 45.460279608509111 ], [ 9.188047779019195, 45.460408044488368 ], [ 9.187765473813915, 45.4606076393828 ], [ 9.187584629042108, 45.460858856075845 ], [ 9.187522948110177, 45.461137104227348 ], [ 9.187586470480463, 45.461415147156458 ], [ 9.187768979836141, 45.461665767886196 ], [ 9.188052611930029, 45.461864433406504 ], [ 9.188409602864223, 45.461991696329591 ], [ 9.188805006818544, 45.462035098773761 ], [ 9.189200117195888, 45.461990392018514 ], [ 9.189556256144224, 45.461861952470393 ], [ 9.189838561261832, 45.461662353194228 ], [ 9.190019398569394, 45.461411132980224 ], [ 9.190081067511597, 45.461132883513422 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.19692499801041, 45.463724928589613 ], [ 9.196892308024518, 45.463713278502773 ], [ 9.196496886223517, 45.463669904096101 ], [ 9.196101769970948, 45.463714636087616 ], [ 9.195745634303178, 45.463843095996339 ], [ 9.195463339220884, 45.464042709778482 ], [ 9.195289034089301, 45.464284884873926 ], [ 9.195115335753435, 45.464407706659699 ], [ 9.194934511569986, 45.464658934787401 ], [ 9.194872862725468, 45.464937186668912 ], [ 9.194936425541755, 45.465215225258056 ], [ 9.195118979743089, 45.465465834002501 ], [ 9.195402656692286, 45.465664481065104 ], [ 9.195759688100205, 45.465791720864843 ], [ 9.196155124184212, 45.465835097783511 ], [ 9.196550255201648, 45.465790365599439 ], [ 9.196906401279895, 45.465661903208563 ], [ 9.197131973330167, 45.465502397903023 ], [ 9.197344264987095, 45.465478362861624 ], [ 9.197700407291229, 45.465349897994408 ], [ 9.19798270096827, 45.465150278731812 ], [ 9.198163513159326, 45.464899045820623 ], [ 9.198225145768285, 45.464620792188619 ], [ 9.1981615674695, 45.464342755426586 ], [ 9.197979003445248, 45.464092151511878 ], [ 9.197695325373937, 45.463893510794584 ], [ 9.197338301628616, 45.463766276989695 ], [ 9.196942879120183, 45.463722904128538 ], [ 9.19692499801041, 45.463724928589613 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.180656278622541, 45.470436988729787 ], [ 9.180592780038458, 45.470158942350757 ], [ 9.180410274920954, 45.469908310522271 ], [ 9.180126629183492, 45.469709626327067 ], [ 9.179769608035235, 45.469582337735901 ], [ 9.179374158133459, 45.46953890414256 ], [ 9.178978987166255, 45.469583576942597 ], [ 9.178622775524953, 45.469711983448732 ], [ 9.178340390645815, 45.46991155484433 ], [ 9.178159474340063, 45.470162756313279 ], [ 9.178097737016353, 45.470440999006023 ], [ 9.178161223657687, 45.470719046776374 ], [ 9.178343721445668, 45.470969682173646 ], [ 9.178627367266447, 45.471168370752032 ], [ 9.178984395879066, 45.471295662866517 ], [ 9.179379857775098, 45.471339097777538 ], [ 9.179775040685053, 45.471294423586194 ], [ 9.180131259655884, 45.471166013511251 ], [ 9.18041364445169, 45.470966437732443 ], [ 9.180594553293082, 45.470715232740183 ], [ 9.180656278622541, 45.470436988729787 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.185495355628698, 45.473855934415184 ], [ 9.18543182936561, 45.473577890936738 ], [ 9.185249291741195, 45.473327267041462 ], [ 9.184965611850851, 45.473128595035355 ], [ 9.184608558246529, 45.473001321695968 ], [ 9.18421308076209, 45.472957904924151 ], [ 9.183817889785198, 45.473002594469001 ], [ 9.183461667665679, 45.47313101600426 ], [ 9.183179282865545, 45.473330599242317 ], [ 9.182998377188598, 45.473581808207889 ], [ 9.182936660003529, 45.47386005331758 ], [ 9.183000174322421, 45.474138098188483 ], [ 9.18318270461782, 45.474388725653618 ], [ 9.183466384593762, 45.47458740204344 ], [ 9.183823445665594, 45.47471467890594 ], [ 9.184218935147127, 45.474758096994591 ], [ 9.184614138068206, 45.474713406057298 ], [ 9.184970367516735, 45.474584980952159 ], [ 9.185252752231278, 45.474385393330415 ], [ 9.185433650440718, 45.474134180841716 ], [ 9.185495355628698, 45.473855934415184 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.18775921282713, 45.467550909284284 ], [ 9.187695682619482, 45.467272866763309 ], [ 9.187513155414493, 45.467022246191668 ], [ 9.18722949928717, 45.466823579550038 ], [ 9.186872480463231, 45.466696313091035 ], [ 9.186477045372218, 45.466652904042149 ], [ 9.186081900252558, 45.466697601396604 ], [ 9.185725722965849, 45.4668260300637 ], [ 9.185601176603585, 45.466914071726073 ], [ 9.185299064097281, 45.466880904018197 ], [ 9.184903916441289, 45.466925597299841 ], [ 9.184547735033714, 45.467054022295116 ], [ 9.184265384351797, 45.467253608377682 ], [ 9.184084502859672, 45.46750481929358 ], [ 9.184022797558374, 45.467783065268442 ], [ 9.184086310296209, 45.468061109834586 ], [ 9.184268825699911, 45.468311735854918 ], [ 9.18455247893082, 45.468510409801318 ], [ 9.184909504022224, 45.468637683461147 ], [ 9.185108669428914, 45.468659549118101 ], [ 9.185135300168216, 45.468776120979555 ], [ 9.185317822533126, 45.469026745281333 ], [ 9.185601483035335, 45.469225416586404 ], [ 9.185958514996292, 45.46935268694066 ], [ 9.186353968579565, 45.469396097734766 ], [ 9.18674913232941, 45.469351399430764 ], [ 9.187105323168607, 45.469222967607891 ], [ 9.187387673615465, 45.46902337457486 ], [ 9.187568545253377, 45.46877215851098 ], [ 9.187630234166809, 45.468493910695152 ], [ 9.187566703518776, 45.468215868149208 ], [ 9.187484551198025, 45.46810306996543 ], [ 9.187516657500355, 45.468080373517239 ], [ 9.187697525562186, 45.467829157213188 ], [ 9.18775921282713, 45.467550909284284 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.195065250665877, 45.469247827402839 ], [ 9.195001682617724, 45.468969789090913 ], [ 9.194819117572914, 45.468719180331135 ], [ 9.194535427310191, 45.468520531947874 ], [ 9.194178381396185, 45.468393288406439 ], [ 9.19378292891173, 45.468349904691053 ], [ 9.193387777797536, 45.468394627315341 ], [ 9.193031606502005, 45.468523078715265 ], [ 9.192749278512901, 45.468722685679921 ], [ 9.192568430073599, 45.468973909911433 ], [ 9.192552378246022, 45.469046340548665 ], [ 9.192511949067766, 45.46904190473321 ], [ 9.192116792100485, 45.469086622964838 ], [ 9.191760613551887, 45.469215070397887 ], [ 9.191478277619634, 45.469414674209787 ], [ 9.191297421324544, 45.469665896411222 ], [ 9.191235749201679, 45.469944146122984 ], [ 9.191299299851948, 45.470222186511378 ], [ 9.191481854191004, 45.470472800848029 ], [ 9.191765543568652, 45.470671456748413 ], [ 9.192122598479408, 45.470798707766235 ], [ 9.192518066839927, 45.470842097185049 ], [ 9.192913235747726, 45.47079737755945 ], [ 9.193269421620686, 45.470668926555959 ], [ 9.193551757463505, 45.470469318360976 ], [ 9.193732606289513, 45.470218092637964 ], [ 9.193748656932501, 45.470145661851738 ], [ 9.193789086995702, 45.470150097227183 ], [ 9.194184250049792, 45.470105373208682 ], [ 9.194540428668947, 45.469976918238302 ], [ 9.194822756568026, 45.469777306890641 ], [ 9.195003597538037, 45.4695260791378 ], [ 9.195065250665877, 45.469247827402839 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.17664909203716, 45.462175033884016 ], [ 9.176585622544682, 45.461896984830332 ], [ 9.176403161934331, 45.46164634616909 ], [ 9.176119571762674, 45.461447651652023 ], [ 9.175762611799955, 45.46132035026055 ], [ 9.175367222714874, 45.461276902641437 ], [ 9.174972106243166, 45.461321561563132 ], [ 9.174615937442425, 45.461449955696672 ], [ 9.174333579555617, 45.461649517436399 ], [ 9.174152671751491, 45.46190071291111 ], [ 9.174090923605835, 45.462178953857965 ], [ 9.174154381160159, 45.462457004301733 ], [ 9.174336834442649, 45.462707646530262 ], [ 9.174620424695743, 45.462906345429225 ], [ 9.17497739211808, 45.463033650343526 ], [ 9.175372793191649, 45.463077099280753 ], [ 9.17576792160151, 45.463032438968959 ], [ 9.176124097730108, 45.462904041268132 ], [ 9.176377226372349, 45.462725133964007 ], [ 9.176217639204127, 45.462946735017546 ], [ 9.176155900093116, 45.463224977016026 ], [ 9.176219368983833, 45.463503026244545 ], [ 9.176401834794824, 45.463753665109856 ], [ 9.176685437542096, 45.463952358826781 ], [ 9.177042416201132, 45.464079657247417 ], [ 9.177437826153826, 45.464123099015076 ], [ 9.177832960215959, 45.464078431559649 ], [ 9.178189138216634, 45.463950027440461 ], [ 9.178471493930697, 45.463750456254068 ], [ 9.178652388425355, 45.463499254041189 ], [ 9.178714115546926, 45.463221010724958 ], [ 9.178650634717702, 45.462942962886984 ], [ 9.178468161579232, 45.462692327589366 ], [ 9.178184558914364, 45.462493638254543 ], [ 9.177827587716127, 45.46236634335655 ], [ 9.177432189752867, 45.462322902906607 ], [ 9.177037067629243, 45.46236756897148 ], [ 9.176680896956045, 45.462495969523005 ], [ 9.176427770299654, 45.462674877504305 ], [ 9.176587355879988, 45.462453276148985 ], [ 9.17664909203716, 45.462175033884016 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.191539035381425, 45.463499717770667 ], [ 9.191501579078402, 45.463335826232289 ], [ 9.191319047791488, 45.46308521157561 ], [ 9.191035398116487, 45.462886554237272 ], [ 9.190678395647259, 45.462759299559274 ], [ 9.190282985212457, 45.462715903616001 ], [ 9.189887870637257, 45.46276061411799 ], [ 9.189531726793788, 45.462889054687643 ], [ 9.189249414482747, 45.463088653174069 ], [ 9.189068568412589, 45.463339872109152 ], [ 9.189006892117032, 45.463618120933297 ], [ 9.189070424604825, 45.463896162899765 ], [ 9.18913214744598, 45.463980912980119 ], [ 9.189101399080032, 45.464002651940319 ], [ 9.188920549442539, 45.464253870606477 ], [ 9.188858871436485, 45.464532119308778 ], [ 9.188922404238138, 45.464810161312442 ], [ 9.189104930509853, 45.465060779731068 ], [ 9.189388584348706, 45.465259441780653 ], [ 9.189745599728152, 45.465386700413113 ], [ 9.190141028434883, 45.465430098166756 ], [ 9.190536161448525, 45.46538538678017 ], [ 9.190892318700969, 45.46525694311336 ], [ 9.190907602315482, 45.465246137427272 ], [ 9.190946604290025, 45.465273451968187 ], [ 9.191303623247586, 45.465400705724967 ], [ 9.191699053229993, 45.465444098082841 ], [ 9.192094185091968, 45.465399381308714 ], [ 9.192450338878162, 45.465270932789956 ], [ 9.192732650734397, 45.465071326469619 ], [ 9.192913486021922, 45.46482010182752 ], [ 9.192975144383515, 45.464541850982179 ], [ 9.192911591972559, 45.464263811251698 ], [ 9.192729051437352, 45.464013198904198 ], [ 9.192445392157307, 45.463814545115298 ], [ 9.192088380666405, 45.463687294879549 ], [ 9.191754566286876, 45.463650663979791 ], [ 9.191539035381425, 45.463499717770667 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.182239109689743, 45.462972971260747 ], [ 9.182175611821215, 45.462694925396065 ], [ 9.181993123884846, 45.462444295741449 ], [ 9.181709510111808, 45.462245615166957 ], [ 9.181352532582238, 45.462118331289091 ], [ 9.180957133684066, 45.462074903040424 ], [ 9.180562016113411, 45.462119581293422 ], [ 9.18020585503549, 45.462247992827038 ], [ 9.179923512937554, 45.462447568332394 ], [ 9.179742627443209, 45.46269877259094 ], [ 9.179680905944748, 45.462977016479883 ], [ 9.179720526486067, 45.463150541598559 ], [ 9.179446025457381, 45.463181577550301 ], [ 9.179089855155656, 45.463309985594307 ], [ 9.178807503822092, 45.46350955831798 ], [ 9.178626609984272, 45.463760760775081 ], [ 9.178564881851196, 45.46403900401917 ], [ 9.178598832530184, 45.464187707370556 ], [ 9.178473173004569, 45.464173903250042 ], [ 9.178078038788065, 45.464218572919577 ], [ 9.177721858844892, 45.464346976689249 ], [ 9.177439497508713, 45.464546546010183 ], [ 9.177258594286146, 45.464797746269241 ], [ 9.177196858304823, 45.465075988735187 ], [ 9.177260334415847, 45.465354037284058 ], [ 9.177442810831145, 45.465604674389041 ], [ 9.177460174659265, 45.465616838928746 ], [ 9.177436843711327, 45.465721991444482 ], [ 9.177500321736439, 45.466000039825566 ], [ 9.177682801307043, 45.46625067651398 ], [ 9.17796642109233, 45.466449366937589 ], [ 9.178323418399904, 45.466576661270864 ], [ 9.178718846785992, 45.466620098557094 ], [ 9.179113997261743, 45.466575426664967 ], [ 9.179470188049383, 45.466447018588056 ], [ 9.179752551672015, 45.466247444310476 ], [ 9.179903357729517, 45.466038026101423 ], [ 9.180202449858209, 45.46614466774556 ], [ 9.180597876645898, 45.466188098532747 ], [ 9.18099302260007, 45.466143420143972 ], [ 9.181349206385642, 45.466015006208764 ], [ 9.181631561211244, 45.465815427284781 ], [ 9.181691753416551, 45.465731835551352 ], [ 9.181693848464336, 45.465734712769425 ], [ 9.181977479716547, 45.465933393234025 ], [ 9.182334482752117, 45.466060675034008 ], [ 9.182729910566406, 45.466104098439637 ], [ 9.183125054226492, 45.466059412678376 ], [ 9.183193966453219, 45.466034566418976 ], [ 9.183207918166444, 45.466036098426372 ], [ 9.18360306096873, 45.46599141101234 ], [ 9.183959237846304, 45.465862988945851 ], [ 9.184009476274664, 45.4658274763026 ], [ 9.184010065957652, 45.465827409610867 ], [ 9.184366240875429, 45.465698986274667 ], [ 9.18464858345696, 45.465499399901056 ], [ 9.184829456055359, 45.465248188017384 ], [ 9.184891154660741, 45.464969941493429 ], [ 9.184827641487036, 45.464691897224562 ], [ 9.184645135341922, 45.464441271923306 ], [ 9.184361502238934, 45.464242598033479 ], [ 9.184004506150192, 45.464115322517245 ], [ 9.183609091280056, 45.46407190348863 ], [ 9.183213961887883, 45.464116590917719 ], [ 9.182857794295927, 45.464245010685254 ], [ 9.182807556545331, 45.464280522830798 ], [ 9.182806966877024, 45.464280589516321 ], [ 9.182738056614163, 45.464305435546812 ], [ 9.182724105340535, 45.464303903480904 ], [ 9.182328973619429, 45.464348587850445 ], [ 9.182233461428448, 45.464383024810978 ], [ 9.182117155159931, 45.464223294737167 ], [ 9.181833532012453, 45.464024614547178 ], [ 9.181476542964926, 45.463897331114445 ], [ 9.181116233936923, 45.463857758660758 ], [ 9.181358011730863, 45.46383041923653 ], [ 9.181714180134835, 45.463702004134824 ], [ 9.181996522148729, 45.463502424247409 ], [ 9.182177400181052, 45.463251216466688 ], [ 9.182239109689743, 45.462972971260747 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.186742114203915, 45.463186920828903 ], [ 9.186678593964867, 45.462908877513378 ], [ 9.186496085406114, 45.46265825509488 ], [ 9.186212454777248, 45.462459585734976 ], [ 9.185855465808098, 45.46233231595248 ], [ 9.18546006200611, 45.462288903300255 ], [ 9.185064946547323, 45.462333597124235 ], [ 9.184708794390302, 45.462462022679276 ], [ 9.184426467149294, 45.462661609284105 ], [ 9.184245600993886, 45.462912820633647 ], [ 9.184183901423602, 45.463191066910952 ], [ 9.184247409725337, 45.463469111618672 ], [ 9.184413745489193, 45.463697537929406 ], [ 9.184395888164445, 45.46377806930542 ], [ 9.184459398176108, 45.464056113863947 ], [ 9.184641902250945, 45.464306739482147 ], [ 9.18492553665901, 45.464505412671436 ], [ 9.185282537276077, 45.46463268529331 ], [ 9.185677957334159, 45.464676098516534 ], [ 9.186073088659633, 45.464631402565402 ], [ 9.186429251349606, 45.464502972788779 ], [ 9.186711580678063, 45.464303381294975 ], [ 9.186892440295548, 45.464052166112523 ], [ 9.18695412746289, 45.463773918434008 ], [ 9.186890605513575, 45.463495875267746 ], [ 9.186724260354238, 45.463267452570634 ], [ 9.186742114203915, 45.463186920828903 ] ] ] } }
]
}

File diff suppressed because one or more lines are too long

33
layers/musei_buffer.json Normal file
View file

@ -0,0 +1,33 @@
{
"type": "FeatureCollection",
"name": "musei_buffer",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.201876925438194, 45.444838341214897 ], [ 9.204100925981235, 45.445271916406483 ], [ 9.206524587455437, 45.445375432800084 ], [ 9.206752540835669, 45.442969105171393 ], [ 9.202140989901409, 45.442398471248545 ], [ 9.201876925438194, 45.444838341214897 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.172455978910646, 45.448314899204874 ], [ 9.175672126955886, 45.448258321461921 ], [ 9.175594187165517, 45.446071181872099 ], [ 9.172378137852638, 45.446127757737997 ], [ 9.172455978910646, 45.448314899204874 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.180876335188794, 45.450843172164312 ], [ 9.180925876025933, 45.450881072279486 ], [ 9.18076686758263, 45.451536521915678 ], [ 9.182210465327003, 45.451636506975795 ], [ 9.182364466479454, 45.451647644112136 ], [ 9.182526514310785, 45.451659079508502 ], [ 9.18260299641824, 45.45166446440895 ], [ 9.184374419995954, 45.451787970413697 ], [ 9.185096655649261, 45.449979949894448 ], [ 9.185746874809068, 45.44952512414136 ], [ 9.185371792353116, 45.44929115028215 ], [ 9.185410535099791, 45.449194157136716 ], [ 9.185127875162545, 45.44913899470783 ], [ 9.18509526055921, 45.449118649612188 ], [ 9.185160336071039, 45.448719999713312 ], [ 9.182233632307804, 45.44830264296332 ], [ 9.182016581400001, 45.448943655784333 ], [ 9.181157995684876, 45.448883481272659 ], [ 9.180876335188794, 45.450843172164312 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.163185479684721, 45.452012475479641 ], [ 9.163263450558842, 45.452288049498215 ], [ 9.165071895301068, 45.452763607053242 ], [ 9.166102468892184, 45.452144567430402 ], [ 9.166102520123728, 45.452143538064931 ], [ 9.166233230707043, 45.452071555794298 ], [ 9.166218861808439, 45.451982536332423 ], [ 9.166300621576481, 45.45193635987961 ], [ 9.166293387742698, 45.451872096455311 ], [ 9.166344103855067, 45.451839838735815 ], [ 9.166182832407893, 45.45088699746838 ], [ 9.16530839878973, 45.450546830040906 ], [ 9.165282423535448, 45.450544530202549 ], [ 9.165160374021241, 45.450522943662342 ], [ 9.165058892323193, 45.450481379386183 ], [ 9.16419389302852, 45.450378930076276 ], [ 9.163105122522039, 45.450974118417356 ], [ 9.16312069660604, 45.451036709131778 ], [ 9.16310301605254, 45.451047784577646 ], [ 9.16310456563648, 45.451055582000947 ], [ 9.163078765841542, 45.451070354808401 ], [ 9.16308675340065, 45.45111071099744 ], [ 9.162991293491359, 45.451167517077771 ], [ 9.161323820046487, 45.450629302859781 ], [ 9.160629068865111, 45.450404974856809 ], [ 9.1606290300639, 45.450405033678884 ], [ 9.160628632652559, 45.450404905397953 ], [ 9.160499642572566, 45.450600582726842 ], [ 9.160406288405198, 45.450570559696153 ], [ 9.159748266543849, 45.451570036244632 ], [ 9.159114092507162, 45.452569049697644 ], [ 9.15911411250022, 45.452569055898472 ], [ 9.159114111329091, 45.452569057743275 ], [ 9.159185095341627, 45.452591073353595 ], [ 9.159120603526713, 45.452690203182954 ], [ 9.159120918025954, 45.45269030394455 ], [ 9.159120849985911, 45.452690408585248 ], [ 9.160556316869853, 45.453150234597906 ], [ 9.160815407781337, 45.453234188451006 ], [ 9.161918364910635, 45.45359182312329 ], [ 9.161951843722766, 45.453544721383956 ], [ 9.162146811679742, 45.453607349314709 ], [ 9.162146908966321, 45.453607199480288 ], [ 9.162147020425259, 45.45360723526359 ], [ 9.162808180338669, 45.452588880689362 ], [ 9.162934899322314, 45.452394677988323 ], [ 9.163096511365389, 45.452148140156829 ], [ 9.163185479684721, 45.452012475479641 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.183364507260034, 45.453196545952721 ], [ 9.18337932793448, 45.453135230809849 ], [ 9.183256413733169, 45.453118597246473 ], [ 9.183274372961048, 45.453022918461969 ], [ 9.182042037307529, 45.452908089299306 ], [ 9.181532996532624, 45.452281163251882 ], [ 9.180806690548945, 45.452792965743541 ], [ 9.18065610832894, 45.452778931846503 ], [ 9.180629928080355, 45.452917521985903 ], [ 9.180590262387646, 45.452945472430784 ], [ 9.18048192338804, 45.452975117226003 ], [ 9.180471422831168, 45.452974020499163 ], [ 9.180472101148316, 45.452977804878351 ], [ 9.180452067763165, 45.452983286595661 ], [ 9.180285238130118, 45.453079213126443 ], [ 9.179716782028112, 45.453025030838859 ], [ 9.179651225136224, 45.453321695944574 ], [ 9.179489768849708, 45.453305464923503 ], [ 9.179464900036669, 45.454164857193042 ], [ 9.179409557341286, 45.454415289933543 ], [ 9.179386055975449, 45.454429283713466 ], [ 9.17939794329425, 45.454467844690363 ], [ 9.179292926307774, 45.454943052873887 ], [ 9.179509785898867, 45.454955430643587 ], [ 9.179523719207802, 45.455106903725806 ], [ 9.179411028644878, 45.455626776442557 ], [ 9.179444918465169, 45.455631100899794 ], [ 9.179408940335316, 45.455781746802799 ], [ 9.181184064830632, 45.455963718344712 ], [ 9.182798070385919, 45.456129306118001 ], [ 9.182898650974494, 45.45566759211038 ], [ 9.182952892799884, 45.455673494296356 ], [ 9.183025333737081, 45.455345718942148 ], [ 9.183082304943262, 45.455352851878693 ], [ 9.18310817830017, 45.455258441847235 ], [ 9.183202187173162, 45.45526860171006 ], [ 9.183333764667681, 45.454791385755442 ], [ 9.18358562303691, 45.45464161132162 ], [ 9.183886479291518, 45.453273698083926 ], [ 9.183710723798942, 45.453267905996285 ], [ 9.18372154414133, 45.453224968527287 ], [ 9.183364507260034, 45.453196545952721 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.225655972896046, 45.463650819817019 ], [ 9.227039285679243, 45.462459868174733 ], [ 9.226889208936248, 45.462232557603805 ], [ 9.223310330445409, 45.462195148622563 ], [ 9.222945818896083, 45.46297430527531 ], [ 9.22291775882799, 45.464314743965829 ], [ 9.225636315549986, 45.464329351352291 ], [ 9.225655972896046, 45.463650819817019 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.203471610930846, 45.460650136167523 ], [ 9.203700887098607, 45.460664416064688 ], [ 9.203680594585563, 45.460825206284262 ], [ 9.20644987083994, 45.460996123328037 ], [ 9.206469904133783, 45.460837929288331 ], [ 9.206691751349108, 45.460851613749988 ], [ 9.206937655211037, 45.458902870195566 ], [ 9.20671916159338, 45.458889310980339 ], [ 9.206739295505558, 45.458730136115442 ], [ 9.203968200438565, 45.458558502928355 ], [ 9.203948247461476, 45.458715683500976 ], [ 9.203718538050639, 45.458701334563962 ], [ 9.203471610930846, 45.460650136167523 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.180235923777374, 45.461178052998562 ], [ 9.180771789519172, 45.461897795415084 ], [ 9.182269607210555, 45.461995550925899 ], [ 9.18230620478594, 45.461959670999768 ], [ 9.182908382172004, 45.462000583553582 ], [ 9.183194622198418, 45.46010560256024 ], [ 9.182591818057356, 45.460056903408237 ], [ 9.182573062577864, 45.460026942893762 ], [ 9.181094144786584, 45.45990428755406 ], [ 9.18035366220376, 45.460494095380014 ], [ 9.180235923777374, 45.461178052998562 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.168066464264554, 45.461788854276911 ], [ 9.16787366524839, 45.46189553605889 ], [ 9.1682390669657, 45.462176721834439 ], [ 9.168951675046069, 45.462831486002955 ], [ 9.169084867745866, 45.462948692781431 ], [ 9.169114053754326, 45.462973219287719 ], [ 9.169435838318559, 45.463265772728086 ], [ 9.16963685302777, 45.463447492644185 ], [ 9.169775646663984, 45.463572872494836 ], [ 9.170473186320534, 45.464200516180419 ], [ 9.171750806819587, 45.463825982970867 ], [ 9.173702236635982, 45.463253739988531 ], [ 9.172452544107417, 45.462151332326044 ], [ 9.172805105064175, 45.461964214086073 ], [ 9.174184224018823, 45.461221444007137 ], [ 9.173166785474899, 45.460292225072067 ], [ 9.173153609868619, 45.460280205928449 ], [ 9.173016964594211, 45.460157946298729 ], [ 9.172860739685097, 45.460019506917071 ], [ 9.171966992247585, 45.459240363724142 ], [ 9.170403096318765, 45.460089789846151 ], [ 9.170360933626505, 45.460054669565629 ], [ 9.169273216620946, 45.460696541834821 ], [ 9.16812636637794, 45.461237914601135 ], [ 9.168191211011502, 45.461293706861817 ], [ 9.167771252261378, 45.461524631326824 ], [ 9.168066464264554, 45.461788854276911 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.183379295609031, 45.463195811146626 ], [ 9.183405345404148, 45.463211777801774 ], [ 9.183306728686667, 45.46327878847594 ], [ 9.183343073712082, 45.463304951159088 ], [ 9.183336306612416, 45.463309566307551 ], [ 9.183400335139748, 45.46335682032263 ], [ 9.183165298929158, 45.46351626413324 ], [ 9.184062238672551, 45.464195997863278 ], [ 9.184941336201341, 45.464862781254432 ], [ 9.185211246652853, 45.464691779917338 ], [ 9.185536463361606, 45.464931471262474 ], [ 9.185578444261612, 45.46490136016255 ], [ 9.185804074017813, 45.465052683776797 ], [ 9.18693469069088, 45.464307205772322 ], [ 9.188089038663065, 45.463545806945781 ], [ 9.186888570594819, 45.462605861459053 ], [ 9.18570668428759, 45.461739191904805 ], [ 9.185492930365358, 45.461892124832559 ], [ 9.185335204111587, 45.461795347290895 ], [ 9.18532711795374, 45.461801731221833 ], [ 9.185205870893487, 45.461727039410775 ], [ 9.185163906209112, 45.461760746695504 ], [ 9.185054788890021, 45.46171395654482 ], [ 9.184793054835813, 45.462041804610941 ], [ 9.184270820754145, 45.462461394819407 ], [ 9.183409364428369, 45.463154467662264 ], [ 9.183421371546627, 45.463161982726092 ], [ 9.183379295609031, 45.463195811146626 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.192143775334591, 45.464683287283947 ], [ 9.192247672670273, 45.464730735137003 ], [ 9.192415542154182, 45.464544116333251 ], [ 9.193288402049797, 45.464568240094863 ], [ 9.193356753187858, 45.463558869030294 ], [ 9.193408438668394, 45.463163362378879 ], [ 9.193673694620575, 45.462294902076138 ], [ 9.193252285155653, 45.462204091206942 ], [ 9.191721623172841, 45.461505227996163 ], [ 9.190967927702259, 45.460972432453779 ], [ 9.189540249406988, 45.462281300174439 ], [ 9.18950301908721, 45.462318788666636 ], [ 9.188839644042744, 45.462318781286243 ], [ 9.188840411979324, 45.462411570847998 ], [ 9.188828578500122, 45.462411570698237 ], [ 9.188837415000991, 45.464471764045228 ], [ 9.190149172429399, 45.464464315789307 ], [ 9.190988268286011, 45.464462598082832 ], [ 9.192120926626968, 45.464711162536645 ], [ 9.192143775334591, 45.464683287283947 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.143477087270075, 45.475603612340016 ], [ 9.145575663023138, 45.476886174296943 ], [ 9.14568624390466, 45.476801888326783 ], [ 9.145939209007834, 45.476964844283032 ], [ 9.147760401634272, 45.47555235063416 ], [ 9.14580794082779, 45.474236079464752 ], [ 9.145750422914494, 45.474271019562565 ], [ 9.145528719081693, 45.47412910193318 ], [ 9.143477087270075, 45.475603612340016 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.197671674113312, 45.472001324783562 ], [ 9.197748737861826, 45.472128250827332 ], [ 9.197101008431975, 45.472329950563712 ], [ 9.197575063464154, 45.473151688500344 ], [ 9.197960026614936, 45.473815343870335 ], [ 9.198779313545389, 45.473835165823445 ], [ 9.198919244909179, 45.474069191767114 ], [ 9.199634279398831, 45.473855844716766 ], [ 9.199671898474129, 45.473856754454715 ], [ 9.200101564857764, 45.473716416020679 ], [ 9.20033014449894, 45.473648211450488 ], [ 9.200779033940252, 45.473514457367898 ], [ 9.201875682116036, 45.474594689311019 ], [ 9.204623674099656, 45.473222554224428 ], [ 9.20438519082265, 45.472987690088225 ], [ 9.204420632523224, 45.472969968510114 ], [ 9.203601096299368, 45.472162593190497 ], [ 9.202772386641104, 45.47134639713785 ], [ 9.202721426069081, 45.47137192825312 ], [ 9.202479401347031, 45.471133582253131 ], [ 9.201116160005567, 45.471814265083552 ], [ 9.200685145165723, 45.471103619746188 ], [ 9.199357171479683, 45.471499518207487 ], [ 9.197671674113312, 45.472001324783562 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.171609394072075, 45.472800574631222 ], [ 9.171573811062419, 45.472827608454054 ], [ 9.172159133267105, 45.473206359537116 ], [ 9.1721840590588, 45.473238763738571 ], [ 9.172515194176276, 45.473450128601513 ], [ 9.172553630485513, 45.47346162675575 ], [ 9.173522368143944, 45.474088451966971 ], [ 9.173558930354554, 45.474060736031397 ], [ 9.173715565322393, 45.474162233164726 ], [ 9.174001139741499, 45.473945463453354 ], [ 9.174015481515148, 45.473954690124224 ], [ 9.174335991957818, 45.473711392260974 ], [ 9.174518194947222, 45.473829509951642 ], [ 9.176294642985079, 45.472478652176825 ], [ 9.176095208312026, 45.472349476068231 ], [ 9.176381759674301, 45.472122715445487 ], [ 9.175908285987864, 45.471816360294568 ], [ 9.175901082643959, 45.47177708273108 ], [ 9.175795364176789, 45.471562901968923 ], [ 9.175630104735861, 45.471368548103285 ], [ 9.175412975963654, 45.471202703087151 ], [ 9.175157994643239, 45.471073564686634 ], [ 9.174873034742623, 45.470982596966643 ], [ 9.174569490006542, 45.470933638167949 ], [ 9.17454421850041, 45.470933107098645 ], [ 9.174065620880484, 45.470623188616997 ], [ 9.17370957046154, 45.470893480684538 ], [ 9.173675859416859, 45.470871643443672 ], [ 9.173638831427272, 45.470899765371371 ], [ 9.173479250417708, 45.470796398952032 ], [ 9.171582989437018, 45.472234923581489 ], [ 9.171745378045516, 45.472340168920567 ], [ 9.17170743516267, 45.472369012533491 ], [ 9.171748911045173, 45.472395816530415 ], [ 9.171396651838354, 45.472663073302968 ], [ 9.171609394072075, 45.472800574631222 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.186189121512838, 45.472994356803653 ], [ 9.190131690667577, 45.473612285579705 ], [ 9.190159112606862, 45.473507431482894 ], [ 9.190194828638743, 45.473521003044297 ], [ 9.191841475074893, 45.471675888484434 ], [ 9.190869471716542, 45.471293731122906 ], [ 9.19106019280686, 45.470644012632057 ], [ 9.189290400429766, 45.470348802238028 ], [ 9.187903080202688, 45.470085431112821 ], [ 9.187819795831054, 45.470417747976128 ], [ 9.187322784710318, 45.470358745113707 ], [ 9.187252308112862, 45.470609643517733 ], [ 9.186739037289424, 45.470552173624469 ], [ 9.186461523207837, 45.471806649435756 ], [ 9.186189121512838, 45.472994356803653 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.209043908899586, 45.478880777703317 ], [ 9.209692048927257, 45.479312180887291 ], [ 9.209688179131899, 45.479315360248727 ], [ 9.210586188406497, 45.479907603370378 ], [ 9.21084698063131, 45.480081271672979 ], [ 9.211299820935441, 45.480382924365379 ], [ 9.211299894825979, 45.480382875005631 ], [ 9.211482117723513, 45.48050421893808 ], [ 9.211486189810588, 45.480501140687679 ], [ 9.211644650016238, 45.480605640762974 ], [ 9.21263548557574, 45.479747984600735 ], [ 9.213436984793162, 45.479053519741235 ], [ 9.212324541364376, 45.478023687859071 ], [ 9.211831326775865, 45.477510328028295 ], [ 9.210724498778934, 45.478053769119242 ], [ 9.210532397447603, 45.478148260741051 ], [ 9.209043908899586, 45.478880777703317 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.146875020351018, 45.484633411970414 ], [ 9.147002318872644, 45.485599432623495 ], [ 9.147054705909312, 45.485996636164913 ], [ 9.147200544379643, 45.487102271430949 ], [ 9.150031016458986, 45.486919578767925 ], [ 9.149704927273957, 45.484449859613655 ], [ 9.146875020351018, 45.484633411970414 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.163672381214051, 45.486495762784394 ], [ 9.163773224295008, 45.488437155981515 ], [ 9.166751078677827, 45.488360618972543 ], [ 9.166650147869506, 45.486419228143056 ], [ 9.163672381214051, 45.486495762784394 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.201685817072866, 45.512561795251173 ], [ 9.202159580663848, 45.513402841638872 ], [ 9.20212315322385, 45.5134139993228 ], [ 9.202643889436834, 45.51425242575791 ], [ 9.203161700624836, 45.515170656504715 ], [ 9.205925640964772, 45.514348895311691 ], [ 9.205748823140716, 45.514044396518003 ], [ 9.205771466466459, 45.51403828524532 ], [ 9.204662480576374, 45.512072489550626 ], [ 9.204632821631041, 45.51208192690148 ], [ 9.204460145901452, 45.511775940494566 ], [ 9.201685817072866, 45.512561795251173 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.185600430602561, 45.493433977588907 ], [ 9.186447627147659, 45.493697325824897 ], [ 9.186035290181948, 45.494282590246662 ], [ 9.185635445030451, 45.494849838356672 ], [ 9.187572042785799, 45.496386236248298 ], [ 9.187870147159099, 45.495964531722869 ], [ 9.187918390903803, 45.495981220755986 ], [ 9.189116456511098, 45.494279918495934 ], [ 9.189070114288208, 45.494263829405767 ], [ 9.189128140082985, 45.494181429357347 ], [ 9.188618094555862, 45.494005092507329 ], [ 9.189650500864481, 45.492372783546415 ], [ 9.186887865486813, 45.491503318669118 ], [ 9.186730987620784, 45.491751320432165 ], [ 9.186675865384643, 45.491734234727929 ], [ 9.185600430602561, 45.493433977588907 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.187408939135093, 45.466479549851698 ], [ 9.187692021729736, 45.46674654380395 ], [ 9.186544695008992, 45.467330361900224 ], [ 9.186811725414396, 45.467559539571774 ], [ 9.18667388770149, 45.46761526430052 ], [ 9.187654148466873, 45.468488976768683 ], [ 9.188448397016488, 45.469194456010285 ], [ 9.188519909064798, 45.469156263061478 ], [ 9.188700227215458, 45.469300736178958 ], [ 9.188783797971801, 45.469247494880648 ], [ 9.188920552513565, 45.469347679121974 ], [ 9.189884621233883, 45.468701082889424 ], [ 9.190227058994488, 45.469020850281346 ], [ 9.190499376118984, 45.468881312554835 ], [ 9.190769523828097, 45.469108071228405 ], [ 9.191460360541727, 45.469691089940696 ], [ 9.191599567739257, 45.46984334608463 ], [ 9.192046004271967, 45.46957724527973 ], [ 9.192250490471775, 45.46970356688648 ], [ 9.194260595225545, 45.468331400634042 ], [ 9.193575447301139, 45.467965050787555 ], [ 9.193955677040426, 45.467536572663349 ], [ 9.192871430923642, 45.467047495197122 ], [ 9.192843348007685, 45.467034898815406 ], [ 9.192885675457227, 45.466959278408645 ], [ 9.192761616511508, 45.466911607654389 ], [ 9.192998870131923, 45.466562282475486 ], [ 9.190901066941361, 45.465930066661009 ], [ 9.190783711116151, 45.465984791494925 ], [ 9.189818074828537, 45.465120845190761 ], [ 9.189579743746098, 45.465250638682015 ], [ 9.189446127687386, 45.465138191107371 ], [ 9.187408939135093, 45.466479549851698 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.169057907602419, 45.464819926280001 ], [ 9.169308249452362, 45.465471115559929 ], [ 9.168983468383043, 45.465525031407964 ], [ 9.169027147829993, 45.465635782121851 ], [ 9.168979871257593, 45.465645815371168 ], [ 9.16908725998079, 45.465915103154195 ], [ 9.169038925268763, 45.465925614832067 ], [ 9.169721736787306, 45.46767236158621 ], [ 9.169835611428507, 45.467655259507168 ], [ 9.169964605525186, 45.467957395717896 ], [ 9.171227528726689, 45.467811966648775 ], [ 9.172821216733723, 45.467499457624243 ], [ 9.172820848757137, 45.467483879625334 ], [ 9.173161847634139, 45.467421676366435 ], [ 9.173054822271311, 45.467106025835257 ], [ 9.173409961403765, 45.467041872784399 ], [ 9.173341766983434, 45.466839201169819 ], [ 9.173487882427549, 45.46681329635345 ], [ 9.173092814221013, 45.465898606837193 ], [ 9.172700278067643, 45.464831322210912 ], [ 9.172332195502067, 45.464901412529095 ], [ 9.171938870598749, 45.464089685299484 ], [ 9.170746234949183, 45.464341557844484 ], [ 9.170088880916225, 45.464479180448471 ], [ 9.170002702330217, 45.464629437037416 ], [ 9.169695111851336, 45.464691454340681 ], [ 9.169133229577628, 45.464691448778566 ], [ 9.169162635349114, 45.464798811550118 ], [ 9.169057907602419, 45.464819926280001 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.177263244100374, 45.466549590377049 ], [ 9.179974898702467, 45.466554829895038 ], [ 9.180114257554568, 45.465585319678411 ], [ 9.180267103181444, 45.464525116456173 ], [ 9.17743154299305, 45.464308044907895 ], [ 9.17734682067543, 45.465438609685847 ], [ 9.177342688790329, 45.465494519561162 ], [ 9.177339421406922, 45.46553826946073 ], [ 9.177263244100374, 45.466549590377049 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.200179207890221, 45.468996174107538 ], [ 9.200142986115473, 45.469114109539866 ], [ 9.202859318172834, 45.469524527182301 ], [ 9.203500946041627, 45.467437015542139 ], [ 9.200884791103986, 45.467042586975758 ], [ 9.200875572915301, 45.46707224417419 ], [ 9.20075443144702, 45.467053984344055 ], [ 9.200158737802179, 45.468993063227913 ], [ 9.200179207890221, 45.468996174107538 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.175198903950593, 45.469554341572632 ], [ 9.176212317585172, 45.470205779532975 ], [ 9.175961420140002, 45.470395956396402 ], [ 9.178069136133345, 45.471763116130916 ], [ 9.178072330975125, 45.471760700985641 ], [ 9.179632937762436, 45.472803720577289 ], [ 9.179775929309605, 45.472698616501823 ], [ 9.179960117546955, 45.472821715084869 ], [ 9.181769653454685, 45.471488105869739 ], [ 9.183053526209038, 45.471730211928502 ], [ 9.183157438866491, 45.471535706830672 ], [ 9.183523743745432, 45.471549256805325 ], [ 9.18359218691165, 45.471402006452514 ], [ 9.183792576928806, 45.471411090318 ], [ 9.183914680381134, 45.470708174989916 ], [ 9.184293429821729, 45.469893288184743 ], [ 9.184063634814928, 45.469850662354155 ], [ 9.184141793806955, 45.469400700066032 ], [ 9.18252814120155, 45.469337302398408 ], [ 9.181684671446847, 45.469304437532308 ], [ 9.181605689199289, 45.469286483384998 ], [ 9.181330088793716, 45.469103850621472 ], [ 9.181208214208294, 45.46902459360043 ], [ 9.181111062494354, 45.46896128005951 ], [ 9.180915050420923, 45.468831788097525 ], [ 9.180817260943808, 45.468767144989101 ], [ 9.180781959053315, 45.468671419734143 ], [ 9.180439796824739, 45.468352362420198 ], [ 9.179987320943486, 45.468160745493584 ], [ 9.179466783593288, 45.468089171566696 ], [ 9.178897637669888, 45.468167649996289 ], [ 9.178415502669662, 45.468397681328256 ], [ 9.178141075284143, 45.468700450140702 ], [ 9.177141575261984, 45.468057557305904 ], [ 9.175314620814273, 45.469455191876264 ], [ 9.175322111488788, 45.469460009289946 ], [ 9.175198903950593, 45.469554341572632 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.194289227945806, 45.468663841766954 ], [ 9.194536287861201, 45.468805682690054 ], [ 9.193351336435491, 45.469806282969444 ], [ 9.195291699660986, 45.471062908800995 ], [ 9.19541381780456, 45.470955413859841 ], [ 9.195497104195873, 45.471000490651107 ], [ 9.196660317401202, 45.470025069325587 ], [ 9.196747474517633, 45.470075103482799 ], [ 9.197012372264883, 45.469729842042703 ], [ 9.197202710780045, 45.469570225628679 ], [ 9.197172789564318, 45.469552157021894 ], [ 9.197773783913302, 45.468919474431516 ], [ 9.198475557446343, 45.468133360184765 ], [ 9.195875873874595, 45.466841872690885 ], [ 9.195714740140934, 45.467335084192833 ], [ 9.194971006484177, 45.46805660664549 ], [ 9.194289227945806, 45.468663841766954 ] ] ] } }
]
}

View file

@ -0,0 +1,34 @@
{
"type": "FeatureCollection",
"name": "ospedali_cliniche_buffer",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.209690557934129, 45.416373588500278 ], [ 9.2105139927293, 45.412830573059431 ], [ 9.207948010425339, 45.412717836650181 ], [ 9.205774519228093, 45.412512226555641 ], [ 9.204963486057052, 45.415847830859839 ], [ 9.209690557934129, 45.416373588500278 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.1575070013947, 45.433383663943118 ], [ 9.157399233965476, 45.433387980003921 ], [ 9.15754079091648, 45.434473913978465 ], [ 9.157615702409799, 45.435049400517258 ], [ 9.157653241148591, 45.43557177286597 ], [ 9.157853350622043, 45.43556019370542 ], [ 9.157898291493085, 45.435850607246465 ], [ 9.159764801272535, 45.436252811453393 ], [ 9.159799602418737, 45.436224324402247 ], [ 9.159948939916029, 45.436318884590911 ], [ 9.161928167780015, 45.434752757914438 ], [ 9.161865636624828, 45.434717367409746 ], [ 9.162028851054615, 45.434582260898353 ], [ 9.162005075642739, 45.434568483582062 ], [ 9.162272812095461, 45.43434740854704 ], [ 9.16225070200279, 45.43433398462286 ], [ 9.162275520726959, 45.434332507300681 ], [ 9.16204258558458, 45.432416227863243 ], [ 9.161461907913298, 45.432450802402677 ], [ 9.160475284040258, 45.432497284526093 ], [ 9.159505741806711, 45.431938966324537 ], [ 9.157919729946071, 45.433224430663458 ], [ 9.157495847809219, 45.433249695660379 ], [ 9.1575070013947, 45.433383663943118 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.216641771985387, 45.442760824734691 ], [ 9.216595040640195, 45.442825573611898 ], [ 9.217202442694315, 45.443042946515625 ], [ 9.218459814989426, 45.443675618631154 ], [ 9.21997189838379, 45.443030180271947 ], [ 9.219822336919121, 45.441882356827321 ], [ 9.219017065775143, 45.44160597783312 ], [ 9.217781779210624, 45.441181229448745 ], [ 9.217142433623041, 45.442067119686335 ], [ 9.216139180217279, 45.442507922728957 ], [ 9.216641771985387, 45.442760824734691 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.260006773904761, 45.444096646546399 ], [ 9.259712847159909, 45.444381077851808 ], [ 9.260368566542173, 45.444637048918416 ], [ 9.260308073721008, 45.445089792082861 ], [ 9.2616100965665, 45.44526054282619 ], [ 9.261630240812055, 45.44526320850423 ], [ 9.262440649350815, 45.445699364966458 ], [ 9.262721517217084, 45.445432125474888 ], [ 9.262734411452483, 45.445439450758919 ], [ 9.262761905409906, 45.445412955005281 ], [ 9.262957459788879, 45.445438830345275 ], [ 9.263020873327783, 45.445163387709705 ], [ 9.263551364187764, 45.444652145129318 ], [ 9.264261350952999, 45.4439655029622 ], [ 9.26426077797737, 45.443965130871113 ], [ 9.264464459751235, 45.44377612334462 ], [ 9.264394819561261, 45.443735830848574 ], [ 9.264484933575615, 45.443650736316393 ], [ 9.264318547760345, 45.443546990611608 ], [ 9.264362034980627, 45.443492719159352 ], [ 9.26374803921208, 45.443153159918744 ], [ 9.263751833728124, 45.443147835308075 ], [ 9.263664225429139, 45.443106807649272 ], [ 9.262561253060262, 45.442496808331292 ], [ 9.262481701364878, 45.442553009840822 ], [ 9.261915454332826, 45.442287817718203 ], [ 9.261416594577689, 45.442622102011285 ], [ 9.26136835077933, 45.442606621312578 ], [ 9.261239092096696, 45.442741044364617 ], [ 9.259616706484318, 45.443828150154403 ], [ 9.260029378601841, 45.443999052366294 ], [ 9.259957306392005, 45.444073999690083 ], [ 9.260006773904761, 45.444096646546399 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.217192641616686, 45.467496046827634 ], [ 9.220936178015384, 45.467530469310994 ], [ 9.220977584511113, 45.465313070248968 ], [ 9.22073490312455, 45.465310872286985 ], [ 9.220737293097185, 45.465182256270715 ], [ 9.219266441540569, 45.465168482098399 ], [ 9.218947115075835, 45.465165581773157 ], [ 9.217532343228894, 45.465151950272592 ], [ 9.217529828024036, 45.465290922268146 ], [ 9.217233827752683, 45.465288223507734 ], [ 9.217192641616686, 45.467496046827634 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.169838134415816, 45.462849387284578 ], [ 9.16939808666428, 45.462981785479705 ], [ 9.170878064607608, 45.465299164149634 ], [ 9.172228094555607, 45.464899392817095 ], [ 9.172791436242127, 45.464730399764463 ], [ 9.17294449291057, 45.464684421875859 ], [ 9.172968434253285, 45.464677200451177 ], [ 9.173164946726251, 45.464618286294446 ], [ 9.174386959123643, 45.464251959064221 ], [ 9.174360783015153, 45.464208979117821 ], [ 9.174401221544468, 45.464196917921768 ], [ 9.174293311847476, 45.464019957254877 ], [ 9.174379252738573, 45.463994207426765 ], [ 9.173211745603439, 45.462084756198692 ], [ 9.173096064877019, 45.462119417735863 ], [ 9.172842411286332, 45.461703546835039 ], [ 9.169711654073984, 45.462641885459689 ], [ 9.169838134415816, 45.462849387284578 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.112157419511691, 45.465022623306417 ], [ 9.109702058228505, 45.469806331053313 ], [ 9.112374519792954, 45.470503122160487 ], [ 9.114656521899949, 45.471097988457636 ], [ 9.115886166824582, 45.470601834040814 ], [ 9.116081089216697, 45.470511187456779 ], [ 9.116530155830169, 45.47031822475892 ], [ 9.116708250857222, 45.470065031804978 ], [ 9.117491323483165, 45.47010582051486 ], [ 9.118826427632861, 45.467297310086209 ], [ 9.118695426426772, 45.466725805612541 ], [ 9.118410664935414, 45.466465858148219 ], [ 9.118135651072659, 45.466224486874289 ], [ 9.117641024941715, 45.466063502971032 ], [ 9.112157419511691, 45.465022623306417 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.118420406305763, 45.459240569158922 ], [ 9.11910720443093, 45.45940906677064 ], [ 9.119031155061869, 45.459553983808171 ], [ 9.119966534068398, 45.459799889757889 ], [ 9.118807620169648, 45.462014739269172 ], [ 9.124765209939094, 45.463275800604826 ], [ 9.127742167941649, 45.458197674527554 ], [ 9.121629028719671, 45.456622301472166 ], [ 9.121219168040534, 45.457405719027925 ], [ 9.120980447886431, 45.457361299996066 ], [ 9.12041157642642, 45.457212304258483 ], [ 9.120379039148084, 45.457249392409658 ], [ 9.119207977636744, 45.457031475885991 ], [ 9.118420406305763, 45.459240569158922 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.196558635479077, 45.454222522466402 ], [ 9.197274640374328, 45.454459850420697 ], [ 9.198957475752417, 45.452922945262941 ], [ 9.196796876681665, 45.4517514823185 ], [ 9.195076878911443, 45.453350621699222 ], [ 9.194360763264685, 45.453183187579853 ], [ 9.194299698470241, 45.453232944450299 ], [ 9.19349738888166, 45.453075077848204 ], [ 9.193410629950998, 45.453392054903318 ], [ 9.193124501081062, 45.453423310872097 ], [ 9.192718738295877, 45.453839874389566 ], [ 9.192244564126378, 45.454383202214792 ], [ 9.191443606720828, 45.455252904542874 ], [ 9.192744509514924, 45.455842646350753 ], [ 9.192938005765154, 45.455930415388316 ], [ 9.193353007031673, 45.456082064069797 ], [ 9.195263580771, 45.456155642689581 ], [ 9.194721905050988, 45.456560040807382 ], [ 9.194670937964178, 45.456620614692994 ], [ 9.194166944425854, 45.456786972416992 ], [ 9.192833687886077, 45.457579274846204 ], [ 9.193570113399391, 45.458240575012091 ], [ 9.192955073311559, 45.458526812681768 ], [ 9.19465182907185, 45.460352481552562 ], [ 9.197921080437105, 45.460558168254003 ], [ 9.197988306379942, 45.460076488500931 ], [ 9.198510732848534, 45.459962069384083 ], [ 9.199869572614428, 45.460062194572018 ], [ 9.199902019192683, 45.459849466104139 ], [ 9.201306773255164, 45.459955809227928 ], [ 9.201373794365562, 45.459633337388013 ], [ 9.201563708714383, 45.459651084203401 ], [ 9.201682220369227, 45.458660582136297 ], [ 9.20183037704763, 45.458022204748751 ], [ 9.20171962884119, 45.457695914435028 ], [ 9.202027925898726, 45.456671138291426 ], [ 9.200439746416562, 45.45643914951787 ], [ 9.200471494916437, 45.456230787785529 ], [ 9.199826713153415, 45.456127994917665 ], [ 9.199902956347044, 45.455858786507385 ], [ 9.196197811519278, 45.455241761405873 ], [ 9.1962888022712, 45.45498493113692 ], [ 9.196397034772405, 45.454632554378215 ], [ 9.196402147894222, 45.454559243561718 ], [ 9.196558635479077, 45.454222522466402 ] ], [ [ 9.195598061559496, 45.455817274158534 ], [ 9.195737288774183, 45.455827044904595 ], [ 9.19567694446037, 45.456038659382145 ], [ 9.19555427484198, 45.456026029475531 ], [ 9.195598061559496, 45.455817274158534 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.160463815393623, 45.458382241363175 ], [ 9.160234071531884, 45.458703292823003 ], [ 9.160020268621532, 45.459001031467459 ], [ 9.159268075757511, 45.460049198053362 ], [ 9.161660183622574, 45.460795290421345 ], [ 9.162453432817852, 45.460396232101687 ], [ 9.16282947615804, 45.460228504622734 ], [ 9.164074974087281, 45.459735405140478 ], [ 9.163497100609872, 45.457842872427342 ], [ 9.161331855593451, 45.457139685746156 ], [ 9.160966516356121, 45.457696786868603 ], [ 9.160957282783913, 45.457692640251622 ], [ 9.16053840708426, 45.458278003651223 ], [ 9.160522274218758, 45.458297128404745 ], [ 9.160463815393623, 45.458382241363175 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.201226007236762, 45.460756786708046 ], [ 9.2046558171618, 45.460984210802515 ], [ 9.206796004430307, 45.460386930028712 ], [ 9.206118792499222, 45.459871615146923 ], [ 9.207233285265987, 45.459536925187713 ], [ 9.205761356956002, 45.457644922028003 ], [ 9.205071665684057, 45.457538693677364 ], [ 9.204570250636289, 45.457482045833345 ], [ 9.203099288107428, 45.457317841917629 ], [ 9.202393129516437, 45.457210487665705 ], [ 9.201881950140166, 45.458761993257369 ], [ 9.201813989825403, 45.458968866580115 ], [ 9.201787321006558, 45.459049966318901 ], [ 9.201226007236762, 45.460756786708046 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.229799595249101, 45.473635986078143 ], [ 9.229268811698644, 45.473976660530049 ], [ 9.228981213838805, 45.474341792155499 ], [ 9.228966181463468, 45.475267946298182 ], [ 9.228974517291451, 45.476220672674764 ], [ 9.228964802983347, 45.476220595836566 ], [ 9.228917432682961, 45.47832577823381 ], [ 9.229580520170895, 45.47833423353859 ], [ 9.229566378795468, 45.47877517525702 ], [ 9.232351559418854, 45.478849872771363 ], [ 9.232368039794718, 45.477400610658357 ], [ 9.232375096102254, 45.476789099681106 ], [ 9.233741876389429, 45.47679784370488 ], [ 9.233768822614762, 45.474737891267232 ], [ 9.23378411034509, 45.473563894055069 ], [ 9.232481607488118, 45.473488445264259 ], [ 9.232294643573827, 45.473486874554155 ], [ 9.232219599691263, 45.473486181534064 ], [ 9.232195450633476, 45.473485972147756 ], [ 9.232173481457902, 45.473485781937818 ], [ 9.230277046975838, 45.473466987290863 ], [ 9.229799595249101, 45.473635986078143 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.188717878552751, 45.478994338746247 ], [ 9.18766611434263, 45.479512108064952 ], [ 9.188916868997262, 45.480210676737322 ], [ 9.189526810718887, 45.480804481543466 ], [ 9.191337264653891, 45.480556408769459 ], [ 9.192684984819989, 45.480404856730132 ], [ 9.19272678045826, 45.480203864563819 ], [ 9.192886022072306, 45.480139974741434 ], [ 9.19348327748987, 45.47968999808468 ], [ 9.19357250065384, 45.479258707245528 ], [ 9.193497242244684, 45.478893272054918 ], [ 9.193487427414588, 45.478845293692487 ], [ 9.19333066143183, 45.478083367707683 ], [ 9.193322714831735, 45.478044845530306 ], [ 9.193272586732226, 45.477801421185163 ], [ 9.193082996140788, 45.476876865496067 ], [ 9.191409146419614, 45.47701189054176 ], [ 9.190800225156448, 45.477101564157834 ], [ 9.188825866075865, 45.477286103097939 ], [ 9.188796365243169, 45.47809001235683 ], [ 9.188782673065523, 45.478165182165469 ], [ 9.188777002937069, 45.478237101344362 ], [ 9.188773866692182, 45.478277631733327 ], [ 9.188756783194858, 45.478496057538024 ], [ 9.188717878552751, 45.478994338746247 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.188164408502177, 45.496475769523791 ], [ 9.191869368005943, 45.495448914733757 ], [ 9.190617246989417, 45.493100935835841 ], [ 9.186855864635014, 45.494075879721059 ], [ 9.188164408502177, 45.496475769523791 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.191643447663669, 45.495988697707539 ], [ 9.192302788432938, 45.497238911098023 ], [ 9.192836557880499, 45.498205849249466 ], [ 9.196406274075425, 45.497236298233659 ], [ 9.195873092243177, 45.496271283592584 ], [ 9.195696642985519, 45.495955025891703 ], [ 9.195694781989907, 45.495951287420802 ], [ 9.195226045199519, 45.495030306747701 ], [ 9.193890827864125, 45.495363818118776 ], [ 9.191643447663669, 45.495988697707539 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.236260464176956, 45.501841354654104 ], [ 9.237272967729266, 45.502751139703797 ], [ 9.239364529788208, 45.501399040987884 ], [ 9.237529741142762, 45.50000670126343 ], [ 9.23713505728835, 45.500259536392747 ], [ 9.235672992406162, 45.501127970302768 ], [ 9.236260464176956, 45.501841354654104 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.262251791454389, 45.50251300866158 ], [ 9.2615775676596, 45.507841475403659 ], [ 9.263474093020635, 45.50810103594435 ], [ 9.264637433550707, 45.50827685748812 ], [ 9.264471146238801, 45.508759432424043 ], [ 9.265304046432647, 45.509436133124041 ], [ 9.26744429543866, 45.509767825712196 ], [ 9.268018704916354, 45.508988762514541 ], [ 9.268417096419343, 45.508448215363593 ], [ 9.268565381026436, 45.50845310511572 ], [ 9.268832498673486, 45.50754693084734 ], [ 9.268925444923243, 45.507301659244717 ], [ 9.268908398623248, 45.507289441215619 ], [ 9.268973007853875, 45.507070253323697 ], [ 9.26902069853873, 45.507015942143987 ], [ 9.269119001485643, 45.50650376209709 ], [ 9.269147652492162, 45.506381441502619 ], [ 9.269174690012569, 45.5062131374941 ], [ 9.26920170871575, 45.505862597215184 ], [ 9.269175167212374, 45.505797135326155 ], [ 9.269258194796521, 45.50564274370015 ], [ 9.26874468512035, 45.504751227145228 ], [ 9.268148938668563, 45.504569993744745 ], [ 9.268150864073299, 45.504068943899945 ], [ 9.267531041600785, 45.503392828318766 ], [ 9.262251791454389, 45.50251300866158 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.218540548138069, 45.507474750400817 ], [ 9.218279187526552, 45.507966232921468 ], [ 9.218589333161406, 45.508047632146287 ], [ 9.21864344505482, 45.508683053254153 ], [ 9.222195028960543, 45.50862832184589 ], [ 9.222184388544193, 45.508401663226842 ], [ 9.222444820869768, 45.508395853651052 ], [ 9.222396028859368, 45.506230609002522 ], [ 9.220074477866566, 45.506275860063717 ], [ 9.220010909497681, 45.506323618458218 ], [ 9.219443246214885, 45.506153452645485 ], [ 9.219386727567112, 45.506240426960566 ], [ 9.219220822514794, 45.50619546738502 ], [ 9.218972103937205, 45.506663199757448 ], [ 9.218471549332993, 45.50666447812474 ], [ 9.218540548138069, 45.507474750400817 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.180713847019801, 45.508006261462711 ], [ 9.180563285737927, 45.508185615658967 ], [ 9.18062543043065, 45.508548974743263 ], [ 9.180682930172713, 45.508883199958028 ], [ 9.180783637396457, 45.509467918318762 ], [ 9.180846421984596, 45.509832434943455 ], [ 9.180894396613793, 45.510120620268523 ], [ 9.181285375026258, 45.512448203520776 ], [ 9.181363769695626, 45.512917370420091 ], [ 9.183445595852589, 45.513820592502427 ], [ 9.184053991683317, 45.514084337494516 ], [ 9.184685289759434, 45.51391879959197 ], [ 9.184958989452971, 45.513847106396085 ], [ 9.185241082051201, 45.513767770627247 ], [ 9.185344203854823, 45.513745387853135 ], [ 9.189852763295093, 45.512616863652887 ], [ 9.191303371812484, 45.512253835865927 ], [ 9.191992920889133, 45.511323482348153 ], [ 9.190800630415209, 45.508910993632703 ], [ 9.190788257378246, 45.508885371173918 ], [ 9.190660643429055, 45.508619977914648 ], [ 9.19064908793726, 45.508595936109373 ], [ 9.190479946316554, 45.508239335483736 ], [ 9.19025368011823, 45.507748963258997 ], [ 9.190195387362975, 45.507631553656104 ], [ 9.190149316230597, 45.507534819831001 ], [ 9.190138707502424, 45.507513050862642 ], [ 9.189987385561626, 45.507201631041561 ], [ 9.189474295770454, 45.506145398001237 ], [ 9.188773023897452, 45.505905160859989 ], [ 9.188229997429008, 45.505690922074272 ], [ 9.186905785786459, 45.506031441934674 ], [ 9.186768180451491, 45.50606399954323 ], [ 9.186651218120572, 45.506093137163816 ], [ 9.184001858610635, 45.506734419084914 ], [ 9.181215213938421, 45.507408958475146 ], [ 9.180713827467171, 45.508006102004892 ], [ 9.180713847019801, 45.508006261462711 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.119573671509412, 45.516623207968479 ], [ 9.119140317322985, 45.516938580248969 ], [ 9.119017724159937, 45.517049429791385 ], [ 9.117468141761062, 45.518450893821075 ], [ 9.118296520630146, 45.519153720046262 ], [ 9.118534321742871, 45.521200636031388 ], [ 9.122077816283889, 45.521685965403506 ], [ 9.122099406289044, 45.523514192846356 ], [ 9.126115225921287, 45.523687668398694 ], [ 9.128545653174099, 45.521751776723754 ], [ 9.127946594425264, 45.521381510963266 ], [ 9.127909500240165, 45.521194033071076 ], [ 9.129757276731283, 45.519513347463466 ], [ 9.125678709789016, 45.517534132859801 ], [ 9.124976834070575, 45.517154888179086 ], [ 9.124720900236335, 45.516937796001116 ], [ 9.124374323646036, 45.51642982089291 ], [ 9.123489370967057, 45.515919713134082 ], [ 9.12238094299031, 45.515484808446075 ], [ 9.121251596282208, 45.515547652346577 ], [ 9.119573671509412, 45.516623207968479 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.171972505923907, 45.522796670188626 ], [ 9.171522092556836, 45.52314216030215 ], [ 9.174071371319515, 45.524812535578079 ], [ 9.176382344329168, 45.523062333510026 ], [ 9.173776556555133, 45.521366648399038 ], [ 9.171887685431029, 45.522740355882981 ], [ 9.171972505923907, 45.522796670188626 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.210651690629524, 45.524102157914783 ], [ 9.210487583340083, 45.52414313737701 ], [ 9.211672196855469, 45.526346474791168 ], [ 9.211795323031772, 45.526317295504164 ], [ 9.211820834605644, 45.526368683616759 ], [ 9.211876523878361, 45.526355122737826 ], [ 9.212090760716402, 45.526724951575794 ], [ 9.212454065640294, 45.526649509979912 ], [ 9.212611227557389, 45.526845272590059 ], [ 9.213792938560996, 45.526525428996855 ], [ 9.215116535443988, 45.526167573750804 ], [ 9.215020014395616, 45.525979494794228 ], [ 9.215274508484205, 45.525904756586549 ], [ 9.215051659606331, 45.525501270203954 ], [ 9.215086755825887, 45.525491322311751 ], [ 9.21502645146778, 45.525381635762592 ], [ 9.215143850360459, 45.525339630903751 ], [ 9.213926369728721, 45.523225176353733 ], [ 9.213757005598552, 45.523271946917021 ], [ 9.21370520098003, 45.523181147600468 ], [ 9.212565557919545, 45.523507767877653 ], [ 9.210629256122935, 45.524060990309309 ], [ 9.210651690629524, 45.524102157914783 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.227345184628776, 45.500896305922645 ], [ 9.232889175018475, 45.501825339683151 ], [ 9.233833039993067, 45.498161240088145 ], [ 9.229188392115848, 45.497566129049304 ], [ 9.228835345054231, 45.497832135641616 ], [ 9.228219094493408, 45.497951415996312 ], [ 9.227928830225611, 45.499008645256303 ], [ 9.227345184628776, 45.500896305922645 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.118004960396242, 45.499417134757664 ], [ 9.118730648968121, 45.500323776273923 ], [ 9.118763969735697, 45.500367025706709 ], [ 9.118857326736912, 45.500480065366787 ], [ 9.119885318684089, 45.501805763361119 ], [ 9.120743474689236, 45.500967815034294 ], [ 9.121453888221424, 45.501077001946953 ], [ 9.122221597899898, 45.498545429582293 ], [ 9.120226126757995, 45.498522841302574 ], [ 9.118004960396242, 45.499417134757664 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.151116354991098, 45.48455541583764 ], [ 9.153322264168553, 45.485981858656075 ], [ 9.154358374382815, 45.48519593163229 ], [ 9.155360662349535, 45.484435579964241 ], [ 9.154296371608373, 45.483748111920683 ], [ 9.153151680520391, 45.483007783652951 ], [ 9.15230703519576, 45.483650194441843 ], [ 9.151116354991098, 45.48455541583764 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.167274419462437, 45.484235431568294 ], [ 9.167203589295317, 45.484199603920665 ], [ 9.16715656453141, 45.484179551682253 ], [ 9.165863652114179, 45.483575912242081 ], [ 9.165551689349318, 45.483903217961384 ], [ 9.165544904795487, 45.483898744892677 ], [ 9.164626022092387, 45.48457384543488 ], [ 9.163591407090944, 45.485365688928049 ], [ 9.164770730894414, 45.486141774535064 ], [ 9.164989739891265, 45.486278055779998 ], [ 9.165046567942129, 45.486319161925223 ], [ 9.165831528296355, 45.486825241428448 ], [ 9.165872835740318, 45.486854177567707 ], [ 9.16595880217041, 45.486914288563206 ], [ 9.167393626944198, 45.487834280414127 ], [ 9.169328912330087, 45.486417822040508 ], [ 9.16876831496327, 45.485155429734476 ], [ 9.168626217928788, 45.484820734798674 ], [ 9.16758349975013, 45.484114775023421 ], [ 9.167274419462437, 45.484235431568294 ] ] ] } },
{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.22664142786679, 45.485817598646655 ], [ 9.226979320559471, 45.485817096048017 ], [ 9.226973583945529, 45.483843136680917 ], [ 9.224244361382773, 45.483847961398808 ], [ 9.22424511503811, 45.484077525130061 ], [ 9.223482646725705, 45.484076655054466 ], [ 9.223465430662744, 45.4863733922489 ], [ 9.223485039969859, 45.486373392421534 ], [ 9.223484694441346, 45.486411647829236 ], [ 9.226226992065286, 45.486424768831043 ], [ 9.226227561152985, 45.486385691558937 ], [ 9.226528160677656, 45.486386212048174 ], [ 9.226528359614504, 45.48634934703405 ], [ 9.226634321238098, 45.486349533239078 ], [ 9.22664142786679, 45.485817598646655 ] ] ] } }
]
}

62
layers/parchi_buffer.json Normal file

File diff suppressed because one or more lines are too long

225
layers/scuole_buffer.json Normal file

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,36 @@
{
"type": "FeatureCollection",
"name": "stazioni_ferrovie_buffer",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.238350448879833, 45.432352491445592 ], [ 9.238299338031117, 45.432343089824947 ], [ 9.237207322673372, 45.432849567871536 ], [ 9.237121589334926, 45.433172263458452 ], [ 9.237030741161643, 45.433204654707154 ], [ 9.236722964946569, 45.434049198916242 ], [ 9.236864684908028, 45.434184434629401 ], [ 9.236857486886059, 45.434217606344227 ], [ 9.237050830640159, 45.434362062202183 ], [ 9.237402887662338, 45.43469800494703 ], [ 9.237528604066421, 45.434719023735042 ], [ 9.237572489246428, 45.434751811587432 ], [ 9.238058668885271, 45.434827419164236 ], [ 9.238720829624798, 45.434930166563746 ], [ 9.239655012320142, 45.434532505438753 ], [ 9.239736749437718, 45.434244327607082 ], [ 9.239936434914899, 45.433634671915854 ], [ 9.239935930226403, 45.433634123887423 ], [ 9.239945336740639, 45.43360543681267 ], [ 9.240050427910246, 45.43330645756371 ], [ 9.240045340616824, 45.43330045284852 ], [ 9.240093192829987, 45.433154515737385 ], [ 9.239052693915067, 45.43203866100761 ], [ 9.238350448879833, 45.432352491445592 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.132033474584057, 45.442077936742201 ], [ 9.12923371310532, 45.441279213703687 ], [ 9.128205432844608, 45.443050358337779 ], [ 9.131007313306808, 45.443850154337852 ], [ 9.132033474584057, 45.442077936742201 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.211663313811668, 45.446757916095962 ], [ 9.211745912893987, 45.446761924155219 ], [ 9.211743301365784, 45.446787661135659 ], [ 9.21440855612547, 45.446877967982495 ], [ 9.214601891628194, 45.444953313718244 ], [ 9.213084458771931, 45.444904327135376 ], [ 9.211878404993014, 45.444997977512848 ], [ 9.211663313811668, 45.446757916095962 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.167890196210271, 45.452280136786946 ], [ 9.167823789071564, 45.452292898836909 ], [ 9.168795388986466, 45.454780280392264 ], [ 9.170164092641347, 45.454517266968352 ], [ 9.170202013969213, 45.454510015853586 ], [ 9.171449099374859, 45.454270676485145 ], [ 9.171342272612648, 45.453996875593987 ], [ 9.171342603932827, 45.453996811955179 ], [ 9.171190385311641, 45.453607260249072 ], [ 9.171199989270185, 45.453605408390459 ], [ 9.170406284152024, 45.451572378793095 ], [ 9.167809087721603, 45.452072608632363 ], [ 9.167890196210271, 45.452280136786946 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.23568114287462, 45.458490974464191 ], [ 9.235737774247182, 45.459306417039741 ], [ 9.238403516551605, 45.459238799994814 ], [ 9.238311143404013, 45.457242707575055 ], [ 9.235569858917115, 45.457307820981882 ], [ 9.235640977876814, 45.45841243935849 ], [ 9.23568114287462, 45.458490974464191 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.172950741122774, 45.468213567601445 ], [ 9.174102366548874, 45.469020806868841 ], [ 9.174165865717425, 45.469059429924975 ], [ 9.17421693543432, 45.469094791912561 ], [ 9.174301400843834, 45.469149044727146 ], [ 9.174359490599363, 45.469186010143353 ], [ 9.174430720139169, 45.469232610469447 ], [ 9.174497002007488, 45.469273076514661 ], [ 9.174571575283, 45.469323122281786 ], [ 9.174630447113557, 45.469356913503184 ], [ 9.175635879848839, 45.47020751124181 ], [ 9.176750028185273, 45.46919764599312 ], [ 9.17685185848341, 45.469137030968753 ], [ 9.177973806606312, 45.468498224446229 ], [ 9.176937472453215, 45.467741578911806 ], [ 9.176761412655635, 45.467606452598901 ], [ 9.176492539297682, 45.467423089015242 ], [ 9.175630746307085, 45.466991848070464 ], [ 9.174748228934233, 45.46733629081136 ], [ 9.173132455177241, 45.468041240545112 ], [ 9.173212672329891, 45.468091011535492 ], [ 9.172950741122774, 45.468213567601445 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.220328680324327, 45.460599049702651 ], [ 9.227490347181108, 45.460572762159863 ], [ 9.227483855527598, 45.459634593620208 ], [ 9.227484893763849, 45.459520292594441 ], [ 9.227485405700282, 45.459482644785346 ], [ 9.227486244200705, 45.459345146881084 ], [ 9.227478777309736, 45.458375791742505 ], [ 9.220312119772512, 45.458402070920819 ], [ 9.220328680324327, 45.460599049702651 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.252468371693329, 45.472091252076616 ], [ 9.252733551345665, 45.473941559009809 ], [ 9.255428726190376, 45.4737005833952 ], [ 9.255166764093149, 45.471848430230722 ], [ 9.252468371693329, 45.472091252076616 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.162364282549568, 45.482458248647099 ], [ 9.164423203904718, 45.480557214417622 ], [ 9.163276167469885, 45.479931645952256 ], [ 9.162106025823146, 45.479294156368994 ], [ 9.160026881065344, 45.481211055428069 ], [ 9.161201961122389, 45.481838190604954 ], [ 9.162364282549568, 45.482458248647099 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.189625974918345, 45.485054544327305 ], [ 9.188474030154257, 45.483771800984343 ], [ 9.187568518384683, 45.482763973957383 ], [ 9.186204100108943, 45.483366284364621 ], [ 9.186156043127005, 45.483387477084094 ], [ 9.185975266562595, 45.483467210433574 ], [ 9.184793912185864, 45.483988899685279 ], [ 9.185564834056956, 45.484847749799236 ], [ 9.185586925192222, 45.484872281552853 ], [ 9.185607975168947, 45.484895746015319 ], [ 9.185649432689893, 45.484942014372479 ], [ 9.185675247146598, 45.484970718743121 ], [ 9.185700079871323, 45.484998344487273 ], [ 9.185741102590072, 45.485043926498506 ], [ 9.185771311555019, 45.485077655009604 ], [ 9.185793243953375, 45.485102072817618 ], [ 9.185838131305385, 45.485152081915828 ], [ 9.185866121946395, 45.485183184280537 ], [ 9.185891096853064, 45.48521101124264 ], [ 9.185934847713714, 45.485259702970602 ], [ 9.185987912075371, 45.485318753286947 ], [ 9.186850650336254, 45.486279836685547 ], [ 9.188344019231451, 45.485620591370299 ], [ 9.189625974918345, 45.485054544327305 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.235039581007715, 45.485226159081016 ], [ 9.235206426354956, 45.485287882675344 ], [ 9.235015366991608, 45.485524151151225 ], [ 9.235178862612745, 45.485589589293461 ], [ 9.23517278575121, 45.485597203036384 ], [ 9.235295029270812, 45.48564493833149 ], [ 9.234987198950105, 45.486003571772947 ], [ 9.236173391278145, 45.48652362321711 ], [ 9.236564434244723, 45.486699837314205 ], [ 9.237530844712907, 45.487177949027206 ], [ 9.237692516645499, 45.487012171899934 ], [ 9.237996489641306, 45.48712904588718 ], [ 9.238734003970054, 45.486194893906699 ], [ 9.239854753401781, 45.484775204924212 ], [ 9.239529860837649, 45.484645599808644 ], [ 9.239586424616698, 45.484549540271836 ], [ 9.239499115101133, 45.484522990322553 ], [ 9.239502185985064, 45.484518263281053 ], [ 9.239098182401028, 45.484394052583653 ], [ 9.239108308588614, 45.484380134803182 ], [ 9.238032946379755, 45.484048435741457 ], [ 9.237273743870388, 45.4837455547327 ], [ 9.237256086779174, 45.483776373083565 ], [ 9.236369219839725, 45.483457151067284 ], [ 9.235039581007715, 45.485226159081016 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.10960049297841, 45.498450680196626 ], [ 9.112163056832433, 45.497306797493778 ], [ 9.11138602453382, 45.49645128116174 ], [ 9.110595112085596, 45.495581433984491 ], [ 9.10803241151357, 45.496726002898271 ], [ 9.10960049297841, 45.498450680196626 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.164873041367537, 45.497195019961282 ], [ 9.167212655151143, 45.496211258559853 ], [ 9.165739224424273, 45.494621594164414 ], [ 9.163275894755753, 45.495674403456256 ], [ 9.164873041367537, 45.497195019961282 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.239028096575147, 45.499589013055108 ], [ 9.241869286554595, 45.501757337335754 ], [ 9.243831888561719, 45.500495270122308 ], [ 9.24098931446262, 45.498326140385345 ], [ 9.239028096575147, 45.499589013055108 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.100524698144804, 45.501961979665346 ], [ 9.101583764253782, 45.502488510910332 ], [ 9.102593768737144, 45.501836565723387 ], [ 9.103622005147946, 45.501189581800269 ], [ 9.101663657401742, 45.499660242025897 ], [ 9.099496377437982, 45.501125765424042 ], [ 9.100524698144804, 45.501961979665346 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.210418516786582, 45.500168585960353 ], [ 9.210339025492425, 45.500174084428558 ], [ 9.210604640722508, 45.502043346292595 ], [ 9.213397649085882, 45.501848802628267 ], [ 9.213129189405008, 45.499960157620585 ], [ 9.210415842289098, 45.50014976491412 ], [ 9.210418516786582, 45.500168585960353 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.202448918579908, 45.498778685297921 ], [ 9.204838082800253, 45.498026190431986 ], [ 9.203754458263532, 45.496334098563317 ], [ 9.2013680757539, 45.497082488489134 ], [ 9.202448918579908, 45.498778685297921 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.09191194045207, 45.506588380728211 ], [ 9.095599693751723, 45.505799213471732 ], [ 9.094696904366229, 45.503727818203444 ], [ 9.090972210174401, 45.504554871394987 ], [ 9.09191194045207, 45.506588380728211 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.127159629763675, 45.507855509847268 ], [ 9.128059437549625, 45.509727972332428 ], [ 9.128237079326055, 45.509686781064332 ], [ 9.128267565113056, 45.50975674450391 ], [ 9.130740457087732, 45.509178339706935 ], [ 9.130721660529797, 45.509128266742607 ], [ 9.130869356276428, 45.509091664790986 ], [ 9.129995550863095, 45.507156711918512 ], [ 9.127159629763675, 45.507855509847268 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.261294179876005, 45.509551646517288 ], [ 9.261036291536554, 45.51044640069172 ], [ 9.259257899748256, 45.510204462482967 ], [ 9.258978649401694, 45.511143193411954 ], [ 9.258685952741503, 45.512173708194375 ], [ 9.260255789465791, 45.512391638351374 ], [ 9.261752009911923, 45.512599398322571 ], [ 9.262040421275721, 45.511815005731549 ], [ 9.262098795943652, 45.511823265808673 ], [ 9.263443940244546, 45.512013954532094 ], [ 9.264002699970796, 45.510075642436199 ], [ 9.26398822994452, 45.510073618822254 ], [ 9.264032446926974, 45.509920120036625 ], [ 9.261391300588592, 45.509544820467291 ], [ 9.261385142671262, 45.509566191146973 ], [ 9.261294179876005, 45.509551646517288 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.134452010546793, 45.506701408210034 ], [ 9.134794533790108, 45.507536286696435 ], [ 9.13578675222198, 45.507850153232091 ], [ 9.137357002246723, 45.507525098803718 ], [ 9.137854284055573, 45.506847930826773 ], [ 9.137517800396994, 45.506055187617548 ], [ 9.13656391593992, 45.505706764180296 ], [ 9.134967370990662, 45.506034488255239 ], [ 9.134452010546793, 45.506701408210034 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.157097399143233, 45.504175226733196 ], [ 9.158445461290015, 45.504349894730879 ], [ 9.158498897601477, 45.504356786821802 ], [ 9.158630101397963, 45.504373874077771 ], [ 9.158678525615777, 45.504379855614992 ], [ 9.158797940758497, 45.504395684124233 ], [ 9.158853677412191, 45.504402555539166 ], [ 9.158978928605213, 45.504418484128706 ], [ 9.159015895902224, 45.504423104623996 ], [ 9.159063264839626, 45.504429725240044 ], [ 9.160361508200545, 45.504610484162811 ], [ 9.16071029366149, 45.503317670176074 ], [ 9.160742761966318, 45.503197229879092 ], [ 9.160746955440173, 45.503180243059283 ], [ 9.161190627499606, 45.501510680763403 ], [ 9.159766246809671, 45.501301971065502 ], [ 9.159633460643448, 45.501285328552179 ], [ 9.159461534134081, 45.501263688153841 ], [ 9.159344196100625, 45.501248980398138 ], [ 9.157923787584894, 45.501085048486061 ], [ 9.157667333856562, 45.502040666716056 ], [ 9.157637196461165, 45.502154074793602 ], [ 9.157476189869628, 45.502756974701228 ], [ 9.157097399143233, 45.504175226733196 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.193568561600552, 45.505043667944285 ], [ 9.196320923957614, 45.504599359118949 ], [ 9.195727301071461, 45.502793877369413 ], [ 9.192974243124135, 45.503239365961385 ], [ 9.193568561600552, 45.505043667944285 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.143757761075554, 45.519541079544581 ], [ 9.143832918410052, 45.519573134816824 ], [ 9.143675033944014, 45.519754991790379 ], [ 9.145909328355497, 45.520708295434915 ], [ 9.147530387246508, 45.518840364583532 ], [ 9.146340689653456, 45.518333440375045 ], [ 9.145221178194683, 45.517854216995893 ], [ 9.143757761075554, 45.519541079544581 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.168201410125613, 45.519471241013079 ], [ 9.166961749282436, 45.519758263558025 ], [ 9.166804172010975, 45.519796677851922 ], [ 9.166777411153966, 45.519803450649007 ], [ 9.166686827053759, 45.519826854408677 ], [ 9.166663148366592, 45.51983295905837 ], [ 9.16662422053847, 45.519842917321014 ], [ 9.166556361197646, 45.519860046830807 ], [ 9.165238267365689, 45.520189857119831 ], [ 9.165727108634544, 45.521149263696834 ], [ 9.165813407542705, 45.521318041987719 ], [ 9.165996559549523, 45.521674525760488 ], [ 9.166782749168092, 45.523196373600683 ], [ 9.168172072131641, 45.52284445005342 ], [ 9.168212640960538, 45.522834228592977 ], [ 9.168298190370839, 45.522813749533384 ], [ 9.168317625484502, 45.522809009345494 ], [ 9.168373334424466, 45.522795466286674 ], [ 9.168400109344542, 45.522789015552277 ], [ 9.169643475605286, 45.522492427413027 ], [ 9.169133678636104, 45.52143629911798 ], [ 9.169061339574027, 45.521285140846551 ], [ 9.169032405799658, 45.521223955808942 ], [ 9.16890451355585, 45.520949686073259 ], [ 9.168886186380748, 45.520910582790066 ], [ 9.168736808341972, 45.520594639962319 ], [ 9.168201410125613, 45.519471241013079 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.213667469085783, 45.514253348987502 ], [ 9.216088173955342, 45.513383404868698 ], [ 9.214697949570162, 45.511486940021605 ], [ 9.212277297250436, 45.512356858644303 ], [ 9.212984296929056, 45.513321425443301 ], [ 9.213667469085783, 45.514253348987502 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.20952288713751, 45.513043722107859 ], [ 9.209449652478041, 45.513064126135355 ], [ 9.209574234139504, 45.513288122905713 ], [ 9.209538935442694, 45.513297859950079 ], [ 9.210031066018983, 45.514109486247861 ], [ 9.210402416595349, 45.514777138913338 ], [ 9.210431031258146, 45.51476909372446 ], [ 9.210574816806565, 45.515006215247929 ], [ 9.210683721741209, 45.514974631323561 ], [ 9.21074194913621, 45.515078876183445 ], [ 9.213170903075989, 45.514423652583112 ], [ 9.213103316120524, 45.514303120355251 ], [ 9.213188420926445, 45.514279668578681 ], [ 9.21318536102342, 45.514274314135896 ], [ 9.21321692418935, 45.514265771985229 ], [ 9.212314929619421, 45.512531594388882 ], [ 9.212301210134498, 45.512535383955168 ], [ 9.2121789058804, 45.512304133045212 ], [ 9.212079751700855, 45.512331753948914 ], [ 9.21207637951319, 45.512325796421152 ], [ 9.212015794891144, 45.512342398982703 ], [ 9.21194127279456, 45.512205279230159 ], [ 9.209529108256367, 45.512917177857524 ], [ 9.209581156598523, 45.513009300856801 ], [ 9.209513869785399, 45.513027722499643 ], [ 9.20952288713751, 45.513043722107859 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.201421003534362, 45.486215442007854 ], [ 9.20139358327682, 45.486228393801362 ], [ 9.201774573790468, 45.486611515630401 ], [ 9.202640767641164, 45.487581808061194 ], [ 9.202684994750436, 45.48755574656866 ], [ 9.202888659516061, 45.487746684885934 ], [ 9.203359252726173, 45.488243334622069 ], [ 9.203398141203888, 45.488224323187701 ], [ 9.204230238589112, 45.489004390833891 ], [ 9.204235926879317, 45.489000882876873 ], [ 9.204247453008081, 45.48901232943355 ], [ 9.206270764060825, 45.487946794945898 ], [ 9.20627224542114, 45.487948240620284 ], [ 9.207413182987214, 45.487397821122102 ], [ 9.20850944651915, 45.486883236003266 ], [ 9.207752417935186, 45.486076329522987 ], [ 9.207768090477813, 45.486068616021917 ], [ 9.207512260892008, 45.485820343494744 ], [ 9.206895119844958, 45.485162513045559 ], [ 9.206853325153098, 45.485180859578868 ], [ 9.206416158308304, 45.484756587782663 ], [ 9.206175154786596, 45.484511046394118 ], [ 9.205423052111099, 45.483744591249298 ], [ 9.204188093678258, 45.484342532694328 ], [ 9.203937985880479, 45.48446947260954 ], [ 9.20362605647475, 45.484627888010245 ], [ 9.203216511451156, 45.484835807944705 ], [ 9.202738586756777, 45.48507836810866 ], [ 9.202559030382155, 45.485169546871433 ], [ 9.202283214224419, 45.485309541347377 ], [ 9.201121434337564, 45.485879855782628 ], [ 9.201421003534362, 45.486215442007854 ] ] ] } },
{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.127009523794266, 45.487923044069113 ], [ 9.12493157412319, 45.489805834029156 ], [ 9.127299172059981, 45.491129121655554 ], [ 9.129426695119676, 45.489216432942705 ], [ 9.127009523794266, 45.487923044069113 ] ] ] } }
]
}

View file

@ -0,0 +1,93 @@
{
"type": "FeatureCollection",
"name": "stazioni_metro",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.257512240271762, 45.429203530010305 ], [ 9.257448411406903, 45.428925525070689 ], [ 9.257265700190434, 45.428675014679591 ], [ 9.256981992703857, 45.428476520031943 ], [ 9.256625060195697, 45.428349470545193 ], [ 9.256229840644757, 45.428306302210018 ], [ 9.255835019192922, 45.428351240459236 ], [ 9.255479242023807, 45.428479886623442 ], [ 9.255197334050871, 45.428679648427284 ], [ 9.255016890407491, 45.428930972415209 ], [ 9.254955575236613, 45.429209257742571 ], [ 9.255019392195829, 45.429487264087236 ], [ 9.255202096127661, 45.429737778051674 ], [ 9.255485803733091, 45.429936277076081 ], [ 9.25584274371819, 45.430063330071185 ], [ 9.256237975248228, 45.430106499706277 ], [ 9.256632808605701, 45.430061560052025 ], [ 9.256988593059457, 45.42993291031447 ], [ 9.25727050091354, 45.429733144133877 ], [ 9.257450937079984, 45.429481816637583 ], [ 9.257512240271762, 45.429203530010305 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.178601164798723, 45.429992913114077 ], [ 9.178537722283746, 45.429714863532602 ], [ 9.178355357194095, 45.429464226428045 ], [ 9.178071921734244, 45.42926553540029 ], [ 9.177715160530054, 45.429138239089866 ], [ 9.177319994796036, 45.42909479764679 ], [ 9.176925104407607, 45.429139463235245 ], [ 9.176569142294662, 45.429267863873505 ], [ 9.176286951469979, 45.429467431318592 ], [ 9.176106154749224, 45.429718631140211 ], [ 9.176044450832885, 45.429996874649383 ], [ 9.176107881430156, 45.430274925619791 ], [ 9.17629023920507, 45.430525566287869 ], [ 9.176573674747141, 45.430724261692582 ], [ 9.176930443399096, 45.430851561521585 ], [ 9.177325621101634, 45.430895004280877 ], [ 9.177720523407768, 45.43085033730349 ], [ 9.178076492835446, 45.430721933101708 ], [ 9.17835868357791, 45.430522361279635 ], [ 9.178539472850899, 45.430271157939451 ], [ 9.178601164798723, 45.429992913114077 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.239367540911282, 45.433583532876717 ], [ 9.23930379605966, 45.433305517840196 ], [ 9.239121150780944, 45.433054978483263 ], [ 9.238837484703396, 45.432856438836488 ], [ 9.238480565023341, 45.432729332722019 ], [ 9.238085328464578, 45.432686101673255 ], [ 9.237690461833823, 45.432730977261308 ], [ 9.237334615736337, 45.432859566949979 ], [ 9.23705262183157, 45.433059283991895 ], [ 9.236872083663295, 45.433310579313215 ], [ 9.236810674626511, 45.433588854875744 ], [ 9.236874407567086, 45.433866871313832 ], [ 9.237057045552625, 45.434117414242358 ], [ 9.237340711740623, 45.434315958266609 ], [ 9.237697638892561, 45.434443067892317 ], [ 9.238092887430634, 45.434486300244906 ], [ 9.23848776597244, 45.434441423255301 ], [ 9.238843619363095, 45.434312829995029 ], [ 9.239125613157416, 45.434113108575673 ], [ 9.239306143853806, 45.433861809743121 ], [ 9.239367540911282, 45.433583532876717 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.224748096356429, 45.440408396210813 ], [ 9.22468441544933, 45.44013037322636 ], [ 9.224501812639772, 45.439879810711794 ], [ 9.224218163399993, 45.439681234964624 ], [ 9.22386123327909, 45.439554083340674 ], [ 9.223465960023274, 45.439510801827709 ], [ 9.223071034031104, 45.439555626936148 ], [ 9.222715111717648, 45.439684171070731 ], [ 9.222433032201737, 45.439883851943044 ], [ 9.222252407406405, 45.440135124020003 ], [ 9.222190919205923, 45.440413391539096 ], [ 9.22225458819555, 45.440691415922444 ], [ 9.2224371837038, 45.440941982007629 ], [ 9.222720833047264, 45.441140562133299 ], [ 9.223077770637266, 45.441267717271195 ], [ 9.223473055874633, 45.441311000091346 ], [ 9.223867993784273, 45.441266173584033 ], [ 9.224223923399046, 45.441137625878831 ], [ 9.224506002811262, 45.440937940627983 ], [ 9.224686620137497, 45.440686665037092 ], [ 9.224748096356429, 45.440408396210813 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.219760050996623, 45.442808251944967 ], [ 9.219696391833573, 45.442530226256061 ], [ 9.219513803291061, 45.442279655846335 ], [ 9.219230159445171, 45.442081067786212 ], [ 9.218873225317317, 45.441953900636669 ], [ 9.218477939046091, 45.441910601905143 ], [ 9.218082992303955, 45.44195540978729 ], [ 9.217727043536824, 45.442083938374005 ], [ 9.217444934452597, 45.442283606898798 ], [ 9.217264279868331, 45.442534871037211 ], [ 9.217202764574116, 45.442813135804016 ], [ 9.217266411817462, 45.443091162890887 ], [ 9.217448993055855, 45.443341736870913 ], [ 9.217732637003134, 45.443540329309954 ], [ 9.218089578599155, 45.443667499974367 ], [ 9.218484876852751, 45.443710800014252 ], [ 9.218879835514588, 45.44366599073409 ], [ 9.219235791585842, 45.44353745857709 ], [ 9.219517900568681, 45.443337785673407 ], [ 9.219698547684766, 45.443086518020067 ], [ 9.219760050996623, 45.442808251944967 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.168955475700836, 45.443731420625504 ], [ 9.168892064949127, 45.443453366311871 ], [ 9.16870969808123, 45.443202714414831 ], [ 9.168426227476958, 45.443003999982267 ], [ 9.168069401202981, 45.442876673945342 ], [ 9.167674146843044, 45.442833199363534 ], [ 9.167279152946852, 45.442877831644502 ], [ 9.166923082574941, 45.443006202066734 ], [ 9.166640789335963, 45.443205745345033 ], [ 9.16645990606998, 45.443456929415035 ], [ 9.166398139949374, 45.443735167130058 ], [ 9.166461538773369, 45.444013222831295 ], [ 9.166643898317604, 45.444263878292375 ], [ 9.166927368999668, 45.444462597104057 ], [ 9.167284202723168, 45.444589926662466 ], [ 9.167679469058898, 45.444633402563106 ], [ 9.168074474882806, 45.444588768894505 ], [ 9.168430552578378, 45.444460394908276 ], [ 9.168712845739561, 45.444260847250867 ], [ 9.168893721556023, 45.444009659659358 ], [ 9.168955475700836, 45.443731420625504 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.169291121225182, 45.436893117087486 ], [ 9.169227716582526, 45.43661506261742 ], [ 9.16904537034616, 45.436364410925542 ], [ 9.168761932875933, 45.436165697039719 ], [ 9.168405148995109, 45.436038371837803 ], [ 9.168009942138063, 45.435994898297615 ], [ 9.16761499620519, 45.436039531724944 ], [ 9.167258969562646, 45.436167903285963 ], [ 9.166976711538958, 45.436367447583976 ], [ 9.16679585152707, 45.436618632454589 ], [ 9.166734094422742, 45.436896870672641 ], [ 9.166797487142016, 45.437174926530069 ], [ 9.16697982605748, 45.437425581785149 ], [ 9.167263263605626, 45.437624300049045 ], [ 9.167620054933426, 45.437751628771565 ], [ 9.168015273762014, 45.437795103630179 ], [ 9.168410231618273, 45.43775046881553 ], [ 9.168766265581713, 45.437622093691267 ], [ 9.169048523527486, 45.43742254501521 ], [ 9.169229376092392, 45.437171356623963 ], [ 9.169291121225182, 45.436893117087486 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.231589621600795, 45.437125319773791 ], [ 9.231525910867019, 45.436847300502194 ], [ 9.231343288468004, 45.436596748818957 ], [ 9.231059631793, 45.436398189961274 ], [ 9.230702707118464, 45.436271059631807 ], [ 9.230307451657302, 45.436227801734013 ], [ 9.22991255406636, 45.436272650466947 ], [ 9.229556667981029, 45.436401215922942 ], [ 9.229274628974432, 45.436600913726657 ], [ 9.229094045004718, 45.436852196687461 ], [ 9.229032593950031, 45.437130467977347 ], [ 9.229096292769398, 45.437408488649083 ], [ 9.229278907870942, 45.437659043903416 ], [ 9.229562564652801, 45.43785760713908 ], [ 9.229919496797702, 45.437984740981221 ], [ 9.230314764239315, 45.438028000184623 ], [ 9.230709673744666, 45.4379831500516 ], [ 9.231065567127466, 45.437854581024517 ], [ 9.231347606027203, 45.437654878842793 ], [ 9.231528182526555, 45.4374035923693 ], [ 9.231589621600795, 45.437125319773791 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.212095140946985, 45.446761237587417 ], [ 9.21203151490241, 45.446483207759911 ], [ 9.211848947431594, 45.446232625233741 ], [ 9.211565310548586, 45.446034018265387 ], [ 9.211208368593748, 45.445906827266661 ], [ 9.210813060472008, 45.445863502079305 ], [ 9.210418079994517, 45.445908283488393 ], [ 9.21006208890892, 45.446036788176016 ], [ 9.209779933064924, 45.446236437714994 ], [ 9.209599231856256, 45.446487689639447 ], [ 9.209537674636728, 45.446765950159914 ], [ 9.209601288757996, 45.447043981384013 ], [ 9.209783848920283, 45.447294567480007 ], [ 9.210067485901137, 45.447493178827884 ], [ 9.210424435322828, 45.447620373342971 ], [ 9.210819755428341, 45.447663699840419 ], [ 9.211214747829134, 45.44761891703471 ], [ 9.211570746223266, 45.447490408777263 ], [ 9.211852901969415, 45.447290754858784 ], [ 9.212033595711233, 45.447039499417976 ], [ 9.212095140946985, 45.446761237587417 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.204679047090467, 45.451431820428034 ], [ 9.204615452134089, 45.451153786643474 ], [ 9.204432902318405, 45.450903192438844 ], [ 9.204149267929932, 45.450704567213904 ], [ 9.203792313065316, 45.450577353167425 ], [ 9.203396977893329, 45.450534002396999 ], [ 9.203001958872711, 45.450578758191746 ], [ 9.202645921523414, 45.450707239740801 ], [ 9.202363716223097, 45.450906870881973 ], [ 9.202182967206136, 45.451158110950331 ], [ 9.202121368506022, 45.451436367317235 ], [ 9.202184951535083, 45.451714402497124 ], [ 9.202367494037636, 45.451965000271237 ], [ 9.202651128520527, 45.452163629876409 ], [ 9.203008090851052, 45.452290847440779 ], [ 9.203403438008717, 45.452334199523044 ], [ 9.203798468956647, 45.452289442332997 ], [ 9.204154513619077, 45.452160957214453 ], [ 9.204436718824967, 45.451961321693048 ], [ 9.204617460376021, 45.451710078106785 ], [ 9.204679047090467, 45.451431820428034 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.170618563119724, 45.452030801740236 ], [ 9.17055513478053, 45.45175274878067 ], [ 9.170372733701802, 45.451502099953771 ], [ 9.170089215612508, 45.451303390006714 ], [ 9.169732333227367, 45.451176069431398 ], [ 9.169337019622132, 45.451132600752608 ], [ 9.168941969145068, 45.45117723880017 ], [ 9.168585850394544, 45.45130561428811 ], [ 9.168303521714481, 45.451505161435641 ], [ 9.16812261941427, 45.451756347799773 ], [ 9.168060852530052, 45.452034586009404 ], [ 9.168124268936573, 45.452312640357334 ], [ 9.168306662689069, 45.452563292749488 ], [ 9.16859018085696, 45.452762007076913 ], [ 9.168947070695493, 45.452889331174553 ], [ 9.16934239628198, 45.45293280117221 ], [ 9.169737458691714, 45.452888161736325 ], [ 9.170093584768464, 45.452759782683088 ], [ 9.170375913369936, 45.452560231155211 ], [ 9.170556808216757, 45.452309041268748 ], [ 9.170618563119724, 45.452030801740236 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.114204441932554, 45.455379133272523 ], [ 9.114141286972195, 45.455101048886931 ], [ 9.11395912479505, 45.454850309893523 ], [ 9.11367578774793, 45.454651459866504 ], [ 9.113319010827617, 45.454523963009798 ], [ 9.112923716789041, 45.45448029910262 ], [ 9.112528598065994, 45.454524742083514 ], [ 9.112172329935762, 45.454652941759406 ], [ 9.111889785361384, 45.454852349558195 ], [ 9.111708621781775, 45.455103446677455 ], [ 9.111646573806105, 45.45538165448302 ], [ 9.111709716823468, 45.455659740245551 ], [ 9.111891871651814, 45.455910482797528 ], [ 9.112175208751315, 45.456109337205476 ], [ 9.112531993105184, 45.456236837592137 ], [ 9.112927299119129, 45.456280502829927 ], [ 9.113322429785166, 45.456236058472093 ], [ 9.113678705264205, 45.456107855237647 ], [ 9.113961249786202, 45.455908443057915 ], [ 9.114142405932252, 45.45565734240872 ], [ 9.114204441932554, 45.455379133272523 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.123541890836965, 45.457561628674767 ], [ 9.123478687533694, 45.457283549609237 ], [ 9.123296476959331, 45.457032825653556 ], [ 9.123013096197763, 45.456833998909751 ], [ 9.122656284524238, 45.456706531302522 ], [ 9.122260968094949, 45.456662899748125 ], [ 9.12186584153506, 45.456707375018446 ], [ 9.121509580888981, 45.456835603759927 ], [ 9.121227058387536, 45.457035034555588 ], [ 9.1210459293096, 45.457286146351919 ], [ 9.120983924887703, 45.457564359077971 ], [ 9.121047116247968, 45.457842439522459 ], [ 9.121229319476207, 45.458093167038157 ], [ 9.121512700294495, 45.458291998163226 ], [ 9.121869519405939, 45.458419469299471 ], [ 9.122264847813289, 45.45846310218267 ], [ 9.122659986316187, 45.458418625533412 ], [ 9.123016254308389, 45.458290393231906 ], [ 9.123298776753106, 45.458090958054989 ], [ 9.123479898393128, 45.457839842729634 ], [ 9.123541890836965, 45.457561628674767 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.130538732327414, 45.45941215028602 ], [ 9.130475492552799, 45.45913407522287 ], [ 9.130293245016301, 45.458883362550758 ], [ 9.130009830419652, 45.458684553267076 ], [ 9.129652991349644, 45.458557107587346 ], [ 9.12925765664375, 45.458513500281519 ], [ 9.128862522715879, 45.458557999748017 ], [ 9.128506266331643, 45.458686250265067 ], [ 9.128223759304966, 45.45888569828427 ], [ 9.128042655400403, 45.459136821066188 ], [ 9.127980683386815, 45.459415037464453 ], [ 9.128043911218283, 45.459693113908102 ], [ 9.128226151410582, 45.459943830141327 ], [ 9.128509566067212, 45.460142643806549 ], [ 9.128866412578484, 45.460270093014643 ], [ 9.129261759264599, 45.460313701647927 ], [ 9.129656905135615, 45.460269200800937 ], [ 9.13001316886405, 45.46014094672276 ], [ 9.130295675830743, 45.459941494322024 ], [ 9.130476772294045, 45.459690368011749 ], [ 9.130538732327414, 45.45941215028602 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.196546761671339, 45.456473011286953 ], [ 9.196483200910501, 45.45619497316369 ], [ 9.196300670727233, 45.455944366151506 ], [ 9.196017039486989, 45.455745720903899 ], [ 9.195660070978798, 45.455618481579478 ], [ 9.195264706707093, 45.455575102749961 ], [ 9.194869645978827, 45.455619830450829 ], [ 9.194513558395951, 45.455748286621059 ], [ 9.194231299252648, 45.455947897582647 ], [ 9.19405049805327, 45.456199124646112 ], [ 9.193988853939134, 45.456477376456036 ], [ 9.194052402768303, 45.456755415973163 ], [ 9.194234925633435, 45.457006026554438 ], [ 9.194518556964338, 45.457204676183082 ], [ 9.194875532937369, 45.457331919027055 ], [ 9.19527090919677, 45.457375299170316 ], [ 9.195665981856703, 45.457330570075563 ], [ 9.196022076757718, 45.45720211033624 ], [ 9.196304335810362, 45.457002494993652 ], [ 9.196485129544902, 45.456751264410599 ], [ 9.196546761671339, 45.456473011286953 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.174195774423469, 45.461388661381648 ], [ 9.174132317879936, 45.461110610907234 ], [ 9.173949870674955, 45.460859968272722 ], [ 9.173666293052962, 45.460661267618924 ], [ 9.173309343555928, 45.46053395852789 ], [ 9.172913961828259, 45.460490502400049 ], [ 9.172518848885627, 45.460535152836776 ], [ 9.172162679440191, 45.460663539339514 ], [ 9.17188031679793, 45.460863095049469 ], [ 9.171699400592935, 45.461114286685749 ], [ 9.171637641223153, 45.461392526361209 ], [ 9.171701085828664, 45.461670578225174 ], [ 9.171883525705169, 45.461921224426575 ], [ 9.17216710340745, 45.462119929462183 ], [ 9.172524060362878, 45.462247242076238 ], [ 9.17291945407819, 45.462290699522626 ], [ 9.173314578958843, 45.462246047696389 ], [ 9.173670755732759, 45.462117657626777 ], [ 9.173953118294724, 45.461918097534991 ], [ 9.174134027041331, 45.461666902375718 ], [ 9.174195774423469, 45.461388661381648 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.137763579212796, 45.461502469332999 ], [ 9.137700301571599, 45.461224398416256 ], [ 9.137518015286247, 45.460973697408654 ], [ 9.137234564851205, 45.460774906165639 ], [ 9.136877696360903, 45.460647483136746 ], [ 9.136482341532179, 45.460603900874766 ], [ 9.136087198748365, 45.460648425326887 ], [ 9.135730945641919, 45.460776698325752 ], [ 9.135448453706193, 45.460976164122485 ], [ 9.135267375229004, 45.461227298237525 ], [ 9.135205436490699, 45.461505518414953 ], [ 9.135268702188489, 45.461783590713793 ], [ 9.135450981131559, 45.462034295283665 ], [ 9.135734431629952, 45.462233090908548 ], [ 9.136091307565044, 45.462360517465157 ], [ 9.136486674376327, 45.462404101053203 ], [ 9.136881829103547, 45.462359575219011 ], [ 9.137238089552273, 45.462231298657855 ], [ 9.137520581424653, 45.462031828479233 ], [ 9.137701652457059, 45.461780690836534 ], [ 9.137763579212796, 45.461502469332999 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.144307155564132, 45.464894695967665 ], [ 9.144243841926999, 45.464616628885679 ], [ 9.144061515696102, 45.464365938518817 ], [ 9.14377802527588, 45.464167163680663 ], [ 9.143421120674365, 45.464039761214892 ], [ 9.14302573714267, 45.463996201661523 ], [ 9.142630575873342, 45.464040748744964 ], [ 9.142274316308168, 45.464169042082844 ], [ 9.141991830572872, 45.464368523935484 ], [ 9.141810770348783, 45.464619668251729 ], [ 9.14174886013004, 45.464897891777092 ], [ 9.141812161822587, 45.465175960242654 ], [ 9.141994480712368, 45.465426654173051 ], [ 9.14227797119899, 45.465625433393576 ], [ 9.142634883249071, 45.465752839386639 ], [ 9.143030278766387, 45.4657964002649 ], [ 9.143425451980303, 45.465751851797876 ], [ 9.143781718886597, 45.465623554896446 ], [ 9.144064204555486, 45.465424068661441 ], [ 9.144245257331013, 45.465172920817906 ], [ 9.144307155564132, 45.464894695967665 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.198807788658321, 45.466519185592553 ], [ 9.198744205330566, 45.466241149255971 ], [ 9.198561632571451, 45.465990546370747 ], [ 9.198277942914505, 45.46579190718613 ], [ 9.197920905866805, 45.465664675267057 ], [ 9.197525469641251, 45.465621304460214 ], [ 9.197130340587186, 45.46566604001579 ], [ 9.196774194993926, 45.465794503103972 ], [ 9.196491893833675, 45.465994119369824 ], [ 9.19631107072386, 45.466245349604897 ], [ 9.19624942695123, 45.466523602143383 ], [ 9.196312998341346, 45.466801639874767 ], [ 9.196495563779303, 45.467052246330624 ], [ 9.196779253528014, 45.467250889897791 ], [ 9.197136298045328, 45.467378125337369 ], [ 9.197531746265229, 45.467421497457948 ], [ 9.197926887256932, 45.46737676050757 ], [ 9.198283040171347, 45.467248293848741 ], [ 9.198565341239838, 45.467048673200338 ], [ 9.198746156880031, 45.466797439444768 ], [ 9.198807788658321, 45.466519185592553 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.15719362387307, 45.467948351570243 ], [ 9.157130243439214, 45.467670291869425 ], [ 9.156947850264482, 45.467419622295388 ], [ 9.156664299305724, 45.467220879626083 ], [ 9.156307346496041, 45.467093517556201 ], [ 9.155911931804653, 45.467050002671755 ], [ 9.15551675947369, 45.467094594324934 ], [ 9.15516051002774, 45.467222927771026 ], [ 9.154878054602506, 45.467422441344539 ], [ 9.154697041913199, 45.46767360588931 ], [ 9.154635191801788, 45.467951836170592 ], [ 9.154698560291024, 45.468229897257771 ], [ 9.154880946128324, 45.468480570397347 ], [ 9.155164497159491, 45.468679317449492 ], [ 9.155521457423765, 45.468806683045372 ], [ 9.155916884104522, 45.468850199252216 ], [ 9.156312068380098, 45.468805606212648 ], [ 9.156668325163484, 45.468677269201024 ], [ 9.156950780516313, 45.468477751244684 ], [ 9.157131785751028, 45.468226583173902 ], [ 9.15719362387307, 45.467948351570243 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.167884013007278, 45.467497931864195 ], [ 9.167820580540839, 45.46721987814739 ], [ 9.167638141490908, 45.466969225688864 ], [ 9.167354555304321, 45.466770509591001 ], [ 9.166997581361816, 45.466643180947521 ], [ 9.166602161700698, 45.466599703072625 ], [ 9.166207001049402, 45.466644331696109 ], [ 9.165850778789473, 45.466772698454562 ], [ 9.165568363396067, 45.466972238421896 ], [ 9.165387399666507, 45.467223419858342 ], [ 9.165325602650785, 45.467501655875438 ], [ 9.165389023174445, 45.467779710980786 ], [ 9.165571454891159, 45.468030367006158 ], [ 9.165855041155121, 45.468229087486755 ], [ 9.166212022556048, 45.468356419654789 ], [ 9.166607454207764, 45.468399898849874 ], [ 9.167002626801835, 45.468355268837861 ], [ 9.167358856394985, 45.468226898512555 ], [ 9.167641271711011, 45.468027354162473 ], [ 9.167822227982148, 45.467776169201436 ], [ 9.167884013007278, 45.467497931864195 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.178381627118194, 45.468153114281549 ], [ 9.178318142312738, 45.467875066505634 ], [ 9.178135654666379, 45.467624430915919 ], [ 9.177852028382384, 45.467425740963343 ], [ 9.177495026765811, 45.467298445182308 ], [ 9.177099594562293, 45.46725500367036 ], [ 9.176704437727743, 45.467299668598194 ], [ 9.176648308112767, 45.467319901619199 ], [ 9.176423505319056, 45.467295203643957 ], [ 9.176028347662712, 45.46733986623385 ], [ 9.175672143410996, 45.467468263578084 ], [ 9.175389759276799, 45.467667827756834 ], [ 9.175208836998216, 45.467919024660354 ], [ 9.175147087568289, 45.468197265885983 ], [ 9.1752105571548, 45.468475315431206 ], [ 9.175393034608659, 45.468725955671772 ], [ 9.175676658806504, 45.468924651687828 ], [ 9.176033666624162, 45.469051953106295 ], [ 9.176429110589051, 45.469095398276941 ], [ 9.176824280187175, 45.469050734296474 ], [ 9.176880411454944, 45.469030501192641 ], [ 9.177105221345771, 45.469055198250494 ], [ 9.177500390121972, 45.469010531931936 ], [ 9.177856599908965, 45.468882128912924 ], [ 9.178138981369852, 45.468682558682403 ], [ 9.178319893051528, 45.468431357187626 ], [ 9.178381627118194, 45.468153114281549 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.189645653158019, 45.463687062036364 ], [ 9.189587873615842, 45.463607727239413 ], [ 9.189304227380715, 45.463409065614862 ], [ 9.18894722548699, 45.463281805536994 ], [ 9.188551812707045, 45.463238403608777 ], [ 9.188156693095593, 45.463283108126504 ], [ 9.187800542017669, 45.463411543298321 ], [ 9.187518220982016, 45.463611137501708 ], [ 9.187337365550992, 45.463862353687766 ], [ 9.187275680174562, 45.464140601566086 ], [ 9.187339204750378, 45.464418644482535 ], [ 9.187521722746007, 45.464669265461417 ], [ 9.187805369068702, 45.464867931468149 ], [ 9.188162378427759, 45.464995195067374 ], [ 9.188557803199286, 45.465038598311097 ], [ 9.188578645506444, 45.465036240210026 ], [ 9.18863642510048, 45.465115575497492 ], [ 9.188920077572934, 45.465314238710775 ], [ 9.189277092249283, 45.465441498807486 ], [ 9.189672520985065, 45.465484898182524 ], [ 9.190067654757069, 45.465440188415819 ], [ 9.190423813422932, 45.465311746208741 ], [ 9.190706132650716, 45.465112144886454 ], [ 9.190886977079954, 45.464860923439574 ], [ 9.190948645458459, 45.46458267367386 ], [ 9.190885102959061, 45.464304632801834 ], [ 9.190702571259886, 45.464054017203338 ], [ 9.190418918875521, 45.463855358372321 ], [ 9.190061911665092, 45.463728101796875 ], [ 9.189666494921331, 45.463684703737123 ], [ 9.189645653158019, 45.463687062036364 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.187497767138122, 45.465530012283914 ], [ 9.187434240517304, 45.465251969513147 ], [ 9.187251721020184, 45.465001348422525 ], [ 9.186968075967165, 45.464802681043594 ], [ 9.186611070499948, 45.464675413701165 ], [ 9.18621564974077, 45.46463200370922 ], [ 9.185820518525327, 45.464676700153341 ], [ 9.185464353354362, 45.46480512803187 ], [ 9.185182017115929, 45.465004716436233 ], [ 9.185001146860401, 45.465255928885206 ], [ 9.184939448488816, 45.465534175454223 ], [ 9.185002963170962, 45.465812219617462 ], [ 9.185185475343035, 45.466062844277161 ], [ 9.185469120482546, 45.466261516038507 ], [ 9.185826133414755, 45.466388786902762 ], [ 9.186221566166065, 45.466432198210747 ], [ 9.186616709320178, 45.466387500374182 ], [ 9.186972881816191, 45.466259068926554 ], [ 9.187255217968135, 45.466059476139762 ], [ 9.187436080758662, 45.46580826016897 ], [ 9.187497767138122, 45.465530012283914 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.150844989887108, 45.466428922711216 ], [ 9.150781642379625, 45.466150859371403 ], [ 9.150599282234525, 45.465900179551006 ], [ 9.150315761175756, 45.465701421031156 ], [ 9.149958832210023, 45.465574039058076 ], [ 9.149563432972943, 45.465530502165976 ], [ 9.149168266194158, 45.465575071861181 ], [ 9.148812011854742, 45.465703385548117 ], [ 9.148529541569165, 45.465902883495325 ], [ 9.148348505506856, 45.466154038076262 ], [ 9.148286625797265, 45.466432265031571 ], [ 9.148349961360156, 45.466710329756374 ], [ 9.148532314166012, 45.466961013141322 ], [ 9.148815835294224, 45.467159776043808 ], [ 9.149172771711577, 45.467287161543467 ], [ 9.149568182936168, 45.467330699759209 ], [ 9.149963361659552, 45.467286128679007 ], [ 9.150319623338209, 45.467157811427526 ], [ 9.150602093554337, 45.466958309097699 ], [ 9.150783122165031, 45.466707150990139 ], [ 9.150844989887108, 45.466428922711216 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.171093411992192, 45.458618196210494 ], [ 9.171029973839833, 45.458340143850542 ], [ 9.170847549336548, 45.458089496105927 ], [ 9.170563996504598, 45.457890787617686 ], [ 9.170207071459512, 45.457763468734839 ], [ 9.169811711452516, 45.457720001816348 ], [ 9.169416615373404, 45.457764641519674 ], [ 9.169060456283807, 45.457893018396909 ], [ 9.168778096475984, 45.45809256653132 ], [ 9.168597175306363, 45.458343753383502 ], [ 9.16853540365855, 45.458621991534685 ], [ 9.168598829874171, 45.458900045283372 ], [ 9.168781247048873, 45.459150696594136 ], [ 9.169064799959667, 45.459349409463755 ], [ 9.169421732460894, 45.459476731869685 ], [ 9.169817104453353, 45.459520200107249 ], [ 9.170212212469199, 45.459475559015154 ], [ 9.170568378887383, 45.459347178571804 ], [ 9.170850738616368, 45.459147626055994 ], [ 9.171031652329841, 45.458896435680735 ], [ 9.171093411992192, 45.458618196210494 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.190833937899011, 45.459825675130382 ], [ 9.190770401383341, 45.459547633952589 ], [ 9.190587885610325, 45.459297017935647 ], [ 9.19030425753536, 45.459098358614582 ], [ 9.189947280637984, 45.458971101525528 ], [ 9.189551897243961, 45.458927702978947 ], [ 9.189156808531868, 45.458972410940206 ], [ 9.188800686842502, 45.459100849280361 ], [ 9.188518390808129, 45.459300446066699 ], [ 9.188337553543883, 45.459551663997416 ], [ 9.188275877721248, 45.459829912611184 ], [ 9.18833940230231, 45.46010795518184 ], [ 9.188521910753728, 45.460358574767554 ], [ 9.188805538916718, 45.460557238470173 ], [ 9.189162523278103, 45.460684499079925 ], [ 9.189557918661135, 45.46072789894157 ], [ 9.189953019307834, 45.460683189587442 ], [ 9.190309148318793, 45.460554747678501 ], [ 9.190591444265147, 45.460355146510629 ], [ 9.190772274065381, 45.460103925059215 ], [ 9.190833937899011, 45.459825675130382 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.202756589786876, 45.471003541199273 ], [ 9.202692981934002, 45.470725507321937 ], [ 9.20251037715194, 45.470474911000622 ], [ 9.202226651108868, 45.470276281841919 ], [ 9.201869576873348, 45.470149062429279 ], [ 9.201474106298006, 45.470105705385166 ], [ 9.201078949094105, 45.470150454612622 ], [ 9.200722784306148, 45.470278929943746 ], [ 9.20044047478522, 45.470478555825281 ], [ 9.200259654967402, 45.470729792107583 ], [ 9.20019802581767, 45.471008046533015 ], [ 9.200261621730672, 45.471286081806213 ], [ 9.200444219191345, 45.471536681699206 ], [ 9.200727945328024, 45.471735315241133 ], [ 9.201085027036406, 45.471862538174342 ], [ 9.201480509609475, 45.471905896531624 ], [ 9.201875678753245, 45.471861145908299 ], [ 9.202231850862592, 45.471732667005504 ], [ 9.202514160289905, 45.471533036740716 ], [ 9.202694972634859, 45.471281796937824 ], [ 9.202756589786876, 45.471003541199273 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.183545409738452, 45.471821456325294 ], [ 9.183481895377454, 45.471543411644532 ], [ 9.18329937298183, 45.471292784519974 ], [ 9.183015710156274, 45.471094107573776 ], [ 9.182658673782427, 45.470966828067141 ], [ 9.182263212007744, 45.470923404504568 ], [ 9.181868033682335, 45.470968087299909 ], [ 9.181511819917736, 45.471096502787454 ], [ 9.181229438358139, 45.471296081271539 ], [ 9.181048530490006, 45.471547287242196 ], [ 9.180986805896294, 45.471825531409159 ], [ 9.181050308314086, 45.472103577481896 ], [ 9.181232823380743, 45.472354208175837 ], [ 9.181516486290986, 45.472552889505401 ], [ 9.18187353013081, 45.472680172535142 ], [ 9.182269003901025, 45.472723597414848 ], [ 9.182664194169631, 45.472678913227568 ], [ 9.183020415263201, 45.47255049417069 ], [ 9.183302796738122, 45.472350911303209 ], [ 9.183483697140273, 45.47209970180942 ], [ 9.183545409738452, 45.471821456325294 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.152248653774665, 45.473677206783357 ], [ 9.152185291154071, 45.473399144595554 ], [ 9.152002901333598, 45.473148467373534 ], [ 9.151719338942341, 45.472949712643931 ], [ 9.151362361032819, 45.472822335281784 ], [ 9.150966910031139, 45.472778803369863 ], [ 9.150571693733335, 45.472823377926979 ], [ 9.150215396967143, 45.472951695881733 ], [ 9.149932895499727, 45.473151197085059 ], [ 9.149751842552918, 45.473402353591858 ], [ 9.149689961909408, 45.473680580954309 ], [ 9.149753312581064, 45.473958644527734 ], [ 9.149935695060023, 45.474209325315371 ], [ 9.150219257521409, 45.47440808442871 ], [ 9.150576242885906, 45.474535465318205 ], [ 9.150971705879865, 45.474578998553788 ], [ 9.151366934126607, 45.474534422611043 ], [ 9.151723238234313, 45.474406101090658 ], [ 9.152005739631598, 45.474206595503588 ], [ 9.152186785123432, 45.47395543546947 ], [ 9.152248653774665, 45.473677206783357 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.196003681566802, 45.475036816678262 ], [ 9.195940102302131, 45.474758779189848 ], [ 9.195757514325903, 45.474508172222798 ], [ 9.19547379166181, 45.47430952642587 ], [ 9.195116707048085, 45.474182286011001 ], [ 9.1947212133534, 45.474138905656361 ], [ 9.194326022551865, 45.474183631546587 ], [ 9.193969816976258, 45.47431208579799 ], [ 9.193687463469653, 45.474511694920672 ], [ 9.19350660077332, 45.474762920405624 ], [ 9.193444934049337, 45.475041171052233 ], [ 9.193508501370612, 45.475319209935314 ], [ 9.193691082021346, 45.475569820473687 ], [ 9.193974804775934, 45.475768470654508 ], [ 9.194331896861563, 45.475895714591289 ], [ 9.194727402555563, 45.475939096260653 ], [ 9.195122605300488, 45.475894368975759 ], [ 9.195478818201597, 45.475765911153026 ], [ 9.195761171617713, 45.475566297646473 ], [ 9.195942026842129, 45.475315068639588 ], [ 9.196003681566802, 45.475036816678262 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.20716888717565, 45.475323491614475 ], [ 9.207105252700281, 45.475045460451845 ], [ 9.20692261436928, 45.474794871433105 ], [ 9.206638851134825, 45.474596253449846 ], [ 9.206281739705741, 45.474469047991484 ], [ 9.20588623557493, 45.474425706314527 ], [ 9.205491051737846, 45.474470470817899 ], [ 9.20513486984572, 45.474598959838566 ], [ 9.204852554423921, 45.474798596483325 ], [ 9.20467174048645, 45.475049839549158 ], [ 9.204610128423123, 45.475328096114303 ], [ 9.204673750956561, 45.475606128673888 ], [ 9.204856381966176, 45.475856721265387 ], [ 9.205140145296314, 45.476055343632559 ], [ 9.205497264201611, 45.476182552611462 ], [ 9.205892780333485, 45.476225895600841 ], [ 9.206287976112508, 45.476181129700493 ], [ 9.206644165326015, 45.476052637107074 ], [ 9.206926480652131, 45.475852996078402 ], [ 9.207107287113397, 45.475601749492057 ], [ 9.20716888717565, 45.475323491614475 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.130314010646366, 45.476137152390322 ], [ 9.130250753087761, 45.47585907803952 ], [ 9.130068452477307, 45.475608365804206 ], [ 9.129784954712921, 45.475409556638674 ], [ 9.129428010522428, 45.475282110746527 ], [ 9.129032559032325, 45.475238502918273 ], [ 9.12863730808667, 45.475283001603259 ], [ 9.128280945904102, 45.475411251156338 ], [ 9.127998354653892, 45.47561069812383 ], [ 9.127817196344969, 45.47586181986955 ], [ 9.127755205072589, 45.476140035348841 ], [ 9.127818450677513, 45.476418111080889 ], [ 9.128000743937218, 45.476668826879397 ], [ 9.128284241761536, 45.47686764042902 ], [ 9.128641193399737, 45.47699508985162 ], [ 9.129036656880558, 45.47703869900819 ], [ 9.129431919779895, 45.476994198941966 ], [ 9.129788289313209, 45.476865945825672 ], [ 9.13007088050349, 45.476666494474102 ], [ 9.130252031364702, 45.476415369197916 ], [ 9.130314010646366, 45.476137152390322 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.119633113790089, 45.476253072018594 ], [ 9.119569908620971, 45.475974991705414 ], [ 9.119387654963539, 45.475724262381732 ], [ 9.119104194120201, 45.475525426674707 ], [ 9.118747273205399, 45.475397947386057 ], [ 9.118351829067802, 45.475354302575091 ], [ 9.117956568831966, 45.475398764311059 ], [ 9.117600181625681, 45.475526980565313 ], [ 9.117317552067133, 45.475726401143454 ], [ 9.117136345914442, 45.475977505992525 ], [ 9.117074301945571, 45.476255715722026 ], [ 9.117137495159382, 45.476533797414255 ], [ 9.117319741461989, 45.476784530299788 ], [ 9.117603202360288, 45.476983370390947 ], [ 9.117960130718835, 45.477110853211428 ], [ 9.118355586845706, 45.477154499352878 ], [ 9.118750859036849, 45.47711003623786 ], [ 9.119107253597958, 45.47698181642177 ], [ 9.119389883101542, 45.47678239145948 ], [ 9.119571081810491, 45.476531283078593 ], [ 9.119633113790089, 45.476253072018594 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.13917211434922, 45.476321353170697 ], [ 9.139108813026709, 45.47604328378614 ], [ 9.138926472574234, 45.475792585742916 ], [ 9.138642942789257, 45.475593798605928 ], [ 9.138285977533426, 45.47546638042251 ], [ 9.137890517994775, 45.475422803270945 ], [ 9.137495272805024, 45.475467332598065 ], [ 9.13713892961953, 45.475595609759466 ], [ 9.136856368748475, 45.475795078599127 ], [ 9.136675249227654, 45.47604621433991 ], [ 9.136613301355949, 45.476324434567047 ], [ 9.136676590725962, 45.476602505334689 ], [ 9.136858923830962, 45.476853206942252 ], [ 9.137142453679992, 45.477051998463345 ], [ 9.13749942638692, 45.4771794201761 ], [ 9.137894897917663, 45.477222998654156 ], [ 9.138290155059931, 45.477178467943979 ], [ 9.138646505592893, 45.477050187218254 ], [ 9.138929066399896, 45.476850713994466 ], [ 9.139110178469611, 45.476599574724347 ], [ 9.13917211434922, 45.476321353170697 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.14518027540813, 45.479034085801928 ], [ 9.14511694147189, 45.478756019919601 ], [ 9.144934565621842, 45.478505331630139 ], [ 9.144651001120229, 45.478306559543483 ], [ 9.144294005226604, 45.478179160233694 ], [ 9.14389852212757, 45.478135603931626 ], [ 9.143503262760731, 45.478180154043372 ], [ 9.143146916169098, 45.478308449890193 ], [ 9.142864362996431, 45.478507933487158 ], [ 9.142683261525351, 45.478759078612612 ], [ 9.142621340288375, 45.479037301933118 ], [ 9.142664222838354, 45.479225613358174 ], [ 9.142634451577624, 45.47924663148342 ], [ 9.142453346725837, 45.479497776215872 ], [ 9.142391423556766, 45.479775999378006 ], [ 9.142454745245375, 45.480054066736479 ], [ 9.142637115121561, 45.480304758924262 ], [ 9.142920682594809, 45.480503535936862 ], [ 9.143277690095699, 45.480630939472547 ], [ 9.143673190183762, 45.480674497884259 ], [ 9.144068466850898, 45.480629947182884 ], [ 9.144424825964856, 45.480501648498134 ], [ 9.144707383569147, 45.480302161105676 ], [ 9.144888480966308, 45.480051012844164 ], [ 9.144950392140291, 45.479772788356613 ], [ 9.144907501557395, 45.479584477817802 ], [ 9.144937272149145, 45.479563459102188 ], [ 9.145118366165807, 45.479312310447824 ], [ 9.14518027540813, 45.479034085801928 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.212262200368446, 45.480343534366156 ], [ 9.212198535114368, 45.480065506341468 ], [ 9.212015857938145, 45.479814925757218 ], [ 9.211732051594398, 45.479616320679149 ], [ 9.211374897011449, 45.479489131333409 ], [ 9.210979353905861, 45.47944580739923 ], [ 9.210584139087645, 45.479490589538912 ], [ 9.210227937240353, 45.479619094363159 ], [ 9.209945614842695, 45.479818743432098 ], [ 9.20976480759186, 45.480069994326541 ], [ 9.20970321522368, 45.480348253358471 ], [ 9.209766868533427, 45.480626282781415 ], [ 9.209949538388258, 45.480876866939731 ], [ 9.21023334483008, 45.481075476402424 ], [ 9.210590506893118, 45.481202669268704 ], [ 9.210986062003654, 45.481245994514488 ], [ 9.211381288766203, 45.48120121097655 ], [ 9.211737497934889, 45.481072702578246 ], [ 9.212019820234474, 45.480873049124661 ], [ 9.212200620005223, 45.480621794709712 ], [ 9.212262200368446, 45.480343534366156 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.227196317171686, 45.481142467051747 ], [ 9.227132577583852, 45.480864447533172 ], [ 9.226949831706134, 45.480613890999734 ], [ 9.226665969017388, 45.480415323162724 ], [ 9.226308775960373, 45.480288180602727 ], [ 9.225913216016938, 45.480244908419607 ], [ 9.225518007644917, 45.480289742210346 ], [ 9.225161834897108, 45.480418293530086 ], [ 9.224879561404524, 45.480617979387944 ], [ 9.224698818078162, 45.480869253763593 ], [ 9.224637298397342, 45.481147520670255 ], [ 9.224701026042535, 45.48142554159017 ], [ 9.224883764604201, 45.48167610169962 ], [ 9.225167627397981, 45.481874673921403 ], [ 9.225524827940983, 45.482001820000065 ], [ 9.225920399891974, 45.48204509349177 ], [ 9.226315620206639, 45.482000258299671 ], [ 9.226671800270495, 45.481871703403918 ], [ 9.226954073658051, 45.481672013161315 ], [ 9.227134809498418, 45.481420735266994 ], [ 9.227196317171686, 45.481142467051747 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.199425179690204, 45.479384378192556 ], [ 9.199361578642923, 45.479106342857669 ], [ 9.199178961411928, 45.478855741600526 ], [ 9.198895204884614, 45.478657104510759 ], [ 9.198538085113766, 45.478529874947974 ], [ 9.198142558409049, 45.478486506527993 ], [ 9.19774733997537, 45.47853124426728 ], [ 9.197391114850015, 45.478659709122418 ], [ 9.197108751789671, 45.478859326565683 ], [ 9.196927890471018, 45.479110557273685 ], [ 9.196866235921707, 45.479388809534548 ], [ 9.196929825023373, 45.479666846265012 ], [ 9.197112434928494, 45.479917451094458 ], [ 9.197396191547904, 45.480116092568757 ], [ 9.19775331879365, 45.480243325653561 ], [ 9.198148857500906, 45.480286695387782 ], [ 9.198544087880205, 45.480241956252897 ], [ 9.198900320331436, 45.480113487825456 ], [ 9.199182683299687, 45.479913865997666 ], [ 9.199363537143435, 45.47966263176766 ], [ 9.199425179690204, 45.479384378192556 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.152003028176177, 45.481382909312778 ], [ 9.151939658027633, 45.481104847374795 ], [ 9.151757244345253, 45.480854170130641 ], [ 9.151473644094329, 45.48065541510892 ], [ 9.151116618033354, 45.480528037213169 ], [ 9.150721113301433, 45.480484504578179 ], [ 9.150325842953398, 45.480529078293543 ], [ 9.149969497107103, 45.480657395370244 ], [ 9.149686956333591, 45.480856895745355 ], [ 9.149505877702216, 45.481108051554969 ], [ 9.149443987510285, 45.481386278419713 ], [ 9.149507345705015, 45.481664341743603 ], [ 9.149689752042821, 45.481915022554332 ], [ 9.149973352363777, 45.48211378196094 ], [ 9.150330385882654, 45.482241163385034 ], [ 9.15072590261167, 45.482284697344092 ], [ 9.151121184913523, 45.482240122242807 ], [ 9.151477538104395, 45.482111801599522 ], [ 9.151760078807875, 45.481912296839511 ], [ 9.151941149981347, 45.481661137501568 ], [ 9.152003028176177, 45.481382909312778 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.163118529681299, 45.481479584800191 ], [ 9.163055104762671, 45.481201529109399 ], [ 9.162872641524674, 45.480950869688634 ], [ 9.162589001782866, 45.480752142321656 ], [ 9.162231950160649, 45.480624799204982 ], [ 9.161836436298639, 45.480581305069151 ], [ 9.161441174145157, 45.48062591723555 ], [ 9.161084853016131, 45.480754268951607 ], [ 9.160802351063706, 45.480953796763885 ], [ 9.160621321557892, 45.48120497012269 ], [ 9.160559485987838, 45.481483202930626 ], [ 9.160622898954216, 45.481761260009677 ], [ 9.160805354851799, 45.482011922998417 ], [ 9.161088994668818, 45.482210654750304 ], [ 9.161446053753137, 45.482338001393892 ], [ 9.161841579613883, 45.482381496851517 ], [ 9.162236853719618, 45.482336883296895 ], [ 9.162593182189054, 45.482208528012841 ], [ 9.162875684066272, 45.482008995815676 ], [ 9.163056706109979, 45.481757818929921 ], [ 9.163118529681299, 45.481479584800191 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.185621028768141, 45.477088532894022 ], [ 9.185557498204446, 45.47681048965007 ], [ 9.185374949541345, 45.476559866115267 ], [ 9.185091252954937, 45.476361194560241 ], [ 9.184734178631496, 45.476233921718354 ], [ 9.184338678432828, 45.476190505441679 ], [ 9.183943464969738, 45.476235195430796 ], [ 9.183587222792864, 45.476363617316039 ], [ 9.183304822327404, 45.476563200775601 ], [ 9.1831239069106, 45.476814409812555 ], [ 9.18306218686474, 45.477092654836561 ], [ 9.18312570548223, 45.477370699473148 ], [ 9.18330824681512, 45.477621326578237 ], [ 9.18359194348719, 45.47782000251744 ], [ 9.183949025279455, 45.477947278882851 ], [ 9.184344537477267, 45.477990696476489 ], [ 9.184739762886556, 45.477946005094701 ], [ 9.185096012393645, 45.477817579639172 ], [ 9.185378412773444, 45.477617991795455 ], [ 9.185559320721421, 45.477366779234991 ], [ 9.185621028768141, 45.477088532894022 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.157980953849114, 45.478114942449096 ], [ 9.157917558012414, 45.477836883702352 ], [ 9.157735128431998, 45.477586215881864 ], [ 9.157451523628882, 45.477387475593787 ], [ 9.157094504806764, 45.477260116299462 ], [ 9.156699018396015, 45.47721660431305 ], [ 9.156303775658237, 45.477261198703054 ], [ 9.155947464009026, 45.47738953445689 ], [ 9.155664960672462, 45.477589049683409 ], [ 9.155483919053713, 45.477840215064866 ], [ 9.155422061827171, 45.47811844528475 ], [ 9.15548544571298, 45.478396505418516 ], [ 9.155667867952335, 45.478647176805893 ], [ 9.155951472828262, 45.478845921478367 ], [ 9.156308499109246, 45.478973284299848 ], [ 9.15670399751588, 45.479016797608971 ], [ 9.15709925220454, 45.478972201831937 ], [ 9.157455571194818, 45.478843862511191 ], [ 9.157738074458571, 45.478644342900282 ], [ 9.157919108618454, 45.478393173991677 ], [ 9.157980953849114, 45.478114942449096 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.162379031119425, 45.468282993489218 ], [ 9.162315624818808, 45.468004936717641 ], [ 9.162133207600283, 45.467754275471286 ], [ 9.161849636774024, 45.467555545712862 ], [ 9.161492670217546, 45.467428199873211 ], [ 9.161097249245413, 45.46738470294973 ], [ 9.160702078714435, 45.467429312536645 ], [ 9.160345838973058, 45.467557662133842 ], [ 9.16006340020731, 45.467757188494986 ], [ 9.159882409501996, 45.468008361212206 ], [ 9.159820584547431, 45.468286594250664 ], [ 9.159883978903975, 45.468564652409697 ], [ 9.160066388786895, 45.468815317222273 ], [ 9.160349959687977, 45.469014051363565 ], [ 9.160706933701114, 45.469141400728596 ], [ 9.16110236666356, 45.469184898973417 ], [ 9.161497549138614, 45.469140287999046 ], [ 9.161853796215595, 45.469011934835606 ], [ 9.162136234906523, 45.468812404091587 ], [ 9.162317218155172, 45.468561227848987 ], [ 9.162379031119425, 45.468282993489218 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.182975839146053, 45.468699162812463 ], [ 9.182912331139484, 45.468421117652639 ], [ 9.182729821385998, 45.468170489460952 ], [ 9.182446176252645, 45.467971810964009 ], [ 9.18208916088928, 45.467844529574911 ], [ 9.181693721386912, 45.467801103982467 ], [ 9.181298564415753, 45.467845784799181 ], [ 9.180942368997327, 45.467974198553058 ], [ 9.18066000098009, 45.468173775718043 ], [ 9.180479100524863, 45.468424980913206 ], [ 9.180417376488769, 45.468703224924198 ], [ 9.180480872554012, 45.468981271475663 ], [ 9.180663374979522, 45.469231903236299 ], [ 9.180947020197276, 45.46943058611614 ], [ 9.181304043025182, 45.469557871028037 ], [ 9.181699494521041, 45.469601297937587 ], [ 9.182094663433521, 45.469556615729203 ], [ 9.182450866179934, 45.469428198406433 ], [ 9.182733234112762, 45.46922861685853 ], [ 9.182914127103443, 45.46897740814056 ], [ 9.182975839146053, 45.468699162812463 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.156571579375528, 45.470400258463798 ], [ 9.156508199218855, 45.470122198537219 ], [ 9.156325800861424, 45.469871528084781 ], [ 9.156042239767581, 45.469672783970346 ], [ 9.155685272862554, 45.469545420030094 ], [ 9.155289841495213, 45.469501903032956 ], [ 9.154894651539847, 45.469546492538022 ], [ 9.154538385245987, 45.469674824010717 ], [ 9.154255915398386, 45.469874335978851 ], [ 9.154074892123964, 45.470125499443434 ], [ 9.154013036300942, 45.470403729275475 ], [ 9.15407640451137, 45.470681790588408 ], [ 9.154258795530188, 45.470932464606641 ], [ 9.154542356696156, 45.471131213104258 ], [ 9.154899331056498, 45.471258580570925 ], [ 9.155294774414664, 45.471302098890682 ], [ 9.155689976316284, 45.471257507999276 ], [ 9.156046249948748, 45.471129172960779 ], [ 9.156328719724227, 45.470929656609435 ], [ 9.156509735543338, 45.470678489618479 ], [ 9.156571579375528, 45.470400258463798 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.194147068041191, 45.470012837657514 ], [ 9.194083503633204, 45.46973479886595 ], [ 9.193900940171455, 45.469484188669746 ], [ 9.193617249279816, 45.46928553803383 ], [ 9.19326020058654, 45.46915829164405 ], [ 9.192864743444524, 45.469114904763394 ], [ 9.192469586250343, 45.469159624215273 ], [ 9.192113408047458, 45.469288072746188 ], [ 9.191831072999685, 45.469487677426095 ], [ 9.191650218041296, 45.469738900180722 ], [ 9.191588547576536, 45.470017150076693 ], [ 9.191652100044015, 45.470295190262277 ], [ 9.191834656181499, 45.47054580402898 ], [ 9.192118347162742, 45.470744459047971 ], [ 9.192475403325261, 45.470871708959308 ], [ 9.192870872463166, 45.470915097154823 ], [ 9.193266041597855, 45.470870376308909 ], [ 9.193622227125005, 45.470741924207509 ], [ 9.193904562083175, 45.470542315144513 ], [ 9.194085409572319, 45.470291088868329 ], [ 9.194147068041191, 45.470012837657514 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.23610938659492, 45.484244867074551 ], [ 9.236045599627698, 45.4839668527759 ], [ 9.235862804213534, 45.483716310737613 ], [ 9.235578894679925, 45.483517765251811 ], [ 9.235221662054553, 45.483390650711172 ], [ 9.234826073691842, 45.48334740947297 ], [ 9.234430850831046, 45.483392274105221 ], [ 9.23407467894314, 45.483520853144476 ], [ 9.233792421575261, 45.483720560886603 ], [ 9.233611708060621, 45.483971849169215 ], [ 9.233550228960988, 45.484250120644084 ], [ 9.233614003984929, 45.484528136346043 ], [ 9.233796792085226, 45.48477868196187 ], [ 9.234080701728031, 45.4849772318329 ], [ 9.23443794184395, 45.485104349891436 ], [ 9.234833542217427, 45.485147592436533 ], [ 9.235228777021501, 45.485102726400967 ], [ 9.235584956223272, 45.484974143784207 ], [ 9.235867213481955, 45.484774431656831 ], [ 9.236047919506044, 45.484523139856293 ], [ 9.23610938659492, 45.484244867074551 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.19254306634071, 45.487606154979517 ], [ 9.192479489748019, 45.487328116174169 ], [ 9.192296876307703, 45.487077504270118 ], [ 9.192013102536919, 45.486878850399201 ], [ 9.191655946176823, 45.486751599563512 ], [ 9.191260367118579, 45.486708207460907 ], [ 9.190865085691245, 45.486752921425861 ], [ 9.190508793097472, 45.486881364741954 ], [ 9.190226364697409, 45.487080964989929 ], [ 9.190045446563206, 45.487332184529713 ], [ 9.189983749284085, 45.487610432742976 ], [ 9.190047313924985, 45.487888472942878 ], [ 9.190229920033651, 45.488139088419402 ], [ 9.190513693893365, 45.488337746676102 ], [ 9.190870857729008, 45.488465001035721 ], [ 9.191266448794, 45.48850839445435 ], [ 9.19166174217313, 45.488463679094849 ], [ 9.192018042098553, 45.488335232206303 ], [ 9.192300470409686, 45.488135627572525 ], [ 9.192481381068346, 45.487884404508812 ], [ 9.19254306634071, 45.487606154979517 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.128673309775253, 45.489347570445695 ], [ 9.128610045357052, 45.489069495839189 ], [ 9.128427709278942, 45.488818781605964 ], [ 9.128144150911449, 45.488619968895705 ], [ 9.127787126914779, 45.48849251825871 ], [ 9.127391584226755, 45.488448904949593 ], [ 9.126996239617377, 45.48849339795418 ], [ 9.126639790472527, 45.488621642183396 ], [ 9.12635712747314, 45.488821084704831 ], [ 9.126175919651349, 45.489072203317868 ], [ 9.126113905949721, 45.489350417284733 ], [ 9.126177158405694, 45.489628493272782 ], [ 9.12635948712734, 45.489879211070615 ], [ 9.126643045554031, 45.490078028167027 ], [ 9.127000077002963, 45.49020548233635 ], [ 9.127395631689797, 45.490249096974694 ], [ 9.127790988261395, 45.490204602588562 ], [ 9.128147444762718, 45.490076354794724 ], [ 9.12843010770291, 45.489876907887165 ], [ 9.128611308072433, 45.489625785741808 ], [ 9.128673309775253, 45.489347570445695 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.138300833231755, 45.485989262676711 ], [ 9.138237525253997, 45.485711193289397 ], [ 9.138055157372948, 45.485460494313273 ], [ 9.137771582071544, 45.485261705404461 ], [ 9.137414557666952, 45.485134284783427 ], [ 9.137019031136605, 45.485090704766918 ], [ 9.136623717668986, 45.485135231082126 ], [ 9.136267311602099, 45.485263505379535 ], [ 9.135984699400803, 45.485462971783562 ], [ 9.135803545125409, 45.485714105755768 ], [ 9.135741582477305, 45.485992325054632 ], [ 9.135804878496355, 45.486270395825294 ], [ 9.135987239025869, 45.486521098366843 ], [ 9.136270814390947, 45.486719891661274 ], [ 9.136627846250096, 45.486847315812973 ], [ 9.137023384778503, 45.486890897156592 ], [ 9.137418710204834, 45.486846369458021 ], [ 9.13777512362326, 45.486718091595208 ], [ 9.138057735760878, 45.486518620805548 ], [ 9.13823888258171, 45.486267483302683 ], [ 9.138300833231755, 45.485989262676711 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.173544766712856, 45.48756266781141 ], [ 9.173481283604358, 45.48728461829257 ], [ 9.17329875446003, 45.487033975890959 ], [ 9.173015047546581, 45.4868352747241 ], [ 9.172657934061942, 45.486707964423694 ], [ 9.172262369701357, 45.48666450650807 ], [ 9.17186707335555, 45.486709154753434 ], [ 9.171510737687109, 45.486837538875854 ], [ 9.171228242271617, 45.487037092250041 ], [ 9.171047239739902, 45.487288281824299 ], [ 9.17098544894159, 45.487566519913813 ], [ 9.171048920095537, 45.48784457082332 ], [ 9.171231441901043, 45.488095216794989 ], [ 9.171515148894585, 45.488293922347694 ], [ 9.171872269847626, 45.488421236174467 ], [ 9.17226784621225, 45.488464695409974 ], [ 9.172663154512609, 45.488420045773992 ], [ 9.173019497519867, 45.488291658081479 ], [ 9.173301992855274, 45.488092100321474 ], [ 9.17348298791859, 45.487840907220864 ], [ 9.173544766712856, 45.48756266781141 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.167854598219229, 45.484520731652772 ], [ 9.167791146554888, 45.484242678778259 ], [ 9.167608652480801, 45.483992027100442 ], [ 9.167324980830891, 45.483793311644938 ], [ 9.166967899351626, 45.483665983442229 ], [ 9.166572360605821, 45.483622505763016 ], [ 9.166177080977226, 45.483667134317919 ], [ 9.165820751492186, 45.483795500750269 ], [ 9.165538251120877, 45.483995040166299 ], [ 9.165357232978849, 45.484246220880443 ], [ 9.165295417443309, 45.484524456075356 ], [ 9.165358857154182, 45.4848025103392 ], [ 9.165541343888469, 45.485053165585981 ], [ 9.165825015615805, 45.485251885426841 ], [ 9.166182104560145, 45.48537921715625 ], [ 9.16657765530727, 45.485422696156419 ], [ 9.166972946889333, 45.485378066212164 ], [ 9.167329283714171, 45.485249696210822 ], [ 9.167611784008056, 45.485050152409492 ], [ 9.167792794685013, 45.484798968168619 ], [ 9.167854598219229, 45.484520731652772 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.187299249323962, 45.482841551691685 ], [ 9.187134987386345, 45.482783014437956 ], [ 9.186739439533151, 45.482739606599289 ], [ 9.186344182223028, 45.482784304912748 ], [ 9.185987904298145, 45.48291273419391 ], [ 9.185705479682726, 45.483112323397123 ], [ 9.185524554078144, 45.483363535963406 ], [ 9.185462838804424, 45.483641781957054 ], [ 9.185526376687488, 45.48391982490859 ], [ 9.185708949894067, 45.4841704478388 ], [ 9.185992687928149, 45.484369117521808 ], [ 9.186349816521787, 45.484496386161929 ], [ 9.186745376378592, 45.484539795317339 ], [ 9.187140645638676, 45.484495095610448 ], [ 9.187232865318039, 45.484461852644891 ], [ 9.187397132241138, 45.484520389732708 ], [ 9.187792693058668, 45.484563795259682 ], [ 9.188187961646555, 45.484519091929933 ], [ 9.18854424466398, 45.48439065581487 ], [ 9.188826665605456, 45.484191059643607 ], [ 9.189007579153966, 45.483939841902945 ], [ 9.189069277292404, 45.483661594036228 ], [ 9.189005722282168, 45.483383553070269 ], [ 9.188823137027759, 45.483132935394046 ], [ 9.188539395287288, 45.482934272704576 ], [ 9.188182271666767, 45.482807010867205 ], [ 9.187786722853021, 45.48276360665681 ], [ 9.187391466214955, 45.482808308592894 ], [ 9.187299249323962, 45.482841551691685 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.204041094169847, 45.484457826293443 ], [ 9.203977464631357, 45.484179793825682 ], [ 9.203794810492749, 45.483929200235096 ], [ 9.20351101225422, 45.483730574860758 ], [ 9.20315385005123, 45.483603359915307 ], [ 9.202758284346462, 45.483560007583748 ], [ 9.202363034161881, 45.483604761307809 ], [ 9.202006787642413, 45.483733240479516 ], [ 9.201962975997917, 45.48376421416031 ], [ 9.201866688560726, 45.483798939560671 ], [ 9.201584315733809, 45.483998567903875 ], [ 9.201403457965986, 45.484249805465453 ], [ 9.201341819937838, 45.484528059862704 ], [ 9.201405436914346, 45.484806093803094 ], [ 9.201588083319782, 45.485056691189001 ], [ 9.201871881492105, 45.485255321294751 ], [ 9.20222905127557, 45.485382540198671 ], [ 9.202624629340951, 45.485425894327804 ], [ 9.203019892045578, 45.48538113969132 ], [ 9.203376146624745, 45.485252657383249 ], [ 9.203419958643849, 45.485221683167886 ], [ 9.203516247542886, 45.485186956464347 ], [ 9.203798619452114, 45.484987323388644 ], [ 9.203979468908594, 45.484736082081696 ], [ 9.204041094169847, 45.484457826293443 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.216555494844538, 45.484532986104185 ], [ 9.216491803686832, 45.484254960724464 ], [ 9.216309093895266, 45.484004387250366 ], [ 9.216025251417072, 45.483805793051509 ], [ 9.215668060717379, 45.483678617288973 ], [ 9.215272485047647, 45.483635308312415 ], [ 9.214877244405026, 45.483680105320069 ], [ 9.214521026000664, 45.483808623467411 ], [ 9.21423869793399, 45.484008283010546 ], [ 9.214057896457401, 45.484259540505114 ], [ 9.213996320741975, 45.484537801617002 ], [ 9.214016987378256, 45.484628033543331 ], [ 9.213998516809761, 45.484711501648718 ], [ 9.21406219623077, 45.484989528417664 ], [ 9.214244899275005, 45.485240105454686 ], [ 9.214528742735565, 45.485438704025697 ], [ 9.214885942022738, 45.485565883295955 ], [ 9.215281530918576, 45.48560919357228 ], [ 9.215676784719983, 45.485564395156828 ], [ 9.216033011534018, 45.485435873429424 ], [ 9.216315340358195, 45.48523620950008 ], [ 9.216496134894399, 45.484984948488218 ], [ 9.216557698776795, 45.484706686072364 ], [ 9.216537028056901, 45.484616454614446 ], [ 9.216555494844538, 45.484532986104185 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.196137004745713, 45.484897714818686 ], [ 9.196073413570911, 45.484619677905677 ], [ 9.195890793005123, 45.484369071639819 ], [ 9.195607020262651, 45.484170426601011 ], [ 9.195249872983753, 45.484043186926847 ], [ 9.19485431017063, 45.483999807222744 ], [ 9.19445905056231, 45.484044533609627 ], [ 9.194102783225979, 45.484172988155244 ], [ 9.193820381049749, 45.484372597341114 ], [ 9.193639487539029, 45.48462382265221 ], [ 9.193577810872767, 45.484902072905157 ], [ 9.193641390098001, 45.485180111213289 ], [ 9.193824003334544, 45.485430721051756 ], [ 9.194107776167609, 45.485629370475927 ], [ 9.194464930922338, 45.485756613673225 ], [ 9.194860505741014, 45.485799994692478 ], [ 9.195255777298895, 45.485755266910445 ], [ 9.195612051964476, 45.485626808792247 ], [ 9.195894454050116, 45.485427195221007 ], [ 9.196075340085006, 45.485175966386755 ], [ 9.196137004745713, 45.484897714818686 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.210689013057326, 45.485315851789267 ], [ 9.210625349849025, 45.485037823126795 ], [ 9.210442663487996, 45.484787240261753 ], [ 9.210158837628283, 45.484588631483149 ], [ 9.20980165510867, 45.484461437379217 ], [ 9.209406078380164, 45.484418108094857 ], [ 9.209010827543604, 45.484462884815997 ], [ 9.208654590807791, 45.484591384683739 ], [ 9.208372238066209, 45.48479102974342 ], [ 9.208191407986231, 45.485042277968475 ], [ 9.208129802538549, 45.485320535932232 ], [ 9.208193453799163, 45.485598565992881 ], [ 9.208376132836285, 45.48584915243238 ], [ 9.208659958793367, 45.486047765596403 ], [ 9.209017148794427, 45.486174963221679 ], [ 9.209412737530798, 45.486218293818183 ], [ 9.209808000315052, 45.486173515698894 ], [ 9.210164244374763, 45.486045012256682 ], [ 9.210446597018977, 45.485845362811567 ], [ 9.210627419617513, 45.485594111065211 ], [ 9.210689013057326, 45.485315851789267 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.18174081168789, 45.485157476077156 ], [ 9.181677291010136, 45.484879431053855 ], [ 9.181494733360456, 45.484628801687009 ], [ 9.181211009795277, 45.484430120818054 ], [ 9.180853893141993, 45.484302836091892 ], [ 9.180458339405714, 45.484259406523698 ], [ 9.180063066437215, 45.484304083114992 ], [ 9.179706764611165, 45.484432492807478 ], [ 9.179424310190964, 45.484632066472905 ], [ 9.179243351795083, 45.484883269073279 ], [ 9.179181603953134, 45.485161511648549 ], [ 9.179245112679055, 45.485439558064087 ], [ 9.179427662993946, 45.485690191001737 ], [ 9.17971138664301, 45.485888876256112 ], [ 9.180068510766828, 45.486016164507269 ], [ 9.180464076506796, 45.486059595393584 ], [ 9.180859361427125, 45.486014917410081 ], [ 9.181215670587978, 45.485886504146819 ], [ 9.181498124924284, 45.485686926095937 ], [ 9.18167907584963, 45.485435719970567 ], [ 9.18174081168789, 45.485157476077156 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.201309725690752, 45.49025685666912 ], [ 9.201246102956345, 45.489978822951315 ], [ 9.201063442082072, 45.489728225259825 ], [ 9.200779624227932, 45.489529593335035 ], [ 9.200422431449683, 45.489402370030767 ], [ 9.200026827202739, 45.489359008350014 ], [ 9.199631534281382, 45.489403752649551 ], [ 9.199275245013336, 45.489532223243913 ], [ 9.198992834433527, 45.489731845043863 ], [ 9.198811946870315, 45.489983078299709 ], [ 9.198750289921039, 45.490261331050377 ], [ 9.198813900703275, 45.490539366164647 ], [ 9.198996554248197, 45.490789967430061 ], [ 9.199280372195354, 45.490988603741023 ], [ 9.199637572453479, 45.491115830568432 ], [ 9.200033188710083, 45.49115919356354 ], [ 9.200428493583608, 45.491114447867517 ], [ 9.200784790181009, 45.490985973699239 ], [ 9.201067200667795, 45.490786347513108 ], [ 9.201248080751139, 45.490535110734115 ], [ 9.201309725690752, 45.49025685666912 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.219226424761896, 45.490280755945662 ], [ 9.219162713886085, 45.490002732372403 ], [ 9.218979973590059, 45.489752163479949 ], [ 9.218696092807221, 45.489553576189415 ], [ 9.218338859752031, 45.489426408985423 ], [ 9.217943241821546, 45.489383109379837 ], [ 9.217547963149119, 45.489427915653643 ], [ 9.217191714668067, 45.489556442055374 ], [ 9.21690936742176, 45.489756108033291 ], [ 9.216728559540213, 45.4900073695133 ], [ 9.216666990821935, 45.490285631771243 ], [ 9.216730689748191, 45.490563656744662 ], [ 9.216913422721628, 45.490814229213264 ], [ 9.217197303605834, 45.491012820889964 ], [ 9.217554544147625, 45.491139991614816 ], [ 9.217950174090307, 45.491183292531041 ], [ 9.218345464712288, 45.491138484857096 ], [ 9.218701720515924, 45.49100995487921 ], [ 9.218984067660866, 45.490810284515099 ], [ 9.219164868055813, 45.490559019514237 ], [ 9.219226424761896, 45.490280755945662 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.121543113165441, 45.493897350220635 ], [ 9.121479878686214, 45.493619271856609 ], [ 9.121297559496014, 45.493368546425081 ], [ 9.121014003312915, 45.49316971617187 ], [ 9.120656966583757, 45.493042243364442 ], [ 9.120261397492836, 45.492998605427445 ], [ 9.119866015394392, 45.493043073757157 ], [ 9.119509521343439, 45.493171295679673 ], [ 9.119226810416006, 45.493370720446094 ], [ 9.119045556335282, 45.493621827593863 ], [ 9.118983502571856, 45.493900037507743 ], [ 9.11904672508496, 45.494178117252041 ], [ 9.119229036914232, 45.494428846247878 ], [ 9.119512593153221, 45.494627680887923 ], [ 9.119869637333741, 45.494755157229122 ], [ 9.120265218425333, 45.494798796497058 ], [ 9.1206606124899, 45.494754326787074 ], [ 9.121017113901775, 45.494626101300263 ], [ 9.121299824773319, 45.494426672147 ], [ 9.12148107140268, 45.494175561465447 ], [ 9.121543113165441, 45.493897350220635 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.111121287030237, 45.497137266917136 ], [ 9.111058100177184, 45.496859182897403 ], [ 9.110875816720618, 45.496608440941081 ], [ 9.1105922808815, 45.496409584911753 ], [ 9.110235247115945, 45.496282079599951 ], [ 9.109839663318519, 45.496238405611763 ], [ 9.109444250282973, 45.496282837872172 ], [ 9.109087712092146, 45.496411027237656 ], [ 9.108804948142042, 45.49661042614607 ], [ 9.108623637345405, 45.496861516666186 ], [ 9.108561528724188, 45.497139720810551 ], [ 9.108624703607564, 45.49741780620861 ], [ 9.108806979698006, 45.497668551728282 ], [ 9.109090515588175, 45.497867412144949 ], [ 9.109447556802449, 45.497994920992276 ], [ 9.109843152601092, 45.49803859631367 ], [ 9.110238577606323, 45.497994162674985 ], [ 9.11059512316327, 45.497865969746123 ], [ 9.110877887062321, 45.497666566450334 ], [ 9.111059190410248, 45.497415472394728 ], [ 9.111121287030237, 45.497137266917136 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.220785643533455, 45.495530638257982 ], [ 9.220721918971517, 45.495252615836201 ], [ 9.220539154703493, 45.495002049713925 ], [ 9.220255242009516, 45.49480346654088 ], [ 9.219897972227644, 45.494676304398595 ], [ 9.219502316349605, 45.494633010303424 ], [ 9.219107002222836, 45.494677821996909 ], [ 9.218750724250723, 45.494806353197184 ], [ 9.218468356363237, 45.495006022882926 ], [ 9.218287538710992, 45.495257286617161 ], [ 9.218225972049297, 45.495535549455127 ], [ 9.218289684658609, 45.495813573277673 ], [ 9.218472441602627, 45.496064142976962 ], [ 9.218756354398712, 45.496262730536984 ], [ 9.219113631669835, 45.496389896200519 ], [ 9.219509299563603, 45.496433191606279 ], [ 9.219904625642993, 45.496388378512066 ], [ 9.220260910939123, 45.496259843734798 ], [ 9.220543278724493, 45.496060169662066 ], [ 9.220724088887494, 45.495808902406552 ], [ 9.220785643533455, 45.495530638257982 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.196103459422307, 45.49614341477681 ], [ 9.196039855570145, 45.495865378415196 ], [ 9.195857198639592, 45.495614772650924 ], [ 9.195573369405192, 45.495416128014625 ], [ 9.195216151037028, 45.495288888604236 ], [ 9.19482050949539, 45.495245508999176 ], [ 9.19442517122479, 45.495290235310534 ], [ 9.194068832991425, 45.495418689613594 ], [ 9.19378637462269, 45.495618298413795 ], [ 9.193605445124499, 45.495869523234099 ], [ 9.193543756199146, 45.496147772939388 ], [ 9.19360734809467, 45.496425810696699 ], [ 9.193789997691628, 45.496676420034909 ], [ 9.19407382701665, 45.496875069058333 ], [ 9.194431052865044, 45.497002311993256 ], [ 9.194826706419327, 45.497045692914028 ], [ 9.195222056646555, 45.497000965206944 ], [ 9.195578402213519, 45.496872507329911 ], [ 9.195860860491639, 45.496672894142613 ], [ 9.196041782509591, 45.496421665797754 ], [ 9.196103459422307, 45.49614341477681 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.186322395406531, 45.49769962431116 ], [ 9.186258837895837, 45.497421582506178 ], [ 9.186076219247823, 45.497170961109767 ], [ 9.185792416490321, 45.496972292182889 ], [ 9.185435210202295, 45.496845022201128 ], [ 9.185039565161983, 45.49680160873627 ], [ 9.184644208156437, 45.496846301213587 ], [ 9.184287837785408, 45.496974725019939 ], [ 9.184005337021537, 45.497174309645857 ], [ 9.183824359020036, 45.497425518980712 ], [ 9.183762620230596, 45.497703763405376 ], [ 9.183826165782248, 45.497981806604123 ], [ 9.184008777092357, 45.498232431573463 ], [ 9.18429257993593, 45.498431104887729 ], [ 9.18464979370113, 45.498558378395444 ], [ 9.185045450753682, 45.498601793178082 ], [ 9.185440819718281, 45.498557099306971 ], [ 9.185797197427208, 45.498428671927712 ], [ 9.186079698105006, 45.49822908291442 ], [ 9.186260668629332, 45.497977870053589 ], [ 9.186322395406531, 45.49769962431116 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.094246170640107, 45.505210555850319 ], [ 9.094183057750067, 45.504932462831675 ], [ 9.094000823043535, 45.504681694263915 ], [ 9.093717305970813, 45.504482796615704 ], [ 9.093360259152151, 45.504355238751266 ], [ 9.092964631760305, 45.504311506420557 ], [ 9.092569148855954, 45.504355880258885 ], [ 9.092212521360125, 45.50448401684114 ], [ 9.09192965740926, 45.504683373771776 ], [ 9.091748245703764, 45.504934437228776 ], [ 9.091686045142801, 45.50521263187435 ], [ 9.091749146055626, 45.505490726268214 ], [ 9.091931373386531, 45.505741498398187 ], [ 9.092214890502456, 45.505940400435051 ], [ 9.092571944766643, 45.50606796183812 ], [ 9.092967584162407, 45.506111695505936 ], [ 9.093363079043971, 45.50606732029236 ], [ 9.093719713915426, 45.505939180147877 ], [ 9.094002577823085, 45.50573981882863 ], [ 9.094183982083049, 45.505488751832949 ], [ 9.094246170640107, 45.505210555850319 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.102983975060127, 45.501007658016128 ], [ 9.102920823892044, 45.500729569653231 ], [ 9.102738564010401, 45.500478814861793 ], [ 9.102455037329117, 45.500279938761913 ], [ 9.102097997408418, 45.500152408108626 ], [ 9.101702392745603, 45.500108705988431 ], [ 9.101306946176676, 45.500153110079786 ], [ 9.100950365066454, 45.500281273996372 ], [ 9.100667553011542, 45.500480652667079 ], [ 9.100486193632971, 45.500731730141709 ], [ 9.100424040708024, 45.501009929710108 ], [ 9.100487179902808, 45.501288019449831 ], [ 9.100669432413758, 45.501538777804072 ], [ 9.100952959142303, 45.501737658291923 ], [ 9.101310006510177, 45.501865192482263 ], [ 9.101705623175498, 45.501908895937511 ], [ 9.102101081717722, 45.501864490469352 ], [ 9.102457670198635, 45.501736322989942 ], [ 9.102740482206285, 45.501536939931263 ], [ 9.102921834137685, 45.501285858919616 ], [ 9.102983975060127, 45.501007658016128 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.249473361159334, 45.505251616378999 ], [ 9.249409484303792, 45.504973610758107 ], [ 9.249226561349321, 45.504723091298935 ], [ 9.24894249910839, 45.504524580082816 ], [ 9.248585103555833, 45.504397508147406 ], [ 9.248189357992635, 45.504354313679301 ], [ 9.247793999043791, 45.504399224668688 ], [ 9.247437725499912, 45.504527845114779 ], [ 9.247155410858523, 45.504727585260973 ], [ 9.246974690060037, 45.504978893773313 ], [ 9.246913254381116, 45.505257171323528 ], [ 9.246977119282157, 45.505535178351494 ], [ 9.247160034919739, 45.505785701392504 ], [ 9.247444097276201, 45.505984216997042 ], [ 9.247801500332578, 45.506111292451266 ], [ 9.248197257921676, 45.506154488224475 ], [ 9.248592628825028, 45.50610957582802 ], [ 9.248948909685787, 45.505980951800076 ], [ 9.249231224211657, 45.505781207265471 ], [ 9.249411937506316, 45.505529895234289 ], [ 9.249473361159334, 45.505251616378999 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.202390410384078, 45.507240243911141 ], [ 9.202326762913446, 45.506962211666718 ], [ 9.202144042069644, 45.506711616553289 ], [ 9.201860134883782, 45.506512988058603 ], [ 9.201502832155937, 45.506385768700298 ], [ 9.201107108103164, 45.50634241109487 ], [ 9.200711697245627, 45.506387159200074 ], [ 9.200355303453961, 45.506515632958099 ], [ 9.200072811993733, 45.506715256970324 ], [ 9.199891875110508, 45.506966491270859 ], [ 9.199830205230429, 45.507244743796676 ], [ 9.199893840738374, 45.507522777438631 ], [ 9.200076554246674, 45.507773376128227 ], [ 9.200360461526138, 45.507972009011716 ], [ 9.20071777174093, 45.508099231895116 ], [ 9.20111350781424, 45.508142590815446 ], [ 9.201508930634464, 45.508097841312704 ], [ 9.201865331761631, 45.507969363978539 ], [ 9.202147823128264, 45.507769735577533 ], [ 9.202328752524535, 45.507518497751875 ], [ 9.202390410384078, 45.507240243911141 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.180883173342545, 45.505534984986831 ], [ 9.180819633659089, 45.505256940510691 ], [ 9.180637013676206, 45.505006310765516 ], [ 9.180353190553101, 45.504807628629408 ], [ 9.179995946862629, 45.504680341870845 ], [ 9.179600251044093, 45.504636909703578 ], [ 9.179204834854469, 45.504681583383395 ], [ 9.178848402686059, 45.504809990137083 ], [ 9.178565843559927, 45.505009561124446 ], [ 9.178384816343847, 45.505260761570064 ], [ 9.178323042305109, 45.505539002725193 ], [ 9.178386570023797, 45.505817048594352 ], [ 9.178569182663693, 45.506067681912761 ], [ 9.178853005870373, 45.506266368437466 ], [ 9.179210257039054, 45.506393658723653 ], [ 9.179605964874016, 45.506437092210177 ], [ 9.180001393028405, 45.506392417137334 ], [ 9.180357832539801, 45.506264006810405 ], [ 9.180640391582362, 45.506064431434481 ], [ 9.180821411320235, 45.505813227461218 ], [ 9.180883173342545, 45.505534984986831 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.22399088379394, 45.506146401895741 ], [ 9.223927131286286, 45.505868381833125 ], [ 9.223744318290935, 45.505617821398445 ], [ 9.223460340858223, 45.505419246684475 ], [ 9.223102996663043, 45.505292094944409 ], [ 9.222707263980462, 45.505248812176241 ], [ 9.222311878175066, 45.505293635012798 ], [ 9.221955540665766, 45.505422176081623 ], [ 9.221673131210023, 45.505621853395589 ], [ 9.221492294027682, 45.505873121771316 ], [ 9.221430731786542, 45.506151385809773 ], [ 9.221494472335376, 45.506429407274268 ], [ 9.221677278003829, 45.506679971287667 ], [ 9.221961255540208, 45.506878550390283 ], [ 9.222318607230005, 45.50700570565251 ], [ 9.222714351935474, 45.507048989731082 ], [ 9.22310974969969, 45.507004165492624 ], [ 9.223466094535889, 45.506875620845086 ], [ 9.223748503887968, 45.506675939142511 ], [ 9.223929333575692, 45.506424667244602 ], [ 9.22399088379394, 45.506146401895741 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.242667844617728, 45.500079892878851 ], [ 9.242604007195402, 45.499801883118998 ], [ 9.242421131221194, 45.49955135243782 ], [ 9.242137118908914, 45.499352824015453 ], [ 9.241779771346481, 45.499225730573905 ], [ 9.241384067137925, 45.499182512404893 ], [ 9.240988738860754, 45.499227399818423 ], [ 9.240632482303544, 45.499355999121342 ], [ 9.240350169300964, 45.499555722626361 ], [ 9.240169434632561, 45.499807020628431 ], [ 9.240107970932019, 45.500085294828096 ], [ 9.240171796402091, 45.500363305993424 ], [ 9.240354665058819, 45.500613840254907 ], [ 9.24063867748343, 45.500812373064925 ], [ 9.240996032545098, 45.500939470025529 ], [ 9.241391748775335, 45.500982689500809 ], [ 9.241787089004765, 45.500937800681811 ], [ 9.242143352879445, 45.50080919779861 ], [ 9.242425665769696, 45.500609469905939 ], [ 9.242606392938869, 45.5003581683848 ], [ 9.242667844617728, 45.500079892878851 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.222284654694999, 45.500443021256054 ], [ 9.222220917125858, 45.500164999934753 ], [ 9.22203813024317, 45.49991443646946 ], [ 9.221754187540949, 45.499715857249747 ], [ 9.221396883294561, 45.499588699970069 ], [ 9.221001191869011, 45.499545411170679 ], [ 9.220605844590898, 45.499590228074737 ], [ 9.220249539108295, 45.499718763890456 ], [ 9.219967152043884, 45.499918437144792 ], [ 9.21978632542557, 45.500169703051625 ], [ 9.21972476088667, 45.500447966453521 ], [ 9.219788486500326, 45.500725989176111 ], [ 9.219971266057676, 45.500976556219207 ], [ 9.220255208862728, 45.501175139826636 ], [ 9.220612520600856, 45.501302300628019 ], [ 9.221008224045454, 45.50134559073792 ], [ 9.221403583279049, 45.501300772432558 ], [ 9.221759896086999, 45.501172233039064 ], [ 9.222042283048571, 45.500972555396963 ], [ 9.222223102175146, 45.500721285968446 ], [ 9.222284654694999, 45.500443021256054 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.199199983352962, 45.501623979875966 ], [ 9.199136358003953, 45.501345945542361 ], [ 9.19895366955032, 45.501095345023863 ], [ 9.198669801852457, 45.500896708337443 ], [ 9.198312541845299, 45.500769478802738 ], [ 9.197916859564582, 45.500726110032389 ], [ 9.197521485442094, 45.500770847077021 ], [ 9.197165119753034, 45.500899310961366 ], [ 9.196882645012215, 45.501098927253125 ], [ 9.196701711828387, 45.501350156742092 ], [ 9.19664003226508, 45.501628407836129 ], [ 9.196703645654461, 45.501906443566305 ], [ 9.196886326773555, 45.502157047659864 ], [ 9.197170194563508, 45.502355688734212 ], [ 9.197527462054209, 45.502482921793735 ], [ 9.197923156351463, 45.502526291879391 ], [ 9.198318542433576, 45.502481553438152 ], [ 9.198674915457177, 45.502353085978754 ], [ 9.198957390105905, 45.502153465299052 ], [ 9.199138315806188, 45.501902232285275 ], [ 9.199199983352962, 45.501623979875966 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.261887493874514, 45.511161176973999 ], [ 9.261823549124012, 45.510883178734097 ], [ 9.26164055193072, 45.510632679578919 ], [ 9.26135641637377, 45.510434199601981 ], [ 9.260998955603856, 45.510307166782901 ], [ 9.2606031593049, 45.510264015479471 ], [ 9.260207769067481, 45.510308969456865 ], [ 9.259851486744697, 45.510437628506814 ], [ 9.259569186693746, 45.510637399094136 ], [ 9.259388502427671, 45.510888726905293 ], [ 9.259327121648059, 45.511167010722708 ], [ 9.25939105444218, 45.511445010372555 ], [ 9.259574044321015, 45.511695513111874 ], [ 9.259858179999307, 45.511893997478111 ], [ 9.260215648280028, 45.512021033815124 ], [ 9.260611456610361, 45.512064186421384 ], [ 9.261006858804166, 45.512019231034095 ], [ 9.261363148441406, 45.511890568400034 ], [ 9.261645448371015, 45.511690793423384 ], [ 9.261826125126285, 45.511439462094259 ], [ 9.261887493874514, 45.511161176973999 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.225779316940786, 45.512026981602823 ], [ 9.22571554888135, 45.51174896285508 ], [ 9.225532708823884, 45.511498405592924 ], [ 9.225248695467974, 45.511299835598457 ], [ 9.224891310004812, 45.511172689662793 ], [ 9.224495534748637, 45.511129413215684 ], [ 9.22410010923087, 45.511174242271188 ], [ 9.223743738757252, 45.511302788848212 ], [ 9.223461306311803, 45.51150247042056 ], [ 9.223280458364881, 45.511753741388176 ], [ 9.223218898638422, 45.512032006098359 ], [ 9.223282654735607, 45.512310026248684 ], [ 9.223465487464589, 45.51256058709054 ], [ 9.22374950092502, 45.512759161474527 ], [ 9.224106893885786, 45.512886310932871 ], [ 9.224502681168818, 45.512929588690298 ], [ 9.224898118648843, 45.512884758232239 ], [ 9.225254496450946, 45.51275620807553 ], [ 9.225536928791868, 45.512556522113648 ], [ 9.225717769241186, 45.512305247623345 ], [ 9.225779316940786, 45.512026981602823 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.175260155479744, 45.513552347732599 ], [ 9.175196634332387, 45.513274300492675 ], [ 9.175014013242865, 45.513023662112509 ], [ 9.174730169479455, 45.512824966315421 ], [ 9.174372887635798, 45.512697662206989 ], [ 9.173977139885741, 45.512654210699004 ], [ 9.173581663069086, 45.512698864940226 ], [ 9.173225167511884, 45.512827254060149 ], [ 9.172942548439408, 45.513026810944751 ], [ 9.172761470587011, 45.513278002199215 ], [ 9.172699660178784, 45.513556239974761 ], [ 9.172763169355502, 45.513834288606958 ], [ 9.172945783096806, 45.514084930560642 ], [ 9.1732296269412, 45.514283630747542 ], [ 9.173586916264107, 45.514410938385339 ], [ 9.173982676034848, 45.514454391214123 ], [ 9.174378164822144, 45.514409735580621 ], [ 9.174734667727559, 45.51428134288718 ], [ 9.175017286719056, 45.514081781612781 ], [ 9.175198357092205, 45.513830586828945 ], [ 9.175260155479744, 45.513552347732599 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.206650179878853, 45.514731595881628 ], [ 9.206586502868216, 45.514453566428074 ], [ 9.206403738785639, 45.514202978533675 ], [ 9.206119778894921, 45.514004360979357 ], [ 9.205762419154969, 45.513877155211617 ], [ 9.205366639362941, 45.513833812516623 ], [ 9.204971179494382, 45.513878575392653 ], [ 9.204614748216899, 45.514007062336169 ], [ 9.204332234465232, 45.514206696658036 ], [ 9.204151292667293, 45.514457937383476 ], [ 9.20408963573095, 45.514736191820489 ], [ 9.204153300774809, 45.515014222672811 ], [ 9.204336057520614, 45.515264814144835 ], [ 9.204620017506951, 45.515463436089114 ], [ 9.204977384738394, 45.515590645382318 ], [ 9.205373176556288, 45.515633989391695 ], [ 9.205768648391626, 45.515589225116912 ], [ 9.206125087005889, 45.515460734595777 ], [ 9.206407600661931, 45.515261095883929 ], [ 9.206588534968377, 45.515009851633053 ], [ 9.206650179878853, 45.514731595881628 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.227410539809259, 45.517451963087694 ], [ 9.227346757489737, 45.51717394554273 ], [ 9.227163892541478, 45.51692339117799 ], [ 9.226879846100767, 45.516724825491849 ], [ 9.226522422597238, 45.516597684853551 ], [ 9.226126608068414, 45.516554414174237 ], [ 9.225731145889464, 45.516599248903397 ], [ 9.225374744954337, 45.516727800504619 ], [ 9.225092291228632, 45.516927485960089 ], [ 9.224911433265872, 45.517178759289699 ], [ 9.224849875768802, 45.517457024609648 ], [ 9.224913646122896, 45.517735043557757 ], [ 9.225096503741197, 45.517985601503078 ], [ 9.22538055028722, 45.518184171579556 ], [ 9.2257379812911, 45.518311315741023 ], [ 9.226133807850434, 45.51835458773057 ], [ 9.226529281994816, 45.518309751598252 ], [ 9.226885690259895, 45.518181196416435 ], [ 9.227168143880293, 45.517981506570642 ], [ 9.227348994342703, 45.517730229717891 ], [ 9.227410539809259, 45.517451963087694 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.169506339985832, 45.521670911958488 ], [ 9.169442837915605, 45.521392861888081 ], [ 9.169260215975633, 45.521142214667869 ], [ 9.168976351518211, 45.520943504886517 ], [ 9.168619031163011, 45.520816183018255 ], [ 9.168223230853535, 45.520772711713072 ], [ 9.167827692573839, 45.520817346057456 ], [ 9.167471132665561, 45.52094571712837 ], [ 9.167188452652352, 45.52114525957861 ], [ 9.167007323234495, 45.521396441426504 ], [ 9.166945475683807, 45.521674675744222 ], [ 9.167008965777447, 45.52195272720612 ], [ 9.167191580363879, 45.522203378000114 ], [ 9.167475444899637, 45.522402092172534 ], [ 9.167832772735107, 45.52252941757191 ], [ 9.168228585069592, 45.522572890199456 ], [ 9.16862413532588, 45.522528254463602 ], [ 9.168980702587687, 45.522399879818856 ], [ 9.169263382522569, 45.522200332977583 ], [ 9.169444504460154, 45.521949147598583 ], [ 9.169506339985832, 45.521670911958488 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.213461052649057, 45.526781819060055 ], [ 9.213397328295333, 45.526503794076852 ], [ 9.21321449480485, 45.526253217734926 ], [ 9.212930450235845, 45.526054617683975 ], [ 9.212572998835661, 45.525927433656911 ], [ 9.212177129372755, 45.525884114811639 ], [ 9.21178159059907, 45.525928901312056 ], [ 9.211425098905057, 45.5260574093423 ], [ 9.211142549139163, 45.526257060149554 ], [ 9.210961599255075, 45.526508311145491 ], [ 9.210899962953224, 45.526786568632915 ], [ 9.210963675333584, 45.527064595016853 ], [ 9.211146501485221, 45.527315174938785 ], [ 9.211430546153077, 45.527513779381543 ], [ 9.211788005052053, 45.527640966934683 ], [ 9.212183886549406, 45.527684287093486 ], [ 9.212579437296446, 45.527639499192361 ], [ 9.212935936329306, 45.527510987582097 ], [ 9.213218485996359, 45.527311332383071 ], [ 9.213399428381649, 45.527060077861023 ], [ 9.213461052649057, 45.526781819060055 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.210754044210942, 45.521992149596812 ], [ 9.210690338678521, 45.521714122836194 ], [ 9.21050753278104, 45.52146354190171 ], [ 9.210223521875612, 45.521264934892784 ], [ 9.209866106914552, 45.521137742223551 ], [ 9.209470273099805, 45.521094413897892 ], [ 9.209074765694309, 45.521139191007599 ], [ 9.208718298018358, 45.521267690656039 ], [ 9.208435762569449, 45.521467334910639 ], [ 9.208254815899641, 45.521718581824423 ], [ 9.208193171394321, 45.52199683809976 ], [ 9.208256864956001, 45.522274866260339 ], [ 9.208439663515456, 45.522525450773863 ], [ 9.208723674518449, 45.52272406217385 ], [ 9.2090810969754, 45.522851258368931 ], [ 9.209476942821183, 45.522894588008469 ], [ 9.209872462197417, 45.522849809498794 ], [ 9.210228937211394, 45.522721306271322 ], [ 9.210511472562745, 45.522521657625667 ], [ 9.210692411736659, 45.522270407186014 ], [ 9.210754044210942, 45.521992149596812 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.165009686837166, 45.52813076216033 ], [ 9.164946199553626, 45.527852709885025 ], [ 9.164763576578549, 45.527602055761854 ], [ 9.164479695366134, 45.527403335055176 ], [ 9.164122344176462, 45.527275999308472 ], [ 9.163726501971196, 45.527232512530126 ], [ 9.163330914834953, 45.527277131320993 ], [ 9.162974303891126, 45.527405488280507 ], [ 9.162691575658478, 45.527605019442774 ], [ 9.162510405557056, 45.527856193931235 ], [ 9.162448528841187, 45.528134425538646 ], [ 9.162512004143407, 45.528412479204817 ], [ 9.162694619760748, 45.528663136902026 ], [ 9.162978501049416, 45.528861862000788 ], [ 9.16333585972021, 45.528989201279963 ], [ 9.163731713953933, 45.529032689381907 ], [ 9.164127313071493, 45.528988069200167 ], [ 9.164483931373056, 45.528859708666609 ], [ 9.164766659529448, 45.528660173112257 ], [ 9.164947822149751, 45.528408995091368 ], [ 9.165009686837166, 45.52813076216033 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.238276143918526, 45.491201742488471 ], [ 9.238212338304878, 45.490923729776902 ], [ 9.238029510670412, 45.490673191576938 ], [ 9.237745558496851, 45.490474651804895 ], [ 9.237388276985612, 45.490347544293918 ], [ 9.236992638275909, 45.490304310713107 ], [ 9.236597368534648, 45.490349182880976 ], [ 9.23624115782121, 45.490477768596499 ], [ 9.235958873482989, 45.490677481502217 ], [ 9.235778147493377, 45.490928772930424 ], [ 9.235716671635792, 45.491207045225096 ], [ 9.235780465302115, 45.491485059340796 ], [ 9.235963285620858, 45.491735601119416 ], [ 9.23624723790466, 45.491934145277781 ], [ 9.236604526909993, 45.492061256307224 ], [ 9.237000177635153, 45.492104491194802 ], [ 9.237395459323741, 45.492059617622836 ], [ 9.237751677352902, 45.491931028328636 ], [ 9.238033961580884, 45.491731311036645 ], [ 9.238214680076398, 45.491480016089902 ], [ 9.238276143918526, 45.491201742488471 ] ] ] } },
{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.193839578688271, 45.492571540272941 ], [ 9.19377599005122, 45.492293502451396 ], [ 9.193593354748742, 45.492042892874451 ], [ 9.193309551438222, 45.491844242445993 ], [ 9.192952360752269, 45.491716995831027 ], [ 9.192556745941769, 45.49167360831423 ], [ 9.192161430834975, 45.491718326781161 ], [ 9.191805109930911, 45.49184677407483 ], [ 9.191522661360732, 45.492046377386679 ], [ 9.191453050157111, 45.492143033841685 ], [ 9.191376859950093, 45.492196876079085 ], [ 9.191195930631748, 45.492448097233556 ], [ 9.191134233516339, 45.492726345818014 ], [ 9.191197809653247, 45.493004385109295 ], [ 9.191380437465352, 45.493254998486258 ], [ 9.191664241111653, 45.493453653657866 ], [ 9.192021439901255, 45.493580904248752 ], [ 9.192417067665685, 45.493624293583828 ], [ 9.192812395896853, 45.493579574225706 ], [ 9.193168725414925, 45.493451123814921 ], [ 9.193451175162361, 45.493251516480221 ], [ 9.193520784303294, 45.49315485882974 ], [ 9.193596973751371, 45.493101015172634 ], [ 9.193777894463059, 45.492849790258063 ], [ 9.193839578688271, 45.492571540272941 ] ] ] } }
]
}

17
package.json Normal file
View file

@ -0,0 +1,17 @@
{
"dependencies": {
"@turf/bbox": "^6.0.1",
"@turf/bbox-polygon": "^6.0.1",
"@turf/boolean-contains": "^6.0.1",
"@turf/boolean-overlap": "^6.0.1",
"@turf/buffer": "^5.1.5",
"@turf/center": "^6.0.1",
"mapbox-gl": "^1.1.0",
"underscore": "^1.9.1"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"babel-preset-env": "^1.7.0"
}
}

89
style.css Normal file
View file

@ -0,0 +1,89 @@
body,
html {
padding: 0;
margin: 0;
}
#container {
width: 100%;
height: 100vh;
position: relative;
}
#map {
width: 100%;
height: 100%;
}
.map-overlay {
font: bold 12px/20px "Helvetica Neue", Arial, Helvetica, sans-serif;
position: absolute;
width: 25%;
bottom: 10px;
right: 0;
padding: 10px;
}
.map-overlay .map-overlay-inner {
background-color: #fff;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
border-radius: 3px;
padding: 10px;
margin-bottom: 10px;
}
.map-overlay label {
display: block;
margin: 0 0 10px;
}
.map-overlay input {
background-color: transparent;
display: inline-block;
width: 100%;
position: relative;
margin: 0;
cursor: ew-resize;
}
#menu {
background: #fff;
position: absolute;
z-index: 1;
top: 10px;
right: 10px;
border-radius: 3px;
width: 120px;
border: 1px solid rgba(0, 0, 0, 0.4);
font-family: "Open Sans", sans-serif;
}
#menu a {
font-size: 13px;
color: #404040;
display: block;
margin: 0;
padding: 0;
padding: 10px;
text-decoration: none;
border-bottom: 1px solid rgba(0, 0, 0, 0.25);
text-align: center;
}
#menu a:last-child {
border: none;
}
#menu a:hover {
background-color: #f8f8f8;
color: #404040;
}
#menu a.active {
background-color: #3887be;
color: #ffffff;
}
#menu a.active:hover {
background: #3074a4;
}

1493
yarn.lock Normal file

File diff suppressed because it is too large Load diff