diff --git a/src/app/pages/dashboard-management/services/datastorage.service.ts b/src/app/pages/dashboard-management/services/datastorage.service.ts index 40f8ff2893bd05e018a136702f62e4deab0d0be7..d4cca752dc0bae41894f7089e8361d0a3d453cb4 100644 --- a/src/app/pages/dashboard-management/services/datastorage.service.ts +++ b/src/app/pages/dashboard-management/services/datastorage.service.ts @@ -29,10 +29,4 @@ export class DatastorageService { getMessinaCycling(): Observable<any> { return this.http.get<any>('https://messina.urbanite.esilab.org/data/getTData/gtfsShape/messina?filters=%7B%20%22alternateName%22%3A%22CyclingPaths%22%7D'); } - - getDataFromAmsterdam(): Observable<Array<DataStorageLayer>> { - return this.http.get<any>('https://amsterdam.urbanite.esilab.org/data/getTData/mapLayer/amsterdam'); - } - - } diff --git a/src/app/pages/map-layers/map/map.component.html b/src/app/pages/map-layers/map/map.component.html index 8a6d117fc9da803faa645faede1d014b3cef5614..551beb762e4093b3382c56d8a0e2fc284cacf229 100644 --- a/src/app/pages/map-layers/map/map.component.html +++ b/src/app/pages/map-layers/map/map.component.html @@ -19,14 +19,11 @@ </nb-card-header> <nb-card-body> <mat-selection-list (selectionChange)="onChange($event)"> - <mat-list-item *ngFor="let layer of layersByPilot[pilot]"> - <button (click)="invokeModal($event, layer)" nbButton> - <nb-icon icon="info" [nbTooltip]="layerDescription[layer]"></nb-icon> - </button> - <mat-list-option [value]="layer"> - {{layer}} - </mat-list-option> - </mat-list-item> + <mat-list-option *ngFor="let layer of layersByPilot[pilot]" [value]="layer"> + <p> + <nb-icon icon="info" [nbTooltip]="layersByPilot[pilot]"></nb-icon> {{layer}} + </p> + </mat-list-option> </mat-selection-list> </nb-card-body> <nb-card-footer> diff --git a/src/app/pages/map-layers/map/map.component.ts b/src/app/pages/map-layers/map/map.component.ts index 07e4b245e0c1803651e2f9fc7a2fc17484f9c0b9..4e94258c2a7db09b67a5094717f5c06d0133ca3d 100644 --- a/src/app/pages/map-layers/map/map.component.ts +++ b/src/app/pages/map-layers/map/map.component.ts @@ -9,10 +9,6 @@ import Messina_cycling_path from '../../../../assets/map/map-component-maps/mess import Messina_ATM_Stops from '../../../../assets/map/map-component-maps/atmStops.json'; import Messina_Cameras from '../../../../assets/map/map-component-maps/cameras.json'; import Messina_POIs from '../../../../assets/map/map-component-maps/messina_pois.json'; -import Messina_Incidenti_2018 from '../../../../assets/map/map-component-maps/incidenti_messina/street_result_2018.json'; -import Messina_Incidenti_2019 from '../../../../assets/map/map-component-maps/incidenti_messina/street_result_2019.json'; -import Messina_Incidenti_2020 from '../../../../assets/map/map-component-maps/incidenti_messina/street_result_2020.json'; -import Messina_district from '../../../../assets/map/map-component-maps/out_district_messina.json'; import Bilbao_air_quality from '../../../../assets/map/map-component-maps/bilbao_air_quality_request.json'; import Bilbao_bike from '../../../../assets/map/map-component-maps/bilbao_bike_request.json'; import Bilbao_sound from '../../../../assets/map/map-component-maps/bilbao_sound_request.json'; @@ -50,16 +46,10 @@ export interface FeatureProperties { templateUrl: './map.component.html', }) export class MapComponent implements OnInit { - constructor( - public dialogService: NbDialogService, - private dashboardPageService: DashboardPageCrudService, - private configService: ConfigService, - private dataStorageService: DatastorageService, - private translateService: TranslateService, - private messinaClientService: MessinaClientService, - private modalService: NbDialogService) { + constructor(public dialogService: NbDialogService, private dashboardPageService: DashboardPageCrudService, + private configService: ConfigService, private dataStorageService: DatastorageService, private translateService: TranslateService, private messinaClientService: MessinaClientService,) { } - public legend = new (L.Control.extend({ + legend = new (L.Control.extend({ options: { position: 'bottomright' } })); @@ -81,12 +71,11 @@ export class MapComponent implements OnInit { pilot: string; layersByPilot: { [key: string]: string[] } = { - MESSINA: ["Point of Interests", "ATM Stops", "Messina - Dinnamare", "Messina - Centro", "Messina - Litoranea", "Cameras", - "Messina Incidenti 2018", "Messina Incidenti 2019", "Messina Incidenti 2020"], - BILBAO: [], - AMSTERDAM: [], - HELSINKI: ["Helsinki Bike Stations", "Helsinki Terminalit", "Helsinki Cyclist"], - URBANITE: ["Bilbao Air Quality", "Bilbao Sound", "Point of Interests", "ATM Stops", "Messina - Dinnamare", "Messina - Centro", "Messina - Litoranea", "Cameras"], + MESSINA: ["Point of Interests", "ATM Stops", "Messina - Dinnamare", "Messina - Centro", "Messina - Litoranea", "Cameras"], + BILBAO: ["Bilbao Air Quality", "Bilbao Bike", "Bilbao Sound", "Bilbao Wifi"], + AMSTERDAM: ["Amsterdam Bike"], + HELSINKI: [], + URBANITE: ["Amsterdam Bike", "Bilbao Air Quality", "Bilbao Bike", "Bilbao Sound", "Bilbao Wifi", "Point of Interests", "ATM Stops", "Messina - Dinnamare", "Messina - Centro", "Messina - Litoranea", "Cameras"], } coordinatesByPilot: { [key: string]: L.LatLngExpression } = { @@ -94,116 +83,27 @@ export class MapComponent implements OnInit { BILBAO: [43.2627100, -2.9252800], AMSTERDAM: [52.3740300, 4.8896900], HELSINKI: [60.1695200, 24.9354500], - URBANITE: [60.1695200, 24.9354500], } geojsonLayerContent: { [key: string]: L.GeoJSON } = { - "Point of Interests": <L.GeoJSON>this.getLayer("Point of Interests", <any>Messina_POIs['results']['features']), + "Point of interests": <L.GeoJSON>this.getLayer("Point of interests", <any>Messina_POIs['results']['features']), "ATM Stops": <L.GeoJSON>this.getLayer("ATM Stops", <any>Messina_ATM_Stops['results']['features']), "Cameras": <L.GeoJSON>this.getLayer("Cameras", <any>Messina_Cameras['results']['features']), //"Messina - Dinnamare": <any>this.messinaClientService.getCyclingPaths(), FUTURE IMPLEMENTATION "Messina - Dinnamare": <L.GeoJSON>this.getLayer("Messina - Dinnamare", <any>Messina_cycling_path[0].location), "Messina - Centro": <L.GeoJSON>this.getLayer("Messina - Centro", <any>Messina_cycling_path[1].location), "Messina - Litoranea": <L.GeoJSON>this.getLayer("Messina - Litoranea", <any>Messina_cycling_path[2].location), - - "Messina Incidenti 2018": <L.GeoJSON>this.getLayer("Messina Incidenti 2018", <any>Messina_Incidenti_2018['features']), - "Messina Incidenti 2019": <L.GeoJSON>this.getLayer("Messina Incidenti 2019", <any>Messina_Incidenti_2019['features']), - "Messina Incidenti 2020": <L.GeoJSON>this.getLayer("Messina Incidenti 2020", <any>Messina_Incidenti_2020['features']), - "Helsinki Bike Stations": <L.GeoJSON>this.getLayer("Helsinki Bike Stations", <any>Helsinki_Bike[0].map), - "Helsinki Terminalit": <L.GeoJSON>this.getLayer("Helsinki Bike Stations", <any>Helsinki_Terminalit[0].map), - "Helsinki Cyclist": <L.GeoJSON>this.getLayer("Helsinki Bike Stations", <any>Helsinki_Cyclist[0].map), - }; - - - fillGeojesonlayer() { - let arrays: Array<DataStorageLayer> = <any>Amsterdam_bike; - //console.log(arrays); - arrays.forEach(layer => { - //console.log(layer); - this.geojsonLayerContent[layer.name] = <L.GeoJSON>this.getLayer(layer.name, layer.map); - // console.log(layer.name); - this.layersByPilot['AMSTERDAM'] = this.layersByPilot['AMSTERDAM'].concat(layer.name); - }); - - this.geojsonLayerContent["Messina Districts"] = <L.GeoJSON>this.getLayer("Messina Districts", <any>Messina_district); - this.layersByPilot['MESSINA'] = this.layersByPilot['MESSINA'].concat("Messina Districts"); - - - let level: DataStorageLayer; - let arrayBilbao: Array<DataStorageLayer> = <any>Bilbao_layers; - //console.log(arrayBilbao); - arrayBilbao.forEach(layer => { - //console.log(layer); - this.geojsonLayerContent[layer.name] = <L.GeoJSON>this.getLayer(layer.name, layer.map); - // console.log(layer.name); - this.layersByPilot['BILBAO'] = this.layersByPilot['BILBAO'].concat(layer.name); - }); - - // arrayBilbao.forEach(layer => { - // //console.log(layer.map['features']); - // level = layer.map['features']; - // console.log(level); - // this.geojsonLayerContent[""] = <L.GeoJSON>this.getLayer(layer.name, layer.map); - // <L.GeoJSON>this.getLayer("", layer.map); - // console.log(layer.name); - // this.layersByPilot['BILBAO'] = this.layersByPilot['BILBAO'].concat(layer.name); - // }); - - // arrays = <any>Bilbao_wifi; - // console.log(arrays); - // arrays.forEach(layer => { - // //console.log(layer.map['features']); - // //console.log(layer); - // // level = layer.map['features']; - // // console.log(level); - // this.geojsonLayerContent[""] = <L.GeoJSON>this.getLayer(layer.name, layer.map); - // <L.GeoJSON>this.getLayer("", layer.map); - // console.log(layer.name); - // this.layersByPilot['BILBAO'] = this.layersByPilot['BILBAO'].concat(layer.name); - // }); - - arrays = <any>Helsinki_layers; - console.log(arrays); - arrays.forEach(layer => { - //console.log(layer); - this.geojsonLayerContent[layer.name] = <L.GeoJSON>this.getLayer(layer.name, layer.map); - // console.log(layer.name); - this.layersByPilot['HELSINKI'] = this.layersByPilot['HELSINKI'].concat(layer.name); - }); - - this.layersByPilot['URBANITE'] = this.layersByPilot['AMSTERDAM'].concat(this.layersByPilot['BILBAO']).concat(this.layersByPilot['HELSINKI']).concat(this.layersByPilot['MESSINA']); - - } - - layerDescription: { [key: string]: string } = { - "Point of Interests": "Point of interests of Messina", - "ATM Stops": "ATM Stops of Messina", - "Cameras": "Cameras of Messina", - "Messina - Dinnamare": Messina_cycling_path[0].description, - "Messina - Centro": Messina_cycling_path[1].description, - "Messina - Litoranea": "Pista ciclabile Messina - Litoranea", - "Messina Incidenti 2018": "Summary of road incidents in 2020\r\n Yellow: road incidents with injured\nOrange: road incidents with less than 3 deaths\nRed: road incidents with more than 3 deaths", - - "Messina Incidenti 2019": "Summary of road incidents in 2019\r\n Yellow: road incidents with injured\nOrange: road incidents with less than 3 deaths\nRed: road incidents with more than 3 deaths", - - "Messina Incidenti 2020": "Summary of road incidents in 2020\r\n Yellow: road incidents with injured\nOrange: road incidents with less than 3 deaths\nRed: road incidents with more than 3 deaths", - - "Messina Districts": "Population of Messina divided by district. In this layer you can see some informations related to the population residents, building, housing, families, genders (females, males), ages (under 20 F/M, adults F/M and over 65 F/M) divided by districts of Messina City.", - "District II": "Population of Messina divided by district", - "District III": "Population of Messina divided by district", - "District IV": "Population of Messina divided by district", - "District V": "Population of Messina divided by district", - "District VI": "Population of Messina divided by district", - "Bilbao Air Quality": Bilbao_air_quality[0].description, - "Bilbao Bike": Bilbao_bike[0].description, - "Bilbao Wifi": Bilbao_wifi[0].description, - "Amsterdam Bike": Amsterdam_bike[0].description, + "Bilbao Air Quality": <L.GeoJSON>this.getLayer("Bilbao Air Quality", <any>Bilbao_air_quality[0].map), + "Bilbao Bike": <L.GeoJSON>this.getLayer("Bilbao Bike", <any>Bilbao_bike[0].map), + "Bilbao Wifi": <L.GeoJSON>this.getLayer("Bilbao Wifi", <any>Bilbao_wifi[0].map), + "Amsterdam Bike": <L.GeoJSON>this.getLayer("Amsterdam Bike", <any>Amsterdam_bike[0].map), }; heatlayerLayerContent: { [key: string]: L.HeatLayer } = { "Bilbao Sound": <L.HeatLayer>L.heatLayer(this.heatLayerConverter(<any>Bilbao_sound[0].map), this.heatOptions), }; + public map: L.Map; ngOnInit(): void { this.pilot = this.configService.getSettings("default_pilot"); @@ -214,41 +114,23 @@ export class MapComponent implements OnInit { let geojsonLayer = <L.GeoJSON>this.geojsonLayerContent[clickedLayerName]; let heatLayer = <L.HeatLayer>this.heatlayerLayerContent[clickedLayerName]; - if (event.option.selected === true) { - //console.log("CHARGE LAYER-> " + clickedLayerName) + console.log("CHARGE LAYER-> " + clickedLayerName) if (clickedLayerName !== "Bilbao Sound") { this.map.addLayer(geojsonLayer); - - //pointToLayer icon - geojsonLayer.eachLayer((layer: L.Layer) => { - if (layer instanceof L.Marker) { - layer.setIcon(L.icon({ - iconUrl: 'assets/img/markers/marker-icon.png', - iconSize: [25, 41], - iconAnchor: [12, 41], - popupAnchor: [1, -34], - shadowSize: [41, 41] - })); - } - }); this.map.fitBounds(geojsonLayer.getBounds(), { padding: [50, 50] }); } else { this.map.addLayer(heatLayer); - - this.map.addControl(this.legend); - //console.log("CHARGE HEAT LAYER-> " + clickedLayerName); } } else { - //console.log("DECHARGE LAYER-> " + clickedLayerName) + console.log("DECHARGE LAYER-> " + clickedLayerName) if (clickedLayerName !== "Bilbao Sound") { this.map = this.map.removeLayer(geojsonLayer); } else { this.map = this.map.removeLayer(heatLayer); - this.map.removeControl(this.legend); } } @@ -288,19 +170,22 @@ export class MapComponent implements OnInit { }; } - icon = new L.Icon({ - iconSize: [25, 41], - iconAnchor: [13, 41], - iconUrl: 'assets/img/markers/marker-icon.png', - iconRetinaUrl: 'assets/img/markers/marker-icon-2x.png', - shadowUrl: 'assets/img/markers/marker-shadow.png' - }); - - public getLayer(title: string, l) { - let layer = L.geoJSON(l, { - onEachFeature: (feature, layer) => { - console.log(feature) - layer.bindPopup(this.getPopupContent(title, feature)) + public getLayer(title, l): L.GeoJSON { + let layer = L.geoJSON(l, + { + onEachFeature: (feature, layer) => { + let text = ""; + for (let p in feature.properties) { + text += `${p}: ${feature.properties[p]}\n`; + } + layer.bindPopup(text); + }, + style: function () { + if (title == '2020') + return { color: '#248175', weight: 7, opacity: 0.8 } + else + return { color: "#880808", weight: 5, opacity: 0.8 } + } }, style: (feature) => { let style={ @@ -348,25 +233,6 @@ export class MapComponent implements OnInit { return layer; } - - - - public getPopupContent(title: string, feature) { - let content = "<h3>" + title + "</h3>"; - - if (feature.properties) { - for (var p in feature.properties) { - content += "<p>" + p + ": " + feature.properties[p] + "</p>"; - } - } - - // if (feature.coordinates) { - // content += "<p>Coordinates: " + feature.coordinates + "</p>"; - // } - - return content; - } - getLegendColor(v: number) { switch(v) { case 1: @@ -463,16 +329,6 @@ export class MapComponent implements OnInit { console.log("R is"); console.log(feature); } - } - - public invokeModal(event, layer: string) { - console.log(event); - const dialogRef = this.dialogService.open(MapModalComponent, { - context: { - layer: layer, - description: this.layerDescription[layer], - }, - }); } } \ No newline at end of file diff --git a/src/assets/map/map-component-maps/atmStops.json b/src/assets/map/map-component-maps/atmStops.json index bfb5d9dfb7a05b42d241db614cbf50340c22e04f..a858ff6a6b1f714bd89cad04be7b73839fd5454a 100644 --- a/src/assets/map/map-component-maps/atmStops.json +++ b/src/assets/map/map-component-maps/atmStops.json @@ -5,26539 +5,22972 @@ { "type": "Feature", "properties": { - "stopId": 300, - "stopCode": 300, - "stopName": "ZIR", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Prenatal ", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5399436031205, - 38.1632252333268 + 15.54971766, + 38.18187538 ] } }, { "type": "Feature", "properties": { - "stopId": 946, - "stopCode": 946, - "stopName": "Curvone Gazzi", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Giardini di Giano", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.54303958014, - 38.168372858394 + 15.6335349381184, + 38.2713716441232 ] } }, { "type": "Feature", "properties": { - "stopId": 945, - "stopCode": 945, - "stopName": "Provinciale", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "3 Store", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5425628517766, - 38.1708717613301 + 15.5466943098152, + 38.1799339237369 ] } }, { "type": "Feature", "properties": { - "stopId": 944, - "stopCode": 944, - "stopName": "Villa Dante", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "3 Store", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5453683424337, - 38.1751723252613 + 15.5516782826138, + 38.1818325667762 ] } }, { "type": "Feature", "properties": { - "stopId": 943, - "stopCode": 943, - "stopName": "Don Orione", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "3 Store", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5482383496895, - 38.1769972614848 + 15.5505429156267, + 38.1869954291839 ] } }, { "type": "Feature", "properties": { - "stopId": 942, - "stopCode": 942, - "stopName": "Trieste", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "3 Store", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5513795472672, - 38.1805611339502 + 15.5544284760692, + 38.191530005976 ] } }, { "type": "Feature", "properties": { - "stopId": 941, - "stopCode": 941, - "stopName": "Camiciotti", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "3 Store", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5541656579178, - 38.1836163245393 + 15.554410806361, + 38.1949477155014 ] } }, { "type": "Feature", "properties": { - "stopId": 940, - "stopCode": 940, - "stopName": "Cairoli", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "3d ", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5558628133405, - 38.1854484254606 + 15.5512932208003, + 38.1805272271163 ] } }, { "type": "Feature", "properties": { - "stopId": 939, - "stopCode": 939, - "stopName": "Repubblica", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Piazza Fulci", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5599746707295, - 38.1853561946892 + 15.5539182874668, + 38.1887835893449 ] } }, { "type": "Feature", "properties": { - "stopId": 938, - "stopCode": 938, - "stopName": "Palazzo Reale", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "A. Celona", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5575043679098, - 38.1894545325231 + 15.5524861667679, + 38.1820762601868 ] } }, { "type": "Feature", "properties": { - "stopId": 937, - "stopCode": 937, - "stopName": "Municipio", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "A.O. Papardo", + "category": "Hospital/Polyclinic", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5573623980959, - 38.1936578660976 + 15.592957765961, + 38.2633052293683 ] } }, { "type": "Feature", "properties": { - "stopId": 936, - "stopCode": 936, - "stopName": "Boccetta", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "A.P.T. Messina ", + "category": "Tourist Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5578023082957, - 38.197673531441 + 15.5586135119556, + 38.1861354913684 ] } }, { "type": "Feature", "properties": { - "stopId": 935, - "stopCode": 935, - "stopName": "Alighieri", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "A.S.D. Tennis Club Bauso", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5590079898226, - 38.2011230332312 + 15.4481587252852, + 38.2414396309166 ] } }, { "type": "Feature", "properties": { - "stopId": 934, - "stopCode": 934, - "stopName": "Trapani", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Abbigliamento Fiorentino ", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5606485264674, - 38.2049005184838 + 15.5524965408549, + 38.1853551492964 ] } }, { "type": "Feature", "properties": { - "stopId": 933, - "stopCode": 933, - "stopName": "San Francesco", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Abbigliamento Nicodemo", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5610306899933, - 38.2089567992077 + 15.5460939160724, + 38.1812136621636 ] } }, { "type": "Feature", "properties": { - "stopId": 932, - "stopCode": 932, - "stopName": "Brasile", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Acqualadrone", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5614832881462, - 38.2115678426397 + 15.5520604732944, + 38.2969276708949 ] } }, { "type": "Feature", "properties": { - "stopId": 931, - "stopCode": 931, - "stopName": "Ringo", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Acquamarina ", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5632710095599, - 38.2150131160533 + 15.552926936728, + 38.2053790858169 ] } }, { "type": "Feature", "properties": { - "stopId": 800, - "stopCode": 800, - "stopName": "Museo", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Acquario Comunale", + "category": "Tourist Attraction", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5657997453986, - 38.2172088924743 + 15.554453432538, + 38.1985886286746 ] } }, { "type": "Feature", "properties": { - "stopId": 1931, - "stopCode": 1931, - "stopName": "Ringo", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Ad", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5630376708822, - 38.2146790955277 + 15.5517818551987, + 38.2005214435475 ] } }, { "type": "Feature", "properties": { - "stopId": 1932, - "stopCode": 1932, - "stopName": "Brasile", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Advanting Trade", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.561319686961, - 38.2112092337214 + 15.5529526106259, + 38.2054211906943 ] } }, { "type": "Feature", "properties": { - "stopId": 1933, - "stopCode": 1933, - "stopName": "San Francesco", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Al Borgo dei Pini", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5610843479257, - 38.2085837605806 + 15.6360043694971, + 38.2662969689359 ] } }, { "type": "Feature", "properties": { - "stopId": 1934, - "stopCode": 1934, - "stopName": "Trapani", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Al Padrino", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5605274815459, - 38.2045516976366 + 15.5539019421103, + 38.1807073668868 ] } }, { "type": "Feature", "properties": { - "stopId": 1935, - "stopCode": 1935, - "stopName": "Alighieri", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Al Paradiso dei Bimbi", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5587797015582, - 38.2008074257244 + 15.546745625659, + 38.1820204247794 ] } }, { "type": "Feature", "properties": { - "stopId": 1936, - "stopCode": 1936, - "stopName": "Boccetta", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Al Piccolo Caffè", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5576467537388, - 38.1973973988213 + 15.5517387885186, + 38.1932128254563 ] } }, { "type": "Feature", "properties": { - "stopId": 1937, - "stopCode": 1937, - "stopName": "Municipio", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Al Platano", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5572497589264, - 38.1936515448235 + 15.5702188753744, + 38.2351475543489 ] } }, { "type": "Feature", "properties": { - "stopId": 1938, - "stopCode": 1938, - "stopName": "Palazzo Reale", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Albergo Empedocle ", + "category": "HotelorMotel", + "type": "Hotel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5576404404072, - 38.1891416542644 + 15.5455102033274, + 38.1918551614093 ] } }, { "type": "Feature", "properties": { - "stopId": 1939, - "stopCode": 1939, - "stopName": "Repubblica", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Alessandra ", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.56002427794, - 38.1854125877511 + 15.5524390086402, + 38.1875591013491 ] } }, { "type": "Feature", "properties": { - "stopId": 1940, - "stopCode": 1940, - "stopName": "Cairoli", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Alessendrino", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5557428119433, - 38.1855053455224 + 15.5538366510958, + 38.2011168492169 ] } }, { "type": "Feature", "properties": { - "stopId": 1941, - "stopCode": 1941, - "stopName": "Camiciotti", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Alibi Dimensione Uomo", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.553934767952, - 38.183516362451 + 15.5537743049312, + 38.1846603729411 ] } }, { "type": "Feature", "properties": { - "stopId": 1942, - "stopCode": 1942, - "stopName": "Trieste", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Alimentari ", + "category": "GroceryStore", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5510831175217, - 38.180374412717 + 15.5251106789125, + 38.1411837665366 ] } }, { "type": "Feature", "properties": { - "stopId": 1943, - "stopCode": 1943, - "stopName": "Don Orione", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Alimentari ", + "category": "GroceryStore", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5480237590912, - 38.177136419476 + 15.5465494608309, + 38.1780559110513 ] } }, { "type": "Feature", "properties": { - "stopId": 1944, - "stopCode": 1944, - "stopName": "Villa Dante", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Alimentari ", + "category": "GroceryStore", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5452852075799, - 38.1752092276612 + 15.5435597329361, + 38.1917440748456 ] } }, { "type": "Feature", "properties": { - "stopId": 1945, - "stopCode": 1945, - "stopName": "Provinciale", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Alimentari ", + "category": "GroceryStore", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5424762656877, - 38.1709168532889 + 15.5409904057131, + 38.1931075690735 ] } }, { "type": "Feature", "properties": { - "stopId": 1947, - "stopCode": 1947, - "stopName": "Curvone Gazzi", - "mainStop": true, - "type": "tram", - "year": "2021" + "name": "Alimentari ", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5433466294676, - 38.1676906780656 + 15.5442641158817, + 38.1939225982961 ] } }, { "type": "Feature", "properties": { - "stopId": 334, - "stopCode": 334, - "stopName": "S. Margherita; SS114 Km 12;400", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Alimentari ", + "category": "GroceryStore", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4988008679844, - 38.0858999654118 + 15.5371683859018, + 38.1956877693114 ] } }, { "type": "Feature", "properties": { - "stopId": 333, - "stopCode": 333, - "stopName": "S. Margherita; SS114 Km 12;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Alimentari ", + "category": "GroceryStore", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.501270709182, - 38.0888126343331 + 15.5551098384682, + 38.2056881929235 ] } }, { "type": "Feature", "properties": { - "stopId": 979, - "stopCode": 979, - "stopName": "Via Nazionale; 77 - S. Margherita", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Alimentari ", + "category": "GroceryStore", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5020008711914, - 38.0929999652785 + 15.5515830288926, + 38.2062284948731 ] } }, { "type": "Feature", "properties": { - "stopId": 977, - "stopCode": 977, - "stopName": "Via Nazionale; 140 - S. Margherita", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Alimentari di Signorino Giuseppe", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5005008697099, - 38.090499965341 + 15.5217098946609, + 38.1894366616156 ] } }, { "type": "Feature", "properties": { - "stopId": 976, - "stopCode": 976, - "stopName": "Via Nazionale; 222 - S. Margherita", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Alis", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4989223959285, - 38.0876758968562 + 15.5419994655876, + 38.1716099140242 ] } }, { "type": "Feature", "properties": { - "stopId": 975, - "stopCode": 975, - "stopName": "Via Nazionale; 151-159 - S. Margherita", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Allis Contesse ", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4972127746019, - 38.0851934189093 + 15.5334442742056, + 38.1576468649162 ] } }, { "type": "Feature", "properties": { - "stopId": 368, - "stopCode": 368, - "stopName": "C.da Runci", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Alta Moda ", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4960008652948, - 38.0835999655276 + 15.5547717413518, + 38.1838893112717 ] } }, { "type": "Feature", "properties": { - "stopId": 369, - "stopCode": 369, - "stopName": "C.da Runci; Scuola Agraria Calonero", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Altaquota", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4947329196547, - 38.0812942914884 + 15.5510165858692, + 38.1919428958894 ] } }, { "type": "Feature", "properties": { - "stopId": 370, - "stopCode": 370, - "stopName": "Ponte Schiavo; SP35 Km 0;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Altolia", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.4928008622279, - 38.0808999656595 + 15.4461964640363, + 38.0765034549752 ] } }, { "type": "Feature", "properties": { - "stopId": 371, - "stopCode": 371, - "stopName": "Ponte Schiavo; SP35 Km 0;550", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Altolia ", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.4884008581552, - 38.0818999658394 + 15.4456297602707, + 38.0753005670324 ] } }, { "type": "Feature", "properties": { - "stopId": 372, - "stopCode": 372, - "stopName": "Ponte Schiavo; SP35 Km 0;650", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Alvaro Dr. Andrea Giuseppe", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4873008571356, - 38.0819999658844 + 15.55490557053, + 38.2036049728577 ] } }, { "type": "Feature", "properties": { - "stopId": 373, - "stopCode": 373, - "stopName": "Ponte Schiavo; SP35 Km 1;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ambra", + "category": "ParkingGarage", + "type": "Enclosed_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.4913008608007, - 38.0798999657211 + 15.5425130175652, + 38.1721781138037 ] } }, { "type": "Feature", "properties": { - "stopId": 374, - "stopCode": 374, - "stopName": "Ponte Schiavo; SP35 Km 2;050", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "American Bar", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4887008582835, - 38.0763999658279 + 15.5477623698164, + 38.1897294519786 ] } }, { "type": "Feature", "properties": { - "stopId": 375, - "stopCode": 375, - "stopName": "Ist. Cuppari - SP35 Km 2;630", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Americars di J&D S.r.l.", + "category": "Automobile Dealership", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4881008577695, - 38.0779999658522 + 15.5280488085266, + 38.1512988979652 ] } }, { "type": "Feature", "properties": { - "stopId": 376, - "stopCode": 376, - "stopName": "Ponte Schiavo; SP35 Km 3;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Amici Miei", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4852008551211, - 38.0795999659703 + 15.5501862908253, + 38.1865629141079 ] } }, { "type": "Feature", "properties": { - "stopId": 377, - "stopCode": 377, - "stopName": "Ponte Schiavo; SP35 Km 3;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Amico Fresco", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4826008527107, - 38.079499966076 + 15.5192335136083, + 38.1401536647392 ] } }, { "type": "Feature", "properties": { - "stopId": 378, - "stopCode": 378, - "stopName": "Ponte Schiavo; SP35 Km 4;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Amiva", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4758008464929, - 38.0813999663508 + 15.5538010131105, + 38.1958805326802 ] } }, { "type": "Feature", "properties": { - "stopId": 379, - "stopCode": 379, - "stopName": "Ponte Schiavo; SP35 Km 5;100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ammendolia Letterio Francesco ", + "category": "Vehicle RepairFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4742008450666, - 38.0829999664151 + 15.5554004226767, + 38.1872310720776 ] } }, { "type": "Feature", "properties": { - "stopId": 380, - "stopCode": 380, - "stopName": "Ponte Schiavo; SP35 Km 5;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Anna Dieli", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4712893861772, - 38.0834023539697 + 15.5527906910179, + 38.1861202551204 ] } }, { "type": "Feature", "properties": { - "stopId": 381, - "stopCode": 381, - "stopName": "Ponte Schiavo; SP35 Km 6;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Annibaie Maria di Francia", + "category": "Theatre", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.4658008374384, - 38.0848999667513 + 15.5475674416646, + 38.1865336712742 ] } }, { "type": "Feature", "properties": { - "stopId": 382, - "stopCode": 382, - "stopName": "Ponte Schiavo; SP35 Km 6;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Antemasi", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4638008356083, - 38.084499966831 + 15.5525562011564, + 38.1872617545309 ] } }, { "type": "Feature", "properties": { - "stopId": 383, - "stopCode": 383, - "stopName": "Ponte Schiavo; SP35 Km 6;450", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Antica Pasticceria lrrera", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4621008340749, - 38.0848999668986 + 15.5533389461478, + 38.1857939350963 ] } }, { "type": "Feature", "properties": { - "stopId": 384, - "stopCode": 384, - "stopName": "Ponte Schiavo; SP35 Km 6;750", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Antica Pasticceria lrrera", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4609008330344, - 38.086699966946 + 15.5526800982509, + 38.1864706136219 ] } }, { "type": "Feature", "properties": { - "stopId": 385, - "stopCode": 385, - "stopName": "Ponte Schiavo; SP35 Km 6;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Antonveneta Gruppo Montepaschi", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4599008321283, - 38.0866999669857 + 15.5515266705274, + 38.1828534967344 ] } }, { "type": "Feature", "properties": { - "stopId": 386, - "stopCode": 386, - "stopName": "Pezzolo; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Apollo", + "category": "Cinema", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.4597008318993, - 38.0848999669938 + 15.5526229742802, + 38.1896852098291 ] } }, { "type": "Feature", "properties": { - "stopId": 300, - "stopCode": 300, - "stopName": "Terminal ZIR", - "mainStop": false, - "type": "bus", - "year": "2021" + "name": "Apollo 11 ", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5397882703829, - 38.1633384321826 + 15.5511925816816, + 38.1820822058495 ] } }, { "type": "Feature", "properties": { - "stopId": 302, - "stopCode": 302, - "stopName": "Via Taormina; Caserma Ainis", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Arcobaleno ", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.537300906965, - 38.1610999637794 + 15.5502245317897, + 38.1865291049722 ] } }, { "type": "Feature", "properties": { - "stopId": 303, - "stopCode": 303, - "stopName": "Minissale", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "ARD discount", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5352009048751, - 38.1595999638697 + 15.5588665375513, + 38.1814593256121 ] } }, { "type": "Feature", "properties": { - "stopId": 304, - "stopCode": 304, - "stopName": "SS114; Vico Cottone", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "ARD discount", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5344009040677, - 38.1585999639042 + 15.5500079745182, + 38.1939354711069 ] } }, { "type": "Feature", "properties": { - "stopId": 306, - "stopCode": 306, - "stopName": "Contesse; SS114 Km 3;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "ARD discount", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5317936267715, - 38.1551421493928 + 15.5536304914419, + 38.2059371808099 ] } }, { "type": "Feature", "properties": { - "stopId": 308, - "stopCode": 308, - "stopName": "Contesse; McDonald's Messina Drive", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Area di Servizio", + "category": "Rest Area", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5309009005134, - 38.1531999640547 + 15.5442968291063, + 38.2073979771306 ] } }, { "type": "Feature", "properties": { - "stopId": 310, - "stopCode": 310, - "stopName": "Contesse; SS114 Km 4;400", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Area di Servizio", + "category": "Rest Area", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5299008994956, - 38.1514999640976 + 15.4907389989614, + 38.2389199610712 ] } }, { "type": "Feature", "properties": { - "stopId": 312, - "stopCode": 312, - "stopName": "Contesse; SS114 Km 4;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Arena Giardino Corallo", + "category": "Cinema", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.527475197817, - 38.1477123236325 + 15.5562337432492, + 38.201789830203 ] } }, { "type": "Feature", "properties": { - "stopId": 313, - "stopCode": 313, - "stopName": "Pistunina; Isola Ecologica", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Arena Giovanni ", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5265008960619, - 38.1463999642431 + 15.5465812238971, + 38.20843430262 ] } }, { "type": "Feature", "properties": { - "stopId": 314, - "stopCode": 314, - "stopName": "Pistunina; Poste", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "As.T.B.", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5249753314058, - 38.1435221365582 + 15.5495435249347, + 38.1980098560935 ] } }, { "type": "Feature", "properties": { - "stopId": 316, - "stopCode": 316, - "stopName": "Tremestieri; SS114 Km 5;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Associazione A.I.K.K. Karate", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5240008934918, - 38.14079996435 + 15.5466060223692, + 38.1995465659986 ] } }, { "type": "Feature", "properties": { - "stopId": 317, - "stopCode": 317, - "stopName": "Tremestieri; SS114 Km 6;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Auto Bite", + "category": "Vehicle RepairFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5231642469074, - 38.1385006867114 + 15.5489027172947, + 38.1743132432748 ] } }, { "type": "Feature", "properties": { - "stopId": 318, - "stopCode": 318, - "stopName": "Tremestieri; ARD Discount", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Auto Iberia S.r.1. - Pa/Vs", + "category": "Automobile Dealership", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5222294330859, - 38.1358149606473 + 15.541065688441, + 38.1622948506589 ] } }, { "type": "Feature", "properties": { - "stopId": 320, - "stopCode": 320, - "stopName": "Porto Tremestieri", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Auto Iberia S.r.l.", + "category": "Automobile Dealership", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5215418959287, - 38.1311020770311 + 15.5214586807068, + 38.1381557781827 ] } }, { "type": "Feature", "properties": { - "stopId": 321, - "stopCode": 321, - "stopName": "Tremestieri; SS114 Km 7;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Autogrill", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5198128044047, - 38.1279681513126 + 15.5159624859143, + 38.1425835088028 ] } }, { "type": "Feature", "properties": { - "stopId": 322, - "stopCode": 322, - "stopName": "Tremestieri; SS114 Km 7;600", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Autolinee Messina", + "category": "Bus Station", + "type": "Bus_Station" }, "geometry": { "type": "Point", "coordinates": [ - 15.5186775200179, - 38.1257527168472 + 15.5578235945767, + 38.1848302565281 ] } }, { "type": "Feature", "properties": { - "stopId": 323, - "stopCode": 323, - "stopName": "Mil Marina; SS114 Km 7;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Autorimessa Cairoli", + "category": "ParkingGarage", + "type": "Enclosed_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5167204334243, - 38.1236780389318 + 15.5440005036989, + 38.1704436853147 ] } }, { "type": "Feature", "properties": { - "stopId": 324, - "stopCode": 324, - "stopName": "Mili Marina; SS114 Km 8;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Autorimessa Primavera", + "category": "ParkingGarage", + "type": "Enclosed_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5145828803888, - 38.1211611607934 + 15.5482985442442, + 38.190612648639 ] } }, { "type": "Feature", "properties": { - "stopId": 325, - "stopCode": 325, - "stopName": "Bivio Mili Marina", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Autosport Salemme S.r.l.", + "category": "Vehicle RepairFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5138257949579, - 38.1195020776887 + 15.5419638168944, + 38.1635665988556 ] } }, { "type": "Feature", "properties": { - "stopId": 407, - "stopCode": 407, - "stopName": "Mili S. Marco; SP38 Km 0;150", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Avis", + "category": "RentACarFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.511700881113, - 38.1193999648711 + 15.5549094028623, + 38.1961756153885 ] } }, { "type": "Feature", "properties": { - "stopId": 408, - "stopCode": 408, - "stopName": "Mili S. Marco; SP38 Km 0;390", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Azarian", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.509300878846, - 38.1198999649713 + 15.5477601127045, + 38.1918936754535 ] } }, { "type": "Feature", "properties": { - "stopId": 409, - "stopCode": 409, - "stopName": "Mili S. Marco; SP38 Km 0;600", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "B & B Food", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5075008771722, - 38.1210999650463 + 15.5550458206234, + 38.1898574857585 ] } }, { "type": "Feature", "properties": { - "stopId": 410, - "stopCode": 410, - "stopName": "Mili S. Marco; SP38 Km 0;930", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "B San Gabriel", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5054209358824, - 38.1207012359877 + 15.5493063922016, + 38.1825962009605 ] } }, { "type": "Feature", "properties": { - "stopId": 411, - "stopCode": 411, - "stopName": "Mili S. Marco; SP38 Km 1;100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "B Vaquero", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5049672418535, - 38.1214466644565 + 15.5492287899484, + 38.180282656471 ] } }, { "type": "Feature", "properties": { - "stopId": 412, - "stopCode": 412, - "stopName": "Mili S. Marco; SP38 Km 1;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "B. V. A. Bettrodomestici", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5030618191991, - 38.1225145100386 + 15.5216556384307, + 38.1404208904123 ] } }, { "type": "Feature", "properties": { - "stopId": 413, - "stopCode": 413, - "stopName": "Mili S. Marco; SP38 Km 1;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "B. V. A. Bettrodomestici", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5015008715234, - 38.1218999652954 + 15.5512142426258, + 38.1821262915977 ] } }, { "type": "Feature", "properties": { - "stopId": 414, - "stopCode": 414, - "stopName": "Mili S. Marco; SP38 Km 2;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Babilonia", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.495689554984, - 38.1233873745829 + 15.5482966386319, + 38.1794146025558 ] } }, { "type": "Feature", "properties": { - "stopId": 415, - "stopCode": 415, - "stopName": "Mili S. Marco; SP38 Km 2;400", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Baciamo le Mani", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4937008642504, - 38.1237999656169 + 15.5532518075978, + 38.1915414966224 ] } }, { "type": "Feature", "properties": { - "stopId": 416, - "stopCode": 416, - "stopName": "Mili S. Pietro; SP38 Km 2;600", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "BANCA AGRICOLA POP. DI RAGUSA", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4912008619329, - 38.1244999657193 + 15.5531406368464, + 38.1903713899181 ] } }, { "type": "Feature", "properties": { - "stopId": 417, - "stopCode": 417, - "stopName": "Mili S. Pietro; SP38 Km 2;700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Banca Carige", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4905008612823, - 38.1245999657481 + 15.5508305372358, + 38.1829042221943 ] } }, { "type": "Feature", "properties": { - "stopId": 418, - "stopCode": 418, - "stopName": "Mili S. Pietro; SP38 Km 2;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Banca Carige", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4892008601139, - 38.126199965801 + 15.5554666906689, + 38.1873253493032 ] } }, { "type": "Feature", "properties": { - "stopId": 419, - "stopCode": 419, - "stopName": "Mili S. Pietro; SP38 Km 3;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Banca D'ttalia", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4884008593768, - 38.1264999658336 + 15.556967154158, + 38.1869265095947 ] } }, { "type": "Feature", "properties": { - "stopId": 420, - "stopCode": 420, - "stopName": "Mili S. Pietro; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Banca FIDEURAM", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4874008584514, - 38.1266999658744 + 15.5553045088471, + 38.1856261906828 ] } }, { "type": "Feature", "properties": { - "stopId": 1419, - "stopCode": 1419, - "stopName": "Mili S. Pietro - SP38 Km 3;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Banca Nuova", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4883008592837, - 38.1264999658377 + 15.547341871375, + 38.1790292733009 ] } }, { "type": "Feature", "properties": { - "stopId": 1418, - "stopCode": 1418, - "stopName": "Mili S. Pietro SP38 Km 2 900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Banca Popolare del Mezzogiomo", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4891445473477, - 38.1261989135558 + 15.5420935063143, + 38.1726659790905 ] } }, { "type": "Feature", "properties": { - "stopId": 1417, - "stopCode": 1417, - "stopName": "Mili S. Pietro - SP38 Km 2;700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Banca Popolare del Mezzogiomo", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4904008611889, - 38.1245999657521 + 15.5465519782818, + 38.1818495798688 ] } }, { "type": "Feature", "properties": { - "stopId": 1416, - "stopCode": 1416, - "stopName": "Mili S. Pietro SP38 Km 2 600", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Banca Popolare del Mezzogiomo", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4912098635861, - 38.1244224263238 + 15.5499923628517, + 38.1889591589787 ] } }, { "type": "Feature", "properties": { - "stopId": 1415, - "stopCode": 1415, - "stopName": "Mili S. Marco - SP38 Km 2;400", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Banca Popolare Dell'Emilia Romagna", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.493600864154, - 38.123699965621 + 15.5462314180989, + 38.1903280771218 ] } }, { "type": "Feature", "properties": { - "stopId": 1414, - "stopCode": 1414, - "stopName": "Mili S. Marco - SP38 Km 2;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Banca Popolare Di Lodi", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4956340576175, - 38.1233249115522 + 15.539643329148, + 38.1694746520219 ] } }, { "type": "Feature", "properties": { - "stopId": 1413, - "stopCode": 1413, - "stopName": "Mili S. Marco - SP38 Km 1;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Banca Popolare Di Lodi", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5014008714264, - 38.1217999652996 + 15.5530663877299, + 38.1854817700986 ] } }, { "type": "Feature", "properties": { - "stopId": 1412, - "stopCode": 1412, - "stopName": "Mili S. Marco - SP38 Km 1;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Banca Sviluppo", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5030972707688, - 38.122427996965 + 15.5504873389647, + 38.1840122242489 ] } }, { "type": "Feature", "properties": { - "stopId": 1411, - "stopCode": 1411, - "stopName": "Mili S. Marco - SP38 Km 1;100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Banco di Sicilia", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5048905393911, - 38.1214581027681 + 15.559410188674, + 38.2122220165762 ] } }, { "type": "Feature", "properties": { - "stopId": 1410, - "stopCode": 1410, - "stopName": "Mili S. Marco - SP38 Km 0;930", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Banco di Sicilia", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5053208669362, - 38.1206286503131 + 15.6058895397236, + 38.2590253291493 ] } }, { "type": "Feature", "properties": { - "stopId": 1409, - "stopCode": 1409, - "stopName": "Mili S. Marco SP38 Km 0 600", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Banco Popolare Siciliano", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5074247634033, - 38.1209973150476 + 15.553031940994, + 38.1764356090515 ] } }, { "type": "Feature", "properties": { - "stopId": 1408, - "stopCode": 1408, - "stopName": "Mili S. Marco; SP38 Km 0;390", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Banco Popolare Siciliano", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5092008787511, - 38.1198999649755 + 15.5516848897964, + 38.1818845791648 ] } }, { "type": "Feature", "properties": { - "stopId": 1407, - "stopCode": 1407, - "stopName": "Mili S. Marco - SP38 Km 0;150", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Banco Popolare Siciliano", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5116008810178, - 38.1193999648753 + 15.5468710775029, + 38.1984621898031 ] } }, { "type": "Feature", "properties": { - "stopId": 1325, - "stopCode": 1325, - "stopName": "Bivio Mili Marina", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Banco Popolare Siciliano", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5138008831101, - 38.1192999647831 + 15.5558903766268, + 38.2057128375153 ] } }, { "type": "Feature", "properties": { - "stopId": 1324, - "stopCode": 1324, - "stopName": "Mil Marina; SS114 Km 8;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Banco Popolare Siciliano", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.514786728444, - 38.1211830865933 + 15.6167794643557, + 38.261189617438 ] } }, { "type": "Feature", "properties": { - "stopId": 1323, - "stopCode": 1323, - "stopName": "Mili Marina; SS114 Km 7;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bandiera Dr. AJessandro", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5180870716256, - 38.1245870101781 + 15.5568652312853, + 38.2062182222505 ] } }, { "type": "Feature", "properties": { - "stopId": 1322, - "stopCode": 1322, - "stopName": "Tremestieri; SS114 Km 7;600", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bar", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5188008880659, - 38.1255999645719 + 15.5367079282311, + 38.1957705845125 ] } }, { "type": "Feature", "properties": { - "stopId": 1321, - "stopCode": 1321, - "stopName": "Tremestieri; SS114 Km 7;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bar Aiello", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5200190776302, - 38.127869683884 + 15.5523709382321, + 38.1976882020842 ] } }, { "type": "Feature", "properties": { - "stopId": 1320, - "stopCode": 1320, - "stopName": "Porto Tremestieri", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bar Apollo ", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5216606715011, - 38.1310147359984 + 15.5528199149445, + 38.1899500289597 ] } }, { "type": "Feature", "properties": { - "stopId": 1318, - "stopCode": 1318, - "stopName": "Tremestieri; Centro Commerciale", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bar Astoria", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5226304254227, - 38.13679335295 + 15.5262060641032, + 38.1724167601882 ] } }, { "type": "Feature", "properties": { - "stopId": 1317, - "stopCode": 1317, - "stopName": "Tremestieri; SS114 Km 6;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bar Conca dOro", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5234008928544, - 38.1386999643757 + 15.5503112763725, + 38.2301850695302 ] } }, { "type": "Feature", "properties": { - "stopId": 1315, - "stopCode": 1315, - "stopName": "Bivio Larderia; SS114 Km 5;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bar De Luca", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5242147307997, - 38.1411130833017 + 15.485988086005, + 38.0689639234672 ] } }, { "type": "Feature", "properties": { - "stopId": 1314, - "stopCode": 1314, - "stopName": "Pistunina; Poste", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bar del Popolo", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5249807916155, - 38.1431999670607 + 15.5485694740583, + 38.1860825192832 ] } }, { "type": "Feature", "properties": { - "stopId": 1313, - "stopCode": 1313, - "stopName": "Pistunina; Isola Ecologica", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bar Donato", + "category": "Nightlife", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.52655531224, - 38.1462261384427 + 15.6403832579749, + 38.2651858779622 ] } }, { "type": "Feature", "properties": { - "stopId": 1312, - "stopCode": 1312, - "stopName": "Contesse; SS114 Km 4;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bar Gelateria Fiumara", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5273778799223, - 38.147391227266 + 15.4447538284206, + 38.2421254348945 ] } }, { "type": "Feature", "properties": { - "stopId": 1311, - "stopCode": 1311, - "stopName": "Contesse; SS114 Km 4;450", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bar le Sirene ", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5299008994898, - 38.1512999640977 + 15.5988860758839, + 38.2554287597588 ] } }, { "type": "Feature", "properties": { - "stopId": 1309, - "stopCode": 1309, - "stopName": "Contesse; SS114 Km 4;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bar Maracana'", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5308009004135, - 38.153099964059 + 15.541655656883, + 38.1718672147009 ] } }, { "type": "Feature", "properties": { - "stopId": 1307, - "stopCode": 1307, - "stopName": "Contesse; SS114 Km 4;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bar Mento Rossana Stephanie", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5316009012295, - 38.1544999640246 + 15.5469121176723, + 38.1931312699101 ] } }, { "type": "Feature", "properties": { - "stopId": 1305, - "stopCode": 1305, - "stopName": "Contesse; SS114 Km 3;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bar Pasticceria Dolci Idee ", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5344009040591, - 38.1582999639043 + 15.5142560081716, + 38.1193638319547 ] } }, { "type": "Feature", "properties": { - "stopId": 1303, - "stopCode": 1303, - "stopName": "Minissale", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bar Pasticceria Gelateria Sheridan", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5354009050699, - 38.1595999638612 + 15.5560981199347, + 38.2191680592341 ] } }, { "type": "Feature", "properties": { - "stopId": 1301, - "stopCode": 1301, - "stopName": "Via Taormina; Policlinico", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bar Pasticceria Nuovo Millenium ", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5384009080676, - 38.1620999637319 + 15.5829856175097, + 38.2483957118478 ] } }, { "type": "Feature", "properties": { - "stopId": 1125, - "stopCode": 1125, - "stopName": "Stazione Centrale", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bar Solaris", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5599064954505, - 38.1856913431996 + 15.5334272860072, + 38.1575128325658 ] } }, { "type": "Feature", "properties": { - "stopId": 1124, - "stopCode": 1124, - "stopName": "Via La Farina Hotel Royal", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bar Spartà", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5587087813838, - 38.1846353717086 + 15.5458507855889, + 38.1936251281946 ] } }, { "type": "Feature", "properties": { - "stopId": 889, - "stopCode": 889, - "stopName": "Via La Farina; inc. via Maddalena", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bar Spartà", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5570446143611, - 38.1828231573169 + 15.4909743385687, + 38.2504149297725 ] } }, { "type": "Feature", "properties": { - "stopId": 890, - "stopCode": 890, - "stopName": "Via La Farina; inc. via S. Cecilia", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bar Sport ", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5550418371738, - 38.1806281449945 + 15.4968486720616, + 38.0864263385842 ] } }, { "type": "Feature", "properties": { - "stopId": 1121, - "stopCode": 1121, - "stopName": "Via La Farina inc. viale Europa", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Barai Platano", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5525892177197, - 38.1779119087623 + 15.5632716934881, + 38.2215458081228 ] } }, { "type": "Feature", "properties": { - "stopId": 1120, - "stopCode": 1120, - "stopName": "Via La Farina inc. via Roma", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Barchiaia", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5497267871881, - 38.174798802405 + 15.5432234906617, + 38.1903280034411 ] } }, { "type": "Feature", "properties": { - "stopId": 1119, - "stopCode": 1119, - "stopName": "Via La Farina S. Pietro e Paolo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bardelle Stretto", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5469953330719, - 38.1718012670417 + 15.5595785261628, + 38.1866208355078 ] } }, { "type": "Feature", "properties": { - "stopId": 1118, - "stopCode": 1118, - "stopName": "Via La Farina 336 ATM SpA", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Barfocacceria Grotte di Cazzolo M.", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.544797336664, - 38.1694517189047 + 15.5642105786969, + 38.2237764183372 ] } }, { "type": "Feature", "properties": { - "stopId": 1117, - "stopCode": 1117, - "stopName": "Via Bonino", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Barresi Dr. Giovanni", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5420467082231, - 38.1663954653694 + 15.5526228528406, + 38.2008812516275 ] } }, { "type": "Feature", "properties": { - "stopId": 301, - "stopCode": 301, - "stopName": "Via Taormina; Policlinico", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bcc Antonello da Messina", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5387009083751, - 38.1625999637189 + 15.552614655777, + 38.1913255909562 ] } }, { "type": "Feature", "properties": { - "stopId": 326, - "stopCode": 326, - "stopName": "Mili Marina; SS114 Km 8;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bcc Antonello da Messina", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5131008824234, - 38.1185999648125 + 15.5512787260619, + 38.1939084267527 ] } }, { "type": "Feature", "properties": { - "stopId": 327, - "stopCode": 327, - "stopName": "Mili Marina; Depuratore", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bellavista", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5112008805334, - 38.1156999648925 + 15.6277965817665, + 38.2610702969781 ] } }, { "type": "Feature", "properties": { - "stopId": 328, - "stopCode": 328, - "stopName": "Mili Moleti; SS114 Km 9;550", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bellino ", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5096008788675, - 38.1104999649601 + 15.5444123529331, + 38.1728427615159 ] } }, { "type": "Feature", "properties": { - "stopId": 329, - "stopCode": 329, - "stopName": "Mili Moleti; Bivio Galati S. Anna", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bena", + "category": "ParkingGarage", + "type": "Enclosed_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5083008775781, - 38.1084999650145 + 15.5414812130964, + 38.1714015639825 ] } }, { "type": "Feature", "properties": { - "stopId": 330, - "stopCode": 330, - "stopName": "Mili Moleti; Stazione FFSS Galati", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bignoli Felice", + "category": "Vehicle RepairFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5063008755942, - 38.1052999650984 + 15.547596585054, + 38.1882442022767 ] } }, { "type": "Feature", "properties": { - "stopId": 331, - "stopCode": 331, - "stopName": "S. Margherita; SS114 Km 10;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bio Baby di Toscano Ravia", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5049008740584, - 38.0976999651576 + 15.5406151954192, + 38.1711785921888 ] } }, { "type": "Feature", "properties": { - "stopId": 332, - "stopCode": 332, - "stopName": "S. Margherita; SS114 Km 11;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bistrot 502", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5037680295032, - 38.0950031342481 + 15.6380727964929, + 38.2658818079142 ] } }, { "type": "Feature", "properties": { - "stopId": 335, - "stopCode": 335, - "stopName": "S. Margherita; SS114 Km 12;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bite", + "category": "ParkingGarage", + "type": "Enclosed_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.497149918057, - 38.0839999682168 + 15.5523645935031, + 38.1817588033763 ] } }, { "type": "Feature", "properties": { - "stopId": 336, - "stopCode": 336, - "stopName": "S. Margherita; SS114 Km 13;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Blue Gum", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4952357595421, - 38.0810149945098 + 15.5525567226608, + 38.1842628165249 ] } }, { "type": "Feature", "properties": { - "stopId": 337, - "stopCode": 337, - "stopName": "Briga Marina; SS114 Km 13;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bn Petroli Ganzini", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4945074241708, - 38.0789237042731 + 15.6044305617081, + 38.2581607922606 ] } }, { "type": "Feature", "properties": { - "stopId": 338, - "stopCode": 338, - "stopName": "Briga Marina; SS114 Km 13;550", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bnl", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4936410621512, - 38.0765181554397 + 15.5548703926604, + 38.1957795727217 ] } }, { "type": "Feature", "properties": { - "stopId": 339, - "stopCode": 339, - "stopName": "Briga Marina; SS114 Km 13;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bnl", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4926225130161, - 38.074534971957 + 15.5556485422672, + 38.2197977317925 ] } }, { "type": "Feature", "properties": { - "stopId": 340, - "stopCode": 340, - "stopName": "Briga Marina; SS114 Km 14;100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Boccetta ", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4910374305714, - 38.0725371390998 + 15.5474198377785, + 38.1982018502219 ] } }, { "type": "Feature", "properties": { - "stopId": 341, - "stopCode": 341, - "stopName": "Giampilieri Mar.; SS114 Km 14;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Body and Mind", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.4863008558625, - 38.0693999659268 + 15.5476261712437, + 38.181639679275 ] } }, { "type": "Feature", "properties": { - "stopId": 342, - "stopCode": 342, - "stopName": "Giampilieri Mar.; SS114 Km 14;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Body Elegance", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.4849659995154, - 38.0684210850753 + 15.5443432635562, + 38.1801848367555 ] } }, { "type": "Feature", "properties": { - "stopId": 343, - "stopCode": 343, - "stopName": "Giampilieri Mar.; SS114 Km 15;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Body Line", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.4831322378322, - 38.067155015641 + 15.5569935905803, + 38.2051002178877 ] } }, { "type": "Feature", "properties": { - "stopId": 344, - "stopCode": 344, - "stopName": "Giampilieri; Bivo Giampilieri Sup.", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bond 10", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4811008509384, - 38.0652999661387 + 15.5561061617742, + 38.1839035491667 ] } }, { "type": "Feature", "properties": { - "stopId": 345, - "stopCode": 345, - "stopName": "Giampilieri; Staz. FFSS", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bordonaro ", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4793118286389, - 38.0640168630461 + 15.5188796211911, + 38.1742928247237 ] } }, { "type": "Feature", "properties": { - "stopId": 346, - "stopCode": 346, - "stopName": "Giampilieri; SP33 Km 0;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bordonaro ", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.4782008481592, - 38.0613999662566 + 15.5148673987422, + 38.1753146930757 ] } }, { "type": "Feature", "properties": { - "stopId": 347, - "stopCode": 347, - "stopName": "Giampilieri; SP33 Km 0;700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bordonaro ", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.4765508885207, - 38.0620394708882 + 15.513597857128, + 38.1762979436659 ] } }, { "type": "Feature", "properties": { - "stopId": 348, - "stopCode": 348, - "stopName": "Giampilieri; SP33 Km 0;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bouchon", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4746008448994, - 38.0631999664015 + 15.553468559125, + 38.1943595149675 ] } }, { "type": "Feature", "properties": { - "stopId": 349, - "stopCode": 349, - "stopName": "Giampilieri; SP33 Km 1;050", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Boutigue Bretella", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4715008421749, - 38.0674999665255 + 15.5513858697304, + 38.1829667975853 ] } }, { "type": "Feature", "properties": { - "stopId": 350, - "stopCode": 350, - "stopName": "Giampilieri Sup.; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Brancate-Romanini ", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4703008411017, - 38.0683999665736 + 15.5502007803427, + 38.2067258492762 ] } }, { "type": "Feature", "properties": { - "stopId": 909, - "stopCode": 909, - "stopName": "Giampilieri Sup.; C.da S. Lucia", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Brasserie dell'Ancora", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4699008407281, - 38.0680999665896 + 15.5588453531614, + 38.2104979803582 ] } }, { "type": "Feature", "properties": { - "stopId": 910, - "stopCode": 910, - "stopName": "Giampilieri Sup.; Coop. La Sorgiva", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Briga", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.4720008425841, - 38.0656999665057 + 15.4719187804633, + 38.077596137138 ] } }, { "type": "Feature", "properties": { - "stopId": 1348, - "stopCode": 1348, - "stopName": "Giampilieri; SP33 Km 0;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Briga", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.4745008448076, - 38.0631999664055 + 15.4718181746608, + 38.0780690562637 ] } }, { "type": "Feature", "properties": { - "stopId": 1347, - "stopCode": 1347, - "stopName": "Giampilieri; SP33 Km 0;700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Briga Marina", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.4764307718447, - 38.06202288764 + 15.4939064163461, + 38.0809351855615 ] } }, { "type": "Feature", "properties": { - "stopId": 1346, - "stopCode": 1346, - "stopName": "Giampilieri; SP33 Km 0;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Briga Marina ", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.4782008481565, - 38.0612999662566 + 15.4928471951592, + 38.0799939696833 ] } }, { "type": "Feature", "properties": { - "stopId": 1345, - "stopCode": 1345, - "stopName": "Giampilieri; Staz. FFSS", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bruschettà Felice", + "category": "Vehicle Rep air Facility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4794008493324, - 38.0638999662077 + 15.5612595480617, + 38.2156774556369 ] } }, { "type": "Feature", "properties": { - "stopId": 1344, - "stopCode": 1344, - "stopName": "Giampilieri; Bivo Giampilieri Sup.", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "BSB Town House Messina", + "category": "Guest House", + "type": "Hotel" }, "geometry": { "type": "Point", "coordinates": [ - 15.4811008509357, - 38.0651999661387 + 15.5548495524087, + 38.1857750092168 ] } }, { "type": "Feature", "properties": { - "stopId": 1343, - "stopCode": 1343, - "stopName": "Giampilieri Mar.; SS114 Km 15;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Bulli e Pupe", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4831780813903, - 38.0670349635007 + 15.5596909381218, + 38.2129070889746 ] } }, { "type": "Feature", "properties": { - "stopId": 1342, - "stopCode": 1342, - "stopName": "Giampilieri Mar.; SS114 Km 14;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Buon Mercato ", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4850008546271, - 38.0682999659799 + 15.5397764059629, + 38.1634604077936 ] } }, { "type": "Feature", "properties": { - "stopId": 1341, - "stopCode": 1341, - "stopName": "Giampilieri Mar.; SS114 Km 14;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "C.i.m.", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4863008558598, - 38.0692999659268 + 15.5539583620458, + 38.1847771928989 ] } }, { "type": "Feature", "properties": { - "stopId": 1340, - "stopCode": 1340, - "stopName": "Briga Marina; SS114 Km 14;100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "C.r.a.t.", + "category": "Vehicle Rep air Facility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4910700121755, - 38.0724340767886 + 15.5388044536322, + 38.1611007007166 ] } }, { "type": "Feature", "properties": { - "stopId": 1339, - "stopCode": 1339, - "stopName": "Briga Marina; SS114 Km 13;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Caffè Axel", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4926687026885, - 38.0744084169874 + 15.5524081245178, + 38.1860804795376 ] } }, { "type": "Feature", "properties": { - "stopId": 1338, - "stopCode": 1338, - "stopName": "Briga Marina; SS114 Km 13;550", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Caffè dello Stretto ", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4937150135596, - 38.0763983108795 + 15.5533000986171, + 38.2052068932121 ] } }, { "type": "Feature", "properties": { - "stopId": 1337, - "stopCode": 1337, - "stopName": "Briga Marina; SS114 Km 13;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Caffè Santoro ", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4945955130661, - 38.0788052466623 + 15.553766002685, + 38.1861658015073 ] } }, { "type": "Feature", "properties": { - "stopId": 1336, - "stopCode": 1336, - "stopName": "S. Margherita; SS114 Km 13;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Caffè surla Ville di Finanze L.", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4953034872223, - 38.0809041894832 + 15.5492843502053, + 38.2049641826242 ] } }, { "type": "Feature", "properties": { - "stopId": 1335, - "stopCode": 1335, - "stopName": "S. Margherita; SS114 Km 12;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cairoli", + "category": "HotelorMotel", + "type": "Hotel" }, "geometry": { "type": "Point", "coordinates": [ - 15.4971995168208, - 38.0839073681381 + 15.5546478266478, + 38.1864138395709 ] } }, { "type": "Feature", "properties": { - "stopId": 1334, - "stopCode": 1334, - "stopName": "S. Margherita; SS114 Km 12;400", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Calascione Carmelo Pasticceria", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4988008679817, - 38.0857999654119 + 15.557968313297, + 38.2116084830246 ] } }, { "type": "Feature", "properties": { - "stopId": 1333, - "stopCode": 1333, - "stopName": "S. Margherita; SS114 Km 12;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Calasole ", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5012940994531, - 38.0887014374433 + 15.6415601010971, + 38.2717831276252 ] } }, { "type": "Feature", "properties": { - "stopId": 1332, - "stopCode": 1332, - "stopName": "S. Margherita; SS114 Km 11;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Calogero Domenico", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5038317320166, - 38.0948915244564 + 15.5510466773097, + 38.1822094785701 ] } }, { "type": "Feature", "properties": { - "stopId": 1331, - "stopCode": 1331, - "stopName": "S. Margherita; SS114 Km 10;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cama Dr. Francesco", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5049008740556, - 38.0975999651576 + 15.5680493205088, + 38.2312047797323 ] } }, { "type": "Feature", "properties": { - "stopId": 1330, - "stopCode": 1330, - "stopName": "Mili Moleti; Stazione FFSS Galati", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Camaro", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5064008756861, - 38.1051999650942 + 15.5220649634003, + 38.1892773792084 ] } }, { "type": "Feature", "properties": { - "stopId": 1329, - "stopCode": 1329, - "stopName": "Mili Moleti; Bivio Galati S. Anna", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Camaro", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5083008775753, - 38.1083999650146 + 15.5206197167407, + 38.1893408151126 ] } }, { "type": "Feature", "properties": { - "stopId": 1328, - "stopCode": 1328, - "stopName": "Mili Moleti; SS114 Km 9;550", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cambria Girolamo", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5096008788646, - 38.1103999649601 + 15.5402057123664, + 38.1704629311664 ] } }, { "type": "Feature", "properties": { - "stopId": 1327, - "stopCode": 1327, - "stopName": "Mili Marina; Depuratore", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Camper", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5112008805306, - 38.1155999648925 + 15.5528352713475, + 38.1845760095023 ] } }, { "type": "Feature", "properties": { - "stopId": 1326, - "stopCode": 1326, - "stopName": "Mili Marina; SS114 Km 8;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Campetti lgnatianum", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5131008824205, - 38.1184999648125 + 15.5499504157809, + 38.2055890794714 ] } }, { "type": "Feature", "properties": { - "stopId": 116, - "stopCode": 116, - "stopName": "Via Bonino; Gazzetta del Sud", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Canale Ovest", + "category": "Rest Area", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5404009100863, - 38.1642999636454 + 15.502414330871, + 38.1019847427743 ] } }, { "type": "Feature", "properties": { - "stopId": 117, - "stopCode": 117, - "stopName": "Via Bonino", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cannistraci Giuseppa", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5422009119041, - 38.1661999635675 + 15.553058394213, + 38.1832175338175 ] } }, { "type": "Feature", "properties": { - "stopId": 118, - "stopCode": 118, - "stopName": "Via La Farina; ATM SpA", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cannizzaro", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5445900706435, - 38.1688569297173 + 15.5450821218073, + 38.190954477495 ] } }, { "type": "Feature", "properties": { - "stopId": 119, - "stopCode": 119, - "stopName": "Via La Farina; S. Pietro e Paolo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Capitol", + "category": "Cinema", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5477691521163, - 38.1723224272602 + 15.5509114155014, + 38.1829165961393 ] } }, { "type": "Feature", "properties": { - "stopId": 120, - "stopCode": 120, - "stopName": "Via La Farina; inc. via Roma", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Capo Peloro Resort", + "category": "HotelorMotel", + "type": "Hotel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5499009197269, - 38.1746999632322 + 15.6276284494795, + 38.2610955004102 ] } }, { "type": "Feature", "properties": { - "stopId": 121, - "stopCode": 121, - "stopName": "Via La Farina; inc. via Salandra", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cappella di S. Eustochia Esmeralda", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.5515009213608, - 38.1764999631622 + 15.5512245133062, + 38.1956695503901 ] } }, { "type": "Feature", "properties": { - "stopId": 122, - "stopCode": 122, - "stopName": "Via La Farina; inc. via Trento", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cappellani Giomi", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5537304416308, - 38.1788862609503 + 15.5570083355118, + 38.2123157400726 ] } }, { "type": "Feature", "properties": { - "stopId": 123, - "stopCode": 123, - "stopName": "Via La Farina; inc. via N. Bixio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cappellini", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5562135926425, - 38.1815219561775 + 15.54520358432, + 38.1980745241078 ] } }, { "type": "Feature", "properties": { - "stopId": 124, - "stopCode": 124, - "stopName": "Via La Farina; inc. via XXVII Luglio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cappuccetto Rosso", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5576993820832, - 38.183212659889 + 15.5529271268741, + 38.1836587631903 ] } }, { "type": "Feature", "properties": { - "stopId": 100, - "stopCode": 100, - "stopName": "Terminal Cavallotti", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cappuccetto Rosso", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5597009298052, - 38.1867999628013 + 15.5559896550809, + 38.2062031292259 ] } }, { "type": "Feature", "properties": { - "stopId": 1246, - "stopCode": 1246, - "stopName": "Via T. Cannizzaro; Forestale - Cairoli", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cappuccini", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5551371488044, - 38.1874242100338 + 15.5463478646227, + 38.2062319896638 ] } }, { "type": "Feature", "properties": { - "stopId": 129, - "stopCode": 129, - "stopName": "Via T. Cannizzaro; Tribunale", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Caprice", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5528346653421, - 38.1887156656818 + 15.551169930796, + 38.1847001744992 ] } }, { "type": "Feature", "properties": { - "stopId": 510, - "stopCode": 510, - "stopName": "Corso Cavour; 28", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Carabinieri Località Tremestieri", + "category": "Police Station", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5521008441478, - 38.1902599183237 + 15.5218729905202, + 38.1391623551861 ] } }, { "type": "Feature", "properties": { - "stopId": 511, - "stopCode": 511, - "stopName": "Corso Cavour; Ist. Maurolico", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Carabinieri Piazza Argo", + "category": "Police Station", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5531009233933, - 38.1917999630902 + 15.5328814698392, + 38.2150368299359 ] } }, { "type": "Feature", "properties": { - "stopId": 512, - "stopCode": 512, - "stopName": "Corso Cavour; p.zza Antonello", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Carabinieri Via Bixio", + "category": "Police Station", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5544840870072, - 38.1940472656988 + 15.5514147338533, + 38.1825840683723 ] } }, { "type": "Feature", "properties": { - "stopId": 513, - "stopCode": 513, - "stopName": "Corso Cavour; Teatro V. Emanuele", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Carabinieri Via Concezione", + "category": "Police Station", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5555384905589, - 38.1957923194463 + 15.553733638127, + 38.1985952583778 ] } }, { "type": "Feature", "properties": { - "stopId": 514, - "stopCode": 514, - "stopName": "Via Garibaldi; villa Mazzini", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Carabinieri Via Dir. Artiglieria", + "category": "Police Station", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5574679968386, - 38.197991534107 + 15.5365505926067, + 38.1870369506106 ] } }, { "type": "Feature", "properties": { - "stopId": 515, - "stopCode": 515, - "stopName": "Via Garibaldi; S. Giuliano", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Carabinieri Via G. e M. in S. Leone", + "category": "Police Station", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5578162770375, - 38.201180995472 + 15.551900949708, + 38.2014346777909 ] } }, { "type": "Feature", "properties": { - "stopId": 516, - "stopCode": 516, - "stopName": "Via Garibaldi; via P. Salvo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Carabinieri Via la Farina", + "category": "Police Station", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5580747953425, - 38.2040904775598 + 15.5515492111801, + 38.1783851818243 ] } }, { "type": "Feature", "properties": { - "stopId": 553, - "stopCode": 553, - "stopName": "Viale Giostra; pal.Telegrafo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Carabinieri Via Lago Grande", + "category": "Police Station", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5589714390785, - 38.2064430591851 + 15.6245564295343, + 38.2607072356749 ] } }, { "type": "Feature", "properties": { - "stopId": 554, - "stopCode": 554, - "stopName": "V.le della Libertà; San Francesco", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Carabinieri Via Nazionale", + "category": "Police Station", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5613009320288, - 38.2079999627281 + 15.4790463752928, + 38.0627027857628 ] } }, { "type": "Feature", "properties": { - "stopId": 555, - "stopCode": 555, - "stopName": "V.le della Libertà; Caronte", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cardullo A.", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5613009321147, - 38.2108999627276 + 15.5562809829542, + 38.186049608906 ] } }, { "type": "Feature", "properties": { - "stopId": 556, - "stopCode": 556, - "stopName": "V.le della Libertà; Ringo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Carrefour", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5624827544567, - 38.2134725687039 + 15.5477235352688, + 38.1745266528712 ] } }, { "type": "Feature", "properties": { - "stopId": 557, - "stopCode": 557, - "stopName": "V.le della Libertà; Museo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cartoleria Prinzi", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5654855269628, - 38.2171718144476 + 15.5494141006892, + 38.1807653524254 ] } }, { "type": "Feature", "properties": { - "stopId": 691, - "stopCode": 691, - "stopName": "Paradiso; via C. Pompea n. 17", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Casa di Cura Carmona", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5658519126117, - 38.2193936434887 + 15.5459721781806, + 38.1933008117555 ] } }, { "type": "Feature", "properties": { - "stopId": 692, - "stopCode": 692, - "stopName": "Paradiso; via C. Pompea n. 45", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Casa di Cura S. Rita", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5656894634336, - 38.221481000417 + 15.5566802876928, + 38.2059534501948 ] } }, { "type": "Feature", "properties": { - "stopId": 693, - "stopCode": 693, - "stopName": "Paradiso; via C. Pompea n. 245", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Casa di Cura Villa Salus", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5667559369716, - 38.2239736260382 + 15.5456402112856, + 38.199301132884 ] } }, { "type": "Feature", "properties": { - "stopId": 694, - "stopCode": 694, - "stopName": "Paradiso; via C. Pompea - Poste", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Casa di Kiposo Uesire", + "category": "Medical service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5685009397998, - 38.2265999624069 + 15.5512628545939, + 39.9924097586637 ] } }, { "type": "Feature", "properties": { - "stopId": 695, - "stopCode": 695, - "stopName": "Contemplazione; via C. Pompea n. 239", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Casa di Riposo", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5698009411862, - 38.2291999623487 + 15.5440416065859, + 38.1861463134435 ] } }, { "type": "Feature", "properties": { - "stopId": 696, - "stopCode": 696, - "stopName": "Contemplazione; via C. Pompea n. 419", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Casa di Riposo la Rondine", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5710009424885, - 38.2322999622949 + 15.5433477024891, + 38.1893619269603 ] } }, { "type": "Feature", "properties": { - "stopId": 697, - "stopCode": 697, - "stopName": "Contemplazione; villa Bosurgi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Casa Musicale S. Filippo ", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5721009436584, - 38.2342999622456 + 15.5554692495251, + 38.1831228449238 ] } }, { "type": "Feature", "properties": { - "stopId": 698, - "stopCode": 698, - "stopName": "Pace; via C. Pompea torrente Pace", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cassarà Graziella", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5753009469664, - 38.2366999621024 + 15.5964151483009, + 38.2535428381563 ] } }, { "type": "Feature", "properties": { - "stopId": 699, - "stopCode": 699, - "stopName": "Pace; via C. Pompea Trocadero", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Castanea delle Furie", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5778009495466, - 38.2381999619902 + 15.518554890534, + 38.2609021534854 ] } }, { "type": "Feature", "properties": { - "stopId": 700, - "stopCode": 700, - "stopName": "Grotte; via C. Pompea n.836", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Castanea delle Furie", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5800009518939, - 38.2418999618908 + 15.5195991075976, + 38.2640601599881 ] } }, { "type": "Feature", "properties": { - "stopId": 701, - "stopCode": 701, - "stopName": "Grotte; via C. Pompea c.da Fortino", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Castiglione Dr. Nunzio", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5808828033029, - 38.2442008331565 + 15.5525340689431, + 38.1955337263825 ] } }, { "type": "Feature", "properties": { - "stopId": 702, - "stopCode": 702, - "stopName": "Grotte; via C. Pompea n. 1129", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Catanesi Dr. Giulia", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5828009548824, - 38.2463999617642 + 15.5532901372381, + 38.1968198097773 ] } }, { "type": "Feature", "properties": { - "stopId": 703, - "stopCode": 703, - "stopName": "Grotte; via C. Pompea n. 1279", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cattedrale Archimandritato", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.5847009568677, - 38.2478999616782 + 15.5489556228127, + 38.1911035492691 ] } }, { "type": "Feature", "properties": { - "stopId": 704, - "stopCode": 704, - "stopName": "Grotte; via C. Pompea n. 1349", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cattedrale di Messina", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.5877009599834, - 38.2493999615422 + 15.5523232808543, + 38.192187923404 ] } }, { "type": "Feature", "properties": { - "stopId": 755, - "stopCode": 755, - "stopName": "Fiumara Guardia; via C. Pompea Autodromo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Catullo ", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5910621477153, - 38.2505312468304 + 15.5555755979508, + 38.1824055962988 ] } }, { "type": "Feature", "properties": { - "stopId": 756, - "stopCode": 756, - "stopName": "Fiumara Guardia; via C. Pompea n. 52-62", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cavallotti ", + "category": "ParkingGarage", + "type": "Enclosed_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5946009671536, - 38.2518999612281 + 15.5577507266821, + 38.1866802632922 ] } }, { "type": "Feature", "properties": { - "stopId": 757, - "stopCode": 757, - "stopName": "S. Agata; via C. Pompea n. 1553", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Celona", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5966009692367, - 38.2524999611366 + 15.5451494853626, + 38.1980902655588 ] } }, { "type": "Feature", "properties": { - "stopId": 758, - "stopCode": 758, - "stopName": "S. Agata; via C. Pompea n. 1647", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Centrale", + "category": "ParkingGarage", + "type": "Enclosed_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5999225318612, - 38.2540362016883 + 15.5510820727564, + 38.1876147324527 ] } }, { "type": "Feature", "properties": { - "stopId": 759, - "stopCode": 759, - "stopName": "S. Agata; via C. Pompea n. 1681", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Centrale", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6027848962367, - 38.255727344487 + 15.5545466023451, + 38.1923062841928 ] } }, { "type": "Feature", "properties": { - "stopId": 760, - "stopCode": 760, - "stopName": "Ganzirri; via C. Pompea; via Papardo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Centro Danza Maracaibo", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.6051677923391, - 38.2566253084189 + 15.5423664483726, + 38.1618650853778 ] } }, { "type": "Feature", "properties": { - "stopId": 761, - "stopCode": 761, - "stopName": "Ganzirri; via C. Pompea; scuola Petrarca", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Centro di Formazione Sportiva Asd", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.606700979883, - 38.2576999606715 + 15.5494386838558, + 38.198659136197 ] } }, { "type": "Feature", "properties": { - "stopId": 762, - "stopCode": 762, - "stopName": "Ganzirri; via C. Pompea; via Petraro", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Centro Erboristico AJoe", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.6096009829711, - 38.2595999605369 + 15.5493774974586, + 38.1836441622515 ] } }, { "type": "Feature", "properties": { - "stopId": 763, - "stopCode": 763, - "stopName": "Ganzirri; via C. Pompera n. 1861", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Centro Odontostomatologico Life", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6124009859376, - 38.2606999604067 + 15.4951825860539, + 38.0986921521312 ] } }, { "type": "Feature", "properties": { - "stopId": 764, - "stopCode": 764, - "stopName": "Ganzirri; via C. Pompea; Ortopedico", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Centro Riparazioni Italcar Sri", + "category": "Automobile Dealership", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6151266455985, - 38.2612561831682 + 15.523012173133, + 38.1426864229126 ] } }, { "type": "Feature", "properties": { - "stopId": 765, - "stopCode": 765, - "stopName": "Ganzirri; via C. Pompea; n. 1929", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Centro Riparazioni ltalcar", + "category": "Automobile Dealership", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6181009919776, - 38.2621999601407 + 15.5230473800539, + 38.1427905498046 ] } }, { "type": "Feature", "properties": { - "stopId": 766, - "stopCode": 766, - "stopName": "Ganzirri; via C. Pompea; 1955", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "chicco ", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.6215009955862, - 38.2627999599814 + 15.5516120153816, + 38.1867985005678 ] } }, { "type": "Feature", "properties": { - "stopId": 767, - "stopCode": 767, - "stopName": "Ganzirri; via C. Pompea; 382", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Chiesa Cristiana Avventista", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6271010015738, - 38.2643999597175 + 15.5507192956656, + 38.1945245915964 ] } }, { "type": "Feature", "properties": { - "stopId": 768, - "stopCode": 768, - "stopName": "Ganzirri; via C. Pompea; 2055", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Chiesa del Santissimo Rosario", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6308010055611, - 38.2658999595423 + 15.5195304794897, + 38.2628202810253 ] } }, { "type": "Feature", "properties": { - "stopId": 769, - "stopCode": 769, - "stopName": "Ganzirri; via C. Pompea; 2095", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Chiesa della Santissima Annunziata", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.6324010072879, - 38.2664999594663 + 15.5543950425395, + 38.1911899696445 ] } }, { "type": "Feature", "properties": { - "stopId": 1000, - "stopCode": 1000, - "stopName": "Rotonda Granatari", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Chiesa delle Barette", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6339010089072, - 38.266999959395 + 15.5504222923313, + 38.1937404790857 ] } }, { "type": "Feature", "properties": { - "stopId": 832, - "stopCode": 832, - "stopName": "Torre Faro; via Circuito statua Padre Pio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Chiesa di S. Matteo", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6388494831228, - 38.265526286149 + 15.5452549021597, + 38.2121307845423 ] } }, { "type": "Feature", "properties": { - "stopId": 1831, - "stopCode": 1831, - "stopName": "Torre Faro - via Ciruito n. 177", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Chiesa di Santa Maria AJemanna", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.6374010125702, - 38.2642999592287 + 15.5551179040155, + 38.1882453924598 ] } }, { "type": "Feature", "properties": { - "stopId": 1830, - "stopCode": 1830, - "stopName": "Torre Faro - via Ciruito n. 170", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Chiesa di Santa Maria della Valle", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6353259221993, - 38.2627515595096 + 15.512613304871, + 38.2127047815008 ] } }, { "type": "Feature", "properties": { - "stopId": 1829, - "stopCode": 1829, - "stopName": "Torre Faro - SP46 ex Motel Faro", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Chiesa Evangelica Valdese", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6327098385102, - 38.2613253780819 + 15.5540911401472, + 38.1958499012562 ] } }, { "type": "Feature", "properties": { - "stopId": 1828, - "stopCode": 1828, - "stopName": "Ganzirri - SP46 n.127", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Chiesa Maria SS. dell'Incoronata ", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6293010037968, - 38.260699959614 + 15.5216700149794, + 38.1900882426924 ] } }, { "type": "Feature", "properties": { - "stopId": 1894, - "stopCode": 1894, - "stopName": "Ganzirri - Lago Grande", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Chiesa S. Teresa del Bambino Gesù", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6264010007888, - 38.2630999597507 + 15.5431692975333, + 38.1884924000202 ] } }, { "type": "Feature", "properties": { - "stopId": 1766, - "stopCode": 1766, - "stopName": "Ganzirri - via C. Pompea - 1955", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Chiesa San Giacomo", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6215009955894, - 38.2628999599813 + 15.5486579914027, + 38.1776189291623 ] } }, { "type": "Feature", "properties": { - "stopId": 1765, - "stopCode": 1765, - "stopName": "Ganzirri - via C. Pompea - n. 1929", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Chiesa Santa Maria delle Grazie", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6181009919744, - 38.2620999601407 + 15.4789327105042, + 38.2712500058327 ] } }, { "type": "Feature", "properties": { - "stopId": 1764, - "stopCode": 1764, - "stopName": "Ganzirri - via C. Pompea - Ortopedico", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Chiesa SS. Cosma e Damiano", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6150009886861, - 38.2612999602856 + 15.5378728150675, + 38.1740247562396 ] } }, { "type": "Feature", "properties": { - "stopId": 1763, - "stopCode": 1763, - "stopName": "Ganzirri via C. Pompea n. 1861", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Chirico Abbigliamento", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.6123334346851, - 38.2607319747849 + 15.5555569047206, + 38.1874257355649 ] } }, { "type": "Feature", "properties": { - "stopId": 1762, - "stopCode": 1762, - "stopName": "Ganzirri - via C. Pompea - via Petraro", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Chirico Boutique Sri", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.6095009828664, - 38.2595999605415 + 15.5552129447156, + 38.1870372636897 ] } }, { "type": "Feature", "properties": { - "stopId": 1761, - "stopCode": 1761, - "stopName": "Ganzirri - via C. Pompea - scuola Petrarca", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cicala Beach", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.6069067656392, - 38.257984294634 + 15.5613592831471, + 38.2154420050655 ] } }, { "type": "Feature", "properties": { - "stopId": 1760, - "stopCode": 1760, - "stopName": "Ganzirri - via C. Pompea - via Papardo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cimitero ", + "category": "Cemetery", + "type": "Others" }, "geometry": { "type": "Point", "coordinates": [ - 15.6048694829728, - 38.2566045007562 + 15.6261345671609, + 38.2691047314453 ] } }, { "type": "Feature", "properties": { - "stopId": 1759, - "stopCode": 1759, - "stopName": "S. Agata - via C. Pompea n. 1681", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cimitero di Pace ", + "category": "Cemetery", + "type": "Others" }, "geometry": { "type": "Point", "coordinates": [ - 15.6022503916195, - 38.2556356814242 + 15.5731281142122, + 38.2392297464589 ] } }, { "type": "Feature", "properties": { - "stopId": 1758, - "stopCode": 1758, - "stopName": "S. Agata - via C. Pompea n. 1647", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cimitero Monumentale di Messina", + "category": "Cemetery", + "type": "Others" }, "geometry": { "type": "Point", "coordinates": [ - 15.5996824070745, - 38.2539524775303 + 15.5427844887214, + 38.1749004189601 ] } }, { "type": "Feature", "properties": { - "stopId": 1757, - "stopCode": 1757, - "stopName": "S. Agata - via C. Pompea n. 1553", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cineauditorium Fasola", + "category": "Cinema", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5965009691364, - 38.2525999611411 + 15.5532886305403, + 38.1895663664602 ] } }, { "type": "Feature", "properties": { - "stopId": 1756, - "stopCode": 1756, - "stopName": "Fiumara Guardia - via C. Pompea n. 52-62", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cinema Arena Savio ", + "category": "Cinema", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5944693657485, - 38.2519235951973 + 15.5485272029042, + 38.1917123287889 ] } }, { "type": "Feature", "properties": { - "stopId": 1755, - "stopCode": 1755, - "stopName": "Fiumara Guardia - via C. Pompea Autodromo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Clayeux", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.590353285617, - 38.2504364602031 + 15.5523962319241, + 38.1820718408968 ] } }, { "type": "Feature", "properties": { - "stopId": 1704, - "stopCode": 1704, - "stopName": "Grotte - via C. Pompea n. 1349", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Coin", + "category": "Department Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.587600959881, - 38.2493999615468 + 15.5506423229032, + 38.1821426105435 ] } }, { "type": "Feature", "properties": { - "stopId": 1703, - "stopCode": 1703, - "stopName": "Grotte - via C. Pompea n. 1279", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Coin ", + "category": "Department Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5846009567655, - 38.2478999616827 + 15.5540295160179, + 38.1848864869062 ] } }, { "type": "Feature", "properties": { - "stopId": 1702, - "stopCode": 1702, - "stopName": "Grotte - via C. Pompea n. 1129", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Colavita Dr. Nazareno", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5827009547804, - 38.2463999617687 + 15.5559405914471, + 38.2062138959805 ] } }, { "type": "Feature", "properties": { - "stopId": 1701, - "stopCode": 1701, - "stopName": "Grotte - via C. Pompea c.da Fortino", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Collereale", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5808009527775, - 38.2441999618545 + 15.5452909828118, + 38.1796444613483 ] } }, { "type": "Feature", "properties": { - "stopId": 1700, - "stopCode": 1700, - "stopName": "Grotte - via C. Pompea n.836", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Colosi ", + "category": "Book Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5799009517921, - 38.2418999618954 + 15.5471317392327, + 38.1821201954538 ] } }, { "type": "Feature", "properties": { - "stopId": 1699, - "stopCode": 1699, - "stopName": "Pace via C. Pompea Trocadero", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Comode", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5777454966401, - 38.2381721017525 + 15.5520458405254, + 38.1825400359334 ] } }, { "type": "Feature", "properties": { - "stopId": 1698, - "stopCode": 1698, - "stopName": "Pace - via C. Pompea torrente Pace", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Compass", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5752485378367, - 38.2366499039465 + 15.5548089304593, + 38.1951784975917 ] } }, { "type": "Feature", "properties": { - "stopId": 1697, - "stopCode": 1697, - "stopName": "Contemplazione - villa Bosurgi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Conad", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5720009435575, - 38.2342999622501 + 15.530077887607, + 38.1550590460485 ] } }, { "type": "Feature", "properties": { - "stopId": 1696, - "stopCode": 1696, - "stopName": "Contemplazione - via C. Pompea n. 419", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Conbipel", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5709009423877, - 38.2322999622993 + 15.5233502746331, + 38.1435906802547 ] } }, { "type": "Feature", "properties": { - "stopId": 1695, - "stopCode": 1695, - "stopName": "Contemplazione - via C. Pompea n. 239", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Conservatorio Musica", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5697009410855, - 38.2291999623532 + 15.5407671729016, + 38.1669098177471 ] } }, { "type": "Feature", "properties": { - "stopId": 1694, - "stopCode": 1694, - "stopName": "Paradiso - via C. Pompea - Poste", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Consolato Generale Onorario lslanda", + "category": "Embassy", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5684009396991, - 38.2265999624113 + 15.5595884312741, + 38.1866328776918 ] } }, { "type": "Feature", "properties": { - "stopId": 1693, - "stopCode": 1693, - "stopName": "Paradiso - via C. Pompea n. 245", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Consolato Onorario Finlandia", + "category": "Embassy", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5666629856069, - 38.22402108048 + 15.5551245001263, + 38.1984148307115 ] } }, { "type": "Feature", "properties": { - "stopId": 1692, - "stopCode": 1692, - "stopName": "Paradiso - via C. Pompea n. 45", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Consolato Onorario Francia", + "category": "Embassy", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5655592884559, - 38.2214952240915 + 15.5549081497133, + 38.1903526667923 ] } }, { "type": "Feature", "properties": { - "stopId": 1691, - "stopCode": 1691, - "stopName": "Paradiso - via C. Pompea n. 17", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Consolato Onorario Germania", + "category": "Embassy", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5657415219894, - 38.2192953603441 + 15.5471861110985, + 38.1917880272201 ] } }, { "type": "Feature", "properties": { - "stopId": 1557, - "stopCode": 1557, - "stopName": "V.le della Libertà; Museo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Consolato Onorario Norvegia", + "category": "Embassy", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5644178006543, - 38.216567400682 + 15.5556642409595, + 38.189106644212 ] } }, { "type": "Feature", "properties": { - "stopId": 1556, - "stopCode": 1556, - "stopName": "V.le della Libertà; Ringo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Conti Giuseppe", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5622198100186, - 38.2135294696356 + 15.5318214759974, + 38.1680955611957 ] } }, { "type": "Feature", "properties": { - "stopId": 1555, - "stopCode": 1555, - "stopName": "V.le della Libertà; Caronte", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Contrada Sperone", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5611009319149, - 38.2108999627365 + 15.5930232415478, + 38.2643001887955 ] } }, { "type": "Feature", "properties": { - "stopId": 1524, - "stopCode": 1524, - "stopName": "Via Pola; 30", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Copacabana", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5605358912708, - 38.2081963527617 + 15.5523048296932, + 38.2063538291681 ] } }, { "type": "Feature", "properties": { - "stopId": 1553, - "stopCode": 1553, - "stopName": "Viale Giostra - pal.Telegrafo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Coriandoli ", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5589009295928, - 38.2065999628339 + 15.6023394288308, + 38.2566825068718 ] } }, { "type": "Feature", "properties": { - "stopId": 550, - "stopCode": 550, - "stopName": "Via Garibaldi; torr. Trapani", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Corpea Fitness Club", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.558000928646, - 38.2048999628737 + 15.5452327091522, + 38.1794172692218 ] } }, { "type": "Feature", "properties": { - "stopId": 551, - "stopCode": 551, - "stopName": "Via Garibaldi; P.zza Juvarra", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Costa", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5577775029411, - 38.2032089235475 + 15.5558426869169, + 38.207403018063 ] } }, { "type": "Feature", "properties": { - "stopId": 552, - "stopCode": 552, - "stopName": "Via Garibaldi; via F. Crispi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Costa Anna", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5575009280126, - 38.2002999628963 + 15.5481179676787, + 38.2078636980336 ] } }, { "type": "Feature", "properties": { - "stopId": 146, - "stopCode": 146, - "stopName": "Via Garibaldi; is. 371", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Costume", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5571009275027, - 38.1964999629144 + 15.5485170310646, + 38.1792187033708 ] } }, { "type": "Feature", "properties": { - "stopId": 147, - "stopCode": 147, - "stopName": "Via Garibaldi; Piazza Unione Europea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Credem", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5568009271159, - 38.1934999629279 + 15.547855353433, + 38.1834691033218 ] } }, { "type": "Feature", "properties": { - "stopId": 148, - "stopCode": 148, - "stopName": "Via Cesare Battisti; p.zza Lepanto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Credem", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5562231561383, - 38.1915484515117 + 15.5519098274912, + 38.183879926084 ] } }, { "type": "Feature", "properties": { - "stopId": 103, - "stopCode": 103, - "stopName": "Via Cesare Battisti; Università", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Credem", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5539009240982, - 38.1887999630556 + 15.5490278467778, + 38.204511142745 ] } }, { "type": "Feature", "properties": { - "stopId": 246, - "stopCode": 246, - "stopName": "Via T. Cannizzaro; via Centonze", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Credito Siciliano", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5546781940104, - 38.1875816014248 + 15.5552480308125, + 38.1852930441601 ] } }, { "type": "Feature", "properties": { - "stopId": 247, - "stopCode": 247, - "stopName": "Via T. Cannizzaro; via Ugo Bassi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Credito Siciliano", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5580009280707, - 38.1853999628763 + 15.5554177142055, + 38.2002355600868 ] } }, { "type": "Feature", "properties": { - "stopId": 351, - "stopCode": 351, - "stopName": "Giampilieri Sup.; SP33 Km 1;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Credito Siciliano", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4681008391278, - 38.0696999666614 + 15.5585369825917, + 38.2096308433343 ] } }, { "type": "Feature", "properties": { - "stopId": 352, - "stopCode": 352, - "stopName": "Giampilieri Sup.; SP33 Km 2;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cristo Re", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.4612008329207, - 38.0721999669359 + 15.549348102946, + 38.1956797661971 ] } }, { "type": "Feature", "properties": { - "stopId": 353, - "stopCode": 353, - "stopName": "Giampilieri Sup.; SP33 Km 2;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cumia lnferiore", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.4644008358174, - 38.0718999668088 + 15.5004320863379, + 38.1744544824505 ] } }, { "type": "Feature", "properties": { - "stopId": 354, - "stopCode": 354, - "stopName": "Giampilieri Sup.; SP33 Km 3;100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cumia lnferiore", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.4665008377257, - 38.0717999667251 + 15.5001972317193, + 38.1747128714841 ] } }, { "type": "Feature", "properties": { - "stopId": 355, - "stopCode": 355, - "stopName": "Giampilieri Sup.; Cimitero", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cumia Superiore", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.4603008321665, - 38.0744999669714 + 15.4964957024995, + 38.1736331159982 ] } }, { "type": "Feature", "properties": { - "stopId": 356, - "stopCode": 356, - "stopName": "Bivio Molino", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cuore di Gesù ", + "category": "CM Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4588008308381, - 38.0755999670306 + 15.5436623870565, + 38.2104129389077 ] } }, { "type": "Feature", "properties": { - "stopId": 357, - "stopCode": 357, - "stopName": "Molino", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cuore Immacolato di Maria", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4550008273968, - 38.0751999671808 + 15.5650668844827, + 38.2260876143354 ] } }, { "type": "Feature", "properties": { - "stopId": 358, - "stopCode": 358, - "stopName": "Molino; SP33 Km 4;600", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Curcio Massimo ", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4535008260301, - 38.07459996724 + 15.5536690511361, + 38.2049297180117 ] } }, { "type": "Feature", "properties": { - "stopId": 359, - "stopCode": 359, - "stopName": "Altolia;SP33 Km 5;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Curcuraci", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.448700821757, - 38.0759999674283 + 15.5646159372244, + 38.2630104995655 ] } }, { "type": "Feature", "properties": { - "stopId": 360, - "stopCode": 360, - "stopName": "Altolia; SP33 Km 5;350", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Curcuraci ", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.4462008195433, - 38.076899967526 + 15.566525160589, + 38.2580175447644 ] } }, { "type": "Feature", "properties": { - "stopId": 361, - "stopCode": 361, - "stopName": "Altolia; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Curro Letteria", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4460008193304, - 38.075599967534 + 15.5522142830946, + 38.197383576355 ] } }, { "type": "Feature", "properties": { - "stopId": 1360, - "stopCode": 1360, - "stopName": "Altolia - SP33 Km 5 -350", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cus Messina", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.4462008195407, - 38.076799967526 + 15.5579201510636, + 38.2114992960798 ] } }, { "type": "Feature", "properties": { - "stopId": 1359, - "stopCode": 1359, - "stopName": "Altolia -SP33 Km 5 -000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Cwikla Maria", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4486008216673, - 38.0759999674322 + 15.4453539624077, + 38.2427420213901 ] } }, { "type": "Feature", "properties": { - "stopId": 1358, - "stopCode": 1358, - "stopName": "Molino - SP33 Km 4 -600", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "D. Ssa Reres", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4535008260275, - 38.07449996724 + 15.5554014188839, + 38.2045329663771 ] } }, { "type": "Feature", "properties": { - "stopId": 1357, - "stopCode": 1357, - "stopName": "Molino", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Da Alfredo", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4550008273942, - 38.0750999671809 + 15.5566052446954, + 38.1863990027502 ] } }, { "type": "Feature", "properties": { - "stopId": 1356, - "stopCode": 1356, - "stopName": "Bivio Molino", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Da Caterina", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4587008307477, - 38.0755999670346 + 15.4783917875662, + 38.2715313698028 ] } }, { "type": "Feature", "properties": { - "stopId": 1355, - "stopCode": 1355, - "stopName": "Giampilieri Sup. - Cimitero", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Da Manuel Bar Trattoria", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4602008320758, - 38.0744999669753 + 15.5499815531838, + 38.1902656458402 ] } }, { "type": "Feature", "properties": { - "stopId": 1351, - "stopCode": 1351, - "stopName": "Giampilieri Sup. - SP33 Km 1 -800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Da Vai", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4680008390366, - 38.0696999666654 + 15.5549845864965, + 38.1841662097728 ] } }, { "type": "Feature", "properties": { - "stopId": 966, - "stopCode": 966, - "stopName": "Via Nazionale; 203 - Briga Marina", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dainotti Dr. Giuseppe", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4798008496847, - 38.0632999661916 + 15.5545403505743, + 38.2005913284339 ] } }, { "type": "Feature", "properties": { - "stopId": 967, - "stopCode": 967, - "stopName": "Via Nazionale; 285 - Chiesa S. Mauro", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Danza Sportiva Corazon Latino", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.4788817360488, - 38.0614471730438 + 15.5713843950315, + 38.2359537297761 ] } }, { "type": "Feature", "properties": { - "stopId": 965, - "stopCode": 965, - "stopName": "Via Nazionale; 151 - Briga Marina", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Darone", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4814008511991, - 38.0646999661266 + 15.4469308330378, + 38.2416188152564 ] } }, { "type": "Feature", "properties": { - "stopId": 963, - "stopCode": 963, - "stopName": "Via Nazionale; 21 - Briga Marina", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "De Maggio Dr. Matteo Maria", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4847008543247, - 38.0673999659923 + 15.5538396482604, + 38.1834131191984 ] } }, { "type": "Feature", "properties": { - "stopId": 962, - "stopCode": 962, - "stopName": "Via Nazionale 216 - Briga Marina", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dei Mille", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4869963815589, - 38.0691341173931 + 15.5512017884675, + 38.1839186001706 ] } }, { "type": "Feature", "properties": { - "stopId": 980, - "stopCode": 980, - "stopName": "Giampilieri Mar.; c.da San Paolo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Del Popolo", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4873008568017, - 38.069799965886 + 15.5482636709561, + 38.1863369985341 ] } }, { "type": "Feature", "properties": { - "stopId": 362, - "stopCode": 362, - "stopName": "Strada Provinciale 34; fer. 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Del Sud", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4841008538972, - 38.072099966016 + 15.5542367717856, + 38.1895028257344 ] } }, { "type": "Feature", "properties": { - "stopId": 363, - "stopCode": 363, - "stopName": "Strada Provinciale 34; fer. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Del Villaggio Romeo", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4825008524876, - 38.0746999660807 + 15.5498766594971, + 38.1793370217857 ] } }, { "type": "Feature", "properties": { - "stopId": 364, - "stopCode": 364, - "stopName": "Strada Provinciale 34; fer. 3", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Delizie Messinesi", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4814008515227, - 38.076599966125 + 15.5561438983841, + 38.213478282408 ] } }, { "type": "Feature", "properties": { - "stopId": 366, - "stopCode": 366, - "stopName": "Briga Superiore", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dello Stretto Palace", + "category": "HotelorMotel", + "type": "Hotel" }, "geometry": { "type": "Point", "coordinates": [ - 15.4738008445594, - 38.0777999664318 + 15.5550431312503, + 38.1959393247732 ] } }, { "type": "Feature", "properties": { - "stopId": 367, - "stopCode": 367, - "stopName": "Briga Superiore - Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dentista", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4723008432033, - 38.078499966492 + 15.5556435283071, + 38.1870722653588 ] } }, { "type": "Feature", "properties": { - "stopId": 1366, - "stopCode": 1366, - "stopName": "Briga Superiore", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Desiderio", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4737008444676, - 38.0777999664359 + 15.5522659318493, + 38.1774176796005 ] } }, { "type": "Feature", "properties": { - "stopId": 1364, - "stopCode": 1364, - "stopName": "Strada Provinciale 34 - fer. 3", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Desiderio", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4813008514303, - 38.0765999661291 + 15.5552189940551, + 38.2063274786889 ] } }, { "type": "Feature", "properties": { - "stopId": 1363, - "stopCode": 1363, - "stopName": "Strada Provinciale 34 - fer. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Desirè", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4824008523951, - 38.0746999660847 + 15.5478669441664, + 38.1795275533384 ] } }, { "type": "Feature", "properties": { - "stopId": 1362, - "stopCode": 1362, - "stopName": "Strada Provinciale 34 - fer. 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Despar", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4840182912521, - 38.0721142173734 + 15.550178398686, + 38.2066447726847 ] } }, { "type": "Feature", "properties": { - "stopId": 978, - "stopCode": 978, - "stopName": "Via Nazionale; 85 - S. Margherita", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Diagnostica dello Stretto Sri ", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.501100870305, - 38.091599965316 + 15.551320205603, + 38.2059513624502 ] } }, { "type": "Feature", "properties": { - "stopId": 1374, - "stopCode": 1374, - "stopName": "Ponte Schiavo; SP35 Km 2;050", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dipartimento di Ingegneria ", + "category": "UniversityorCollege", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4887276940282, - 38.0763134008737 + 15.5940984837591, + 38.2586472012681 ] } }, { "type": "Feature", "properties": { - "stopId": 1373, - "stopCode": 1373, - "stopName": "Ponte Schiavo - SP35 Km 1 -300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dna", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.4912008607075, - 38.0798999657253 + 15.5476076012259, + 38.1743901586234 ] } }, { "type": "Feature", "properties": { - "stopId": 1372, - "stopCode": 1372, - "stopName": "Ponte Schiavo - SP35 Km 0 -650", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dolci Tentazioni", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4874008572285, - 38.0819999658803 + 15.550346095509, + 38.1936371588676 ] } }, { "type": "Feature", "properties": { - "stopId": 1371, - "stopCode": 1371, - "stopName": "Ponte Schiavo - SP35 Km 0 -550", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Don Bosco", + "category": "Book Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4883008580595, - 38.0817999658436 + 15.5487821686079, + 38.1907728549487 ] } }, { "type": "Feature", "properties": { - "stopId": 1370, - "stopCode": 1370, - "stopName": "Ponte Schiavo - SP35 Km 0 -200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Don Minico ", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4927008621345, - 38.0808999656636 + 15.5036294596824, + 38.2151118657691 ] } }, { "type": "Feature", "properties": { - "stopId": 972, - "stopCode": 972, - "stopName": "Via Nazionale; 56 - S. Margherita", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Don Nino", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4937008629941, - 38.0781999656229 + 15.5504122590568, + 38.1780329879727 ] } }, { "type": "Feature", "properties": { - "stopId": 971, - "stopCode": 971, - "stopName": "Via Nazionale; 41C - S. Margherita", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Don Orione", + "category": "Theatre", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.4933008625874, - 38.0769999656395 + 15.5455726486575, + 38.1766118539053 ] } }, { "type": "Feature", "properties": { - "stopId": 970, - "stopCode": 970, - "stopName": "Via Nazionale; 82 - S. Margherita", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Don Salvatore ", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4922008614889, - 38.074399965685 + 15.5516211902813, + 38.1926324803339 ] } }, { "type": "Feature", "properties": { - "stopId": 969, - "stopCode": 969, - "stopName": "Via Nazionale; 201 - S. Margherita", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Donna Moda", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4894008588032, - 38.0715999658 + 15.5525274411287, + 38.1831030895015 ] } }, { "type": "Feature", "properties": { - "stopId": 968, - "stopCode": 968, - "stopName": "Via Nazionale; 192 - S. Margherita", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dorsale Curcuraci Antennamare", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.488600858048, - 38.0711999658328 + 15.5319308015968, + 38.2615710945292 ] } }, { "type": "Feature", "properties": { - "stopId": 964, - "stopCode": 964, - "stopName": "Via Nazionale; 67 - Scuole; Briga Marina", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dorsale Curcuraci Antennamare ", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.4826306199942, - 38.0660020898348 + 15.536964132185, + 38.2454274822719 ] } }, { "type": "Feature", "properties": { - "stopId": 1354, - "stopCode": 1354, - "stopName": "Giampilieri Sup. - SP33 Km 3 -100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dott. lngo", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4664008376319, - 38.0716999667291 + 15.5512212633384, + 38.1827890908526 ] } }, { "type": "Feature", "properties": { - "stopId": 1353, - "stopCode": 1353, - "stopName": "Giampilieri Sup. - SP33 Km 2 -900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dott. lsaja", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4643008357265, - 38.0718999668128 + 15.5548487986493, + 38.182413193731 ] } }, { "type": "Feature", "properties": { - "stopId": 1352, - "stopCode": 1352, - "stopName": "Giampilieri Sup. - SP33 Km 2 -500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dott. Orazio Grimaldi Odontoiatra ", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.461270248773, - 38.07233929678 + 15.5485402801681, + 38.1901039596899 ] } }, { "type": "Feature", "properties": { - "stopId": 1385, - "stopCode": 1385, - "stopName": "Ponte Schiavo - SP35 Km 6 -900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dott. Ssa Amalia Brigandi", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4598008320377, - 38.0866999669896 + 15.5496056545372, + 38.179483702058 ] } }, { "type": "Feature", "properties": { - "stopId": 1384, - "stopCode": 1384, - "stopName": "Ponte Schiavo - SP35 Km 6 -750", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dott. Ssa Marchesini ", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4608008329437, - 38.08669996695 + 15.5485915367657, + 38.1844751917583 ] } }, { "type": "Feature", "properties": { - "stopId": 1383, - "stopCode": 1383, - "stopName": "Ponte Schiavo - SP35 Km 6 -450", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dott.ssa Itrera Ketty ", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4621008340722, - 38.0847999668986 + 15.5511411286322, + 38.1852078602874 ] } }, { "type": "Feature", "properties": { - "stopId": 1382, - "stopCode": 1382, - "stopName": "Ponte Schiavo - SP35 Km 6 -200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Adelardi Ginecologo", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4637008355173, - 38.084499966835 + 15.5588535988102, + 38.2109968431916 ] } }, { "type": "Feature", "properties": { - "stopId": 1380, - "stopCode": 1380, - "stopName": "Ponte Schiavo - SP35 Km 5 -500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Alecci Umberto", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4710435896707, - 38.0833560116477 + 15.5448568722161, + 38.1984517678337 ] } }, { "type": "Feature", "properties": { - "stopId": 1379, - "stopCode": 1379, - "stopName": "Ponte Schiavo - SP35 Km 5 -100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Alibrando Antonino", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4743008451584, - 38.082999966411 + 15.5525137955215, + 38.1992973011008 ] } }, { "type": "Feature", "properties": { - "stopId": 1378, - "stopCode": 1378, - "stopName": "Ponte Schiavo - SP35 Km 4 -800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Arnieli Gustavo", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4757008463983, - 38.0812999663549 + 15.5463934807748, + 38.1909776055434 ] } }, { "type": "Feature", "properties": { - "stopId": 1377, - "stopCode": 1377, - "stopName": "Ponte Schiavo - SP35 Km 3 -200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Barbaro Luigi", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4825008526155, - 38.07939996608 + 15.5555208499264, + 38.2054012180714 ] } }, { "type": "Feature", "properties": { - "stopId": 1376, - "stopCode": 1376, - "stopName": "Ponte Schiavo - SP35 Km 3 -000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Barbera Giuseppe", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4853008552138, - 38.0795999659662 + 15.5517633736084, + 38.1839472167749 ] } }, { "type": "Feature", "properties": { - "stopId": 1375, - "stopCode": 1375, - "stopName": "Ist. Cuppari - SP35 Km 2;630", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Biondo Doriana", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4881008577722, - 38.0780999658523 + 15.5447157473946, + 38.1811682312091 ] } }, { "type": "Feature", "properties": { - "stopId": 1369, - "stopCode": 1369, - "stopName": "C.da Runci - Scuola Agraria Calonerò", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Calogero Francesco", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4946038656418, - 38.0812317003192 + 15.5575228307887, + 38.2058414333463 ] } }, { "type": "Feature", "properties": { - "stopId": 1368, - "stopCode": 1368, - "stopName": "C.da Runci", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Caristia Francesco", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4961008653858, - 38.0834999655235 + 15.5174194729976, + 38.2633202097686 ] } }, { "type": "Feature", "properties": { - "stopId": 388, - "stopCode": 388, - "stopName": "S. Margherita; via Nazionale", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Castiglia Antonino", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5030008721924, - 38.0950999652368 + 15.5544036370092, + 38.2032207596937 ] } }, { "type": "Feature", "properties": { - "stopId": 389, - "stopCode": 389, - "stopName": "S. Margherita; SP36 Km 0; 140", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Celona Giuseppe", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5017008709979, - 38.0961999652905 + 15.5488290329809, + 38.1953144668296 ] } }, { "type": "Feature", "properties": { - "stopId": 390, - "stopCode": 390, - "stopName": "S. Margherita; SP36 Km 0; 450", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Cordopatri Ginecologo", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4989008684081, - 38.0977999654061 + 15.5566330415572, + 38.2054564043803 ] } }, { "type": "Feature", "properties": { - "stopId": 391, - "stopCode": 391, - "stopName": "S. Margherita; SP36 Km 0; 630", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Cucinotta Carmela", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4972008668398, - 38.0987999654761 + 15.5536406253589, + 38.1838250424362 ] } }, { "type": "Feature", "properties": { - "stopId": 392, - "stopCode": 392, - "stopName": "S. Margherita; SP36 Km 0;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. De Francesco Petronilla", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4956008653565, - 38.099399965542 + 15.5456985921446, + 38.1979168959969 ] } }, { "type": "Feature", "properties": { - "stopId": 393, - "stopCode": 393, - "stopName": "S. Stefano Medio; SP36 Km 0;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Famulari Cinzia", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4949008647175, - 38.0999999655707 + 15.5491805187812, + 38.1852486727488 ] } }, { "type": "Feature", "properties": { - "stopId": 394, - "stopCode": 394, - "stopName": "S. Stefano Medio; SP36 Km 1;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Fiumara", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4933008632512, - 38.1010999656363 + 15.5571769899777, + 38.1842754274989 ] } }, { "type": "Feature", "properties": { - "stopId": 395, - "stopCode": 395, - "stopName": "S. Stefano Medio; SP36 Km 1;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Fomaro Placido ", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4910008611199, - 38.1016999657305 + 15.5487456366673, + 38.1880496471432 ] } }, { "type": "Feature", "properties": { - "stopId": 396, - "stopCode": 396, - "stopName": "S. Stefano Medio; SP36 Km 1;550", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Giliberto Giovanni", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4882008585005, - 38.1012999658451 + 15.5488957976731, + 38.1904175120439 ] } }, { "type": "Feature", "properties": { - "stopId": 397, - "stopCode": 397, - "stopName": "S. Stefano Medio; SP36 Km 1;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Giubbrone", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4860008564777, - 38.1020999659347 + 15.5456068114069, + 38.2130571040852 ] } }, { "type": "Feature", "properties": { - "stopId": 398, - "stopCode": 398, - "stopName": "S. Stefano Medio; SP36 Km 2;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Gulletta Antonino", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4838008544344, - 38.1019999660243 + 15.5475452620988, + 38.1814983507137 ] } }, { "type": "Feature", "properties": { - "stopId": 399, - "stopCode": 399, - "stopName": "S. Stefano Briga; SP36 Km 2;150", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Lipari Luigi", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4828008534838, - 38.1010999660651 + 15.5547525562798, + 38.1911046729094 ] } }, { "type": "Feature", "properties": { - "stopId": 400, - "stopCode": 400, - "stopName": "S. Stefano Briga; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Maccarone Marcello", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4811008518842, - 38.1000999661341 + 15.5572061215463, + 38.1855881009078 ] } }, { "type": "Feature", "properties": { - "stopId": 1399, - "stopCode": 1399, - "stopName": "S. Stefano Briga - SP36 Km 2 -150", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Maiorana Maria ", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4828008534811, - 38.1009999660651 + 15.5580963419366, + 38.2187785524807 ] } }, { "type": "Feature", "properties": { - "stopId": 1398, - "stopCode": 1398, - "stopName": "S. Stefano Medio - SP36 Km 2 -000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Marciano Antonino ", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4838008544318, - 38.1018999660243 + 15.5529133524081, + 38.1857599562506 ] } }, { "type": "Feature", "properties": { - "stopId": 1397, - "stopCode": 1397, - "stopName": "S. Stefano Medio - SP36 Km 1 -800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Mezzanares Arturo", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.485900856385, - 38.1020999659388 + 15.5569130599027, + 38.2023808013679 ] } }, { "type": "Feature", "properties": { - "stopId": 1396, - "stopCode": 1396, - "stopName": "S. Stefano Medio - SP36 Km 1 -550", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Milone Cosimo", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4881008584048, - 38.1011999658492 + 15.5459497923925, + 38.188960244153 ] } }, { "type": "Feature", "properties": { - "stopId": 1395, - "stopCode": 1395, - "stopName": "S. Stefano Medio - SP36 Km 1 -300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Miragliotta Salvatore ", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4909008610267, - 38.1016999657346 + 15.5549017731318, + 38.2031791059049 ] } }, { "type": "Feature", "properties": { - "stopId": 1394, - "stopCode": 1394, - "stopName": "S. Stefano Medio - SP36 Km 1 -000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Moraci Nicolò", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4932008631577, - 38.1010999656404 + 15.5539528558997, + 38.2084008191567 ] } }, { "type": "Feature", "properties": { - "stopId": 1393, - "stopCode": 1393, - "stopName": "S. Stefano Medio - SP36 Km 0 -900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Mormina Giovanni ", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4948008646239, - 38.0999999655748 + 15.5318546788689, + 38.1542016577165 ] } }, { "type": "Feature", "properties": { - "stopId": 1392, - "stopCode": 1392, - "stopName": "S. Margherita - SP36 Km 0 -800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Nava Domenico ", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4955008652629, - 38.0993999655461 + 15.5534850776841, + 38.2093243034203 ] } }, { "type": "Feature", "properties": { - "stopId": 1391, - "stopCode": 1391, - "stopName": "S. Margherita SP36 Km 0 630", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Ninniti Gabriele ", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4971330817134, - 38.098794518939 + 15.5534891447935, + 38.1886896146402 ] } }, { "type": "Feature", "properties": { - "stopId": 1390, - "stopCode": 1390, - "stopName": "S. Margherita - SP36 Km 0 - 450", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Oliveri Domenico", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4988008683142, - 38.0977999654103 + 15.5518835935069, + 38.1954946965149 ] } }, { "type": "Feature", "properties": { - "stopId": 1389, - "stopCode": 1389, - "stopName": "S. Margherita - SP36 Km 0 - 140", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Origlio Paolo", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5016008709036, - 38.0961999652947 + 15.5522631359707, + 38.1828899284705 ] } }, { "type": "Feature", "properties": { - "stopId": 1388, - "stopCode": 1388, - "stopName": "S. Margherita - via Nazionale", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Picciotto Morichetti lsabella", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5029008720981, - 38.0950999652409 + 15.5495083398582, + 38.1805958530304 ] } }, { "type": "Feature", "properties": { - "stopId": 421, - "stopCode": 421, - "stopName": "Larderia Inf.; SP39 Km 0;050", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Siclari Rita", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5228008923027, - 38.139599964401 + 15.5461448274213, + 38.1888132089381 ] } }, { "type": "Feature", "properties": { - "stopId": 422, - "stopCode": 422, - "stopName": "Larderia Inf.; SP39 Km 0;360", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Soraci Annibale", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.51930088895, - 38.139899964549 + 15.5519147215824, + 38.2093129566159 ] } }, { "type": "Feature", "properties": { - "stopId": 423, - "stopCode": 423, - "stopName": "Larderia Inf.; SP39 Km 0;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Toscano Antonino", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5163008861227, - 38.1414999646751 + 15.5443993264948, + 38.1949528666048 ] } }, { "type": "Feature", "properties": { - "stopId": 424, - "stopCode": 424, - "stopName": "Larderia Inf.; SP39 Km 1;470", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr. Zanghi Letterio", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5118804785293, - 38.1414931922041 + 15.5497718860946, + 38.1831741733497 ] } }, { "type": "Feature", "properties": { - "stopId": 425, - "stopCode": 425, - "stopName": "Larderia Inf.; SP39 Km 1;600", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Dr.ssa Orlando Annunziata Lucia", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5069008771623, - 38.1410999650686 + 15.5788254788824, + 38.2653252843609 ] } }, { "type": "Feature", "properties": { - "stopId": 426, - "stopCode": 426, - "stopName": "Larderia Inf.; SP39 Km 1;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Duca Windsor", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5044088786357, - 38.1410168442255 + 15.5493531850685, + 38.1968663703298 ] } }, { "type": "Feature", "properties": { - "stopId": 427, - "stopCode": 427, - "stopName": "Larderia Inf.; SP39 Km 2;100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Duomo", + "category": "Historical Monument Building", + "type": "Cultural_Buildings" }, "geometry": { "type": "Point", "coordinates": [ - 15.5034008738696, - 38.1417999652141 + 15.5527796779002, + 38.1923092153704 ] } }, { "type": "Feature", "properties": { - "stopId": 428, - "stopCode": 428, - "stopName": "Larderia Inf.; SP39 Km 2;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "E. Castronovo Bordonaro", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5020008725311, - 38.1411999652722 + 15.5115146285164, + 38.176111726063 ] } }, { "type": "Feature", "properties": { - "stopId": 429, - "stopCode": 429, - "stopName": "Larderia Inf.; SP39 Km 2;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ecospiritual Shop Fiori Gialli", + "category": "Book Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5004618518135, - 38.1418226453745 + 15.5524978598491, + 38.1891738051952 ] } }, { "type": "Feature", "properties": { - "stopId": 430, - "stopCode": 430, - "stopName": "Larderia Inf.; SP39 Km 2;700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Edicola", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4997008704214, - 38.1432999653671 + 15.554523024704, + 38.204493868996 ] } }, { "type": "Feature", "properties": { - "stopId": 431, - "stopCode": 431, - "stopName": "Larderia Sup.; SP39 Km 3;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Edicola", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4973652548776, - 38.1420598380941 + 15.5460360845095, + 38.2116706048668 ] } }, { "type": "Feature", "properties": { - "stopId": 432, - "stopCode": 432, - "stopName": "Larderia Sup.; SP39 Km 3;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Effe2", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4952530009941, - 38.1416806749139 + 15.5525924415884, + 38.1872279357128 ] } }, { "type": "Feature", "properties": { - "stopId": 433, - "stopCode": 433, - "stopName": "Larderia Sup.; SP39 Km 3;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Effeci", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.495900866753, - 38.1397999655243 + 15.5532617388306, + 38.1840941749289 ] } }, { "type": "Feature", "properties": { - "stopId": 434, - "stopCode": 434, - "stopName": "Larderia Sup.; SP39 Km 3;700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Elettrauto Falcone Massimo", + "category": "Vehicle Rep air Facility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4949625703305, - 38.1390996794022 + 15.555954883156, + 38.1827492494013 ] } }, { "type": "Feature", "properties": { - "stopId": 435, - "stopCode": 435, - "stopName": "Larderia Sup.; SP39 Km 3;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Elettrofomiture Provvidenti", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4950008658648, - 38.1381999655616 + 15.544484937074, + 38.1812871093918 ] } }, { "type": "Feature", "properties": { - "stopId": 436, - "stopCode": 436, - "stopName": "Larderia Sup.; SP39 Km 4;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Elleesse Sport Club", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.4940008648976, - 38.1370999656028 + 15.5368561103015, + 38.1647053098505 ] } }, { "type": "Feature", "properties": { - "stopId": 437, - "stopCode": 437, - "stopName": "Larderia Sup.; SP39 Km 4;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Emporio Annani", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4915008625262, - 38.1358999657056 + 15.5532946308952, + 38.1862375708003 ] } }, { "type": "Feature", "properties": { - "stopId": 438, - "stopCode": 438, - "stopName": "Larderia Sup.; SP39 Km 4;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "eni", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4906008616281, - 38.1337999657427 + 15.4790990940589, + 38.0636756800641 ] } }, { "type": "Feature", "properties": { - "stopId": 992, - "stopCode": 992, - "stopName": "Larderia Sup. SP39 Km 5 000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "eni", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4896203662336, - 38.1324382613047 + 15.5158222367333, + 38.1440913141495 ] } }, { "type": "Feature", "properties": { - "stopId": 439, - "stopCode": 439, - "stopName": "Larderia Sup.; SP39 Km 5;100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "eni", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4894246066973, - 38.1333729690395 + 15.5210759117003, + 38.1566873779108 ] } }, { "type": "Feature", "properties": { - "stopId": 440, - "stopCode": 440, - "stopName": "Tipoldo; SP39 Km 5;700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "eni", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.486046740683, - 38.1319282302538 + 15.5323482869055, + 38.1580975800773 ] } }, { "type": "Feature", "properties": { - "stopId": 441, - "stopCode": 441, - "stopName": "Tipoldo; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "eni", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4849008562618, - 38.1315999659757 + 15.5398272695895, + 38.1656088836862 ] } }, { "type": "Feature", "properties": { - "stopId": 1440, - "stopCode": 1440, - "stopName": "Tipoldo - SP39 Km 5;700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "eni", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4858914294143, - 38.1319099601159 + 15.5293381283194, + 38.1705260821252 ] } }, { "type": "Feature", "properties": { - "stopId": 1439, - "stopCode": 1439, - "stopName": "Larderia Sup. - SP39 Km 5;100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "eni", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4894862975529, - 38.1333051431492 + 15.5435436356134, + 38.1759106116283 ] } }, { "type": "Feature", "properties": { - "stopId": 1992, - "stopCode": 1992, - "stopName": "Larderia Sup. SP39 Km 5 000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "eni", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4897093613943, - 38.1324062523196 + 15.5450242023559, + 38.1786955496495 ] } }, { "type": "Feature", "properties": { - "stopId": 1438, - "stopCode": 1438, - "stopName": "Larderia Sup. SP39 Km 4 900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "eni", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4906432044554, - 38.1337541117918 + 15.5458678614503, + 38.1806987867028 ] } }, { "type": "Feature", "properties": { - "stopId": 1437, - "stopCode": 1437, - "stopName": "Larderia Sup. - SP39 Km 4;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "eni", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4914008624301, - 38.1357999657097 + 15.5438531341048, + 38.1814241048579 ] } }, { "type": "Feature", "properties": { - "stopId": 1436, - "stopCode": 1436, - "stopName": "Larderia Sup. - SP39 Km 4;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "eni", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4940008648948, - 38.1369999656028 + 15.5476311503136, + 38.189764825662 ] } }, { "type": "Feature", "properties": { - "stopId": 1435, - "stopCode": 1435, - "stopName": "Larderia Sup. - SP39 Km 3;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "eni", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4951008659613, - 38.1382999655574 + 15.5451410679684, + 38.1981462058481 ] } }, { "type": "Feature", "properties": { - "stopId": 1434, - "stopCode": 1434, - "stopName": "Larderia Sup. - SP39 Km 3;700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "eni", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.495012191236, - 38.139029502656 + 15.5548872461707, + 38.1983267514943 ] } }, { "type": "Feature", "properties": { - "stopId": 1433, - "stopCode": 1433, - "stopName": "Larderia Sup. - SP39 Km 3;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "eni", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4958008666591, - 38.1397999655285 + 15.5518881692674, + 38.2038007815313 ] } }, { "type": "Feature", "properties": { - "stopId": 1431, - "stopCode": 1431, - "stopName": "Larderia Sup. SP39 Km 3 000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "eni", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.49736827539, - 38.1419680324484 + 15.5453664510597, + 38.2111216644695 ] } }, { "type": "Feature", "properties": { - "stopId": 1430, - "stopCode": 1430, - "stopName": "Larderia Inf. - SP39 Km 2;700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "eni", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4996008703245, - 38.1431999653712 + 15.5594804173034, + 38.2119224510293 ] } }, { "type": "Feature", "properties": { - "stopId": 1429, - "stopCode": 1429, - "stopName": "Larderia Inf. - SP39 Km 2;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "eni", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5003759865383, - 38.1418379392478 + 15.5895400097891, + 38.2509595243419 ] } }, { "type": "Feature", "properties": { - "stopId": 1428, - "stopCode": 1428, - "stopName": "Larderia Inf. - SP39 Km 2;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "eni", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5019008724395, - 38.1412999652763 + 15.62764005543, + 38.2659218879785 ] } }, { "type": "Feature", "properties": { - "stopId": 1427, - "stopCode": 1427, - "stopName": "Larderia Inf. - SP39 Km 2;100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Eos", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5034008738668, - 38.1416999652141 + 15.5614368021887, + 38.2159012067806 ] } }, { "type": "Feature", "properties": { - "stopId": 1426, - "stopCode": 1426, - "stopName": "Larderia Inf. - SP39 Km 1;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Era lnformatica", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5042766920064, - 38.141008609263 + 15.5817036901067, + 38.2477819207402 ] } }, { "type": "Feature", "properties": { - "stopId": 1425, - "stopCode": 1425, - "stopName": "Larderia Inf. - SP39 Km 1;600", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Esprit", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5068008770676, - 38.1410999650728 + 15.5559498562108, + 38.1874135784826 ] } }, { "type": "Feature", "properties": { - "stopId": 1424, - "stopCode": 1424, - "stopName": "Larderia Inf. - SP39 Km 1;470", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Esso", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5117536563194, - 38.1414172492661 + 15.5084770397399, + 38.1108198931988 ] } }, { "type": "Feature", "properties": { - "stopId": 1423, - "stopCode": 1423, - "stopName": "Larderia Inf. - SP39 Km 0;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Esso", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5163008861199, - 38.1413999646751 + 15.5204514977773, + 38.1335567112608 ] } }, { "type": "Feature", "properties": { - "stopId": 1422, - "stopCode": 1422, - "stopName": "Larderia Inf. - SP39 Km 0;360", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Esso", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5192008888541, - 38.1398999645531 + 15.5224622858804, + 38.1410964195738 ] } }, { "type": "Feature", "properties": { - "stopId": 1421, - "stopCode": 1421, - "stopName": "Larderia Inf. - SP39 Km 0;050", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Esso", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5227008922065, - 38.1395999644052 + 15.527788429343, + 38.150694896075 ] } }, { "type": "Feature", "properties": { - "stopId": 493, - "stopCode": 493, - "stopName": "Via Contesse; 20", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Esso", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5326009021686, - 38.153399963982 + 15.5367370716491, + 38.1623166019801 ] } }, { "type": "Feature", "properties": { - "stopId": 957, - "stopCode": 957, - "stopName": "Via Marco Polo; 346", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Esso", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5337009032662, - 38.1543999639348 + 15.5415200815505, + 38.1828736769549 ] } }, { "type": "Feature", "properties": { - "stopId": 958, - "stopCode": 958, - "stopName": "Via Marco Polo; 335", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Esso", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5340009035779, - 38.1550999639218 + 15.5340391017373, + 38.1866893237363 ] } }, { "type": "Feature", "properties": { - "stopId": 959, - "stopCode": 959, - "stopName": "Via Marco Polo; 293", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Esso", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5344009039901, - 38.1558999639046 + 15.5493322686718, + 38.1891360078585 ] } }, { "type": "Feature", "properties": { - "stopId": 960, - "stopCode": 960, - "stopName": "Via Marco Polo; 215", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Esso", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.535400905018, - 38.1577999638614 + 15.5489122176877, + 38.1983467824676 ] } }, { "type": "Feature", "properties": { - "stopId": 961, - "stopCode": 961, - "stopName": "Via Marco Polo; 125", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Esso", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5364009060442, - 38.1595999638182 + 15.5558361929019, + 38.2020148897726 ] } }, { "type": "Feature", "properties": { - "stopId": 891, - "stopCode": 891, - "stopName": "Viale Europa; 22", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Esso", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5515760370447, - 38.1788547855017 + 15.5626009135485, + 38.2166293996017 ] } }, { "type": "Feature", "properties": { - "stopId": 249, - "stopCode": 249, - "stopName": "Viale Europa; 110", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Esso", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5468009168628, - 38.1812999633661 + 15.5632660723719, + 38.2210969395292 ] } }, { "type": "Feature", "properties": { - "stopId": 251, - "stopCode": 251, - "stopName": "Viale Europa; Osp. Piemonte", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Esso", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5449009150224, - 38.1822999634484 + 15.5505440905671, + 38.2235545045498 ] } }, { "type": "Feature", "properties": { - "stopId": 253, - "stopCode": 253, - "stopName": "Viale Europa; Stazione Carabinieri", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Esso", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5429009130928, - 38.1834999635348 + 15.5620824981345, + 38.2253488998338 ] } }, { "type": "Feature", "properties": { - "stopId": 255, - "stopCode": 255, - "stopName": "Via Comunale Camaro; 49", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Esso", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5388799859234, - 38.1862499444792 + 15.4466987499559, + 38.2438988984475 ] } }, { "type": "Feature", "properties": { - "stopId": 256, - "stopCode": 256, - "stopName": "Via Comunale Camaro; 89", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Esso", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5367170140977, - 38.1869421307823 + 15.6234022683326, + 38.2642296074278 ] } }, { "type": "Feature", "properties": { - "stopId": 257, - "stopCode": 257, - "stopName": "Via Comunale Camaro; 111", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ester Pelli News", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5354089662047, - 38.1872315896549 + 15.5504706803829, + 38.1825026807762 ] } }, { "type": "Feature", "properties": { - "stopId": 258, - "stopCode": 258, - "stopName": "Via Comunale Camaro; 139", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Eugenio Penna", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.532300902859, - 38.1875999639903 + 15.5541114392479, + 38.1842271034556 ] } }, { "type": "Feature", "properties": { - "stopId": 259, - "stopCode": 259, - "stopName": "Via Comunale Camaro; Via Polveriera", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Euphonya Management di Grasso D.", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5300277364598, - 38.1881074839357 + 15.5472928445633, + 38.1974085368417 ] } }, { "type": "Feature", "properties": { - "stopId": 260, - "stopCode": 260, - "stopName": "Via Comunale Camaro; Sc. Elementare", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "EURO Spin", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5271008978458, - 38.188599964212 + 15.5234181694262, + 38.143734946335 ] } }, { "type": "Feature", "properties": { - "stopId": 261, - "stopCode": 261, - "stopName": "Camaro Superiore; Piazza F. Fazio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "EURO Spin", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.524400895266, - 38.1895999643266 + 15.4458196113428, + 38.2431640484382 ] } }, { "type": "Feature", "properties": { - "stopId": 262, - "stopCode": 262, - "stopName": "Camaro Superiore; 13", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Euromobil F.a.t.a.", + "category": "RentACarFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5216008925678, - 38.1895999644452 + 15.5302859833253, + 38.1553029321753 ] } }, { "type": "Feature", "properties": { - "stopId": 263, - "stopCode": 263, - "stopName": "Camaro Superiore; residence Archi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Euronics", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5201008911535, - 38.1905999645085 + 15.5208289655716, + 38.1365464087272 ] } }, { "type": "Feature", "properties": { - "stopId": 264, - "stopCode": 264, - "stopName": "Camaro Superiore; c.da Luce", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Euronics", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.518300889442, - 38.1911999645844 + 15.5216621894149, + 38.1387455181522 ] } }, { "type": "Feature", "properties": { - "stopId": 265, - "stopCode": 265, - "stopName": "Camaro Superiore; c.da Luce n. 10", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Euronics", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5162008874206, - 38.1908999646728 + 15.5298294630407, + 38.1545940497492 ] } }, { "type": "Feature", "properties": { - "stopId": 266, - "stopCode": 266, - "stopName": "Camaro Sup.; Mito Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Euronics", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5177008887874, - 38.18839996461 + 15.5306657862524, + 38.1551777517762 ] } }, { "type": "Feature", "properties": { - "stopId": 892, - "stopCode": 892, - "stopName": "Viale San Martino; 347", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Euronics", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5494009193445, - 38.1784999632535 + 15.5455061485512, + 38.1906645642197 ] } }, { "type": "Feature", "properties": { - "stopId": 893, - "stopCode": 893, - "stopName": "Viale San Matino; Don Orione", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "EURONICS Point", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5475009174152, - 38.1765999633364 + 15.554788988943, + 38.1850539807184 ] } }, { "type": "Feature", "properties": { - "stopId": 128, - "stopCode": 128, - "stopName": "Terminal Villa Dante", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Europa Auto S.p.A.", + "category": "Vehicle RepairFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5455009154115, - 38.1753999634233 + 15.5415600104644, + 38.1628949492527 ] } }, { "type": "Feature", "properties": { - "stopId": 248, - "stopCode": 248, - "stopName": "Via Catania; 70", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Europcar", + "category": "RentACarFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5466009165755, - 38.1781999633752 + 15.5550858536472, + 38.1922458296305 ] } }, { "type": "Feature", "properties": { - "stopId": 108, - "stopCode": 108, - "stopName": "Via Catania; Colle Reale", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Eurotruck S.r.l.", + "category": "Vehicle RepairFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5472009171985, - 38.1792999633491 + 15.5136417028393, + 38.1221059821917 ] } }, { "type": "Feature", "properties": { - "stopId": 1265, - "stopCode": 1265, - "stopName": "Camaro Superiore - c.da Luce n. 10", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Eventi", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.516354545444, - 38.19065450846 + 15.5530509911097, + 38.1832714792675 ] } }, { "type": "Feature", "properties": { - "stopId": 1264, - "stopCode": 1264, - "stopName": "Camaro Superiore - c.da Luce", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "expert Papino", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5183277252556, - 38.1909008869 + 15.5223499857663, + 38.1406080688068 ] } }, { "type": "Feature", "properties": { - "stopId": 1263, - "stopCode": 1263, - "stopName": "Camaro Superiore - residence Archi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "F 3 Motors S.r.l.", + "category": "Vehicle RepairFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5200008910575, - 38.1905999645127 + 15.5403002983091, + 38.164249578069 ] } }, { "type": "Feature", "properties": { - "stopId": 1262, - "stopCode": 1262, - "stopName": "Camaro Superiore - 13", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "F.D. Fashion Group Sri", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5215008924688, - 38.1894999644495 + 15.5277610354311, + 38.150748748661 ] } }, { "type": "Feature", "properties": { - "stopId": 1261, - "stopCode": 1261, - "stopName": "Camaro Superiore - Piazza F. Fazio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "F.k.t.", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5243008951637, - 38.1893999643309 + 15.5595093238711, + 38.2124653950903 ] } }, { "type": "Feature", "properties": { - "stopId": 1260, - "stopCode": 1260, - "stopName": "Via Comunale Camaro - Sc. Elementare", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Famulari Dr. Cinzia", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5272008979397, - 38.1884999642078 + 15.5510098220288, + 38.1875184286359 ] } }, { "type": "Feature", "properties": { - "stopId": 1259, - "stopCode": 1259, - "stopName": "Via Comunale Camaro - Via Polveriera", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Fantasy", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.530083649208, - 38.1879599141739 + 15.5499185982042, + 38.1833388014554 ] } }, { "type": "Feature", "properties": { - "stopId": 1258, - "stopCode": 1258, - "stopName": "Via Comunale Camaro - 139", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Fantasy", + "category": "Book Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5322566071756, - 38.1875254339717 + 15.6400005527612, + 38.2651640916274 ] } }, { "type": "Feature", "properties": { - "stopId": 1257, - "stopCode": 1257, - "stopName": "Via Comunale Camaro - 111", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.535290190625, - 38.187126179482 + 15.504122251289, + 38.1514579850288 ] } }, { "type": "Feature", "properties": { - "stopId": 1256, - "stopCode": 1256, - "stopName": "Via Comunale Camaro - 89", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5366009070264, - 38.186899963806 + 15.5359452848164, + 38.1623258965199 ] } }, { "type": "Feature", "properties": { - "stopId": 1255, - "stopCode": 1255, - "stopName": "Via Comunale Camaro - 49", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5388009091549, - 38.1861999637115 + 15.5498116183025, + 38.1894661333783 ] } }, { "type": "Feature", "properties": { - "stopId": 254, - "stopCode": 254, - "stopName": "Viale Europa; 205", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5427009128907, - 38.1832999635436 + 15.574952584046, + 38.2380197171899 ] } }, { "type": "Feature", "properties": { - "stopId": 252, - "stopCode": 252, - "stopName": "Viale Europa; Pronto Socc. Piemonte", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5440009141467, - 38.1825999634874 + 15.5997199639517, + 38.2556705831985 ] } }, { "type": "Feature", "properties": { - "stopId": 250, - "stopCode": 250, - "stopName": "Viale Europa; Tribunale dei Minori", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5466009166629, - 38.1811999633749 + 15.5185137600774, + 38.2633623232919 ] } }, { "type": "Feature", "properties": { - "stopId": 242, - "stopCode": 242, - "stopName": "Via Cesare Battisti; 375", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Baratta", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5483009183439, - 38.1813999633009 + 15.608721191965, + 38.2606660298065 ] } }, { "type": "Feature", "properties": { - "stopId": 243, - "stopCode": 243, - "stopName": "Via Cesare Battisti; 309", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia batteri Dr. Francesco", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5492009192669, - 38.1825999632616 + 15.5024511576064, + 38.1419455833659 ] } }, { "type": "Feature", "properties": { - "stopId": 1244, - "stopCode": 1244, - "stopName": "Via Cesare Battisti; 267", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Brancate Carmela", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5508092264206, - 38.1846451535099 + 15.555583339556, + 38.2026724741765 ] } }, { "type": "Feature", "properties": { - "stopId": 245, - "stopCode": 245, - "stopName": "Via Cesare Battisti; 215", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Caminiti Ganjfi Carmelina", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.552800922964, - 38.187299963104 + 15.5143021397525, + 38.1193440545162 ] } }, { "type": "Feature", "properties": { - "stopId": 110, - "stopCode": 110, - "stopName": "Gran Camposanto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Capila Dr. Renato", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5445009144023, - 38.1744999634668 + 15.5314100854373, + 38.1528350656374 ] } }, { "type": "Feature", "properties": { - "stopId": 111, - "stopCode": 111, - "stopName": "Via Catania; S. Cosimo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Coppolino Alessandro", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5433936386113, - 38.1727442473368 + 15.5566935615853, + 38.206049478507 ] } }, { "type": "Feature", "properties": { - "stopId": 112, - "stopCode": 112, - "stopName": "Provinciale", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Costa", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5425009123405, - 38.1710999635538 + 15.5567114107408, + 38.2080638508941 ] } }, { "type": "Feature", "properties": { - "stopId": 113, - "stopCode": 113, - "stopName": "Provinciale; Palazzo Palano", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia delle Erbe", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5415009113111, - 38.1693999635973 + 15.5552170720526, + 38.2138977954592 ] } }, { "type": "Feature", "properties": { - "stopId": 114, - "stopCode": 114, - "stopName": "Carcere di Gazzi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Dott.ssa Mangano", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5406009103834, - 38.1677999636363 + 15.4780920719963, + 38.2672645040442 ] } }, { "type": "Feature", "properties": { - "stopId": 115, - "stopCode": 115, - "stopName": "Stadio Celeste", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Feriazzo Dr. Rosa Maria", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5392043630915, - 38.1642577891338 + 15.5200909213238, + 38.1751271926315 ] } }, { "type": "Feature", "properties": { - "stopId": 442, - "stopCode": 442, - "stopName": "Tor. Zafferia; via Comunale Km 0;150", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Fiandaca di Montagnese A.", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5238008934158, - 38.1448999643579 + 15.5288545023497, + 38.1698330666829 ] } }, { "type": "Feature", "properties": { - "stopId": 443, - "stopCode": 443, - "stopName": "Tor. Zafferia; via Comunale Km 0;460", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Fili Gargano", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5209008906695, - 38.1463999644805 + 15.5189013156583, + 38.1564712874146 ] } }, { "type": "Feature", "properties": { - "stopId": 444, - "stopCode": 444, - "stopName": "Tor. Zafferia; via Comunale Km 0;650", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Freni", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5190008888717, - 38.1472999645606 + 15.5062224304735, + 38.1039258315019 ] } }, { "type": "Feature", "properties": { - "stopId": 445, - "stopCode": 445, - "stopName": "Tor. Zafferia; via Comunale Km 0;840", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Largo Giuseppe Seguenza", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5170008869673, - 38.1476999646448 + 15.5538183383992, + 38.1970342062068 ] } }, { "type": "Feature", "properties": { - "stopId": 446, - "stopCode": 446, - "stopName": "Tor. Zafferia; via Comunale Km 0;980", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Macaione Dr. Serafina", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5151470296867, - 38.1480308275571 + 15.4951119006661, + 38.1420692344973 ] } }, { "type": "Feature", "properties": { - "stopId": 447, - "stopCode": 447, - "stopName": "Tor. Zafferia; via Comunale Km 1;400", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Mangano Carlotta", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5117639120328, - 38.1500168348644 + 15.4817896389416, + 38.0658814405608 ] } }, { "type": "Feature", "properties": { - "stopId": 448, - "stopCode": 448, - "stopName": "Zafferia; via Comunale Km 1;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Mangiavi Dr. Rosario", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5087008791918, - 38.1525999649921 + 15.5491582046749, + 38.209511983817 ] } }, { "type": "Feature", "properties": { - "stopId": 449, - "stopCode": 449, - "stopName": "Zafferia; Case Popolari", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Pirrone Angela", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5096213300911, - 38.1534799349535 + 15.5526782819396, + 38.2037484977689 ] } }, { "type": "Feature", "properties": { - "stopId": 450, - "stopCode": 450, - "stopName": "Zafferia; via Comunale Km 2;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Pizzimenti Concetto", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5072008777765, - 38.1528999650546 + 15.5816083093389, + 38.2605759913358 ] } }, { "type": "Feature", "properties": { - "stopId": 451, - "stopCode": 451, - "stopName": "Zafferia; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Ruffa", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5064008770012, - 38.152299965088 + 15.5537736746831, + 38.1867416343608 ] } }, { "type": "Feature", "properties": { - "stopId": 911, - "stopCode": 911, - "stopName": "Minisale Alto; via Carlo Malatesta", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Ruffa Dr. Antonio", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5352148381224, - 38.1605392024406 + 15.5534954322134, + 38.1869202697815 ] } }, { "type": "Feature", "properties": { - "stopId": 912, - "stopCode": 912, - "stopName": "Minissale Alto; via N. Piccinino", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia S. Margherita", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.53460090434, - 38.1612999638953 + 15.4584135969709, + 38.0845785580251 ] } }, { "type": "Feature", "properties": { - "stopId": 913, - "stopCode": 913, - "stopName": "Minissale Alto; Chiesa Evangelica", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia San Paolo", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5333138119348, - 38.1624248681029 + 15.5368878212584, + 38.1851262063906 ] } }, { "type": "Feature", "properties": { - "stopId": 914, - "stopCode": 914, - "stopName": "Minissale Alto; coop. Opter", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Scoglio Letteria", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5320009018416, - 38.1622999640065 + 15.4924870430671, + 38.0992973462401 ] } }, { "type": "Feature", "properties": { - "stopId": 915, - "stopCode": 915, - "stopName": "Minissale Alto; campo di Calcetto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Sgroi Maria", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5296028371715, - 38.163548471289 + 15.5186192512416, + 38.1403517236715 ] } }, { "type": "Feature", "properties": { - "stopId": 916, - "stopCode": 916, - "stopName": "Minissale Alto; coop. Valle Verde", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Tornaseli Francesca Maria", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5288377051898, - 38.165131599527 + 15.5177980116548, + 38.2926575129234 ] } }, { "type": "Feature", "properties": { - "stopId": 917, - "stopCode": 917, - "stopName": "Minissale Alto; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Trovato Dr Onofrio", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5275008975961, - 38.1662999641979 + 15.6419106397948, + 38.2674532589975 ] } }, { "type": "Feature", "properties": { - "stopId": 1916, - "stopCode": 1916, - "stopName": "Minissale Alto coop. Valle Verde", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Via Giuseppe Garibaldi", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5287177211887, - 38.1651997141163 + 15.5557557695542, + 38.2043366934827 ] } }, { "type": "Feature", "properties": { - "stopId": 1915, - "stopCode": 1915, - "stopName": "Minissale Alto campo di Calcetto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Via Monsignor L. d'Amgo", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5295001019183, - 38.1635157880698 + 15.5533861455161, + 38.200274038695 ] } }, { "type": "Feature", "properties": { - "stopId": 1914, - "stopCode": 1914, - "stopName": "Minissale Alto coop. Opter", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Via Seminario Estivo", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5320510079118, - 38.1623014819623 + 15.547201544021, + 38.2108893367489 ] } }, { "type": "Feature", "properties": { - "stopId": 1913, - "stopCode": 1913, - "stopName": "Minissale Alto; Chiesa Evangelica", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Via Tommaso Cannizzaro", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5332660480486, - 38.1623790512941 + 15.5536470940077, + 38.1868250127115 ] } }, { "type": "Feature", "properties": { - "stopId": 1912, - "stopCode": 1912, - "stopName": "Minissale Alto; via N. Piccinino", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Via Tommaso Cannizzaro", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5345009042428, - 38.1612999638996 + 15.547041, + 38.189946 ] } }, { "type": "Feature", "properties": { - "stopId": 1911, - "stopCode": 1911, - "stopName": "Minisale Alto; via Carlo Malatesta", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Via Ventiquattro Maggio", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5351839745299, - 38.1604309585106 + 15.550057723468, + 38.1923692582282 ] } }, { "type": "Feature", "properties": { - "stopId": 487, - "stopCode": 487, - "stopName": "R. Livatino; via 1A", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Viale Europa", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5296008992365, - 38.1525999641102 + 15.5398009446801, + 38.183506409968 ] } }, { "type": "Feature", "properties": { - "stopId": 488, - "stopCode": 488, - "stopName": "R. Livatino; via 17R", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Viale Giostra", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5288008984821, - 38.1532999641443 + 15.5511174753168, + 38.2089843414472 ] } }, { "type": "Feature", "properties": { - "stopId": 489, - "stopCode": 489, - "stopName": "R. Livatino; via Gelsomini", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Viale San Martino", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5284969763271, - 38.1547579683267 + 15.5448542162944, + 38.1756378383707 ] } }, { "type": "Feature", "properties": { - "stopId": 490, - "stopCode": 490, - "stopName": "CEP; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Viale San Martino", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5267008965119, - 38.1553999642334 + 15.5486260021196, + 38.17961707177 ] } }, { "type": "Feature", "properties": { - "stopId": 1489, - "stopCode": 1489, - "stopName": "R. Livatino - via Gelsomini", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Farmacia Viale San Martino", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5285008982319, - 38.1546999641569 + 15.5533407999647, + 38.1848812664182 ] } }, { "type": "Feature", "properties": { - "stopId": 1488, - "stopCode": 1488, - "stopName": "R. Livatino - via 17R", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Faro Superiore", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5287008983882, - 38.1533999641485 + 15.5807631277719, + 38.2624963573393 ] } }, { "type": "Feature", "properties": { - "stopId": 1487, - "stopCode": 1487, - "stopName": "R. Livatino - via 1A", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Faro Superiore", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5295008991368, - 38.1524999641145 + 15.5804048084074, + 38.2641019655387 ] } }, { "type": "Feature", "properties": { - "stopId": 494, - "stopCode": 494, - "stopName": "Via Calispera; 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Fata Morgana", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5333009028199, - 38.1523999639522 + 15.5547253023976, + 38.2035161607337 ] } }, { "type": "Feature", "properties": { - "stopId": 495, - "stopCode": 495, - "stopName": "Via Calispera; Scuola S. D'Acquisto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Fata S.r.l.", + "category": "Automobile Dealership", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5322903908071, - 38.1511817732865 + 15.5291514966458, + 38.1532883448282 ] } }, { "type": "Feature", "properties": { - "stopId": 496, - "stopCode": 496, - "stopName": "Via Calispera; 41", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Federazione Italiana Palla a Volo", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5316009011034, - 38.1500999640252 + 15.5582812245136, + 38.2049552958596 ] } }, { "type": "Feature", "properties": { - "stopId": 497, - "stopCode": 497, - "stopName": "Via Beatrice; 55", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Federazione Italiana Tennistavolo", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5330009024336, - 38.1490999639654 + 15.5446238547436, + 38.1766294094051 ] } }, { "type": "Feature", "properties": { - "stopId": 498, - "stopCode": 498, - "stopName": "Via Beatrice; 22", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Fera Dott. Rosalba Studio Medico", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5334009028567, - 38.1502999639482 + 15.5817674676632, + 38.2630678644686 ] } }, { "type": "Feature", "properties": { - "stopId": 499, - "stopCode": 499, - "stopName": "Vill. UNRA; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Fiera Campionaria di Messina", + "category": "ExhibitionorConferenceCenter", + "type": "Exhibitions" }, "geometry": { "type": "Point", "coordinates": [ - 15.5342918318025, - 38.151310512874 + 15.5573766534433, + 38.2021470531168 ] } }, { "type": "Feature", "properties": { - "stopId": 1498, - "stopCode": 1498, - "stopName": "Via Beatrice - 22", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Fiera di Messina", + "category": "ExhibitionorConferenceCenter", + "type": "Exhibitions" }, "geometry": { "type": "Point", "coordinates": [ - 15.5334947939289, - 38.1501873110604 + 15.55800940559, + 38.2033475904952 ] } }, { "type": "Feature", "properties": { - "stopId": 1497, - "stopCode": 1497, - "stopName": "Via Beatrice - 55", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Fili Cambria Snc", + "category": "Vehicle RepairFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5330009024308, - 38.1489999639655 + 15.5206875344502, + 38.1346084396071 ] } }, { "type": "Feature", "properties": { - "stopId": 1496, - "stopCode": 1496, - "stopName": "Via Calispera - 41", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Fili Cambria Snc", + "category": "Vehicle RepairFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5316009011005, - 38.1499999640252 + 15.521985447557, + 38.1396297136045 ] } }, { "type": "Feature", "properties": { - "stopId": 1495, - "stopCode": 1495, - "stopName": "Via Calispera; Scuola S. D'Acquisto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Findomestic Banca", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5323762352423, - 38.1509510622528 + 15.5546076830822, + 38.1913609046302 ] } }, { "type": "Feature", "properties": { - "stopId": 1494, - "stopCode": 1494, - "stopName": "Via Calispera - 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Fineco", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5333009028171, - 38.1522999639522 + 15.5542979398737, + 38.1850836724604 ] } }, { "type": "Feature", "properties": { - "stopId": 1014, - "stopCode": 1014, - "stopName": "Via del Carmine", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Fiumara di Larderia", + "category": "Waterway Element", + "type": "River" }, "geometry": { "type": "Point", "coordinates": [ - 15.5393009087705, - 38.155999963694 + 15.5208047098784, + 38.1341254093346 ] } }, { "type": "Feature", "properties": { - "stopId": 126, - "stopCode": 126, - "stopName": "Villa Dante; S. Cosimo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Fiumara di San Filippo", + "category": "Waterway Element", + "type": "River" }, "geometry": { "type": "Point", "coordinates": [ - 15.5454116577785, - 38.1728495187358 + 15.5193125239347, + 38.157535869841 ] } }, { "type": "Feature", "properties": { - "stopId": 127, - "stopCode": 127, - "stopName": "Villa Dante; inc. via Roosevelt", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Fontana di Orione", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.5469009167543, - 38.1741999633627 + 15.5522702114391, + 38.1921996708121 ] } }, { "type": "Feature", "properties": { - "stopId": 1448, - "stopCode": 1448, - "stopName": "Zafferia - via Comunale Km 1;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "forerà Antonino", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5086840291777, - 38.1526653549927 + 15.5448394517486, + 38.1985086655857 ] } }, { "type": "Feature", "properties": { - "stopId": 1447, - "stopCode": 1447, - "stopName": "Tor. Zafferia - via Comunale Km 1;400", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Formula 3 S.p.A.", + "category": "Motorcycle Dealership", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5116961019683, - 38.1500210548672 + 15.5406141773319, + 38.1643839979718 ] } }, { "type": "Feature", "properties": { - "stopId": 1446, - "stopCode": 1446, - "stopName": "Tor. Zafferia - via Comunale Km 0;980", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Formula 3 SpA", + "category": "Automobile Dealership", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5150514511744, - 38.1479421495424 + 15.5406964551062, + 38.1644763496348 ] } }, { "type": "Feature", "properties": { - "stopId": 1445, - "stopCode": 1445, - "stopName": "Tor. Zafferia - via Comunale Km 0;840", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Formula Tre", + "category": "Vehicle Rep air Facility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5169008868688, - 38.147599964649 + 15.5409461446473, + 38.1639726961219 ] } }, { "type": "Feature", "properties": { - "stopId": 1444, - "stopCode": 1444, - "stopName": "Tor. Zafferia - via Comunale Km 0;650", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Forniture Edili G. & G. (S.n.c.)", + "category": "Home Improvement i Hard?", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.518900888776, - 38.1472999645649 + 15.5087954024041, + 38.1114241636891 ] } }, { "type": "Feature", "properties": { - "stopId": 1442, - "stopCode": 1442, - "stopName": "Tor. Zafferia - via Comunale Km 0;150", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Foscolo", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5237008933195, - 38.1448999643622 + 15.5470359137806, + 38.1363833403352 ] } }, { "type": "Feature", "properties": { - "stopId": 101, - "stopCode": 101, - "stopName": "Via I Settembre; Palazzo INA", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Foti Macelleria", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5577009278725, - 38.188799962889 + 15.5447692954997, + 38.1809595555036 ] } }, { "type": "Feature", "properties": { - "stopId": 102, - "stopCode": 102, - "stopName": "Via I Settembre; Arcivescovado", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Fox", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5561009263317, - 38.190499962959 + 15.5466613664805, + 38.1781963846292 ] } }, { "type": "Feature", "properties": { - "stopId": 104, - "stopCode": 104, - "stopName": "Via C. Battisti; Largo Seggiola", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Furane Pietro", + "category": "Vehicle Rep air Facility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5519009220408, - 38.1861999631434 + 15.5523582817609, + 38.1796695125721 ] } }, { "type": "Feature", "properties": { - "stopId": 105, - "stopCode": 105, - "stopName": "Via C. Battisti; S. Antonio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "G&G Pneumatici", + "category": "Vehicle Rep air Facility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5505009206065, - 38.1844999632047 + 15.5557817540001, + 38.2019426607005 ] } }, { "type": "Feature", "properties": { - "stopId": 106, - "stopCode": 106, - "stopName": "Via C. Battisti; quartiere Avignone", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "G. S. D Athlon", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5492009192727, - 38.1827999632616 + 15.5386649532804, + 38.1859562259664 ] } }, { "type": "Feature", "properties": { - "stopId": 107, - "stopCode": 107, - "stopName": "Mercato Zaera", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Galati", + "category": "Railway Station", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5481227412601, - 38.181436017612 + 15.5041351601385, + 38.1041969862471 ] } }, { "type": "Feature", "properties": { - "stopId": 1108, - "stopCode": 1108, - "stopName": "Via Catania - Colle Reale", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Galati Inferiore", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5471009170999, - 38.1792999633533 + 15.5025407794877, + 38.1087567348485 ] } }, { "type": "Feature", "properties": { - "stopId": 109, - "stopCode": 109, - "stopName": "Via Catania; Scuola Pirandello", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Galati Inferiore", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5459412504461, - 38.1770331750054 + 15.5019970162471, + 38.1096670384903 ] } }, { "type": "Feature", "properties": { - "stopId": 152, - "stopCode": 152, - "stopName": "Via Antonio Arrosto; Giadinetto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Galati Marina", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5391009088671, - 38.1660999637012 + 15.5070468643687, + 38.106338508244 ] } }, { "type": "Feature", "properties": { - "stopId": 153, - "stopCode": 153, - "stopName": "V.le Gazzi; Entrata Ovest Policlinico", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Galati Marina", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5371009069257, - 38.1664999637872 + 15.5077773937268, + 38.1065291611299 ] } }, { "type": "Feature", "properties": { - "stopId": 192, - "stopCode": 192, - "stopName": "Viale Gazzi; inc. via del Ciclo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Galati Superiore", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5343675716011, - 38.1679570095072 + 15.4945884843196, + 38.1118197691726 ] } }, { "type": "Feature", "properties": { - "stopId": 193, - "stopCode": 193, - "stopName": "Fondo Fucile; Largo Diogene n.; 5", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Galati Superiore", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5331009031601, - 38.1709999639583 + 15.4952373365767, + 38.1119576411095 ] } }, { "type": "Feature", "properties": { - "stopId": 194, - "stopCode": 194, - "stopName": "Fondo Fucile; inc. via 38 B", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ganzim", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5333009033946, - 38.1723999639495 + 15.6108411995226, + 38.2582993882195 ] } }, { "type": "Feature", "properties": { - "stopId": 925, - "stopCode": 925, - "stopName": "Via Aristotele", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ganzini", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5346009046421, - 38.1717999638939 + 15.6157982902058, + 38.2605942249883 ] } }, { "type": "Feature", "properties": { - "stopId": 927, - "stopCode": 927, - "stopName": "Via Anassagora", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Garage Gentiluomo", + "category": "ParkingGarage", + "type": "Enclosed_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5348009048686, - 38.1728999638852 + 15.5523672658143, + 38.1792716955022 ] } }, { "type": "Feature", "properties": { - "stopId": 928, - "stopCode": 928, - "stopName": "Via 38F", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Gelateria Aiello", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5326009027373, - 38.1731999639793 + 15.549929434875, + 38.1980036643647 ] } }, { "type": "Feature", "properties": { - "stopId": 929, - "stopCode": 929, - "stopName": "Via 38F", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Gelateria Spadaro", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5309009010838, - 38.173099964052 + 15.5729677898301, + 38.2368898171213 ] } }, { "type": "Feature", "properties": { - "stopId": 195, - "stopCode": 195, - "stopName": "Fondo Fucile; bivio Sc. A. Luciani", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Gelateria Spadaro", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5316009017373, - 38.1721999640222 + 15.5729737876121, + 38.2368898455267 ] } }, { "type": "Feature", "properties": { - "stopId": 1196, - "stopCode": 1196, - "stopName": "Fondo Fucile - via 38 A", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Generazioni ltaliane", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5316009017143, - 38.1713999640224 + 15.5522355390654, + 38.1868324061655 ] } }, { "type": "Feature", "properties": { - "stopId": 1197, - "stopCode": 1197, - "stopName": "Via Socrate", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Gesso", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5304333424734, - 38.1710856114588 + 15.4664907061364, + 38.2344300231085 ] } }, { "type": "Feature", "properties": { - "stopId": 1198, - "stopCode": 1198, - "stopName": "Via Socrate - bivio Sc. Minutoli", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ghota Caffè Restaurant", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5286116413698, - 38.1722020755433 + 15.5506220950415, + 38.1913612550866 ] } }, { "type": "Feature", "properties": { - "stopId": 164, - "stopCode": 164, - "stopName": "Torrente Bordonaro; Case Gialle", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Giampilieri", + "category": "Railway Station", + "type": "Rail_Station" }, "geometry": { "type": "Point", "coordinates": [ - 15.5235173974916, - 38.1734610273284 + 15.4777711422064, + 38.0627968003318 ] } }, { "type": "Feature", "properties": { - "stopId": 166, - "stopCode": 166, - "stopName": "Torrente Bordonaro; ponte Autostrada", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Giampilieri Marina", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5193008899492, - 38.1751999645443 + 15.4821762270328, + 38.0657408556273 ] } }, { "type": "Feature", "properties": { - "stopId": 168, - "stopCode": 168, - "stopName": "Torrente Bordonaro; inc. via Comunale", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Giampilieri Marina", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5173467397759, - 38.1752444506558 + 15.4852240650264, + 38.0683345846196 ] } }, { "type": "Feature", "properties": { - "stopId": 170, - "stopCode": 170, - "stopName": "Torrente Bordonaro; p.za Semiramide", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Giampilieri Superiore", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5148008856245, - 38.1746999647338 + 15.4689034204897, + 38.0688959791476 ] } }, { "type": "Feature", "properties": { - "stopId": 172, - "stopCode": 172, - "stopName": "Torrente Bordonaro; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Giampilieri Superiore ", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5138433970445, - 38.1753983299261 + 15.4672378908222, + 38.0691093588337 ] } }, { "type": "Feature", "properties": { - "stopId": 171, - "stopCode": 171, - "stopName": "Torrente Bordonaro - p.za Semiramide", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Giap", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5150652725824, - 38.1746219505395 + 15.5562155533055, + 38.2087332935312 ] } }, { "type": "Feature", "properties": { - "stopId": 1169, - "stopCode": 1169, - "stopName": "Torrente Bordonaro - inc. via Comunale", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Giglio", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5176008883158, - 38.175099964616 + 15.557421282565, + 38.1852902126825 ] } }, { "type": "Feature", "properties": { - "stopId": 1167, - "stopCode": 1167, - "stopName": "Torrente Bordonaro - ponte Autostrada", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Gioielleria Gullo", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5195447046068, - 38.1749101537436 + 15.5503165299062, + 38.1825299491582 ] } }, { "type": "Feature", "properties": { - "stopId": 1165, - "stopCode": 1165, - "stopName": "Torrente Bordonaro - Case Gialle", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Giorgia ", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5237884516529, - 38.1733245845386 + 15.5470386627631, + 38.1737427271356 ] } }, { "type": "Feature", "properties": { - "stopId": 1192, - "stopCode": 1192, - "stopName": "Viale Gazzi inc. via del Ciclo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Giubrone Dr. Francesco ", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5339517256323, - 38.1679752706561 + 15.5463592525194, + 38.212696753957 ] } }, { "type": "Feature", "properties": { - "stopId": 1154, - "stopCode": 1154, - "stopName": "V.le Gazzi - Entrata Ovest Policlinico", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Giuffrida ", + "category": "Vehicle RepairFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5366419115781, - 38.166505070549 + 15.5390521128975, + 38.1647335691159 ] } }, { "type": "Feature", "properties": { - "stopId": 267, - "stopCode": 267, - "stopName": "Via Gerobino Pilli; 13", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Grand Hotel Uberty", + "category": "HotelorMotel", + "type": "Hotel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5411290882671, - 38.1841242117355 + 15.5576402152756, + 38.1862209075854 ] } }, { "type": "Feature", "properties": { - "stopId": 268, - "stopCode": 268, - "stopName": "Via Gerobino Pilli; 45", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Grand Hotel Udo", + "category": "HotelorMotel", + "type": "Hotel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5399592619877, - 38.1847442401919 + 15.5691019548261, + 38.2339937285496 ] } }, { "type": "Feature", "properties": { - "stopId": 269, - "stopCode": 269, - "stopName": "Via Gerobino Pilli; 73", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Grs Petroli", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5385009088443, - 38.1855999637245 + 15.5358772820414, + 38.2135893689274 ] } }, { "type": "Feature", "properties": { - "stopId": 270, - "stopCode": 270, - "stopName": "Via Gerobino Pilli; via G. Empetocle", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Gs", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5373009076893, - 38.1861999637761 + 15.5545919553127, + 38.1852010070916 ] } }, { "type": "Feature", "properties": { - "stopId": 271, - "stopCode": 271, - "stopName": "Via Gerobino Pilli; via P. La Badessa", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Gs", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5356009060338, - 38.1862999638491 + 15.5448169330339, + 38.192589657657 ] } }, { "type": "Feature", "properties": { - "stopId": 272, - "stopCode": 272, - "stopName": "Via Tommaso Fazello; 11", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Gulli Katia Alimentari ", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5345671179169, - 38.1855075602602 + 15.5498252601493, + 38.2036201905497 ] } }, { "type": "Feature", "properties": { - "stopId": 273, - "stopCode": 273, - "stopName": "Salita Monte Santo; comp. Parco Serro", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "GulliCarmelo", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5344009048071, - 38.1842999639008 + 15.5549285529353, + 38.2091931068496 ] } }, { "type": "Feature", "properties": { - "stopId": 274, - "stopCode": 274, - "stopName": "Salita Monte Santo; comp. Alma Mater", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Hospital Bar", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5353432519111, - 38.1832693960344 + 15.542303638202, + 38.1822295711608 ] } }, { "type": "Feature", "properties": { - "stopId": 275, - "stopCode": 275, - "stopName": "Salita Monte Santo; Cont. Petrazza n. 6", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Idea Sposa", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.536500906825, - 38.1832999638108 + 15.554231414976, + 38.1875534890509 ] } }, { "type": "Feature", "properties": { - "stopId": 276, - "stopCode": 276, - "stopName": "Salita Monte Santo; Villa Contino", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Idustrial Garage-Car Valet ", + "category": "ParkingGarage", + "type": "Enclosed_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.536100906383, - 38.1814999638282 + 15.5554170177076, + 38.1822239184137 ] } }, { "type": "Feature", "properties": { - "stopId": 277, - "stopCode": 277, - "stopName": "Comunale Petrazza; Lotto F pal. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Il Cappero", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5388399902243, - 38.1810568927726 + 15.550636104855, + 38.1837700061857 ] } }, { "type": "Feature", "properties": { - "stopId": 278, - "stopCode": 278, - "stopName": "Messina Due; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Il Fico d'lndia", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5403009104835, - 38.1813999636474 + 15.5544016583592, + 38.2001578328647 ] } }, { "type": "Feature", "properties": { - "stopId": 1277, - "stopCode": 1277, - "stopName": "Comunale Petrazza - Lotto F pal. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Il Gambero Rosso da Enzo", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5389821474191, - 38.1809168335458 + 15.6094326775775, + 38.2608343068978 ] } }, { "type": "Feature", "properties": { - "stopId": 1276, - "stopCode": 1276, - "stopName": "Salita Monte Santo - Villa Contino", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Il Girasole", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5360009062825, - 38.1813999638326 + 15.5506613565838, + 38.1824036074234 ] } }, { "type": "Feature", "properties": { - "stopId": 1274, - "stopCode": 1274, - "stopName": "Salita Monte Santo - comp. Alma Mater", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Il Girotondo", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5351507155219, - 38.1832008757172 + 15.5485066108429, + 38.1895290055309 ] } }, { "type": "Feature", "properties": { - "stopId": 1273, - "stopCode": 1273, - "stopName": "Salita Monte Santo - comp. Parco Serro", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Il Griso", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5344009048042, - 38.1841999639008 + 15.5530949303287, + 38.1804806714205 ] } }, { "type": "Feature", "properties": { - "stopId": 1272, - "stopCode": 1272, - "stopName": "Via Tommaso Fazello - 11", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Il Nido", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5346009050335, - 38.185399963892 + 15.548997422329, + 38.1850039029313 ] } }, { "type": "Feature", "properties": { - "stopId": 1271, - "stopCode": 1271, - "stopName": "Via Gerobino Pilli - via P. La Badessa", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Il Papiro", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5357076253617, - 38.1862242112676 + 15.5494543868973, + 38.1820570832556 ] } }, { "type": "Feature", "properties": { - "stopId": 1270, - "stopCode": 1270, - "stopName": "Via Gerobino Pilli - via G. Empetocle", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Il Peloritano", + "category": "Campground", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5373009076865, - 38.1860999637761 + 15.4641087593671, + 38.2594997910834 ] } }, { "type": "Feature", "properties": { - "stopId": 1269, - "stopCode": 1269, - "stopName": "Via Gerobino Pilli - 73", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Il Picchio", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5384009087465, - 38.1855999637288 + 15.4961099918783, + 38.1112929560111 ] } }, { "type": "Feature", "properties": { - "stopId": 1267, - "stopCode": 1267, - "stopName": "Via Gerobino Pilli - 13", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Il Ponte", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5410009112472, - 38.1840999636169 + 15.5981633009429, + 38.2647181353887 ] } }, { "type": "Feature", "properties": { - "stopId": 2517, - "stopCode": 2517, - "stopName": "Viale Giostra (interno); Mercato S. Orsola", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Il Profumo del Pane ", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5575565978152, - 38.2071153583031 + 15.5524659226099, + 38.2056688250735 ] } }, { "type": "Feature", "properties": { - "stopId": 2518, - "stopCode": 2518, - "stopName": "Viale Giostra (interno); via G. Alibrandi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Il Viale del Pane", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5550397668388, - 38.2085308507363 + 15.5483467774774, + 38.1793938452287 ] } }, { "type": "Feature", "properties": { - "stopId": 613, - "stopCode": 613, - "stopName": "Salita Ogliastri; 8", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Interdonato Salvatore", + "category": "Vehicle Rep air Facility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5542009250009, - 38.2093999630397 + 15.5582275867924, + 38.207836027913 ] } }, { "type": "Feature", "properties": { - "stopId": 614, - "stopCode": 614, - "stopName": "Salita Ogliastri; 51", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Intesa Sanpaolo", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5556009264412, - 38.2110999629782 + 15.5424519105198, + 38.1743270665742 ] } }, { "type": "Feature", "properties": { - "stopId": 615, - "stopCode": 615, - "stopName": "Salita Ogliastri; bivio Forte Ogliastri", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Intesa Sanpaolo", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5542009250508, - 38.2110999630395 + 15.5528380284524, + 38.1826107166522 ] } }, { "type": "Feature", "properties": { - "stopId": 631, - "stopCode": 631, - "stopName": "Salita Tremonti; 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Intesa Sanpaolo", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.553800924742, - 38.2140999630567 + 15.5558427749888, + 38.1878289305911 ] } }, { "type": "Feature", "properties": { - "stopId": 630, - "stopCode": 630, - "stopName": "Salita Tremonti; 18", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Intesa Sanpaolo", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5517009226866, - 38.2149999631483 + 15.5535218299594, + 38.1960511661498 ] } }, { "type": "Feature", "properties": { - "stopId": 629, - "stopCode": 629, - "stopName": "Salita Tremonti; coop. Città Giardino", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Intesa Sanpaolo", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5496009206353, - 38.2158999632397 + 15.5481016810613, + 38.1988558095124 ] } }, { "type": "Feature", "properties": { - "stopId": 628, - "stopCode": 628, - "stopName": "Salita Tremonti; 39", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Intesa Sanpaolo", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5481009191828, - 38.2168999633049 + 15.5595536476712, + 38.2168080700848 ] } }, { "type": "Feature", "properties": { - "stopId": 627, - "stopCode": 627, - "stopName": "Salita Tremonti; 40", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "intimissimi", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5458009169702, - 38.2187999634046 + 15.5535081222695, + 38.1858956907684 ] } }, { "type": "Feature", "properties": { - "stopId": 625, - "stopCode": 625, - "stopName": "Via S. Jachiddu; 61", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Intimo d'Autore", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5414009126214, - 38.2179999635951 + 15.5553944990048, + 38.2195496299404 ] } }, { "type": "Feature", "properties": { - "stopId": 623, - "stopCode": 623, - "stopName": "Via S. Jachiddu; 90", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Intimo di Salpietro Cristina", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5382009094694, - 38.2173999637332 + 15.5509356014643, + 38.2229365556053 ] } }, { "type": "Feature", "properties": { - "stopId": 622, - "stopCode": 622, - "stopName": "Via S. Jachiddu; res. S. Jachiddu", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Intimo Uomo", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5363009076183, - 38.2175999638149 + 15.5506550484271, + 38.1833772333667 ] } }, { "type": "Feature", "properties": { - "stopId": 621, - "stopCode": 621, - "stopName": "Via S. Jachiddu; 33", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ip", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.535800907113, - 38.2169999638364 + 15.54104190764, + 38.1715964401383 ] } }, { "type": "Feature", "properties": { - "stopId": 620, - "stopCode": 620, - "stopName": "Via S. Jachiddu; 19", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ip", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5377009089199, - 38.2152999637549 + 15.5618124577335, + 38.184926883742 ] } }, { "type": "Feature", "properties": { - "stopId": 605, - "stopCode": 605, - "stopName": "Viale Giostra; via S. Jachiddu", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ip", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5378669481294, - 38.2146760197037 + 15.5580925677013, + 38.1877504845562 ] } }, { "type": "Feature", "properties": { - "stopId": 606, - "stopCode": 606, - "stopName": "Viale Giostra; 84", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ip", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5349257115964, - 38.2165187851143 + 15.5537932887211, + 38.2006348169031 ] } }, { "type": "Feature", "properties": { - "stopId": 607, - "stopCode": 607, - "stopName": "Viale Giostra; casette Ritiro", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ip", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5321049985013, - 38.2194761309172 + 15.5573363590629, + 38.2138927189028 ] } }, { "type": "Feature", "properties": { - "stopId": 608, - "stopCode": 608, - "stopName": "Viale Giostra; svincolo Autostrada", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ip", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5300610465089, - 38.2211345654194 + 15.565621565037, + 38.2259712530092 ] } }, { "type": "Feature", "properties": { - "stopId": 609, - "stopCode": 609, - "stopName": "Viale Giostra; chiesa di S. Michele", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ip", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5279503945757, - 38.2218971200559 + 15.5924975865516, + 38.2537983913327 ] } }, { "type": "Feature", "properties": { - "stopId": 2553, - "stopCode": 2553, - "stopName": "Viale Giostra (interno) - pal.Telegrafo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Irish Pub", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.559109092148, - 38.2066378305493 + 15.6029740988247, + 38.2569623832033 ] } }, { "type": "Feature", "properties": { - "stopId": 1608, - "stopCode": 1608, - "stopName": "Viale Giostra - svincolo Autostrada", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Istituto Comprensivo Enzo Drago", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5300218653843, - 38.2210035824227 + 15.5438292709001, + 38.1766116984375 ] } }, { "type": "Feature", "properties": { - "stopId": 1607, - "stopCode": 1607, - "stopName": "Viale Giostra; casette Ritiro", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Istituto Sacro Cuore", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5319239638094, - 38.2194139466744 + 15.5460592714527, + 38.1907551205253 ] } }, { "type": "Feature", "properties": { - "stopId": 1606, - "stopCode": 1606, - "stopName": "Viale Giostra; 84", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Istituto San Luigi", + "category": "UniversityorCollege", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5348103902333, - 38.2164419331261 + 15.550832686754, + 38.2008548835045 ] } }, { "type": "Feature", "properties": { - "stopId": 1605, - "stopCode": 1605, - "stopName": "Viale Giostra - via S. Jachiddu", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Istituto Scuola Paritaria Can. A. M. di Francia", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5377009088997, - 38.2145999637551 + 15.5472414570277, + 38.1858813777073 ] } }, { "type": "Feature", "properties": { - "stopId": 1604, - "stopCode": 1604, - "stopName": "Viale Giostra - chiesa Maria di Gesù", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Istituto Statale d'Arte", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.539546915699, - 38.2137740873426 + 15.5563204286475, + 38.2014283639848 ] } }, { "type": "Feature", "properties": { - "stopId": 1603, - "stopCode": 1603, - "stopName": "Viale Giostra - salita Curcuruto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Istituto Statale d’Arte Juvara ", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5422009132616, - 38.2129999635612 + 15.5539890464564, + 38.2031858319055 ] } }, { "type": "Feature", "properties": { - "stopId": 1602, - "stopCode": 1602, - "stopName": "Viale Giostra - 73", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Istituto Tecnico Commerciale Jaci", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5450009159905, - 38.2121999634402 + 15.5524759180251, + 38.1895665636474 ] } }, { "type": "Feature", "properties": { - "stopId": 1601, - "stopCode": 1601, - "stopName": "V.le Giostra - via Adamello", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Istituto Tecnico Industatale Verona Trento", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5465082409473, - 38.2115080622543 + 15.5536052461293, + 38.1830781404851 ] } }, { "type": "Feature", "properties": { - "stopId": 632, - "stopCode": 632, - "stopName": "Viale Giostra; villa De Gregorio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Istituto Tecnico Nautico Caio Duilio", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5496009204745, - 38.2103999632405 + 15.5545438610646, + 38.1821528584907 ] } }, { "type": "Feature", "properties": { - "stopId": 633, - "stopCode": 633, - "stopName": "Viale Giostra; via S. Eduardo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Italia ", + "category": "ParkingGarage", + "type": "Enclosed_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5508009216524, - 38.2100999631882 + 15.5492432468278, + 38.1834176142988 ] } }, { "type": "Feature", "properties": { - "stopId": 634, - "stopCode": 634, - "stopName": "Viale Giostra; via Principe Tommaso", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Jamaica", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5523646393618, - 38.2096468589618 + 15.5500843597614, + 38.1857597213154 ] } }, { "type": "Feature", "properties": { - "stopId": 1518, - "stopCode": 1518, - "stopName": "Viale Giostra - via G. Alibrandi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Jazz", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5547520766551, - 38.2084232512412 + 15.5529673365471, + 38.1836289620563 ] } }, { "type": "Feature", "properties": { - "stopId": 1517, - "stopCode": 1517, - "stopName": "Viale Giostra - Mercato S. Orsola", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Jeanseria Naif di Latella Silvana", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5575009282072, - 38.2068999628954 + 15.5555277640522, + 38.1827852387287 ] } }, { "type": "Feature", "properties": { - "stopId": 580, - "stopCode": 580, - "stopName": "Piazza Castronovo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Jhonnie", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5584301461377, - 38.2075036028406 + 15.551573632775, + 38.1824568559628 ] } }, { "type": "Feature", "properties": { - "stopId": 288, - "stopCode": 288, - "stopName": "Viale Italia; 19", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Judo Club Yama Arashi", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5422599347972, - 38.1848662340058 + 15.5516640123073, + 38.177606994309 ] } }, { "type": "Feature", "properties": { - "stopId": 289, - "stopCode": 289, - "stopName": "Viale Italia; 53", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Just Firm di Stumiolo Biagio", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5441331145724, - 38.185654497301 + 15.5519398440994, + 38.185607455849 ] } }, { "type": "Feature", "properties": { - "stopId": 290, - "stopCode": 290, - "stopName": "Viale Italia; via Iceta", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Juvara", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5463223879066, - 38.1861882299288 + 15.5398745708281, + 38.1699645596225 ] } }, { "type": "Feature", "properties": { - "stopId": 291, - "stopCode": 291, - "stopName": "Viale Italia; 129", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Katia di Ucata Attilio", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.54848273977, - 38.1875020742528 + 15.5547784300827, + 38.1844631398432 ] } }, { "type": "Feature", "properties": { - "stopId": 292, - "stopCode": 292, - "stopName": "Viale Italia 44b", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "L'Agave", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5459848367544, - 38.1895906159732 + 15.4466292216145, + 38.2438395945549 ] } }, { "type": "Feature", "properties": { - "stopId": 293, - "stopCode": 293, - "stopName": "Viale Italia; 113 COT", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "L'Essenziale", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5455199161674, - 38.1906588581922 + 15.5392854202743, + 38.1837339176824 ] } }, { "type": "Feature", "properties": { - "stopId": 295, - "stopCode": 295, - "stopName": "Via P. Castelli; Orto Botanico", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "L'Euro Porchetta", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5456009159932, - 38.1919999634168 + 15.5390359821961, + 38.1848693472257 ] } }, { "type": "Feature", "properties": { - "stopId": 296, - "stopCode": 296, - "stopName": "Via P. Castelli; via Turiano", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "L'Odissea Gastronomica", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5438009142494, - 38.1928999634947 + 15.5455422935775, + 38.2090062367862 ] } }, { "type": "Feature", "properties": { - "stopId": 297, - "stopCode": 297, - "stopName": "Via P. Castelli; 134", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "L. Puglisi", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5422550268874, - 38.1937288693917 + 15.5535541814856, + 38.1860188629991 ] } }, { "type": "Feature", "properties": { - "stopId": 298, - "stopCode": 298, - "stopName": "Via P. Castelli; Città del Ragazzo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Buona Forchetta", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5408108956353, - 38.1947568819836 + 15.5532576118127, + 38.1810482318997 ] } }, { "type": "Feature", "properties": { - "stopId": 299, - "stopCode": 299, - "stopName": "Via P. Castelli; S. Maria delle Grazie", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Cambusa del Vicolo", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5393264046431, - 38.1959247348718 + 15.6070052561772, + 38.257685023681 ] } }, { "type": "Feature", "properties": { - "stopId": 500, - "stopCode": 500, - "stopName": "Via P. Castelli; p.zza G. Versaci", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Campagnola", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5372009078831, - 38.196299963779 + 15.5523169577009, + 38.1944940784717 ] } }, { "type": "Feature", "properties": { - "stopId": 501, - "stopCode": 501, - "stopName": "Sp. 42; via Pietra Santa", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Casa della Pizza", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5383009088539, - 38.1926999637321 + 15.6054146281401, + 38.2582393766803 ] } }, { "type": "Feature", "properties": { - "stopId": 502, - "stopCode": 502, - "stopName": "Sp. 42; fer. 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Casa della Pizza ", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5389009094088, - 38.1915999637065 + 15.5545538104462, + 38.1922783279058 ] } }, { "type": "Feature", "properties": { - "stopId": 503, - "stopCode": 503, - "stopName": "Sp. 42; p.zza Gonzaga", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Caveja", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5415009118183, - 38.186899963595 + 15.5551061397215, + 38.1847525710146 ] } }, { "type": "Feature", "properties": { - "stopId": 504, - "stopCode": 504, - "stopName": "Via N. Casazza; 69", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Cicala", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5434009136852, - 38.1869999635128 + 15.5550470565483, + 38.2051300963631 ] } }, { "type": "Feature", "properties": { - "stopId": 505, - "stopCode": 505, - "stopName": "Via N. Casazza; via Gelone", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Dolce Vita", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5444009146531, - 38.1864999634696 + 15.5526004801248, + 38.1913495168318 ] } }, { "type": "Feature", "properties": { - "stopId": 506, - "stopCode": 506, - "stopName": "Via Gelone; 16", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Farmacia delle Erbe", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5429009132263, - 38.1880999635343 + 15.5386775128248, + 38.164564877546 ] } }, { "type": "Feature", "properties": { - "stopId": 507, - "stopCode": 507, - "stopName": "Via Gelone; p.zza Chiesa del Rosario", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Girandola ", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5418009121646, - 38.1886999635818 + 15.5504470201035, + 38.1824585850417 ] } }, { "type": "Feature", "properties": { - "stopId": 508, - "stopCode": 508, - "stopName": "Via Montepiselli; 33", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Locanda del Barbablu", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.540900911326, - 38.1901999636204 + 15.5556461063885, + 38.1891255527397 ] } }, { "type": "Feature", "properties": { - "stopId": 1501, - "stopCode": 1501, - "stopName": "Sp. 42 - via Pietra Santa", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Messinese ", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5382009087562, - 38.1926999637365 + 15.5566056096012, + 38.2057811613885 ] } }, { "type": "Feature", "properties": { - "stopId": 1500, - "stopCode": 1500, - "stopName": "Via P. Castelli - p.zza G. Versaci", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Monica Michele", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5372660529426, - 38.1962219727325 + 15.554489273288, + 38.190089799703 ] } }, { "type": "Feature", "properties": { - "stopId": 1299, - "stopCode": 1299, - "stopName": "Via P. Castelli - S. Maria delle Grazie", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Nuova Panetteria ", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.539176472113, - 38.195905946987 + 15.5483567127875, + 38.1794018883701 ] } }, { "type": "Feature", "properties": { - "stopId": 1298, - "stopCode": 1298, - "stopName": "Via P. Castelli - Città del Ragazzo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Parolaccia ", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5406009111624, - 38.1946999636328 + 15.5657133249611, + 38.2310478953724 ] } }, { "type": "Feature", "properties": { - "stopId": 1297, - "stopCode": 1297, - "stopName": "Via P. Castelli - 134", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Perla Nera", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5421009126038, - 38.1936999635681 + 15.5491316633488, + 38.185098497931 ] } }, { "type": "Feature", "properties": { - "stopId": 1296, - "stopCode": 1296, - "stopName": "Via P. Castelli - via Turiano", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Pineta Sporting Club", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5437740728845, - 38.1928281202498 + 15.5404740148181, + 38.2062245000065 ] } }, { "type": "Feature", "properties": { - "stopId": 1295, - "stopCode": 1295, - "stopName": "Via P. Castelli - Orto Botanico", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Pizzaccia 2", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5455082179544, - 38.191935803315 + 15.5706155006104, + 38.2355772609849 ] } }, { "type": "Feature", "properties": { - "stopId": 1293, - "stopCode": 1293, - "stopName": "Viale Italia - 109 COT", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Primeria", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5450218039222, - 38.190238966344 + 15.6366048374881, + 38.2630249099623 ] } }, { "type": "Feature", "properties": { - "stopId": 1292, - "stopCode": 1292, - "stopName": "Viale Italia 44b", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Residenza", + "category": "Guest House", + "type": "Hotel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5460955656936, - 38.1894400207958 + 15.5509448285574, + 38.186455500356 ] } }, { "type": "Feature", "properties": { - "stopId": 1291, - "stopCode": 1291, - "stopName": "Viale Italia - 129", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Ruota Gelateria ", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5483614574343, - 38.1874978578682 + 15.6026354569249, + 38.2567978540471 ] } }, { "type": "Feature", "properties": { - "stopId": 1290, - "stopCode": 1290, - "stopName": "Viale Italia - via Iceta", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Stellina", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5463419216705, - 38.1863496504601 + 15.5483309105861, + 38.1793767769162 ] } }, { "type": "Feature", "properties": { - "stopId": 1289, - "stopCode": 1289, - "stopName": "Viale Italia - 53", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Terra dei Sogni", + "category": "HotelorMotel", + "type": "Hotel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5441392509833, - 38.1858285719226 + 15.5454651827728, + 38.1800091470852 ] } }, { "type": "Feature", "properties": { - "stopId": 1288, - "stopCode": 1288, - "stopName": "Viale Italia - 19", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Tonnara", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5420917137677, - 38.1849737557269 + 15.555306096924, + 38.187811426357 ] } }, { "type": "Feature", "properties": { - "stopId": 478, - "stopCode": 478, - "stopName": "Via fratelli Di Mari; fer. 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Torre", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.5556848467816, - 38.2041215698081 + 15.6099205235244, + 38.2575157455415 ] } }, { "type": "Feature", "properties": { - "stopId": 479, - "stopCode": 479, - "stopName": "Via fratelli Di Mari; fer. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Tradizione", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5535277598567, - 38.2038379046535 + 15.5560640355125, + 38.207080168198 ] } }, { "type": "Feature", "properties": { - "stopId": 480, - "stopCode": 480, - "stopName": "Via Torrente Trapani; 6", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Trattoria", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5506337552955, - 38.2047442275747 + 15.5496953328284, + 38.1909740557088 ] } }, { "type": "Feature", "properties": { - "stopId": 481, - "stopCode": 481, - "stopName": "Via Torrente Trapani; 16", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Valle ", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5491009198227, - 38.204999963263 + 15.5369199154558, + 38.1648615528728 ] } }, { "type": "Feature", "properties": { - "stopId": 482, - "stopCode": 482, - "stopName": "Via Torrente Trapani; 34 Cappuccini", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "La Valle Giovanni", + "category": "Book Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5474009181567, - 38.2053999633369 + 15.5374894255154, + 38.1631668176355 ] } }, { "type": "Feature", "properties": { - "stopId": 483, - "stopCode": 483, - "stopName": "Via Torrente Trapani; 40", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Larderia lnferiore", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5455877082281, - 38.2058978612844 + 15.4994681558427, + 38.141289875778 ] } }, { "type": "Feature", "properties": { - "stopId": 484, - "stopCode": 484, - "stopName": "Via Torrente Trapani; Città Nuova fer.1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Larderia lnferiore", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5432009140521, - 38.2063999635189 + 15.5001135530894, + 38.1420768704051 ] } }, { "type": "Feature", "properties": { - "stopId": 485, - "stopCode": 485, - "stopName": "Via Torrente Trapani; Città Nuova fer.2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Larderia Superiore", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5402009111208, - 38.2067999636484 + 15.4936942793729, + 38.1388847530633 ] } }, { "type": "Feature", "properties": { - "stopId": 486, - "stopCode": 486, - "stopName": "Città Nuova; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Larderia Superiore", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5347009057351, - 38.206399963885 + 15.4932717597595, + 38.1390174208142 ] } }, { "type": "Feature", "properties": { - "stopId": 1485, - "stopCode": 1485, - "stopName": "Via Torrente Trapani - Città Nuova fer.2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Le Delizie del Pane", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5401009110199, - 38.2066999636527 + 15.5354941007566, + 38.212700890941 ] } }, { "type": "Feature", "properties": { - "stopId": 1484, - "stopCode": 1484, - "stopName": "Via Torrente Trapani - Città Nuova fer.1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Le Dolcezze", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5431942222389, - 38.2063263119049 + 15.5516341895005, + 38.1883720479363 ] } }, { "type": "Feature", "properties": { - "stopId": 1483, - "stopCode": 1483, - "stopName": "Via Torrente Trapani - 40", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Le Due Sorelle ", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5457739317324, - 38.2057530567563 + 15.5543421311316, + 38.192911114425 ] } }, { "type": "Feature", "properties": { - "stopId": 1482, - "stopCode": 1482, - "stopName": "Via Torrente Trapani - 34 Cappuccini", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Lepanto", + "category": "Guest House", + "type": "Hotel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5472867953218, - 38.2053341348977 + 15.5534402279056, + 38.1913434479487 ] } }, { "type": "Feature", "properties": { - "stopId": 1481, - "stopCode": 1481, - "stopName": "Via Torrente Trapani; 16", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Lettere ", + "category": "UniversityorCollege", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5490479612679, - 38.2049593919294 + 15.5480815650191, + 38.231049320987 ] } }, { "type": "Feature", "properties": { - "stopId": 1480, - "stopCode": 1480, - "stopName": "Via Torrente Trapani - 6", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Liceo Classico Francesco Maurolico", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5505475871683, - 38.2047070492595 + 15.5503318656807, + 38.1916717876134 ] } }, { "type": "Feature", "properties": { - "stopId": 1589, - "stopCode": 1589, - "stopName": "V.le Regina Margherita -63", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Liceo Scientifico Archimede", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5511009217706, - 38.2039999631759 + 15.5445074865926, + 38.1989189670135 ] } }, { "type": "Feature", "properties": { - "stopId": 1588, - "stopCode": 1588, - "stopName": "V.le Regina Margherita - chiesa Lourdes", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Liceo Scientifico Statale G. Seguenza", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5519009225214, - 38.2025999631412 + 15.5517079405549, + 38.1937264999087 ] } }, { "type": "Feature", "properties": { - "stopId": 1587, - "stopCode": 1587, - "stopName": "V.le Regina Margherita - Osservatorio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Life Motors S.r.l.", + "category": "Automobile Dealership", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5529009234591, - 38.2007999630978 + 15.5416627819336, + 38.165586474836 ] } }, { "type": "Feature", "properties": { - "stopId": 1612, - "stopCode": 1612, - "stopName": "V.le Regina Margherita - Villa Salus", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "lmbarco", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5494498100127, - 38.1995221011727 + 15.5573193619696, + 38.1795577586354 ] } }, { "type": "Feature", "properties": { - "stopId": 1141, - "stopCode": 1141, - "stopName": "Viale Boccetta - Archimede", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Lo Giudice G. Sas", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5475009180512, - 38.1983999633335 + 15.5481187229003, + 38.1804773946186 ] } }, { "type": "Feature", "properties": { - "stopId": 1142, - "stopCode": 1142, - "stopName": "Viale Boccetta - 15", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Lo Re Vincenza Pediatra", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5489290577922, - 38.1982598678003 + 15.5496387836075, + 38.184659025557 ] } }, { "type": "Feature", "properties": { - "stopId": 1143, - "stopCode": 1143, - "stopName": "Viale Boccetta - Buon Pastore", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Locanda", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5518009222905, - 38.1980999631461 + 15.4866393513348, + 38.2300389573221 ] } }, { "type": "Feature", "properties": { - "stopId": 1144, - "stopCode": 1144, - "stopName": "Viale Boccetta - Palacultura", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Locanda ", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5537685632784, - 38.1978395032694 + 15.4857357574945, + 38.2308474452539 ] } }, { "type": "Feature", "properties": { - "stopId": 1145, - "stopCode": 1145, - "stopName": "Viale Boccetta - via Romagnosi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "lp", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5552684457756, - 38.1975268368242 + 15.5195919600772, + 38.1300649413663 ] } }, { "type": "Feature", "properties": { - "stopId": 1513, - "stopCode": 1513, - "stopName": "Corso Cavour; 205", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "lp", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5559364793246, - 38.1966846832559 + 15.5287004983014, + 38.152509513162 ] } }, { "type": "Feature", "properties": { - "stopId": 1511, - "stopCode": 1511, - "stopName": "Corso Cavour; S. Antonio Abate", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "lper", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5549419304309, - 38.1950147216168 + 15.542240653175, + 38.1856930482113 ] } }, { "type": "Feature", "properties": { - "stopId": 1510, - "stopCode": 1510, - "stopName": "Corso Cavour; Ist. Maurolico", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "lris", + "category": "Cinema", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.553078152016, - 38.1920136710422 + 15.6032944852098, + 38.2571618151971 ] } }, { "type": "Feature", "properties": { - "stopId": 1129, - "stopCode": 1129, - "stopName": "Via T. Cannizzaro; Tribunale", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ls Auto S.r.l.", + "category": "Vehicle Rep air Facility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5523358926958, - 38.1889472621009 + 15.5478323791599, + 38.1730766752845 ] } }, { "type": "Feature", "properties": { - "stopId": 517, - "stopCode": 517, - "stopName": "Viale Giostra; Mercato S. Orsola", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Luisa Spagnoli", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5575009282101, - 38.2069999628954 + 15.5555722534191, + 38.2025514654148 ] } }, { "type": "Feature", "properties": { - "stopId": 518, - "stopCode": 518, - "stopName": "Viale Giostra; via G. Alibrandi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Lungomare", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5549350067582, - 38.2084594930837 + 15.5550997297388, + 38.1965223838526 ] } }, { "type": "Feature", "properties": { - "stopId": 597, - "stopCode": 597, - "stopName": "V.le Giostra; 10", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Lux", + "category": "Cinema", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5537277603307, - 38.2092141918998 + 15.5496468596304, + 38.1862465021134 ] } }, { "type": "Feature", "properties": { - "stopId": 598, - "stopCode": 598, - "stopName": "V.le Giostra 50; fondo Basile", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "L’Altro Bar", + "category": "Nightlife", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5517009225402, - 38.2099999631489 + 15.6067841039126, + 38.2597052853588 ] } }, { "type": "Feature", "properties": { - "stopId": 599, - "stopCode": 599, - "stopName": "V.le Giostra; via M. Scuderi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "L’Altro Orso", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.550150497127, - 38.2104010656936 + 15.5546141290169, + 38.2008835707135 ] } }, { "type": "Feature", "properties": { - "stopId": 600, - "stopCode": 600, - "stopName": "V.le Giostra; 18", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "L’Isola Azzurra", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5480931637686, - 38.2109882203952 + 15.5498186831265, + 38.1827995252098 ] } }, { "type": "Feature", "properties": { - "stopId": 601, - "stopCode": 601, - "stopName": "V.le Giostra; via Adamello", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "M. Polimeni & Zumbo", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5466009175487, - 38.2115999633708 + 15.5235737781798, + 38.1384415611714 ] } }, { "type": "Feature", "properties": { - "stopId": 602, - "stopCode": 602, - "stopName": "Viale Giostra; 73", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Macelleria Ciccarello Francesca", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5450009159934, - 38.2122999634401 + 15.5141429562773, + 38.1189754427226 ] } }, { "type": "Feature", "properties": { - "stopId": 603, - "stopCode": 603, - "stopName": "Viale Giostra; salita Curcuruto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Macelleria Liotta Stellario", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5422674566757, - 38.2130842619192 + 15.5261391763514, + 38.1881218531418 ] } }, { "type": "Feature", "properties": { - "stopId": 604, - "stopCode": 604, - "stopName": "Viale Giostra; chiesa Maria di Gesù", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mad Arts", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5396009107385, - 38.2138999636733 + 15.5527908616132, + 38.2052624893388 ] } }, { "type": "Feature", "properties": { - "stopId": 1479, - "stopCode": 1479, - "stopName": "Via fratelli Di Mari; fer. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Madonna dei Miracoli", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5534941526736, - 38.2037683248159 + 15.5419615567569, + 38.1730652203002 ] } }, { "type": "Feature", "properties": { - "stopId": 1478, - "stopCode": 1478, - "stopName": "Via fratelli Di Mari; fer. 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Madonna della Mercede", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5557622864125, - 38.2040556956307 + 15.5468696463369, + 38.1900011791172 ] } }, { "type": "Feature", "properties": { - "stopId": 519, - "stopCode": 519, - "stopName": "V.le Regina Elena; 51", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Madonna di Lourdes", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5552385043887, - 38.2094119779609 + 15.549744609822, + 38.2025132046622 ] } }, { "type": "Feature", "properties": { - "stopId": 520, - "stopCode": 520, - "stopName": "V.le Regina Elena; Ogliastri", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Madonnina del Porto", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.5577607091163, - 38.2090430612703 + 15.5605975431688, + 38.1962881935625 ] } }, { "type": "Feature", "properties": { - "stopId": 521, - "stopCode": 521, - "stopName": "V.le Regina Elena; 38", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Madonnina del Porto", + "category": "Historical Monument Building", + "type": "Cultural_Buildings" }, "geometry": { "type": "Point", "coordinates": [ - 15.5600009308139, - 38.210799962785 + 15.560742329283, + 38.1965227484156 ] } }, { "type": "Feature", "properties": { - "stopId": 522, - "stopCode": 522, - "stopName": "V.le Regina Elena; 117", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Magazzini Lisitano", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5595204778386, - 38.2123205452836 + 15.5541821958453, + 38.2046202285566 ] } }, { "type": "Feature", "properties": { - "stopId": 523, - "stopCode": 523, - "stopName": "V. San Licandro; S. Francesco", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Maggiore", + "category": "RentACarFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5577814086722, - 38.2138421142996 + 15.55512190728, + 38.1926378591592 ] } }, { "type": "Feature", "properties": { - "stopId": 524, - "stopCode": 524, - "stopName": "V. San Licandro; 7", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Majorana-Marconi", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5559762493148, - 38.2153668753164 + 15.5388994556887, + 38.2130237172653 ] } }, { "type": "Feature", "properties": { - "stopId": 526, - "stopCode": 526, - "stopName": "V. San Licandro; p.zza XXV Aprile", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Makoto", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5540526590323, - 38.2166083952219 + 15.5498966631569, + 38.1975756624215 ] } }, { "type": "Feature", "properties": { - "stopId": 527, - "stopCode": 527, - "stopName": "Via L. Sciascia; 31", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mancini Dr. Fiorenzo", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.553477964048, - 38.2185105023244 + 15.5386508657887, + 38.1651855328435 ] } }, { "type": "Feature", "properties": { - "stopId": 528, - "stopCode": 528, - "stopName": "Via L. Sciascia; via Olimpia", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mania", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5532618706183, - 38.2197315747737 + 15.554029436246, + 38.191554130381 ] } }, { "type": "Feature", "properties": { - "stopId": 529, - "stopCode": 529, - "stopName": "Via Olimpia; coop. Iride 83", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Manzoni ", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5550526600596, - 38.2177557121007 + 15.5465512831106, + 38.1810098737997 ] } }, { "type": "Feature", "properties": { - "stopId": 530, - "stopCode": 530, - "stopName": "Via Olimpia", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Marakaibo", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5575319905619, - 38.217127366587 + 15.5327019682876, + 38.1561229356678 ] } }, { "type": "Feature", "properties": { - "stopId": 531, - "stopCode": 531, - "stopName": "Via Cappellani; via Olimpia", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Maria Santissima di Loreto ", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.5584926334069, - 38.2166766204558 + 15.5430595078781, + 38.1626240572553 ] } }, { "type": "Feature", "properties": { - "stopId": 532, - "stopCode": 532, - "stopName": "Via Cappellani; coop. Grifone", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Maria Stella Maris", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.559525941083, - 38.2175121622935 + 15.5344842503111, + 38.1612004644912 ] } }, { "type": "Feature", "properties": { - "stopId": 533, - "stopCode": 533, - "stopName": "Vico Anastasi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Marinely", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.557400928482, - 38.2195999628981 + 15.5524198921119, + 38.1821159353405 ] } }, { "type": "Feature", "properties": { - "stopId": 534, - "stopCode": 534, - "stopName": "Via Leonardi; scuola elementare", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Marsala Filippo", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5578009289216, - 38.2209999628803 + 15.5509784032276, + 38.1822491448693 ] } }, { "type": "Feature", "properties": { - "stopId": 535, - "stopCode": 535, - "stopName": "Via Leonardi; 42", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Massa San Giorgio", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5570659855082, - 38.2220736257738 + 15.5337316619714, + 38.2749815087251 ] } }, { "type": "Feature", "properties": { - "stopId": 993, - "stopCode": 993, - "stopName": "Via Leonardi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Massa San Giorgio ", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5564913692722, - 38.22454650141 + 15.5338652373294, + 38.2738542453001 ] } }, { "type": "Feature", "properties": { - "stopId": 537, - "stopCode": 537, - "stopName": "Via G. A. Bosurgi; 7", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Massa San Giovanni", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5553485495757, - 38.2264573833378 + 15.5420812034486, + 38.2652151891543 ] } }, { "type": "Feature", "properties": { - "stopId": 538, - "stopCode": 538, - "stopName": "Via G. A. Bosurgi; comp. Eolo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Massa San Giovanni", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.556500927813, - 38.2272999629366 + 15.5437416564402, + 38.2665514175879 ] } }, { "type": "Feature", "properties": { - "stopId": 539, - "stopCode": 539, - "stopName": "Via G. A. Bosurgi; largo Citola", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Massa San Nicola", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5566009279478, - 38.2284999629321 + 15.5396414577682, + 38.270623067162 ] } }, { "type": "Feature", "properties": { - "stopId": 540, - "stopCode": 540, - "stopName": "Contrada Citola; 20", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Massa San Nicola", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5555009268772, - 38.2292999629802 + 15.5404415329779, + 38.2707024785486 ] } }, { "type": "Feature", "properties": { - "stopId": 541, - "stopCode": 541, - "stopName": "SP44; Contrada Citola", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Massa Santa Lucia ", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5557284335194, - 38.2308162945291 + 15.5462545993558, + 38.269486085956 ] } }, { "type": "Feature", "properties": { - "stopId": 542, - "stopCode": 542, - "stopName": "Contrada Sorba", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Massa Santa Lucia ", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.554879532257, - 38.2327543027978 + 15.5480891411613, + 38.26999457484 ] } }, { "type": "Feature", "properties": { - "stopId": 999, - "stopCode": 999, - "stopName": "Via Pietro Nenni", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mastronardo Carmelo i Figli ", + "category": "Vehicle RepairFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5549009264806, - 38.2360999630056 + 15.5542704130427, + 38.1816927419888 ] } }, { "type": "Feature", "properties": { - "stopId": 145, - "stopCode": 145, - "stopName": "Viale Boccetta; via Romagnosi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mavì S.p.A.", + "category": "Truck Dealership", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5553602061463, - 38.1976574337121 + 15.5181671417272, + 38.1275721733042 ] } }, { "type": "Feature", "properties": { - "stopId": 144, - "stopCode": 144, - "stopName": "Viale Boccetta; Palacultura", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Max Tendenze", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5531639692569, - 38.1981564765451 + 15.5488796034067, + 38.185651122932 ] } }, { "type": "Feature", "properties": { - "stopId": 143, - "stopCode": 143, - "stopName": "Viale Boccetta; Buon Pastore", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "MaxMara", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5517103222935, - 38.1982164266064 + 15.5523892556054, + 38.1838001970866 ] } }, { "type": "Feature", "properties": { - "stopId": 142, - "stopCode": 142, - "stopName": "Viale Boccetta; 15", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "McDonald's", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5489940617018, - 38.1984357179607 + 15.5543187816611, + 38.1851037630655 ] } }, { "type": "Feature", "properties": { - "stopId": 141, - "stopCode": 141, - "stopName": "Viale Boccetta; Archimede", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Meeting", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5474733513759, - 38.1986064137546 + 15.5532047271222, + 38.2209518823166 ] } }, { "type": "Feature", "properties": { - "stopId": 612, - "stopCode": 612, - "stopName": "V.le Regina Margherita; Villa Salus", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mercati Alimentari Bonino ", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5492788930527, - 38.1994282991919 + 15.5190226327333, + 38.1461525379193 ] } }, { "type": "Feature", "properties": { - "stopId": 587, - "stopCode": 587, - "stopName": "V.le Regina Margherita; Osservatorio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Merceria Giglio", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5530009235582, - 38.2007999630934 + 15.5301384327898, + 38.1533829249428 ] } }, { "type": "Feature", "properties": { - "stopId": 588, - "stopCode": 588, - "stopName": "V.le Regina Margherita; chiesa Lourdes", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Merci Via Siracusa ", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5520009226204, - 38.2025999631368 + 15.5422740767353, + 38.1719150893023 ] } }, { "type": "Feature", "properties": { - "stopId": 589, - "stopCode": 589, - "stopName": "V.le Regina Margherita;63", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mercurio ", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5512009218696, - 38.2039999631715 + 15.541892264805, + 38.1724411176676 ] } }, { "type": "Feature", "properties": { - "stopId": 590, - "stopCode": 590, - "stopName": "V.le Regina Margherita - ist. Ignatianum", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mercè Via Don G. Minzoni", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5527362269461, - 38.2053861542017 + 15.5445175108605, + 38.189731269419 ] } }, { "type": "Feature", "properties": { - "stopId": 592, - "stopCode": 592, - "stopName": "V.le Regina Margherita; 87", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Messina", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5545679941726, - 38.2051547655782 + 15.5510293370044, + 38.1782597941635 ] } }, { "type": "Feature", "properties": { - "stopId": 593, - "stopCode": 593, - "stopName": "V.le Regina Margherita; 87a", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Messina", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5531009238188, - 38.2062999630883 + 15.5461439704487, + 38.187767634559 ] } }, { "type": "Feature", "properties": { - "stopId": 594, - "stopCode": 594, - "stopName": "V.le Regina Elena 10; chiesa S. Domenico", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Messina Centrale", + "category": "Railway Station", + "type": "Rail_Station" }, "geometry": { "type": "Point", "coordinates": [ - 15.5530974970783, - 38.2074504368816 + 15.5586413582725, + 38.1854888498546 ] } }, { "type": "Feature", "properties": { - "stopId": 596, - "stopCode": 596, - "stopName": "V.le Regina Elena; 61", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Messina Marittima", + "category": "Railway Station", + "type": "Rail_Station" }, "geometry": { "type": "Point", "coordinates": [ - 15.5536185616269, - 38.2080207121097 + 15.5607326395476, + 38.1878827901295 ] } }, { "type": "Feature", "properties": { - "stopId": 800, - "stopCode": 800, - "stopName": "Terminal Museo", - "mainStop": false, - "type": "bus", - "year": "2021" + "name": "Messina Tremestieri", + "category": "Ferry Terminal", + "type": "Ferry" }, "geometry": { "type": "Point", "coordinates": [ - 15.5660316350125, - 38.2173789227901 + 15.5208499806181, + 38.1312034134868 ] } }, { "type": "Feature", "properties": { - "stopId": 1545, - "stopCode": 1545, - "stopName": "SP44 - Campo Italia coop. Le Tuie", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Messina/Caronte & Tourist", + "category": "Ferry Terminal", + "type": "Ferry" }, "geometry": { "type": "Point", "coordinates": [ - 15.5538009254114, - 38.2368999630536 + 15.559261724013, + 38.2101630481639 ] } }, { "type": "Feature", "properties": { - "stopId": 1544, - "stopCode": 1544, - "stopName": "SP44 - Campoitalia coop. Aldebaran", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Messina/Molo Norimberga", + "category": "Ferry Terminal", + "type": "Ferry" }, "geometry": { "type": "Point", "coordinates": [ - 15.5532009248069, - 38.2365999630799 + 15.5634108129409, + 38.1911951534437 ] } }, { "type": "Feature", "properties": { - "stopId": 1543, - "stopCode": 1543, - "stopName": "SP44 - rif. La Sterza", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Messina/Tremestieri", + "category": "Ferry Terminal", + "type": "Ferry" }, "geometry": { "type": "Point", "coordinates": [ - 15.5537570126612, - 38.2346956557575 + 15.5215131079824, + 38.131154529395 ] } }, { "type": "Feature", "properties": { - "stopId": 1542, - "stopCode": 1542, - "stopName": "Contrada Sorba", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mexico e Nuvole", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5548009400151, - 38.2327071093243 + 15.5544051837092, + 38.194897706921 ] } }, { "type": "Feature", "properties": { - "stopId": 1541, - "stopCode": 1541, - "stopName": "SP44; Contrada Citola", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Micali Piera", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5556258389346, - 38.2307852171612 + 15.5368629775146, + 38.1645893838962 ] } }, { "type": "Feature", "properties": { - "stopId": 1540, - "stopCode": 1540, - "stopName": "Contrada Citola; 20", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Milauto", + "category": "Vehicle Rep air Facility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5555009406068, - 38.2292388631922 + 15.5276704204446, + 38.150568389409 ] } }, { "type": "Feature", "properties": { - "stopId": 1539, - "stopCode": 1539, - "stopName": "Via G. A. Bosurgi - largo Citola", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Milauto", + "category": "Vehicle RepairFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5565009278484, - 38.2284999629364 + 15.5277559223198, + 38.1506307669278 ] } }, { "type": "Feature", "properties": { - "stopId": 1538, - "stopCode": 1538, - "stopName": "Via G. A. Bosurgi - comp. Eolo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mili Marina", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.55650092781, - 38.2271999629366 + 15.5159219524875, + 38.1232088614289 ] } }, { "type": "Feature", "properties": { - "stopId": 1537, - "stopCode": 1537, - "stopName": "Via G. A. Bosurgi; 7", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mili Marina", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5552667695892, - 38.2264689777475 + 15.5155889276031, + 38.1233176468006 ] } }, { "type": "Feature", "properties": { - "stopId": 1993, - "stopCode": 1993, - "stopName": "Via Leonardi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mili San Marco", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5563894315159, - 38.2246392119348 + 15.506940068987, + 38.1203772907241 ] } }, { "type": "Feature", "properties": { - "stopId": 1534, - "stopCode": 1534, - "stopName": "Via Leonardi - scuola elementare", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mili San Marco", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5577009288221, - 38.2209999628848 + 15.5068503928769, + 38.1206202141298 ] } }, { "type": "Feature", "properties": { - "stopId": 1533, - "stopCode": 1533, - "stopName": "Vico Anastasi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mili San Pietro", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5573009283824, - 38.2195999629025 + 15.4863315157121, + 38.1262618874234 ] } }, { "type": "Feature", "properties": { - "stopId": 1532, - "stopCode": 1532, - "stopName": "Via Cappellani - coop. Grifone", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mili San Pietro", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5594009304132, - 38.2174999628105 + 15.48670807151, + 38.1268985376633 ] } }, { "type": "Feature", "properties": { - "stopId": 1531, - "stopCode": 1531, - "stopName": "Via Cappellani - via Olimpia", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Minottica ", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5584951714213, - 38.2167357905431 + 15.552993904293, + 38.188212466214 ] } }, { "type": "Feature", "properties": { - "stopId": 1530, - "stopCode": 1530, - "stopName": "Via Olimpia", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Moda Danza", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5576894553073, - 38.2171779370967 + 15.5531662575564, + 38.1896217746759 ] } }, { "type": "Feature", "properties": { - "stopId": 1529, - "stopCode": 1529, - "stopName": "Via Olimpia - coop. Iride 83", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Moda ltalia", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5551122515378, - 38.2178452730723 + 15.5223460473068, + 38.1406000535016 ] } }, { "type": "Feature", "properties": { - "stopId": 1528, - "stopCode": 1528, - "stopName": "Via L. Sciascia - via Olimpia", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Molino", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5530009241128, - 38.2196999630909 + 15.4533310571135, + 38.074730405484 ] } }, { "type": "Feature", "properties": { - "stopId": 1527, - "stopCode": 1527, - "stopName": "Via L. Sciascia - 31", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Molino ", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5532124251226, - 38.21840628775 + 15.4537436290864, + 38.0740723206719 ] } }, { "type": "Feature", "properties": { - "stopId": 525, - "stopCode": 525, - "stopName": "V. San Licandro; p.zza XXV Aprile", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mondadori ", + "category": "Book Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5537009247102, - 38.2163999630607 + 15.5558810151422, + 38.1877951214222 ] } }, { "type": "Feature", "properties": { - "stopId": 2524, - "stopCode": 2524, - "stopName": "V. San Licandro; 7", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mondello ", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5557992370862, - 38.2153015490523 + 15.5539202272461, + 38.1806684657812 ] } }, { "type": "Feature", "properties": { - "stopId": 1523, - "stopCode": 1523, - "stopName": "V. San Licandro - S. Francesco", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Monte Dei Paschi Di Siena", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5576009285102, - 38.2137999628901 + 15.5278036571291, + 38.1479959275826 ] } }, { "type": "Feature", "properties": { - "stopId": 1522, - "stopCode": 1522, - "stopName": "V.le Regina Elena - 117", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Monte Dei Paschi Di Siena", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5595089907109, - 38.2122388487401 + 15.5500665805356, + 38.1784062393293 ] } }, { "type": "Feature", "properties": { - "stopId": 1521, - "stopCode": 1521, - "stopName": "V.le Regina Elena; 38", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Monte Dei Paschi Di Siena", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5599043849239, - 38.2108105031589 + 15.5524425719471, + 38.1876170975663 ] } }, { "type": "Feature", "properties": { - "stopId": 1520, - "stopCode": 1520, - "stopName": "V.le Regina Elena - Ogliastri", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Monte Dei Paschi Di Siena", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5578840908403, - 38.209107451736 + 15.5559396294967, + 38.206208893368 ] } }, { "type": "Feature", "properties": { - "stopId": 1519, - "stopCode": 1519, - "stopName": "V.le Regina Elena - 51", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Monte Dei Paschi Di Siena", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5551204154564, - 38.2094969134778 + 15.5608107659453, + 38.2195249983043 ] } }, { "type": "Feature", "properties": { - "stopId": 886, - "stopCode": 886, - "stopName": "Via Garibaldi; Catalani", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Monte di Pietà", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.556566816827, - 38.1915957429384 + 15.5507223249908, + 38.1946535597817 ] } }, { "type": "Feature", "properties": { - "stopId": 2007, - "stopCode": 2007, - "stopName": "Chiesa S. Caterina", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Monte di Pietà ", + "category": "Theatre", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.5561773563345, - 38.1880135029561 + 15.5506790859359, + 38.1945543928059 ] } }, { "type": "Feature", "properties": { - "stopId": 1596, - "stopCode": 1596, - "stopName": "V.le Regina Elena - 61", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mood", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5537245089837, - 38.2083158862338 + 15.553156310041, + 38.183223989122 ] } }, { "type": "Feature", "properties": { - "stopId": 1594, - "stopCode": 1594, - "stopName": "V.le Regina Elena 10 - chiesa S. Domenico", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mood", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5530399001232, - 38.2075329629222 + 15.5509518521691, + 38.186185628964 ] } }, { "type": "Feature", "properties": { - "stopId": 1593, - "stopCode": 1593, - "stopName": "V.le Regina Margherita - 87a", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Mood ", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5529580220528, - 38.2062504360705 + 15.5547784300731, + 38.1844630497531 ] } }, { "type": "Feature", "properties": { - "stopId": 1592, - "stopCode": 1592, - "stopName": "V.le Regina Margherita - 87", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Morabito Francesco ", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.554400925073, - 38.2050999630316 + 15.52973167289, + 38.1513697396701 ] } }, { "type": "Feature", "properties": { - "stopId": 1590, - "stopCode": 1590, - "stopName": "V.le Regina Margherita - ist. Ignatianum", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Morgana ", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5524894635099, - 38.2055979753914 + 15.5525121851762, + 38.1863338765295 ] } }, { "type": "Feature", "properties": { - "stopId": 133, - "stopCode": 133, - "stopName": "Viale P. Umberto; Ortobotanico", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Morganti Maria ", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5467009307869, - 38.1921210467427 + 15.5475010690118, + 38.2090763812089 ] } }, { "type": "Feature", "properties": { - "stopId": 134, - "stopCode": 134, - "stopName": "Viale P. Umberto; com. Le Terrazze", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "motivi ", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5465712890584, - 38.1939079101805 + 15.5521840480134, + 38.1835713178742 ] } }, { "type": "Feature", "properties": { - "stopId": 135, - "stopCode": 135, - "stopName": "Viale P. Umberto; 38", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Motonautica e Velica Peloritana", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.546632165997, - 38.1949703096517 + 15.5635225075612, + 38.2206283057044 ] } }, { "type": "Feature", "properties": { - "stopId": 136, - "stopCode": 136, - "stopName": "Viale P. Umberto;clinica S. Camillo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Motor Service Sri", + "category": "Vehicle Rep air Facility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5479606989448, - 38.1936831019594 + 15.5650560534385, + 38.2312477460396 ] } }, { "type": "Feature", "properties": { - "stopId": 137, - "stopCode": 137, - "stopName": "Viale P. Umberto; Cristo Re", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Municipio di Messina ", + "category": "CityHall", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5494566694708, - 38.194676463567 + 15.5537840557123, + 38.1937462080223 ] } }, { "type": "Feature", "properties": { - "stopId": 138, - "stopCode": 138, - "stopName": "Viale P. Umberto; Sacrario Cristo Re", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Muschio & Miele", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5510009214315, - 38.1957999631814 + 15.5537580165179, + 38.1845663297069 ] } }, { "type": "Feature", "properties": { - "stopId": 139, - "stopCode": 139, - "stopName": "Viale P. Umberto; via Grattoni", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Museo Annibile di Francia ", + "category": "Museum", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.5496230620528, - 38.1975463398995 + 15.5476960067954, + 38.1832564330505 ] } }, { "type": "Feature", "properties": { - "stopId": 140, - "stopCode": 140, - "stopName": "Viale P. Umberto; 137", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Museo Regionale ", + "category": "Museum", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.5477787160806, - 38.1981473935402 + 15.5616808280701, + 38.216152260915 ] } }, { "type": "Feature", "properties": { - "stopId": 582, - "stopCode": 582, - "stopName": "V.le Regina Elena; San Licandro", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Music Center Strumenti Musicali ", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5587492231299, - 38.2137694078289 + 15.5492970510765, + 38.1821093287618 ] } }, { "type": "Feature", "properties": { - "stopId": 583, - "stopCode": 583, - "stopName": "V.le Regina Elena; Clinica Cappellani", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Nara Camicie", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5615392553742, - 38.2142894283968 + 15.5518766624602, + 38.1835039038803 ] } }, { "type": "Feature", "properties": { - "stopId": 584, - "stopCode": 584, - "stopName": "V.le Regina Elena; 363", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Nebe Coffeebook ", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5620894596611, - 38.2159809991414 + 15.6395056496043, + 38.2650408144792 ] } }, { "type": "Feature", "properties": { - "stopId": 585, - "stopCode": 585, - "stopName": "V.le Regina Elena; S. Elena", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Nettuno ", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.5619378270533, - 38.2179836338086 + 15.5555391492176, + 38.1992404798135 ] } }, { "type": "Feature", "properties": { - "stopId": 1558, - "stopCode": 1558, - "stopName": "V.le Annunziata - Villa Luce", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "New Fruit of Sicily S.r.l.", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5647706869493, - 38.2181157701595 + 15.5341079994438, + 38.1587185873573 ] } }, { "type": "Feature", "properties": { - "stopId": 558, - "stopCode": 558, - "stopName": "V.le Annunziata; Villa Luce", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Next ", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5648599582074, - 38.2182211354737 + 15.554024154147, + 38.1871986448842 ] } }, { "type": "Feature", "properties": { - "stopId": 559, - "stopCode": 559, - "stopName": "V.le Annunziata; S. Elena", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Nicotra", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5629225046219, - 38.2186359453906 + 15.537525687612, + 38.1631300006163 ] } }, { "type": "Feature", "properties": { - "stopId": 1585, - "stopCode": 1585, - "stopName": "V.le Regina Elena - S. Elena", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Noi Due", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5618009328246, - 38.2179999627046 + 15.5517009370787, + 38.1930617019225 ] } }, { "type": "Feature", "properties": { - "stopId": 1584, - "stopCode": 1584, - "stopName": "V.le Regina Elena - 363", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Non Solo Bijoux ", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5619009328654, - 38.2159999627005 + 15.5517490624968, + 38.1885165343182 ] } }, { "type": "Feature", "properties": { - "stopId": 1583, - "stopCode": 1583, - "stopName": "V.le Regina Elena - Clinica Cappellani", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Nunnari & Sfameni", + "category": "Book Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5615043866288, - 38.2143599245854 + 15.5519927575157, + 38.1878798993031 ] } }, { "type": "Feature", "properties": { - "stopId": 1582, - "stopCode": 1582, - "stopName": "V.le Regina Elena - San Licandro", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Nuovo Camping dello Stretto", + "category": "Campground", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5587029687081, - 38.2138733047714 + 15.630707411294, + 38.2617567034031 ] } }, { "type": "Feature", "properties": { - "stopId": 1140, - "stopCode": 1140, - "stopName": "Viale P. Umberto - 137", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Nuovo Millennium", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.547733025539, - 38.1981008228634 + 15.564119777766, + 38.2242858138609 ] } }, { "type": "Feature", "properties": { - "stopId": 1139, - "stopCode": 1139, - "stopName": "Viale P. Umberto; via Grattoni", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Nuovo Oratorio della Pace", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5496257579727, - 38.1974831055348 + 15.5504340176293, + 38.1937765210423 ] } }, { "type": "Feature", "properties": { - "stopId": 1138, - "stopCode": 1138, - "stopName": "Viale P. Umberto; Sacrario Cristo Re", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Nuovo Ritrovo Lombardo ", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.551043850524, - 38.1958632045406 + 15.5464397492051, + 38.1773566455819 ] } }, { "type": "Feature", "properties": { - "stopId": 1137, - "stopCode": 1137, - "stopName": "Viale P. Umberto - Cristo Re", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Nuovo Tennis Club Curcuraci", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5493389153726, - 38.1947007200879 + 15.5368472628129, + 38.1646852756762 ] } }, { "type": "Feature", "properties": { - "stopId": 1136, - "stopCode": 1136, - "stopName": "Viale P. Umberto -clinica S. Camillo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Oasi 2000", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5481369666139, - 38.1937273702613 + 15.5546003710054, + 38.1979245513225 ] } }, { "type": "Feature", "properties": { - "stopId": 1135, - "stopCode": 1135, - "stopName": "Viale P. Umberto - 38", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ocean Fish ", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5467216302849, - 38.1950400176896 + 15.5585581618877, + 38.2094729977482 ] } }, { "type": "Feature", "properties": { - "stopId": 1134, - "stopCode": 1134, - "stopName": "Viale P. Umberto - com. Le Terrazze", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Oddamo Giovanni", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5464572569822, - 38.1939020741541 + 15.5533775386237, + 38.2014195939217 ] } }, { "type": "Feature", "properties": { - "stopId": 1133, - "stopCode": 1133, - "stopName": "Viale P. Umberto; Ortobotanico", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Odeon", + "category": "ParkingGarage", + "type": "Enclosed_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5466794868053, - 38.1921779671205 + 15.5529337588374, + 38.1803779542964 ] } }, { "type": "Feature", "properties": { - "stopId": 1891, - "stopCode": 1891, - "stopName": "Viale Europa; 22", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Odeon Cinecenter", + "category": "Cinema", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5513687484862, - 38.1786451462411 + 15.55182507741, + 38.1831847752159 ] } }, { "type": "Feature", "properties": { - "stopId": 885, - "stopCode": 885, - "stopName": "Via Garibaldi; Catasto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Officina Elettrauto Zappalà", + "category": "Vehicle Rep air Facility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5569009272006, - 38.1929999629236 + 15.5553719733278, + 38.1820987521659 ] } }, { "type": "Feature", "properties": { - "stopId": 884, - "stopCode": 884, - "stopName": "Via Garibaldi; Teatro", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Olimpia ", + "category": "Cinema", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5572009275756, - 38.1955999629101 + 15.5468781516303, + 38.1904660544719 ] } }, { "type": "Feature", "properties": { - "stopId": 560, - "stopCode": 560, - "stopName": "V.le Annunziata; 14", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Oltre", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5612009322515, - 38.218899962731 + 15.5521205824178, + 38.1835030449321 ] } }, { "type": "Feature", "properties": { - "stopId": 561, - "stopCode": 561, - "stopName": "V.le Annunziata; 29", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Optimus", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5591009301612, - 38.2190999628234 + 15.5585555726977, + 38.2082214271973 ] } }, { "type": "Feature", "properties": { - "stopId": 562, - "stopCode": 562, - "stopName": "V.le Annunziata; 44", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Orchidea", + "category": "Nightlife", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.55790092898, - 38.2195999628762 + 15.5548227814956, + 38.1885419068656 ] } }, { "type": "Feature", "properties": { - "stopId": 564, - "stopCode": 564, - "stopName": "Via Fiore", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Orient ", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5585142125939, - 38.2211820275849 + 15.5485803311976, + 38.1798417789261 ] } }, { "type": "Feature", "properties": { - "stopId": 565, - "stopCode": 565, - "stopName": "Via Fiore; statua Padre Pio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Orimi ", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5597234852848, - 38.2228939462743 + 15.5429319151714, + 38.1921489937849 ] } }, { "type": "Feature", "properties": { - "stopId": 566, - "stopCode": 566, - "stopName": "Via Fiore; comp. I Falchi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Orologeria Sulfaro", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5590009302032, - 38.2238999628272 + 15.5487206542069, + 38.1895130125835 ] } }, { "type": "Feature", "properties": { - "stopId": 536, - "stopCode": 536, - "stopName": "Via Fiore; ist. Basile", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Orto Liuzzo", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5566724412684, - 38.224813881556 + 15.4575633165836, + 38.2559521222945 ] } }, { "type": "Feature", "properties": { - "stopId": 1536, - "stopCode": 1536, - "stopName": "Via Fiore - ist. Basile", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Orto Liuzzo", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5567184100123, - 38.224704536665 + 15.4607881001119, + 38.2566982490436 ] } }, { "type": "Feature", "properties": { - "stopId": 1566, - "stopCode": 1566, - "stopName": "Via Fiore - comp. I Falchi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ortofrutta di Chiaia lgnazio", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5590009302003, - 38.2237999628272 + 15.5494922121475, + 38.1836766878538 ] } }, { "type": "Feature", "properties": { - "stopId": 1565, - "stopCode": 1565, - "stopName": "Via Fiore - statua Padre Pio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ortofrutticoli ed Agrumari Morgana", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5595775628767, - 38.2229020727436 + 15.5563601124748, + 38.1842975978851 ] } }, { "type": "Feature", "properties": { - "stopId": 1564, - "stopCode": 1564, - "stopName": "Via Fiore", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Osteria del Campanile", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5584151125895, - 38.221258007063 + 15.5523020474615, + 38.1928855767368 ] } }, { "type": "Feature", "properties": { - "stopId": 1561, - "stopCode": 1561, - "stopName": "V.le Annunziata - 29", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Osteria Etnea", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5591009301583, - 38.2189999628235 + 15.5487628829664, + 38.1870840696661 ] } }, { "type": "Feature", "properties": { - "stopId": 1560, - "stopCode": 1560, - "stopName": "V.le Annunziata - 14", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Over Glass", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5612009322486, - 38.218799962731 + 15.5551269159942, + 38.1890421527476 ] } }, { "type": "Feature", "properties": { - "stopId": 1559, - "stopCode": 1559, - "stopName": "V.le Annunziata; S. Elena", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Oviesse", + "category": "Department Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.56292251834, - 38.2184694718414 + 15.5545453295577, + 38.1854197119101 ] } }, { "type": "Feature", "properties": { - "stopId": 1886, - "stopCode": 1886, - "stopName": "Via Garibaldi; Catalani", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "P. G. B. Tomatore", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5567805375648, - 38.1915854019116 + 15.5510140283857, + 38.1952117278049 ] } }, { "type": "Feature", "properties": { - "stopId": 578, - "stopCode": 578, - "stopName": "Via Annunziata 69", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pace", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5573619790213, - 38.2199653088381 + 15.5744433639914, + 38.2375414998717 ] } }, { "type": "Feature", "properties": { - "stopId": 577, - "stopCode": 577, - "stopName": "Via Annunziata 85; chiesa SS. Annunziata", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pace ", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5558564680975, - 38.2209599712346 + 15.5766109825975, + 38.242214453816 ] } }, { "type": "Feature", "properties": { - "stopId": 576, - "stopCode": 576, - "stopName": "Via Annunziata 101a; sc. Elementare", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Paino ", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5540827463518, - 38.222227359274 + 15.5370169161243, + 38.1961568935257 ] } }, { "type": "Feature", "properties": { - "stopId": 572, - "stopCode": 572, - "stopName": "SS. Annunziata; 414", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Palacultura", + "category": "Library", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5530009242301, - 38.2236999630904 + 15.5517444918104, + 38.1977772385801 ] } }, { "type": "Feature", "properties": { - "stopId": 573, - "stopCode": 573, - "stopName": "SS. Annunziata; c.da Conte", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Palacultura", + "category": "ExhibitionorConferenceCenter", + "type": "Exhibitions" }, "geometry": { "type": "Point", "coordinates": [ - 15.5516009228659, - 38.2244999631514 + 15.5516944206658, + 38.1977890000109 ] } }, { "type": "Feature", "properties": { - "stopId": 575, - "stopCode": 575, - "stopName": "Via Sofia Idelson; coop Sperone", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Palazzo Zanca", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.5498009210698, - 38.2239999632299 + 15.5529665132875, + 38.1938823041962 ] } }, { "type": "Feature", "properties": { - "stopId": 574, - "stopCode": 574, - "stopName": "Via Sofia Idelson; c.da Piano dei Greci", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Palazzo Zanca", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.547500918824, - 38.2248999633299 + 15.5522154657893, + 38.1938988135466 ] } }, { "type": "Feature", "properties": { - "stopId": 1573, - "stopCode": 1573, - "stopName": "SS. Annunziata - c.da Conte", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Palazzo Zanca", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.5515009227639, - 38.2243999631558 + 15.5538671691403, + 38.194126462167 ] } }, { "type": "Feature", "properties": { - "stopId": 1572, - "stopCode": 1572, - "stopName": "SS. Annunziata - 414", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Palestra Body's Art", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5528499758415, - 38.223634644307 + 15.5464810368384, + 38.1825110133209 ] } }, { "type": "Feature", "properties": { - "stopId": 571, - "stopCode": 571, - "stopName": "V.le Annunziata; scuola E. Vittorini", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Palestra Sportime", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5535070911376, - 38.2238027611554 + 15.5502045618065, + 38.2032960801061 ] } }, { "type": "Feature", "properties": { - "stopId": 570, - "stopCode": 570, - "stopName": "SP44; via A. Giuffrè", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Palmares ", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5535683967707, - 38.2257018023011 + 15.5572659362813, + 38.2188716316998 ] } }, { "type": "Feature", "properties": { - "stopId": 569, - "stopCode": 569, - "stopName": "SP44; Stada Militare per Campo Italia 3", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pam", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5543311239318, - 38.2269973345317 + 15.560907668323, + 38.2195334490164 ] } }, { "type": "Feature", "properties": { - "stopId": 568, - "stopCode": 568, - "stopName": "SP44; Stada Militare per Campo Italia 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pam", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5541009254509, - 38.2280999630416 + 15.5973985293765, + 38.261672611952 ] } }, { "type": "Feature", "properties": { - "stopId": 567, - "stopCode": 567, - "stopName": "SP44; Stada Militare per Campo Italia 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pandolfo", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5553811546222, - 38.2284022448282 + 15.5523716562246, + 38.188008626815 ] } }, { "type": "Feature", "properties": { - "stopId": 543, - "stopCode": 543, - "stopName": "SP44; rif. La Sterza", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Panificio Bruno", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5538009253497, - 38.2347999630539 + 15.559213535296, + 38.2117862498661 ] } }, { "type": "Feature", "properties": { - "stopId": 544, - "stopCode": 544, - "stopName": "SP44; Campoitalia coop. Aldebaran", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Panificio Cannata Salvatore ", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5533009249062, - 38.2365999630755 + 15.5145821920006, + 38.1201250844068 ] } }, { "type": "Feature", "properties": { - "stopId": 545, - "stopCode": 545, - "stopName": "SP44; Campo Italia coop. Le Tuie", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Panificio di Filocamo Antonina", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5538009254084, - 38.2367999630537 + 15.5516777579953, + 38.2061269744029 ] } }, { "type": "Feature", "properties": { - "stopId": 546, - "stopCode": 546, - "stopName": "Sp44; Campo Italia coop. Athena", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Panificio Fratelli Bitto", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5544779656014, - 38.2371725779759 + 15.5350766415831, + 38.1860354097522 ] } }, { "type": "Feature", "properties": { - "stopId": 547, - "stopCode": 547, - "stopName": "SP44; Campo Italia comp. Italia", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Panificio Giacoppo", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5544008525228, - 38.2387020590361 + 15.5265221905846, + 38.1721183457884 ] } }, { "type": "Feature", "properties": { - "stopId": 548, - "stopCode": 548, - "stopName": "SP44; 16", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pantano Grande ", + "category": "Waterway Element", + "type": "Lake" }, "geometry": { "type": "Point", "coordinates": [ - 15.5565009281103, - 38.2373999629353 + 15.6139371450195, + 38.2607450193183 ] } }, { "type": "Feature", "properties": { - "stopId": 549, - "stopCode": 549, - "stopName": "Portella Arena; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pantano Piccolo", + "category": "Waterway Element", + "type": "Lake" }, "geometry": { "type": "Point", "coordinates": [ - 15.5555009272742, - 38.2427999629784 + 15.6341293546274, + 38.2689959089137 ] } }, { "type": "Feature", "properties": { - "stopId": 1981, - "stopCode": 1981, - "stopName": "Cittadella Universitaria", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Papisca", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5523888675983, - 38.2299139457941 + 15.5461050213126, + 38.1772031341521 ] } }, { "type": "Feature", "properties": { - "stopId": 2008, - "stopCode": 2008, - "stopName": "Dipartimento di Civiltà Antiche e Moderne", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pappagallo", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5513520527983, - 38.2306082731614 + 15.5492554256036, + 38.1956413464231 ] } }, { "type": "Feature", "properties": { - "stopId": 2009, - "stopCode": 2009, - "stopName": "Via Luigi Einaudi - Campi da Tennis UniMe", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pappamondo", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.551746333166, - 38.2298265931444 + 15.5547825497196, + 38.1893734244271 ] } }, { "type": "Feature", "properties": { - "stopId": 2015, - "stopCode": 2015, - "stopName": "Residenze universitarie", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Paradis", + "category": "HotelorMotel", + "type": "Hotel" }, "geometry": { "type": "Point", "coordinates": [ - 15.550310141726, - 38.2279451900257 + 15.5667111973416, + 38.2272978880046 ] } }, { "type": "Feature", "properties": { - "stopId": 2010, - "stopCode": 2010, - "stopName": "Via Luigi Einaudi; 14 - Campo di Calcio UniMe", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Paradisiculo", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5516450730294, - 38.228587893149 + 15.5487431525653, + 38.1837201677864 ] } }, { "type": "Feature", "properties": { - "stopId": 2011, - "stopCode": 2011, - "stopName": "Viale Giovanni Palatucci; 13 - Palasport UniMe", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Parcheggio", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5511246624782, - 38.2273668931718 + 15.5222480968172, + 38.1404646435113 ] } }, { "type": "Feature", "properties": { - "stopId": 2012, - "stopCode": 2012, - "stopName": "Viale Giovanni Palatucci - Piscina UniMe", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Parcheggio", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5505615018964, - 38.2265378931965 + 15.5954968350768, + 38.2599952844516 ] } }, { "type": "Feature", "properties": { - "stopId": 1548, - "stopCode": 1548, - "stopName": "SP44 - 16", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Parcheggio", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.55660092821, - 38.2373999629309 + 15.5963912556376, + 38.261092093711 ] } }, { "type": "Feature", "properties": { - "stopId": 1547, - "stopCode": 1547, - "stopName": "SP44; Campo Italia comp. Italia", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Parcheggio ", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.554258024319, - 38.2387526335761 + 15.52299767718, + 38.1424864265657 ] } }, { "type": "Feature", "properties": { - "stopId": 1546, - "stopCode": 1546, - "stopName": "Sp44 - Campo Italia coop. Athena", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Parcheggio ", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5543009259139, - 38.2370999630317 + 15.5229955397395, + 38.1426383623931 ] } }, { "type": "Feature", "properties": { - "stopId": 1567, - "stopCode": 1567, - "stopName": "SP44 - Stada Militare per Campo Italia 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Parcheggio ", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5553231737986, - 38.2284974975231 + 15.5614281362812, + 38.2150594625209 ] } }, { "type": "Feature", "properties": { - "stopId": 1568, - "stopCode": 1568, - "stopName": "SP44; Stada Militare per Campo Italia 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Parcheggio ", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5540258372641, - 38.2280978587969 + 15.5647873276047, + 38.2164716912821 ] } }, { "type": "Feature", "properties": { - "stopId": 1569, - "stopCode": 1569, - "stopName": "SP44 - Stada Militare per Campo Italia 3", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Parcheggio ", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5542009255178, - 38.2269999630374 + 15.5972201293441, + 38.2600093562797 ] } }, { "type": "Feature", "properties": { - "stopId": 1570, - "stopCode": 1570, - "stopName": "SP44; via A. Giuffrè", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Parcheggio ", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5534338969617, - 38.2257600206016 + 15.5944201044567, + 38.2613357706196 ] } }, { "type": "Feature", "properties": { - "stopId": 1571, - "stopCode": 1571, - "stopName": "V.le Annunziata - scuola E. Vittorini", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Parcheggio ", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5533009245306, - 38.2237999630772 + 15.5953805658346, + 38.2616281692585 ] } }, { "type": "Feature", "properties": { - "stopId": 1576, - "stopCode": 1576, - "stopName": "Via Annunziata 101a; sc. Elementare", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Parcheggio Est Annunziata", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5539969293137, - 38.2221620391657 + 15.5647381966057, + 38.2164914544493 ] } }, { "type": "Feature", "properties": { - "stopId": 1577, - "stopCode": 1577, - "stopName": "Via Annunziata 85 - chiesa SS. Annunziata", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Parcheggio Scoperto", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5557009268289, - 38.2208999629725 + 15.5323374108358, + 38.1580815344948 ] } }, { "type": "Feature", "properties": { - "stopId": 1578, - "stopCode": 1578, - "stopName": "Via Annunziata 69", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Parisi ", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5572009282918, - 38.2198999629069 + 15.5536809003746, + 38.1976313516466 ] } }, { "type": "Feature", "properties": { - "stopId": 1562, - "stopCode": 1562, - "stopName": "V.le Annunziata - 44", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Parrello Domenico", + "category": "Vehicle Rep air Facility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.557900928977, - 38.2194999628761 + 15.5413842018938, + 38.1724737294983 ] } }, { "type": "Feature", "properties": { - "stopId": 887, - "stopCode": 887, - "stopName": "Via I Settembre; 105", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Parrocchia S. Paolino Vescovo", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5569727776785, - 38.1893820465044 + 15.5142304665746, + 38.119303734041 ] } }, { "type": "Feature", "properties": { - "stopId": 888, - "stopCode": 888, - "stopName": "Via I Settembre; Camera di Commercio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Parrocchia San Clemente", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5588727777838, - 38.1872773011004 + 15.5471625188375, + 38.1810827072526 ] } }, { "type": "Feature", "properties": { - "stopId": 579, - "stopCode": 579, - "stopName": "Piazza d'Armi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Parrocchia Santa Domenica", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5377135747717, - 38.1933293476983 + 15.523342648697, + 38.1380696134974 ] } }, { "type": "Feature", "properties": { - "stopId": 283, - "stopCode": 283, - "stopName": "Via Comunale Catarratti; via Militare", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Parrocchia Santa Maria Dell Arco", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5317009024482, - 38.1935999640152 + 15.5588422203104, + 38.2079888509677 ] } }, { "type": "Feature", "properties": { - "stopId": 284, - "stopCode": 284, - "stopName": "Via Comunale Catarratti; 12", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pasticceria Amgo", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5280008988682, - 38.193899964173 + 15.5526903581414, + 38.2093245830787 ] } }, { "type": "Feature", "properties": { - "stopId": 285, - "stopCode": 285, - "stopName": "Via Comunale Catarratti; 7", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pasticceria Benevento Luca", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5261008970358, - 38.1940999642538 + 15.5560250586855, + 38.2072119391802 ] } }, { "type": "Feature", "properties": { - "stopId": 286, - "stopCode": 286, - "stopName": "Via Comunale Catarratti; 46", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pasticceria Corio Giovanna", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.524600895624, - 38.1953999643173 + 15.5518202055753, + 38.2060606644145 ] } }, { "type": "Feature", "properties": { - "stopId": 287, - "stopCode": 287, - "stopName": "Catarratti; Chiesa Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pasticceria Cristo Re", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5239008949713, - 38.1961999643469 + 15.5477857590231, + 38.1965981299612 ] } }, { "type": "Feature", "properties": { - "stopId": 879, - "stopCode": 879, - "stopName": "Via San Raineri; fer. 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pasticceria Cristo Rè", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5642009342554, - 38.185299962603 + 15.5542473139064, + 38.1923588659488 ] } }, { "type": "Feature", "properties": { - "stopId": 880, - "stopCode": 880, - "stopName": "Via San Raineri; fer. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pasticceria Dolce Vita", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5687009389089, - 38.1899999624029 + 15.547225868541, + 38.1858273236771 ] } }, { "type": "Feature", "properties": { - "stopId": 881, - "stopCode": 881, - "stopName": "Via San Raineri; Base Militare", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pasticceria e Gelateria Vmci", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5717009420124, - 38.192799962269 + 15.5363177539268, + 38.212308885224 ] } }, { "type": "Feature", "properties": { - "stopId": 1880, - "stopCode": 1880, - "stopName": "Via San Raineri - fer. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pasticceria Fili De Grazia", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.568700938906, - 38.1898999624029 + 15.5540566718088, + 38.1929857515596 ] } }, { "type": "Feature", "properties": { - "stopId": 1879, - "stopCode": 1879, - "stopName": "Via San Raineri - fer. 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pasticceria Freni", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5642009342525, - 38.1851999626031 + 15.5290000702232, + 38.1530857088043 ] } }, { "type": "Feature", "properties": { - "stopId": 1283, - "stopCode": 1283, - "stopName": "Via Comunale Catarratti - via Militare", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pasticceria Giacobbe", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.531600902351, - 38.1935999640195 + 15.5444400956925, + 38.1723018662954 ] } }, { "type": "Feature", "properties": { - "stopId": 1282, - "stopCode": 1282, - "stopName": "Via Comunale Bisconte - ponte ferrovia", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pasticceria Giacobbe Giuseppe", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5322009029197, - 38.1930999639939 + 15.5417308076669, + 38.1809023618526 ] } }, { "type": "Feature", "properties": { - "stopId": 1281, - "stopCode": 1281, - "stopName": "Via Comunale Bisconte - via Caltanissetta", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pasticceria la Messina", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5332009038663, - 38.1921999639512 + 15.5981056169974, + 38.2548623001681 ] } }, { "type": "Feature", "properties": { - "stopId": 1013, - "stopCode": 1013, - "stopName": "Piazza Bisconte", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pasticceria la Messina", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5361009066711, - 38.1914999638269 + 15.5981155520614, + 38.2548703435025 ] } }, { "type": "Feature", "properties": { - "stopId": 281, - "stopCode": 281, - "stopName": "Via Comunale Bisconte; via Caltanissetta", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pasticceria Nuovo Millenium", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5333009039636, - 38.1921999639469 + 15.5668825506439, + 38.2275086162528 ] } }, { "type": "Feature", "properties": { - "stopId": 282, - "stopCode": 282, - "stopName": "Via Comunale Bisconte; ponte ferrovia", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pezzolo", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5323009030168, - 38.1930999639896 + 15.4570428700576, + 38.084508173838 ] } }, { "type": "Feature", "properties": { - "stopId": 1286, - "stopCode": 1286, - "stopName": "Via Comunale Catarratti - 46", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pezzolo", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5245008955275, - 38.1953999643216 + 15.4579083248927, + 38.0863795453371 ] } }, { "type": "Feature", "properties": { - "stopId": 1285, - "stopCode": 1285, - "stopName": "Via Comunale Catarratti - 7", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Piazza Antonello ", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.5260008969392, - 38.194099964258 + 15.5520318050327, + 38.1935960615345 ] } }, { "type": "Feature", "properties": { - "stopId": 1284, - "stopCode": 1284, - "stopName": "Via Comunale Catarratti - 12", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Piazza Duomo", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5279008987713, - 38.1938999641773 + 15.5514926137607, + 38.1923159910319 ] } }, { "type": "Feature", "properties": { - "stopId": 1115, - "stopCode": 1115, - "stopName": "Stadio Celeste", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Piazza Rodia", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5394886911805, - 38.1643147312638 + 15.4782309759018, + 38.2713816697789 ] } }, { "type": "Feature", "properties": { - "stopId": 197, - "stopCode": 197, - "stopName": "Via Socrate", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Piazza Salvatore Pugliatti", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5305237131303, - 38.1711431945237 + 15.5505981768952, + 38.1888220413543 ] } }, { "type": "Feature", "properties": { - "stopId": 198, - "stopCode": 198, - "stopName": "Via Socrate; bivio Sc. Minutoli", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Piazza San Francesco ", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5286612622811, - 38.1722936410019 + 15.5511126294387, + 38.1983210890024 ] } }, { "type": "Feature", "properties": { - "stopId": 173, - "stopCode": 173, - "stopName": "Case GESCAL; via 30 Q", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Piazza XXIV Maggio", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5263081979347, - 38.1728495195479 + 15.5520577268339, + 38.216353137301 ] } }, { "type": "Feature", "properties": { - "stopId": 174, - "stopCode": 174, - "stopName": "Case GESCAL; Strada 30 A", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Piemonte ", + "category": "Hospital/Polyclinic", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5238838888075, - 38.1724642803292 + 15.5428425365251, + 38.1819511905789 ] } }, { "type": "Feature", "properties": { - "stopId": 175, - "stopCode": 175, - "stopName": "Case GESCAL; St. 174 A inc. via C. Allegra", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Piemonte-Pronto Soccorso", + "category": "Hospital/Polyclinic", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5220008924817, - 38.1729999644305 + 15.5419383183289, + 38.1824227929121 ] } }, { "type": "Feature", "properties": { - "stopId": 176, - "stopCode": 176, - "stopName": "Case GESCAL; St. 174 A", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Piero", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5207008912202, - 38.1725999644855 + 15.5507309129945, + 38.185921688368 ] } }, { "type": "Feature", "properties": { - "stopId": 177, - "stopCode": 177, - "stopName": "Case GESCAL; via Comunale inc. via C. Gescal", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pim", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5197526242299, - 38.1719105105055 + 15.5454415824166, + 38.1799570557212 ] } }, { "type": "Feature", "properties": { - "stopId": 178, - "stopCode": 178, - "stopName": "Case GESCAL; via Comunale fer. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pisani Antonino i C. Dolciumi", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.517827724201, - 38.1710201617124 + 15.556149691802, + 38.1850293551115 ] } }, { "type": "Feature", "properties": { - "stopId": 179, - "stopCode": 179, - "stopName": "Case GESCAL; via Comunale fer. 3", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Piscina Comunale", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5186298243372, - 38.1704799348034 + 15.5461674863363, + 38.1772714023036 ] } }, { "type": "Feature", "properties": { - "stopId": 180, - "stopCode": 180, - "stopName": "Case GESCAL; inc. via C.da Baglio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pizza Planet", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5203338492517, - 38.1693084021368 + 15.5520276443369, + 38.1856298584609 ] } }, { "type": "Feature", "properties": { - "stopId": 181, - "stopCode": 181, - "stopName": "S. Filippo Statua S. Giovannelo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pizzeria la Scala", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.519080272475, - 38.1692689133648 + 15.4770638329308, + 38.2707944122356 ] } }, { "type": "Feature", "properties": { - "stopId": 182, - "stopCode": 182, - "stopName": "S. Filippo; bivio Piano Stella", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pizzeria-Ristorante Antica Torre", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5159008864398, - 38.1662999646887 + 15.4707971219192, + 38.2632367759774 ] } }, { "type": "Feature", "properties": { - "stopId": 186, - "stopCode": 186, - "stopName": "S. Filippo Sup.; fer. 1 Cimitero", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Pizzino Giuseppe", + "category": "Vehicle RepairFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.513882122733, - 38.1659569056208 + 15.5558505220916, + 38.204498080501 ] } }, { "type": "Feature", "properties": { - "stopId": 187, - "stopCode": 187, - "stopName": "S. Filippo Sup.; fer. 2 Cimitero", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Policlinico G. Martino", + "category": "ParkingGarage", + "type": "Enclosed_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5127371069172, - 38.1659115660759 + 15.5310220382563, + 38.1621939220323 ] } }, { "type": "Feature", "properties": { - "stopId": 188, - "stopCode": 188, - "stopName": "S. Filippo Sup.", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Policlinico Universitario ", + "category": "Hospital/Polyclinic", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5057354082564, - 38.1660701074623 + 15.5360198819712, + 38.1631759429653 ] } }, { "type": "Feature", "properties": { - "stopId": 189, - "stopCode": 189, - "stopName": "S. Filippo Sup.;", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Policlinico Universitario ", + "category": "Hospital", + "type": "Public_Buildings" }, "geometry": { "type": "Point", "coordinates": [ - 15.5039008750104, - 38.1657999651901 + 15.5343202057704, + 38.1638950099017 ] } }, { "type": "Feature", "properties": { - "stopId": 190, - "stopCode": 190, - "stopName": "S. Filippo Sup. - Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Policlinico Universitario-Pronto Soccorso", + "category": "Hospital/Polyclinic", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5012008724677, - 38.166099965302 + 15.536006247792, + 38.1631278964516 ] } }, { "type": "Feature", "properties": { - "stopId": 183, - "stopCode": 183, - "stopName": "S. Filippo; Piano Stella fer. 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Polisportiva Cristo Re", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.517850698315, - 38.1663683352785 + 15.5488802414793, + 38.1956835753523 ] } }, { "type": "Feature", "properties": { - "stopId": 184, - "stopCode": 184, - "stopName": "S. Filippo; Piano Stella fer. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Polizia Messina", + "category": "Police Station", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5188008892233, - 38.1664999645665 + 15.5543018360919, + 38.1994736073551 ] } }, { "type": "Feature", "properties": { - "stopId": 185, - "stopCode": 185, - "stopName": "S. Filippo; Piano Stella fer. 3", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Polizia Municipale", + "category": "Police Station", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5185485996101, - 38.1666905419208 + 15.558636013469, + 38.1860676206805 ] } }, { "type": "Feature", "properties": { - "stopId": 1184, - "stopCode": 1184, - "stopName": "S. Filippo - Piano Stella fer. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Polizia Via Gran Priorato", + "category": "Police Station", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5188008892204, - 38.1663999645665 + 15.5548601684854, + 38.199802104075 ] } }, { "type": "Feature", "properties": { - "stopId": 1183, - "stopCode": 1183, - "stopName": "S. Filippo - Piano Stella fer. 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Polizia Via Villari", + "category": "Police Station", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5181008885492, - 38.1663999645961 + 15.5469118801797, + 38.1841094630775 ] } }, { "type": "Feature", "properties": { - "stopId": 1182, - "stopCode": 1182, - "stopName": "S. Filippo - bivio Piano Stella", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Porta Messina ", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5160008865326, - 38.1661999646845 + 15.5600367225759, + 38.1872387612725 ] } }, { "type": "Feature", "properties": { - "stopId": 1189, - "stopCode": 1189, - "stopName": "S. Filippo Sup. -", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Portella", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5040008751021, - 38.1656999651861 + 15.5229214348579, + 38.2362486419056 ] } }, { "type": "Feature", "properties": { - "stopId": 1188, - "stopCode": 1188, - "stopName": "S. Filippo Sup.", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Porto di Messina", + "category": "Waterway Element", + "type": "WaterElements" }, "geometry": { "type": "Point", "coordinates": [ - 15.5054384410891, - 38.1660764339152 + 15.5605869461062, + 38.192887552887 ] } }, { "type": "Feature", "properties": { - "stopId": 1187, - "stopCode": 1187, - "stopName": "S. Filippo Sup. - fer. 2 Cimitero", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Porto di Messina", + "category": "Marina", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5126008832766, - 38.1658999648273 + 15.5559536566911, + 38.1992864030342 ] } }, { "type": "Feature", "properties": { - "stopId": 1186, - "stopCode": 1186, - "stopName": "S. Filippo Sup. - fer. 1 Cimitero", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Positano Calzature", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5140438136824, - 38.1657924176553 + 15.5480365275107, + 38.1838368209941 ] } }, { "type": "Feature", "properties": { - "stopId": 1181, - "stopCode": 1181, - "stopName": "S. Filippo Statua S. Giovannelo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5191339303927, - 38.1691951108147 + 15.4812481778183, + 38.0654340748823 ] } }, { "type": "Feature", "properties": { - "stopId": 1180, - "stopCode": 1180, - "stopName": "Case GESCAL - inc. via C.da Baglio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5204344321723, - 38.1692447776168 + 15.4988796543228, + 38.0898086059439 ] } }, { "type": "Feature", "properties": { - "stopId": 1179, - "stopCode": 1179, - "stopName": "Case GESCAL - via Comunale fer. 3", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5187800281645, - 38.1703725543563 + 15.4938790978558, + 38.0993558265261 ] } }, { "type": "Feature", "properties": { - "stopId": 1178, - "stopCode": 1178, - "stopName": "Case GESCAL - via Comunale fer. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5179008884847, - 38.1708999646039 + 15.4804060944635, + 38.099747764514 ] } }, { "type": "Feature", "properties": { - "stopId": 1177, - "stopCode": 1177, - "stopName": "Case GESCAL - via Comunale inc. via C. Gescal", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5199008904318, - 38.1718999645193 + 15.4778505980817, + 38.0998058090115 ] } }, { "type": "Feature", "properties": { - "stopId": 1176, - "stopCode": 1176, - "stopName": "Case GESCAL - St. 174 A", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5208008913163, - 38.1725999644812 + 15.477836439282, + 38.0998277352224 ] } }, { "type": "Feature", "properties": { - "stopId": 1175, - "stopCode": 1175, - "stopName": "Case GESCAL - St. 174 A inc. via C. Allegra", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5220289669278, - 38.1729296136889 + 15.5058229291182, + 38.1046806952259 ] } }, { "type": "Feature", "properties": { - "stopId": 1174, - "stopCode": 1174, - "stopName": "Case GESCAL - Strada 30 A", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5237986276806, - 38.1724176495992 + 15.5069661938676, + 38.120359418365 ] } }, { "type": "Feature", "properties": { - "stopId": 1173, - "stopCode": 1173, - "stopName": "Case GESCAL - via 30 Q", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5263955459897, - 38.1727147273558 + 15.5216622506855, + 38.1349998551296 ] } }, { "type": "Feature", "properties": { - "stopId": 618, - "stopCode": 618, - "stopName": "Casa Nostra; coop. Casa Nostra", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.539700910848, - 38.214299963669 + 15.5231248108434, + 38.1428628859608 ] } }, { "type": "Feature", "properties": { - "stopId": 619, - "stopCode": 619, - "stopName": "Casa Nostra; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5418009129676, - 38.2163999635781 + 15.5040769307913, + 38.1508359962462 ] } }, { "type": "Feature", "properties": { - "stopId": 610, - "stopCode": 610, - "stopName": "SP50 Torrente S. Michele", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5270069474506, - 38.2234933821207 + 15.5148486875379, + 38.1571500971878 ] } }, { "type": "Feature", "properties": { - "stopId": 611, - "stopCode": 611, - "stopName": "SP50 S. Michele; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.526520018026, - 38.2265020739081 + 15.5364438982218, + 38.1636867443388 ] } }, { "type": "Feature", "properties": { - "stopId": 2601, - "stopCode": 2601, - "stopName": "Chiesa di San Matteo Giostra", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5474250337492, - 38.2122197731205 + 15.538448522498, + 38.164307897899 ] } }, { "type": "Feature", "properties": { - "stopId": 922, - "stopCode": 922, - "stopName": "Via Auriga; 8", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5371009083104, - 38.2144999637809 + 15.4981765024459, + 38.1661129270624 ] } }, { "type": "Feature", "properties": { - "stopId": 923, - "stopCode": 923, - "stopName": "Piazza Argo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5350009062836, - 38.215299963871 + 15.5285102982343, + 38.1693436312997 ] } }, { "type": "Feature", "properties": { - "stopId": 924, - "stopCode": 924, - "stopName": "Via Polluce", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5343009056156, - 38.215799963901 + 15.5076322274087, + 38.1735544821034 ] } }, { "type": "Feature", "properties": { - "stopId": 1610, - "stopCode": 1610, - "stopName": "SP50 Torrente S. Michele", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5269272405689, - 38.2234810912792 + 15.5368109623125, + 38.1775195485284 ] } }, { "type": "Feature", "properties": { - "stopId": 1609, - "stopCode": 1609, - "stopName": "Viale Giostra - chiesa di S. Michele", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5277948782228, - 38.2217178781701 + 15.5454917528117, + 38.1800652520008 ] } }, { "type": "Feature", "properties": { - "stopId": 847, - "stopCode": 847, - "stopName": "St. Panoramica dello Stretto; v.le dei Tigli", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5638009348733, - 38.2195999626161 + 15.5502193817112, + 38.1832202513004 ] } }, { "type": "Feature", "properties": { - "stopId": 848, - "stopCode": 848, - "stopName": "St. Panoramica dello Stretto; Eden Park", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5646418579424, - 38.2230941650246 + 15.5478520689603, + 38.1835070745322 ] } }, { "type": "Feature", "properties": { - "stopId": 849, - "stopCode": 849, - "stopName": "St. Panoramica dello Stretto; 574", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5647123490706, - 38.22530417955 + 15.5560996734756, + 38.1843683543239 ] } }, { "type": "Feature", "properties": { - "stopId": 850, - "stopCode": 850, - "stopName": "St. Panoramica dello Stretto; Parnaso", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5657002801544, - 38.2263578239359 + 15.5517538902762, + 38.1860094436564 ] } }, { "type": "Feature", "properties": { - "stopId": 851, - "stopCode": 851, - "stopName": "St. Panoramica dello Stretto; Linea Verde 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5665579485365, - 38.2274952244383 + 15.5460066322355, + 38.1865823516776 ] } }, { "type": "Feature", "properties": { - "stopId": 852, - "stopCode": 852, - "stopName": "St. Panoramica dello Stretto; Linea Verde 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5682411864788, - 38.2292946977354 + 15.5539161761393, + 38.1919934456465 ] } }, { "type": "Feature", "properties": { - "stopId": 853, - "stopCode": 853, - "stopName": "St. Panoramica dello Stretto; Rialto Azzurro", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5683108625256, - 38.2310033773981 + 15.5402448528466, + 38.193482947644 ] } }, { "type": "Feature", "properties": { - "stopId": 854, - "stopCode": 854, - "stopName": "St. Panoramica dello Stretto; Km 2;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5699563515435, - 38.232876061428 + 15.5529227566323, + 38.1951576784239 ] } }, { "type": "Feature", "properties": { - "stopId": 855, - "stopCode": 855, - "stopName": "St. Panoramica dello Stretto; Km 2;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5721163801737, - 38.2364810040434 + 15.5217342684141, + 38.196041419787 ] } }, { "type": "Feature", "properties": { - "stopId": 856, - "stopCode": 856, - "stopName": "St. Panoramica dello Stretto; Cimitero", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5756198822889, - 38.2390728868372 + 15.5450292317644, + 38.1981296887041 ] } }, { "type": "Feature", "properties": { - "stopId": 857, - "stopCode": 857, - "stopName": "St. Panoramica dello Stretto; Parcheggio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5784411971688, - 38.2416788984938 + 15.5556379195952, + 38.201262228081 ] } }, { "type": "Feature", "properties": { - "stopId": 858, - "stopCode": 858, - "stopName": "St. Panoramica dello Stretto Km 4;400", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5829927467971, - 38.2483211845027 + 15.5556085014618, + 38.2023836938768 ] } }, { "type": "Feature", "properties": { - "stopId": 2858, - "stopCode": 2858, - "stopName": "Strada Panoramica dello Stretto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5904113717462, - 38.2517485391861 + 15.5541316337571, + 38.2038992464758 ] } }, { "type": "Feature", "properties": { - "stopId": 2856, - "stopCode": 2856, - "stopName": "Strada Panoramica dello Stretto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5933564811451, - 38.2525868633226 + 15.5484912115885, + 38.2076805091117 ] } }, { "type": "Feature", "properties": { - "stopId": 2855, - "stopCode": 2855, - "stopName": "Strada Panoramica dello Stretto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5974213320309, - 38.2556965987976 + 15.5464559571455, + 38.2115346182127 ] } }, { "type": "Feature", "properties": { - "stopId": 859, - "stopCode": 859, - "stopName": "St. Panoramica dello Stretto Km 6;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5986350217087, - 38.2580215546857 + 15.5602957487013, + 38.2141004995586 ] } }, { "type": "Feature", "properties": { - "stopId": 867, - "stopCode": 867, - "stopName": "Viale Stagno D'Alcontres", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.602553204704, - 38.2593531430312 + 15.5561855903826, + 38.2143151823962 ] } }, { "type": "Feature", "properties": { - "stopId": 866, - "stopCode": 866, - "stopName": "Viale Stagno D'Alcontres; ponte SP", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.6015052588171, - 38.2602371973255 + 15.5660858561834, + 38.2265752141327 ] } }, { "type": "Feature", "properties": { - "stopId": 863, - "stopCode": 863, - "stopName": "Viale Stagno D'Alcontres; via Archimede", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5996439017424, - 38.2612641985757 + 15.4667625177325, + 38.2336445803759 ] } }, { "type": "Feature", "properties": { - "stopId": 864, - "stopCode": 864, - "stopName": "Viale Stagno D'Alcontres; Eliporto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.598100971077, - 38.2618999610667 + 15.5715707941766, + 38.2362904845159 ] } }, { "type": "Feature", "properties": { - "stopId": 865, - "stopCode": 865, - "stopName": "Viale Stagno D'Alcontres; Papardo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5962039474017, - 38.2622920118844 + 15.6027729369969, + 38.2568604764371 ] } }, { "type": "Feature", "properties": { - "stopId": 1864, - "stopCode": 1864, - "stopName": "Viale Stagno D'Alcontres - Eliporto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5980009709673, - 38.2616999610713 + 15.6050308975292, + 38.2603438460028 ] } }, { "type": "Feature", "properties": { - "stopId": 1863, - "stopCode": 1863, - "stopName": "Viale Stagno D'Alcontres - via Archimede", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5996009726059, - 38.261099960998 + 15.5810589897813, + 38.2613071603817 ] } }, { "type": "Feature", "properties": { - "stopId": 1866, - "stopCode": 1866, - "stopName": "Viale Stagno D'Alcontres - ponte SP", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.6013009743415, - 38.26019996092 + 15.6380913465091, + 38.265410057506 ] } }, { "type": "Feature", "properties": { - "stopId": 1867, - "stopCode": 1867, - "stopName": "Viale Stagno D'Alcontres", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.6023687149382, - 38.2593115472945 + 15.5365587419603, + 38.2740410947826 ] } }, { "type": "Feature", "properties": { - "stopId": 1859, - "stopCode": 1859, - "stopName": "St. Panoramica dello Stretto Km 6;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5984415809566, - 38.2580736847202 + 15.4872958749509, + 38.2755946355105 ] } }, { "type": "Feature", "properties": { - "stopId": 2854, - "stopCode": 2854, - "stopName": "Strada Panoramica dello Stretto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5972201799214, - 38.2558019124727 + 15.5419649943043, + 38.2954818362181 ] } }, { "type": "Feature", "properties": { - "stopId": 2857, - "stopCode": 2857, - "stopName": "Strada Panoramica dello Stretto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane AJtolia", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.59051062732, - 38.2520097268515 + 15.4449630795077, + 38.0762148018869 ] } }, { "type": "Feature", "properties": { - "stopId": 1858, - "stopCode": 1858, - "stopName": "St. Panoramica dello Stretto Km 4 -400", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane Bordonaro ", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.582868023971, - 38.248452569909 + 15.5114891224544, + 38.176313534904 ] } }, { "type": "Feature", "properties": { - "stopId": 1857, - "stopCode": 1857, - "stopName": "St. Panoramica dello Stretto - Parcheggio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane Camaro", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5782009500581, - 38.2416999619717 + 15.5328599977137, + 38.1870256872042 ] } }, { "type": "Feature", "properties": { - "stopId": 1856, - "stopCode": 1856, - "stopName": "St. Panoramica dello Stretto - Cimitero", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane Castanea delle Furie", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5754397343127, - 38.239175522513 + 15.5188365101868, + 38.2629819710939 ] } }, { "type": "Feature", "properties": { - "stopId": 1855, - "stopCode": 1855, - "stopName": "St. Panoramica dello Stretto - Km 2 -500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane Galati Marina", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5719492370641, - 38.2365799506905 + 15.5058470015941, + 38.1046698116347 ] } }, { "type": "Feature", "properties": { - "stopId": 1854, - "stopCode": 1854, - "stopName": "St. Panoramica dello Stretto - Km 2 -200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane Giampilieri", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.569700941196, - 38.2328999623527 + 15.4701153074682, + 38.0671704899878 ] } }, { "type": "Feature", "properties": { - "stopId": 1853, - "stopCode": 1853, - "stopName": "St. Panoramica dello Stretto - Rialto Azzurro", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane Larderia", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5682572015429, - 38.2309653967668 + 15.5001254033402, + 38.1409580674734 ] } }, { "type": "Feature", "properties": { - "stopId": 1852, - "stopCode": 1852, - "stopName": "St. Panoramica dello Stretto - Linea Verde 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane Messina 10", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5681693495977, - 38.2292962779768 + 15.5477641593661, + 38.1745748256955 ] } }, { "type": "Feature", "properties": { - "stopId": 1851, - "stopCode": 1851, - "stopName": "St. Panoramica dello Stretto; Linea Verde 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane Messina 15", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5664909069834, - 38.2275605453106 + 15.5481988303954, + 38.2330011802346 ] } }, { "type": "Feature", "properties": { - "stopId": 1850, - "stopCode": 1850, - "stopName": "St. Panoramica dello Stretto - Parnaso", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane Messina 2", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5655979331521, - 38.2264107640339 + 15.5556103498961, + 38.2024036954879 ] } }, { "type": "Feature", "properties": { - "stopId": 1849, - "stopCode": 1849, - "stopName": "St. Panoramica dello Stretto - 574", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane Messina 4", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5646009358442, - 38.2252999625799 + 15.5470748734781, + 38.1899611531381 ] } }, { "type": "Feature", "properties": { - "stopId": 1848, - "stopCode": 1848, - "stopName": "St. Panoramica dello Stretto; Eden Park", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane Messina 8", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5645721341744, - 38.2231324771145 + 15.5600678823454, + 38.2136945756344 ] } }, { "type": "Feature", "properties": { - "stopId": 1847, - "stopCode": 1847, - "stopName": "St. Panoramica dello Stretto - v.le dei Tigli", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane Messina Pistunina", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5636949894548, - 38.21964121152 + 15.5236901136837, + 38.1442630297701 ] } }, { "type": "Feature", "properties": { - "stopId": 1554, - "stopCode": 1554, - "stopName": "V.le della Libertà; San Francesco", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane Mili Marina", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5609200948653, - 38.2086892178905 + 15.5120076379096, + 38.1151128485129 ] } }, { "type": "Feature", "properties": { - "stopId": 2003, - "stopCode": 2003, - "stopName": "Parcheggio Torri Morandi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane Pezzolo", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6459153018919, - 38.26896348882 + 15.4567876699103, + 38.0839801838547 ] } }, { "type": "Feature", "properties": { - "stopId": 2004, - "stopCode": 2004, - "stopName": "Torre Faro - Pilone", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane Scala Ritiro", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6501136163418, - 38.2659164986179 + 15.5357669484075, + 38.2125752126171 ] } }, { "type": "Feature", "properties": { - "stopId": 2005, - "stopCode": 2005, - "stopName": "Torre Faro - Horcynus Orca", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste Italiane Torrefaro", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6516113580396, - 38.2680960985451 + 15.6354253642325, + 38.2661912911977 ] } }, { "type": "Feature", "properties": { - "stopId": 1001, - "stopCode": 1001, - "stopName": "A.O.U. Policlinico - Padiglione L", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste ltaliane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5371009067959, - 38.1619999637878 + 15.554778510571, + 38.1819220376983 ] } }, { "type": "Feature", "properties": { - "stopId": 1002, - "stopCode": 1002, - "stopName": "A.O.U. Policlinico - Padiglione B-A (ex Bar)", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste ltaliane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5381606428456, - 38.1650431978172 + 15.5188546535942, + 38.2629620630972 ] } }, { "type": "Feature", "properties": { - "stopId": 1003, - "stopCode": 1003, - "stopName": "A.O.U. Policlinico - Padiglione A-F", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste ttaliane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5379009076834, - 38.1656999637529 + 15.4701311594334, + 38.0671895566256 ] } }, { "type": "Feature", "properties": { - "stopId": 1004, - "stopCode": 1004, - "stopName": "A.O.U. Policlinico - Pronto Soccorso Ginecologico", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste ttaliane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5370009067849, - 38.1649999637918 + 15.5478612814565, + 38.1746872396905 ] } }, { "type": "Feature", "properties": { - "stopId": 1005, - "stopCode": 1005, - "stopName": "A.O.U. Policlinico - Padiglione B", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Poste ttaliane", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.537000906759, - 38.1640999637919 + 15.5462896466696, + 38.175645549138 ] } }, { "type": "Feature", "properties": { - "stopId": 1006, - "stopCode": 1006, - "stopName": "A.O.U. Policlinico - Padiglione F", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Prestige", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5370009068167, - 38.1660999637916 + 15.5511241118558, + 38.1826806743902 ] } }, { "type": "Feature", "properties": { - "stopId": 1007, - "stopCode": 1007, - "stopName": "A.O.U. Policlinico - Padiglione C", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Princi Dr. Gianluca", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5362009060481, - 38.1664999638259 + 15.5479684211302, + 38.1810574865142 ] } }, { "type": "Feature", "properties": { - "stopId": 1008, - "stopCode": 1008, - "stopName": "A.O.U. Policlinico - Padiglione D", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Principe", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5352009050796, - 38.1666999638688 + 15.5509039153808, + 38.2304707430661 ] } }, { "type": "Feature", "properties": { - "stopId": 1009, - "stopCode": 1009, - "stopName": "A.O.U. Policlinico - Padiglione G-H", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Principe Umberto", + "category": "HotelorMotel", + "type": "Hotel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5347009045208, - 38.1641999638906 + 15.5450062578848, + 38.1944009020272 ] } }, { "type": "Feature", "properties": { - "stopId": 1010, - "stopCode": 1010, - "stopName": "Aulario", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Principe Umberto", + "category": "Guest House", + "type": "Hotel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5315009014853, - 38.1667999640272 + 15.5450082567408, + 38.1944009110709 ] } }, { "type": "Feature", "properties": { - "stopId": 1011, - "stopCode": 1011, - "stopName": "Centro Congressi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Progresso", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.53030090033, - 38.1670999640785 + 15.5552753870249, + 38.1871085304859 ] } }, { "type": "Feature", "properties": { - "stopId": 1012, - "stopCode": 1012, - "stopName": "CLOPD", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Punto G", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5286008986975, - 38.1675999641509 + 15.5518356090991, + 38.1879071544653 ] } }, { "type": "Feature", "properties": { - "stopId": 770, - "stopCode": 770, - "stopName": "Mortelle; Strada Statale 113; Km. 11;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Q8", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6334522081466, - 38.269193545921 + 15.4929378802859, + 38.0776222463189 ] } }, { "type": "Feature", "properties": { - "stopId": 771, - "stopCode": 771, - "stopName": "Mortelle; Strada Statale 113; Villa Regina", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Q8", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6329455058289, - 38.2706398785173 + 15.4981752400008, + 38.0864195344352 ] } }, { "type": "Feature", "properties": { - "stopId": 772, - "stopCode": 772, - "stopName": "Mortelle; Strada Statale 113; Lido Mortelle", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Q8", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6293013531624, - 38.2713031210686 + 15.5014591457562, + 38.0945669425 ] } }, { "type": "Feature", "properties": { - "stopId": 773, - "stopCode": 773, - "stopName": "Mortelle; Strada Statale 113 n. 33", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Q8", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.627302155393, - 38.2714007658291 + 15.5301496224428, + 38.1552243221301 ] } }, { "type": "Feature", "properties": { - "stopId": 774, - "stopCode": 774, - "stopName": "Mortelle; Strada Statale 113; Lido Delfino", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Q8", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6237943065112, - 38.2712299698865 + 15.5371465012596, + 38.1647726439379 ] } }, { "type": "Feature", "properties": { - "stopId": 775, - "stopCode": 775, - "stopName": "Mortelle; Strada Statale 113 n. 75a", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Q8", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6212009955307, - 38.2710999599943 + 15.5772702332764, + 38.2410125235043 ] } }, { "type": "Feature", "properties": { - "stopId": 776, - "stopCode": 776, - "stopName": "Mortelle; Strada Statale 113 n. 42", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Q8", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6186003359817, - 38.2710057537998 + 15.5992124012323, + 38.2555032630493 ] } }, { "type": "Feature", "properties": { - "stopId": 777, - "stopCode": 777, - "stopName": "Mortelle; Strada Statale 113; Spiaggia D'Oro", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Q8", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6145896904208, - 38.2708503416566 + 15.4795244257177, + 38.269402444937 ] } }, { "type": "Feature", "properties": { - "stopId": 778, - "stopCode": 778, - "stopName": "Timpazzi; Strada Statale 113; Km 13;400", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Qui", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.6112090505079, - 38.2708252326291 + 15.5461073045427, + 38.1727687158916 ] } }, { "type": "Feature", "properties": { - "stopId": 779, - "stopCode": 779, - "stopName": "Timpazzi; Strada Statale 113; Km 13;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Qui Conviene", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.6050044533786, - 38.2716144406285 + 15.6342636960328, + 38.265006253699 ] } }, { "type": "Feature", "properties": { - "stopId": 780, - "stopCode": 780, - "stopName": "Timpazzi; Strada Statale 113; Km 14;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Raffa e Marchese", + "category": "Automobile Dealership", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6015942832496, - 38.2721715361956 + 15.4487401113713, + 38.242554948194 ] } }, { "type": "Feature", "properties": { - "stopId": 781, - "stopCode": 781, - "stopName": "Timpazzi; Strada Statale 113; Km 14;600", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Raffaele Giovanni", + "category": "Vehicle RepairFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5967905796265, - 38.2733746811637 + 15.5509071944913, + 38.1913345992228 ] } }, { "type": "Feature", "properties": { - "stopId": 782, - "stopCode": 782, - "stopName": "Timpazzi; Strada Statale 113; Km 14;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ragno Emanuele e Stellario", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.592777148063, - 38.2748526859848 + 15.5514099188033, + 38.2071823476245 ] } }, { "type": "Feature", "properties": { - "stopId": 783, - "stopCode": 783, - "stopName": "Casa Bianca; Strada Statale 113; Km 15;150", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Residence San Martino", + "category": "Guest House", + "type": "Hotel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5885996344045, - 38.2770962794895 + 15.5466132652248, + 38.1782121538543 ] } }, { "type": "Feature", "properties": { - "stopId": 784, - "stopCode": 784, - "stopName": "Casa Bianca; Strada Statale 113; Km 15;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Residenza Annunziata", + "category": "Guest House", + "type": "Hotel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5853009583978, - 38.278099961647 + 15.5527213286439, + 38.2212934983392 ] } }, { "type": "Feature", "properties": { - "stopId": 785, - "stopCode": 785, - "stopName": "Tono; Strada Statale 113; Km 15; 950", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ridi", + "category": "Vehicle Rep air Facility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5805009535624, - 38.2802999618632 + 15.5490430384077, + 38.1793261254336 ] } }, { "type": "Feature", "properties": { - "stopId": 786, - "stopCode": 786, - "stopName": "Tono; Strada Statale 113; Km 16;600", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ristorante Sporting", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5765057911635, - 38.2823026407665 + 15.6223674416745, + 38.2716791805401 ] } }, { "type": "Feature", "properties": { - "stopId": 787, - "stopCode": 787, - "stopName": "Tono; Strada Statale 113; Km 16;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ritrovo Christian", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5742009472779, - 38.2841999621452 + 15.5308050171623, + 38.1526063182449 ] } }, { "type": "Feature", "properties": { - "stopId": 788, - "stopCode": 788, - "stopName": "Tono; Strada Statale 113; bivio Faro Sup.", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ritrovo dello Stretto", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5708306779688, - 38.2839658660299 + 15.5589034131099, + 38.2106202091314 ] } }, { "type": "Feature", "properties": { - "stopId": 789, - "stopCode": 789, - "stopName": "Tono; Strada Statale 113; Km 17;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ritrovo Extra", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5690989442827, - 38.2858962808031 + 15.5526634955081, + 38.1826898729333 ] } }, { "type": "Feature", "properties": { - "stopId": 790, - "stopCode": 790, - "stopName": "Tono; Strada Statale 113; Torr. Mezzana", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ritrovo il Vero Kebab Lucas", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5632009363716, - 38.2903999626333 + 15.554559988162, + 38.1922543653737 ] } }, { "type": "Feature", "properties": { - "stopId": 791, - "stopCode": 791, - "stopName": "Piano Rocca; SS113; bivio Acqualadrone", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ritrovo la Scala ", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5552501313861, - 38.2915485045078 + 15.4779713622207, + 38.2712105153963 ] } }, { "type": "Feature", "properties": { - "stopId": 843, - "stopCode": 843, - "stopName": "Aqualadrone; via Lungomare n. 13", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ritrovo Oasi 2000", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.555500928847, - 38.2962999629714 + 15.4767798750786, + 38.2706701265134 ] } }, { "type": "Feature", "properties": { - "stopId": 844, - "stopCode": 844, - "stopName": "Aqualadrone; via Lungomare n. 189", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ritrovo Terzo Tempo", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5538009271986, - 38.2977999630456 + 15.5973694973224, + 38.2615455206204 ] } }, { "type": "Feature", "properties": { - "stopId": 845, - "stopCode": 845, - "stopName": "Aqualadrone; via Lungomare n. 249", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Rizzo", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5521009255379, - 38.2987999631198 + 15.5560809149789, + 38.2130801287643 ] } }, { "type": "Feature", "properties": { - "stopId": 846, - "stopCode": 846, - "stopName": "Aqualadrone; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Robert Due", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5501009235823, - 38.299799963207 + 15.5522568711855, + 38.1891836747009 ] } }, { "type": "Feature", "properties": { - "stopId": 1844, - "stopCode": 1844, - "stopName": "Aqualadrone - via Lungomare n. 189", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Rodia", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5538009271956, - 38.2976999630457 + 15.4785536377762, + 38.2684932236841 ] } }, { "type": "Feature", "properties": { - "stopId": 1791, - "stopCode": 1791, - "stopName": "Piano Rocca - SS113 - bivio Acqualadrone", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Rodia", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5548822452321, - 38.2916178510382 + 15.4773304210254, + 38.2693215826669 ] } }, { "type": "Feature", "properties": { - "stopId": 1790, - "stopCode": 1790, - "stopName": "Tono - Strada Statale 113 - Torr. Mezzana", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Rosselli Dr. Antonella", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5631009362713, - 38.2903999626377 + 15.5424801146711, + 38.2059829751637 ] } }, { "type": "Feature", "properties": { - "stopId": 1789, - "stopCode": 1789, - "stopName": "Tono - Strada Statale 113 - Km 17 -200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Rossopomodoro", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5690009420721, - 38.2858999623768 + 15.5287545365861, + 38.1525017692956 ] } }, { "type": "Feature", "properties": { - "stopId": 1788, - "stopCode": 1788, - "stopName": "Tono - Strada Statale 113 - bivio Faro Sup.", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Royal Palace Hotel", + "category": "HotelorMotel", + "type": "Hotel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5706995565239, - 38.2838838823319 + 15.556635867656, + 38.1847167406502 ] } }, { "type": "Feature", "properties": { - "stopId": 1873, - "stopCode": 1873, - "stopName": "Strada Provinciale 49", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "S. Cuore", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5758009486449, - 38.2756999620748 + 15.5460170780067, + 38.1907829129353 ] } }, { "type": "Feature", "properties": { - "stopId": 1872, - "stopCode": 1872, - "stopName": "Strada Provinciale 49", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "S. Francesco e Immacolata ", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.5766009494328, - 38.2748999620391 + 15.5513595899154, + 38.1979153882233 ] } }, { "type": "Feature", "properties": { - "stopId": 1871, - "stopCode": 1871, - "stopName": "Strada Provinciale 49", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "S. M. Gallo", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5817009545198, - 38.2714999618104 + 15.5538682175172, + 38.1824036097927 ] } }, { "type": "Feature", "properties": { - "stopId": 1870, - "stopCode": 1870, - "stopName": "Faro Superiore - V.le Regina Elena", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "S. Maria Annunziata e S. Giuseppe", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5816009543543, - 38.2693999618152 + 15.5342238841972, + 38.1916354306246 ] } }, { "type": "Feature", "properties": { - "stopId": 1869, - "stopCode": 1869, - "stopName": "Faro Superiore - Via Belvedere; 40", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "S. Maria di Porto Salvo dei Marinai", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5818009544827, - 38.2668999618065 + 15.5526451169169, + 38.2027077105189 ] } }, { "type": "Feature", "properties": { - "stopId": 712, - "stopCode": 712, - "stopName": "Faro Superiore; piazza S. Rocco", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "S.e.b.a.r.", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5832412051751, - 38.2648139193101 + 15.5389818581961, + 38.1681030449771 ] } }, { "type": "Feature", "properties": { - "stopId": 711, - "stopCode": 711, - "stopName": "Faro Superiore; Via Messina n.16", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "S.e.b.a.r.", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5835009560875, - 38.2625999617304 + 15.547160333123, + 38.1985475131072 ] } }, { "type": "Feature", "properties": { - "stopId": 1710, - "stopCode": 1710, - "stopName": "Faro Superiore - Via Messina n.4", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Sacca Dr. Felice", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5841009566428, - 38.2606999617036 + 15.5392487182491, + 38.1686421015563 ] } }, { "type": "Feature", "properties": { - "stopId": 1709, - "stopCode": 1709, - "stopName": "SP45 - Faro Superiore Km 2 -200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "San Luca Evangelista", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5871009596576, - 38.2588999615682 + 15.5542293413969, + 38.2041995981704 ] } }, { "type": "Feature", "properties": { - "stopId": 1708, - "stopCode": 1708, - "stopName": "SP45 - Faro Superiore n. 33", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "San Martino", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.592900965573, - 38.2574999613049 + 15.5491475131109, + 38.1801903083163 ] } }, { "type": "Feature", "properties": { - "stopId": 1707, - "stopCode": 1707, - "stopName": "SP45 - Faro Superiore Lam 85", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "San Michele", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5967009694752, - 38.2568999611314 + 15.5247569998802, + 38.2249252733946 ] } }, { "type": "Feature", "properties": { - "stopId": 1706, - "stopCode": 1706, - "stopName": "Torrente Guardia - fer. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "San Michele", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5867009590169, - 38.2512999615873 + 15.5246746462386, + 38.2249429810459 ] } }, { "type": "Feature", "properties": { - "stopId": 1705, - "stopCode": 1705, - "stopName": "Torrente Guardia - fer. 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "San Nicolò", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5876009599387, - 38.2512999615466 + 15.5501765540494, + 38.1813347179072 ] } }, { "type": "Feature", "properties": { - "stopId": 690, - "stopCode": 690, - "stopName": "Ponte Gallo; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "San Saba", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.4503008276426, - 38.245499967344 + 15.4951979283353, + 38.281434574875 ] } }, { "type": "Feature", "properties": { - "stopId": 636, - "stopCode": 636, - "stopName": "Via Palermo; 690", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "San Saba", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5375009086609, - 38.2130999637638 + 15.495960054318, + 38.2822132780008 ] } }, { "type": "Feature", "properties": { - "stopId": 637, - "stopCode": 637, - "stopName": "Via Palermo; 587", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Sant'Agata ", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5354932367936, - 38.2134705172936 + 15.5979732772625, + 38.2547807081264 ] } }, { "type": "Feature", "properties": { - "stopId": 638, - "stopCode": 638, - "stopName": "Via Palermo; 754", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Sant'Agata ", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5320545612505, - 38.2131863722861 + 15.5983974565039, + 38.2548382362821 ] } }, { "type": "Feature", "properties": { - "stopId": 639, - "stopCode": 639, - "stopName": "Via Palermo; 731", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santa Caterina", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.528322953186, - 38.2123547612796 + 15.5538443431415, + 38.1878475741956 ] } }, { "type": "Feature", "properties": { - "stopId": 640, - "stopCode": 640, - "stopName": "Via Palermo; 846", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santa Lucia ", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5264475570369, - 38.2111934168973 + 15.5168754015656, + 38.1556039149861 ] } }, { "type": "Feature", "properties": { - "stopId": 641, - "stopCode": 641, - "stopName": "SS113; 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santa Lucia ", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5259338558176, - 38.2095031904849 + 15.5175951447394, + 38.1562902454127 ] } }, { "type": "Feature", "properties": { - "stopId": 642, - "stopCode": 642, - "stopName": "SS113; 906", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santa Margherita", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5246009333896, - 38.207593059045 + 15.4940635571128, + 38.0991517609595 ] } }, { "type": "Feature", "properties": { - "stopId": 643, - "stopCode": 643, - "stopName": "SS113; bivio Noviziato Casazza", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santa Margherita ", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5228008941124, - 38.2032999643926 + 15.4937191311871, + 38.0991252315973 ] } }, { "type": "Feature", "properties": { - "stopId": 644, - "stopCode": 644, - "stopName": "SS113; Centro Neurolesi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santa Maria di Gesu", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.520029739002, - 38.2066115592912 + 15.5406825399277, + 38.1712628771498 ] } }, { "type": "Feature", "properties": { - "stopId": 645, - "stopCode": 645, - "stopName": "SS113; Centro Neurolesi Ospes", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santa Maria di Gesu", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5176511959275, - 38.2077089250744 + 15.5546718781169, + 38.2066348090383 ] } }, { "type": "Feature", "properties": { - "stopId": 646, - "stopCode": 646, - "stopName": "SS113; Quattro Strade", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santa Maria di Pompei", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5060008783907, - 38.2156999650964 + 15.5498628514198, + 38.2002135709614 ] } }, { "type": "Feature", "properties": { - "stopId": 647, - "stopCode": 647, - "stopName": "SS113; Locanda 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santa Maria di Pompei ", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.4978055786246, - 38.2294957542253 + 15.5497179156363, + 38.2003448461077 ] } }, { "type": "Feature", "properties": { - "stopId": 648, - "stopCode": 648, - "stopName": "SS113; Locanda 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santa Maria di Porto Salvo", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4959074044656, - 38.230016767886 + 15.5580709116482, + 38.2042085749213 ] } }, { "type": "Feature", "properties": { - "stopId": 649, - "stopCode": 649, - "stopName": "SS113; Locanda 3", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santa Maria la Nuova", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.4933538880386, - 38.2306463736672 + 15.5495379726273, + 38.2034059210728 ] } }, { "type": "Feature", "properties": { - "stopId": 650, - "stopCode": 650, - "stopName": "SS113; Locanda 4", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santa Maria la Nuova ", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4893008630643, - 38.2304999657834 + 15.5496139362862, + 38.2034072761857 ] } }, { "type": "Feature", "properties": { - "stopId": 651, - "stopCode": 651, - "stopName": "SS113; Locanda 5", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santi Pietro e Paolo", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4847008587773, - 38.230699965971 + 15.5448799877115, + 38.1714034586257 ] } }, { "type": "Feature", "properties": { - "stopId": 652, - "stopCode": 652, - "stopName": "SS113; Locanda 6", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santo Nicola", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4811988576026, - 38.2305820598082 + 15.5374766039729, + 38.1667424880309 ] } }, { "type": "Feature", "properties": { - "stopId": 653, - "stopCode": 653, - "stopName": "Vill. Gesso; Cimitero", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santo Stefano di Briga", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.4770988332164, - 38.2320920843373 + 15.4776654231924, + 38.0994370770836 ] } }, { "type": "Feature", "properties": { - "stopId": 654, - "stopCode": 654, - "stopName": "Vill. Gesso; c.da Castello", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santo Stefano di Briga", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.4750021443604, - 38.232685596872 + 15.4784785982174, + 38.1001720298695 ] } }, { "type": "Feature", "properties": { - "stopId": 655, - "stopCode": 655, - "stopName": "Vill. Gesso; p.zza Castello", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santo Stefano Mezzano", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.4717048056818, - 38.2336049684041 + 15.4851374115725, + 38.1014792369546 ] } }, { "type": "Feature", "properties": { - "stopId": 656, - "stopCode": 656, - "stopName": "Vill. Gesso; Belvedere", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santo Stefano Mezzano", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.4693303626986, - 38.2341147172397 + 15.484499524365, + 38.1020449042308 ] } }, { "type": "Feature", "properties": { - "stopId": 657, - "stopCode": 657, - "stopName": "Vill. Gesso; 37", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santuario Montalto", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.4686206390679, - 38.2351037782125 + 15.5484940422876, + 38.1933326003828 ] } }, { "type": "Feature", "properties": { - "stopId": 658, - "stopCode": 658, - "stopName": "Gesso; p.zza S. Antonio Abate; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santuario S. Antonio", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.4680008434999, - 38.236399966644 + 15.5484396673724, + 38.183532814059 ] } }, { "type": "Feature", "properties": { - "stopId": 1657, - "stopCode": 1657, - "stopName": "Vill. Gesso - 37", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Santuario S. Maria di Montaìto", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4685606280948, - 38.235119984106 + 15.5482328130618, + 38.1933753627309 ] } }, { "type": "Feature", "properties": { - "stopId": 1656, - "stopCode": 1656, - "stopName": "Vill. Gesso; Belvedere", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Sant’Elia ", + "category": "HotelorMotel", + "type": "Hotel" }, "geometry": { "type": "Point", "coordinates": [ - 15.4692738676207, - 38.2341270660054 + 15.5558029011296, + 38.1883465613212 ] } }, { "type": "Feature", "properties": { - "stopId": 1655, - "stopCode": 1655, - "stopName": "Vill. Gesso - p.zza Castello", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Sapore Divino ", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4716270120336, - 38.2335931219426 + 15.6313568909821, + 38.2620616423436 ] } }, { "type": "Feature", "properties": { - "stopId": 1654, - "stopCode": 1654, - "stopName": "Vill. Gesso; c.da Castello", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Sciaranira", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.4749590250632, - 38.2326405486518 + 15.552275997223, + 38.1928934526667 ] } }, { "type": "Feature", "properties": { - "stopId": 1653, - "stopCode": 1653, - "stopName": "Vill. Gesso - Cimitero", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scisap Rent", + "category": "RentACarFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4769874580303, - 38.2320730915862 + 15.5489889063534, + 38.1856056499951 ] } }, { "type": "Feature", "properties": { - "stopId": 1652, - "stopCode": 1652, - "stopName": "SS113 - Locanda 6", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scola Danza Koros", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.4810999918641, - 38.2305321492855 + 15.5532859900624, + 38.1851249243445 ] } }, { "type": "Feature", "properties": { - "stopId": 1651, - "stopCode": 1651, - "stopName": "SS113 - Locanda 5", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scola Danza Koros", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.4847008587746, - 38.230599965971 + 15.5532859786483, + 38.1851249243451 ] } }, { "type": "Feature", "properties": { - "stopId": 1650, - "stopCode": 1650, - "stopName": "SS113 - Locanda 4", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Elementare Mario Passamonte", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4893008630617, - 38.2303999657834 + 15.5426441548946, + 38.1921306536516 ] } }, { "type": "Feature", "properties": { - "stopId": 1649, - "stopCode": 1649, - "stopName": "SS113 - Locanda 3", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Elementare Paritaria D. Savio Messina", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4933233101625, - 38.2305707548922 + 15.5482208370615, + 38.1912430615317 ] } }, { "type": "Feature", "properties": { - "stopId": 1648, - "stopCode": 1648, - "stopName": "SS113 - Locanda 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Materna Paradiso", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.495807787491, - 38.2299562487541 + 15.5642277623945, + 38.2252129928862 ] } }, { "type": "Feature", "properties": { - "stopId": 1647, - "stopCode": 1647, - "stopName": "SS113 - Locanda 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Materna Pezzolo", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4977008709228, - 38.2294999654385 + 15.458592866515, + 38.0854550770542 ] } }, { "type": "Feature", "properties": { - "stopId": 1646, - "stopCode": 1646, - "stopName": "SS113 - Quattro Strade", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Media Giovanni Pascoli", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5059008782958, - 38.2156999651005 + 15.5534975499501, + 38.1998157220064 ] } }, { "type": "Feature", "properties": { - "stopId": 1645, - "stopCode": 1645, - "stopName": "SS113 - Centro Neurolesi Ospes", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Media Statale Verona Trento", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5175708187949, - 38.207710514802 + 15.5508649702537, + 38.1948271657758 ] } }, { "type": "Feature", "properties": { - "stopId": 1644, - "stopCode": 1644, - "stopName": "SS113 - Centro Neurolesi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5199008914144, - 38.2065999645148 + 15.4938743133971, + 38.1410068317854 ] } }, { "type": "Feature", "properties": { - "stopId": 1643, - "stopCode": 1643, - "stopName": "SS113 - bivio Noviziato Casazza", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5228008941096, - 38.2031999643926 + 15.6395156771182, + 38.2650368624943 ] } }, { "type": "Feature", "properties": { - "stopId": 1642, - "stopCode": 1642, - "stopName": "SS113 - 906", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria A. Manzoni", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5246008959683, - 38.2074999643158 + 15.5528503928369, + 38.1857576620851 ] } }, { "type": "Feature", "properties": { - "stopId": 1641, - "stopCode": 1641, - "stopName": "SS113; 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Beata Eustachia", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5260116536676, - 38.2095632585982 + 15.5504270194957, + 38.1956398292969 ] } }, { "type": "Feature", "properties": { - "stopId": 1640, - "stopCode": 1640, - "stopName": "Via Palermo; 846", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Buon Pastore", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.526510602726, - 38.2112482148499 + 15.5471459516689, + 38.1950056997961 ] } }, { "type": "Feature", "properties": { - "stopId": 1639, - "stopCode": 1639, - "stopName": "Via Palermo - 731", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Case Gescal", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5284139841943, - 38.2122777510235 + 15.5204959603124, + 38.171638331356 ] } }, { "type": "Feature", "properties": { - "stopId": 1638, - "stopCode": 1638, - "stopName": "Via Palermo - 754", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Castanea", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5318908581502, - 38.2131188303152 + 15.5189609341582, + 38.2630525288041 ] } }, { "type": "Feature", "properties": { - "stopId": 1637, - "stopCode": 1637, - "stopName": "Via Palermo - 587", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Cesare Battisti ", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5356020103617, - 38.2134112795165 + 15.5506446787549, + 38.2076495998235 ] } }, { "type": "Feature", "properties": { - "stopId": 1636, - "stopCode": 1636, - "stopName": "Via Palermo - 690", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Collegio S. Ignazio", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.537500908658, - 38.2129999637639 + 15.5496641823169, + 38.2057666766096 ] } }, { "type": "Feature", "properties": { - "stopId": 1635, - "stopCode": 1635, - "stopName": "Chiesa Ritiro", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Collereale ", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5381009092532, - 38.2132999637381 + 15.5443898839429, + 38.1785016512082 ] } }, { "type": "Feature", "properties": { - "stopId": 659, - "stopCode": 659, - "stopName": "SP50; località Reginella", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria E. Castronovo ", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5242008961652, - 38.22799996433 + 15.4692606691572, + 38.2332364258152 ] } }, { "type": "Feature", "properties": { - "stopId": 660, - "stopCode": 660, - "stopName": "SP50; Reginella 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria F. Petrarca", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5232008952026, - 38.2280999643724 + 15.6050514113591, + 38.2588154738545 ] } }, { "type": "Feature", "properties": { - "stopId": 661, - "stopCode": 661, - "stopName": "SP50; Monte Bandiera", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Faro Superiore", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5204008924702, - 38.2268999644911 + 15.5789247791096, + 38.2676679280211 ] } }, { "type": "Feature", "properties": { - "stopId": 662, - "stopCode": 662, - "stopName": "Portella Castanea; bivio Salice", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Fr. Galati Marina", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5254008975668, - 38.236499964278 + 15.5508862182608, + 38.1844089498252 ] } }, { "type": "Feature", "properties": { - "stopId": 663, - "stopCode": 663, - "stopName": "SP51; fer. 1 - statua Padre Pio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Francesco Crispi", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5154008879732, - 38.2376999647004 + 15.5539065382899, + 38.2019268898576 ] } }, { "type": "Feature", "properties": { - "stopId": 664, - "stopCode": 664, - "stopName": "SP51; fer. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Galatti", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5131008857742, - 38.2377999647969 + 15.5493445230988, + 38.188036454043 ] } }, { "type": "Feature", "properties": { - "stopId": 665, - "stopCode": 665, - "stopName": "SP51; fer. 3 - chiesa", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Ganzim Via Denaro", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5110008837792, - 38.2381999648848 + 15.6039187033524, + 38.2577675297959 ] } }, { "type": "Feature", "properties": { - "stopId": 666, - "stopCode": 666, - "stopName": "SP51; fer. 4", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Ganzim Via Papardo", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5111008839559, - 38.2410999648803 + 15.6026770361735, + 38.2561882605658 ] } }, { "type": "Feature", "properties": { - "stopId": 667, - "stopCode": 667, - "stopName": "SP51; fer. 5", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Giampilieri Sup.", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5039008771613, - 38.2430999651801 + 15.4685676906776, + 38.0686687243713 ] } }, { "type": "Feature", "properties": { - "stopId": 668, - "stopCode": 668, - "stopName": "SP51; fer. 6", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Giovanni XXIIl", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5029376142414, - 38.2446979696802 + 15.5373506413769, + 38.1630112245708 ] } }, { "type": "Feature", "properties": { - "stopId": 669, - "stopCode": 669, - "stopName": "SP51; fer. 7 - prima Cimitero", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Istituto Leone Xlll", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4989008724527, - 38.2438999653871 + 15.5533645379519, + 38.2004888618571 ] } }, { "type": "Feature", "properties": { - "stopId": 670, - "stopCode": 670, - "stopName": "SP51; fer. 8 - dopo Cimitero", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria L. Boer", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4959008696608, - 38.2451999655107 + 15.5541027908534, + 38.2046778367792 ] } }, { "type": "Feature", "properties": { - "stopId": 671, - "stopCode": 671, - "stopName": "SP51; fer. 9", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria L. Radice", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4960008697962, - 38.2466999655064 + 15.5360187815273, + 38.2124524352766 ] } }, { "type": "Feature", "properties": { - "stopId": 672, - "stopCode": 672, - "stopName": "SP51; fer. 10 - Madonnina", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Larderia lnferiore", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4960008698321, - 38.2479999655062 + 15.4994749806672, + 38.1413128994418 ] } }, { "type": "Feature", "properties": { - "stopId": 673, - "stopCode": 673, - "stopName": "Salice; via Principe Umberto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Luigi Boer", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4971008708986, - 38.2490999654607 + 15.5465567679068, + 38.2084961662487 ] } }, { "type": "Feature", "properties": { - "stopId": 674, - "stopCode": 674, - "stopName": "Salice; via Principe Umberto n. 19", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Massa S. Lucia", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4968008706325, - 38.249699965473 + 15.5461315118819, + 38.2012337474353 ] } }, { "type": "Feature", "properties": { - "stopId": 675, - "stopCode": 675, - "stopName": "Salice; via Principe Umberto ; Bar", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Michele Trimarchi", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4954806128935, - 38.2502676429879 + 15.5401769191919, + 38.1639061227851 ] } }, { "type": "Feature", "properties": { - "stopId": 676, - "stopCode": 676, - "stopName": "Salice; via Principe Umberto; p.zza Chiesa", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Mili San Pietro", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4937872940748, - 38.2507762717794 + 15.4960405966765, + 38.1221717238044 ] } }, { "type": "Feature", "properties": { - "stopId": 677, - "stopCode": 677, - "stopName": "Salice; via Principe Umberto n. 209", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria N. Tommaseo", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4917189845703, - 38.2516136596225 + 15.55185385589, + 38.1864087702206 ] } }, { "type": "Feature", "properties": { - "stopId": 678, - "stopCode": 678, - "stopName": "Salice; via Principe Umberto n. 239", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Principe di Piemonte", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4892008635785, - 38.2526999657847 + 15.5492312791092, + 38.1771537750359 ] } }, { "type": "Feature", "properties": { - "stopId": 679, - "stopCode": 679, - "stopName": "SP51; 12", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Rione Montepiselli", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4841306976854, - 38.2569077759287 + 15.5443271867658, + 38.1889846430749 ] } }, { "type": "Feature", "properties": { - "stopId": 680, - "stopCode": 680, - "stopName": "SP51; villa Romeo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria S. Giovanni Bosco", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4817008567426, - 38.2584999660894 + 15.5461598024768, + 38.1792276733164 ] } }, { "type": "Feature", "properties": { - "stopId": 681, - "stopCode": 681, - "stopName": "SP51; villa Ferraù", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria S. Stefano di Briga ", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4800767291442, - 38.2595257687252 + 15.479135971364, + 38.1002276597631 ] } }, { "type": "Feature", "properties": { - "stopId": 682, - "stopCode": 682, - "stopName": "SP51; c/o torrente Marmora", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria S. Stefano Medio ", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4739722998485, - 38.2648030622548 + 15.4831813401771, + 38.1018519672118 ] } }, { "type": "Feature", "properties": { - "stopId": 683, - "stopCode": 683, - "stopName": "SS113; Km 30;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Salice", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4728914798121, - 38.2643028423354 + 15.4910507169343, + 38.2502283547235 ] } }, { "type": "Feature", "properties": { - "stopId": 684, - "stopCode": 684, - "stopName": "SS113; Km 30;700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria San Saba", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.469190739545, - 38.2622048154922 + 15.552029539026, + 38.2969205282035 ] } }, { "type": "Feature", "properties": { - "stopId": 685, - "stopCode": 685, - "stopName": "SS113; Km 31;100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Sant'Agata", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4659821688855, - 38.2595010779905 + 15.5988512791936, + 38.2558014671053 ] } }, { "type": "Feature", "properties": { - "stopId": 686, - "stopCode": 686, - "stopName": "SS113; Campanella", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Santa Chiara", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4618757143731, - 38.2558123950519 + 15.5511769902289, + 38.1977375969565 ] } }, { "type": "Feature", "properties": { - "stopId": 687, - "stopCode": 687, - "stopName": "SS113; Ortoliuzzo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Santa Margherita", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4578008346097, - 38.2521999670477 + 15.4938624637339, + 38.0993077660223 ] } }, { "type": "Feature", "properties": { - "stopId": 688, - "stopCode": 688, - "stopName": "SS113; Pontegallo n.23", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Spartà", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4546565889992, - 38.2495315658754 + 15.5133546636194, + 38.1174493059029 ] } }, { "type": "Feature", "properties": { - "stopId": 689, - "stopCode": 689, - "stopName": "SS113; Pontegallo n.44", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Tommaso Cannizzaro", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4532237948026, - 38.2480383713911 + 15.5496302978502, + 38.1872540681232 ] } }, { "type": "Feature", "properties": { - "stopId": 1689, - "stopCode": 1689, - "stopName": "SS113; Pontegallo n.44", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Valle degli Angeli", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4532478059003, - 38.2479675086998 + 15.5390377061276, + 38.1705194484959 ] } }, { "type": "Feature", "properties": { - "stopId": 1688, - "stopCode": 1688, - "stopName": "SS113 - Pontegallo n.23", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Via Catania ", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4547565890898, - 38.2495315658715 + 15.5451855859603, + 38.1794360423816 ] } }, { "type": "Feature", "properties": { - "stopId": 1687, - "stopCode": 1687, - "stopName": "SS113 - Ortoliuzzo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Villagio AJdisio", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.457800834607, - 38.2520999670477 + 15.5259870499925, + 38.1704304440651 ] } }, { "type": "Feature", "properties": { - "stopId": 1686, - "stopCode": 1686, - "stopName": "SS113 - Campanella", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Primaria Zafferia", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4618791881062, - 38.2557152949292 + 15.5209565519179, + 38.1455367973687 ] } }, { "type": "Feature", "properties": { - "stopId": 1685, - "stopCode": 1685, - "stopName": "SS113 - Km 31 -100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Secondaria di I Grado la Farina", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4659867744353, - 38.2594126061266 + 15.5516692652813, + 38.1948829097176 ] } }, { "type": "Feature", "properties": { - "stopId": 1684, - "stopCode": 1684, - "stopName": "SS113 - Km 30 -700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Secondaria di I Grado S. Francesco di Paola", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4691828429908, - 38.2621178013367 + 15.551739699321, + 38.2191636550519 ] } }, { "type": "Feature", "properties": { - "stopId": 1683, - "stopCode": 1683, - "stopName": "SS113 - Km 30 -300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Secondaria di II Grado E. Ainis", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4728914747764, - 38.2642086688877 + 15.5393525375106, + 38.1718594450071 ] } }, { "type": "Feature", "properties": { - "stopId": 1682, - "stopCode": 1682, - "stopName": "SP51 - c/o torrente Marmora", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Secondaria I Grado A. M. di Francia", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4738466364029, - 38.2647746648781 + 15.5469593327756, + 38.1857780940625 ] } }, { "type": "Feature", "properties": { - "stopId": 1681, - "stopCode": 1681, - "stopName": "SP51 - villa Ferraù", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Secondaria I Grado Evemero da M. T. F.", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4800786691822, - 38.2594694705496 + 15.6151959719692, + 38.2592048834358 ] } }, { "type": "Feature", "properties": { - "stopId": 1680, - "stopCode": 1680, - "stopName": "SP51; villa Romeo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Secondaria I Grado G. Leopardi", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4816929675148, - 38.2585701896779 + 15.5311529759538, + 38.1616627232211 ] } }, { "type": "Feature", "properties": { - "stopId": 1679, - "stopCode": 1679, - "stopName": "SP51 - 12", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Secondaria I Grado G. Mazzini", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.483987554126, - 38.2569981285751 + 15.5512106121968, + 38.1924626192435 ] } }, { "type": "Feature", "properties": { - "stopId": 1678, - "stopCode": 1678, - "stopName": "Salice - via Principe Umberto n. 239", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Secondaria I Grado Gaetano Martino", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4891129471889, - 38.2526505199272 + 15.5221247562133, + 38.1399822397399 ] } }, { "type": "Feature", "properties": { - "stopId": 1677, - "stopCode": 1677, - "stopName": "Salice - via Principe Umberto n. 209", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Secondaria I Grado Galatti", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4916072653497, - 38.2516099735365 + 15.5493444089536, + 38.1880364540453 ] } }, { "type": "Feature", "properties": { - "stopId": 1676, - "stopCode": 1676, - "stopName": "Salice - via Principe Umberto - p.zza Chiesa", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Secondaria I Grado Giorgio la Pira", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4936780827022, - 38.2507536283925 + 15.5288077707347, + 38.186716838722 ] } }, { "type": "Feature", "properties": { - "stopId": 1675, - "stopCode": 1675, - "stopName": "Salice - via Principe Umberto - Bar", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Secondaria I Grado L. da Vmci", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4953727198641, - 38.2502557343815 + 15.5034510587335, + 38.0986277876452 ] } }, { "type": "Feature", "properties": { - "stopId": 1674, - "stopCode": 1674, - "stopName": "Salice - via Principe Umberto n. 19", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Secondaria I Grado Madonna della Lettera", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4967008705383, - 38.2496999654771 + 15.5538789091414, + 38.2093281459981 ] } }, { "type": "Feature", "properties": { - "stopId": 1673, - "stopCode": 1673, - "stopName": "Salice - via Principe Umberto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Secondaria I Grado S. D'Acquisto", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4971008708959, - 38.2489999654608 + 15.5301959615477, + 38.1503752642967 ] } }, { "type": "Feature", "properties": { - "stopId": 1672, - "stopCode": 1672, - "stopName": "SP51 - fer. 10 - Madonnina", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Secondaria I Grado VannAntò", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4960008698293, - 38.2478999655062 + 15.544391204029, + 38.2126635532191 ] } }, { "type": "Feature", "properties": { - "stopId": 1671, - "stopCode": 1671, - "stopName": "SP51 - fer. 9", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Secondaria II Grado Antonello", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4959008697021, - 38.2466999655105 + 15.552867669857, + 38.2083437602144 ] } }, { "type": "Feature", "properties": { - "stopId": 1670, - "stopCode": 1670, - "stopName": "SP51 - fer. 8 - dopo Cimitero", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Secondaria II Grado I. S. Bisazza", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4958008695666, - 38.2451999655148 + 15.558470188977, + 38.2186483489507 ] } }, { "type": "Feature", "properties": { - "stopId": 1669, - "stopCode": 1669, - "stopName": "SP51 - fer. 7 - prima Cimitero", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Scuola Secondaria II Grado Iti Marconi", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.49890087245, - 38.2437999653871 + 15.5511341487535, + 38.197585450111 ] } }, { "type": "Feature", "properties": { - "stopId": 1668, - "stopCode": 1668, - "stopName": "SP51 - fer. 6", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Sea Bar Torre Faro", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5029039231168, - 38.244518805498 + 15.6419658014237, + 38.2662359363518 ] } }, { "type": "Feature", "properties": { - "stopId": 1667, - "stopCode": 1667, - "stopName": "SP51 - fer. 5", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Sea Flight", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5039008771584, - 38.2429999651802 + 15.5496540558887, + 38.1810263826947 ] } }, { "type": "Feature", "properties": { - "stopId": 1666, - "stopCode": 1666, - "stopName": "SP51 - fer. 4", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Seminario Arcivescovile S. Pio X", + "category": "Place of Worship", + "type": "Religious_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5110008838604, - 38.2410999648844 + 15.5475819621041, + 38.212810437955 ] } }, { "type": "Feature", "properties": { - "stopId": 1665, - "stopCode": 1665, - "stopName": "SP51 - fer. 3 - chiesa", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Servizi Sport", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5109008836837, - 38.238199964889 + 15.5478666109176, + 38.1962146445139 ] } }, { "type": "Feature", "properties": { - "stopId": 1664, - "stopCode": 1664, - "stopName": "SP51 - fer. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Shanghai", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5131008857714, - 38.2376999647969 + 15.551823472052, + 38.1925854434932 ] } }, { "type": "Feature", "properties": { - "stopId": 1663, - "stopCode": 1663, - "stopName": "SP51 - fer. 1 - statua Padre Pio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Sharon ", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5153008878774, - 38.2376999647046 + 15.5516228177643, + 38.1844273900635 ] } }, { "type": "Feature", "properties": { - "stopId": 1662, - "stopCode": 1662, - "stopName": "Portella Castanea - bivio Salice", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Shawanna Iyad", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5253008974701, - 38.2364999642822 + 15.549292254141, + 38.1863438085427 ] } }, { "type": "Feature", "properties": { - "stopId": 1661, - "stopCode": 1661, - "stopName": "SP50 - Monte Bandiera", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Sicily by Car", + "category": "RentACarFacility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.520400892473, - 38.226999964491 + 15.5547680935538, + 38.1947594540777 ] } }, { "type": "Feature", "properties": { - "stopId": 1660, - "stopCode": 1660, - "stopName": "SP50 - Reginella 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "sigma", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5232143199911, - 38.2280263048952 + 15.5224231708376, + 38.1409802780504 ] } }, { "type": "Feature", "properties": { - "stopId": 1659, - "stopCode": 1659, - "stopName": "SP50 - località Reginella", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "sigma", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5242008961624, - 38.2278999643301 + 15.5539638790396, + 38.1888357839383 ] } }, { "type": "Feature", "properties": { - "stopId": 1611, - "stopCode": 1611, - "stopName": "SP50 S. Michele - Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Simply Market", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5264160079373, - 38.2265567582006 + 15.5657497041707, + 38.2291357381866 ] } }, { "type": "Feature", "properties": { - "stopId": 705, - "stopCode": 705, - "stopName": "Torrente Guardia; fer. 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Simply Viale Regina Elena", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5875009598363, - 38.2512999615511 + 15.5564403774575, + 38.2137995575389 ] } }, { "type": "Feature", "properties": { - "stopId": 876, - "stopCode": 876, - "stopName": "C.da Marotta; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ski Center", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5656009377182, - 38.2545999625318 + 15.5535289977205, + 38.1843133479213 ] } }, { "type": "Feature", "properties": { - "stopId": 706, - "stopCode": 706, - "stopName": "Torrente Guardia; fer. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Sma", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5867572992033, - 38.2514241873187 + 15.5419720416821, + 38.1722005755304 ] } }, { "type": "Feature", "properties": { - "stopId": 707, - "stopCode": 707, - "stopName": "SP45; Faro Superiore Lam 85", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Sma", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5968566392144, - 38.2569902228269 + 15.548528636535, + 38.1723431911819 ] } }, { "type": "Feature", "properties": { - "stopId": 708, - "stopCode": 708, - "stopName": "SP45; Faro Superiore n. 33", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Sma", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.593000965679, - 38.2575999613003 + 15.5443101250282, + 38.1784732880823 ] } }, { "type": "Feature", "properties": { - "stopId": 709, - "stopCode": 709, - "stopName": "SP45; Faro Superiore Km 2;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Snack Bar", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5872009597601, - 38.2588999615637 + 15.5278864549286, + 38.1484191645807 ] } }, { "type": "Feature", "properties": { - "stopId": 710, - "stopCode": 710, - "stopName": "Faro Superiore; Via Messina n.4", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spadano", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.584200956745, - 38.260699961699 + 15.5545824896313, + 38.2042962171628 ] } }, { "type": "Feature", "properties": { - "stopId": 713, - "stopCode": 713, - "stopName": "SP45 Faro Superiore; via Lecce n. 46", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spartà", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5818009543769, - 38.2633999618069 + 15.5323140646466, + 38.2938011045558 ] } }, { "type": "Feature", "properties": { - "stopId": 714, - "stopCode": 714, - "stopName": "SP45 Faro Superiore; via Lecce", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spartà", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5800856313896, - 38.2627863471042 + 15.5300381633953, + 38.2948341349055 ] } }, { "type": "Feature", "properties": { - "stopId": 715, - "stopCode": 715, - "stopName": "SP45 Faro Superiore; Cimitero", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spatafora Salvatore", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5804009528988, - 38.2616999618703 + 15.5534725186273, + 38.1907708016296 ] } }, { "type": "Feature", "properties": { - "stopId": 716, - "stopCode": 716, - "stopName": "SP45 Curcuraci; casa Sardella", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spatari Dott. Antonio", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5775539373793, - 38.2618225677993 + 15.5533133566716, + 38.1846752110862 ] } }, { "type": "Feature", "properties": { - "stopId": 717, - "stopCode": 717, - "stopName": "SP45 Curcuraci", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spiaggia del Lido di Mortella", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.575494758191, - 38.2623747806635 + 15.6307106522518, + 38.2719352084536 ] } }, { "type": "Feature", "properties": { - "stopId": 718, - "stopCode": 718, - "stopName": "SP45 Curcuraci; comp. Sicim 8", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spiaggia di Acquarone", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5722009445976, - 38.2622999622375 + 15.5515777484375, + 38.297311270633 ] } }, { "type": "Feature", "properties": { - "stopId": 719, - "stopCode": 719, - "stopName": "SP45 Curcuraci; bivio Marotta", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spiaggia di Briga Marina", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5690009413263, - 38.2608999623801 + 15.4973721950309, + 38.0853941535512 ] } }, { "type": "Feature", "properties": { - "stopId": 720, - "stopCode": 720, - "stopName": "SP45 Curcuraci; Circolo Tennis", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spiaggia di Capo Rasocolmo", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5676009399373, - 38.2615999624421 + 15.521419288134, + 38.2945668125454 ] } }, { "type": "Feature", "properties": { - "stopId": 878, - "stopCode": 878, - "stopName": "C.da Marotta - Strada Comunale Bianchi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spiaggia di Casa Bianca", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5670391507876, - 38.2584081773068 + 15.5857714600992, + 38.2803835715453 ] } }, { "type": "Feature", "properties": { - "stopId": 877, - "stopCode": 877, - "stopName": "C.da Marotta - 47", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spiaggia di Galati Marina", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5660940329147, - 38.2559288555945 + 15.5091051342244, + 38.108504655921 ] } }, { "type": "Feature", "properties": { - "stopId": 1877, - "stopCode": 1877, - "stopName": "C.da Marotta - 47", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spiaggia di Ganzirri", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5660009381586, - 38.2558999625139 + 15.6102401164703, + 38.2575552294099 ] } }, { "type": "Feature", "properties": { - "stopId": 1878, - "stopCode": 1878, - "stopName": "C.da Marotta - Strada Comunale Bianchi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spiaggia di Giampilieri Marina", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5669840452282, - 38.2583826762995 + 15.4810402692194, + 38.0647623468704 ] } }, { "type": "Feature", "properties": { - "stopId": 1719, - "stopCode": 1719, - "stopName": "SP45 Curcuraci; bivio Marotta", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spiaggia di Gimpilieri Marina", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5689472257006, - 38.2609571697701 + 15.4862037090637, + 38.0684681092764 ] } }, { "type": "Feature", "properties": { - "stopId": 1718, - "stopCode": 1718, - "stopName": "SP45 Curcuraci - comp. Sicim 8", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spiaggia di Mili Marina ", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5721009444967, - 38.2622999622418 + 15.5148282313869, + 38.117703099148 ] } }, { "type": "Feature", "properties": { - "stopId": 1717, - "stopCode": 1717, - "stopName": "SP45 Curcuraci", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spiaggia di Orto Liuzzo", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5754619148558, - 38.2624558653823 + 15.4551180735408, + 38.2559189688631 ] } }, { "type": "Feature", "properties": { - "stopId": 1716, - "stopCode": 1716, - "stopName": "SP45 Curcuraci - casa Sardella", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spiaggia di Pace", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5773711240012, - 38.2618231312492 + 15.573580018867, + 38.23696365902 ] } }, { "type": "Feature", "properties": { - "stopId": 1715, - "stopCode": 1715, - "stopName": "SP45 Faro Superiore; Cimitero", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spiaggia di Rodia", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5803385438852, - 38.2617437372969 + 15.4747201135162, + 38.269412927754 ] } }, { "type": "Feature", "properties": { - "stopId": 1714, - "stopCode": 1714, - "stopName": "SP45 Faro Superiore - via Lecce", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spiaggia di Salvatore dei Greci", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5798998005227, - 38.2627747640367 + 15.560500234014, + 38.214026482961 ] } }, { "type": "Feature", "properties": { - "stopId": 1713, - "stopCode": 1713, - "stopName": "SP45 Faro Superiore - via Lecce n. 46", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spiaggia di San Saba", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5816911297309, - 38.2634466299458 + 15.4966605089548, + 38.2832747711012 ] } }, { "type": "Feature", "properties": { - "stopId": 1712, - "stopCode": 1712, - "stopName": "Faro Superiore; piazza S. Rocco", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spiaggia di Sant'Agata", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.583184807897, - 38.2647820639094 + 15.5961989017655, + 38.2529220413425 ] } }, { "type": "Feature", "properties": { - "stopId": 1711, - "stopCode": 1711, - "stopName": "Faro Superiore; Via Messina n.16", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spiaggia di Torre Palazzo", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5834041383319, - 38.2625196947753 + 15.6317453947576, + 38.2618445385971 ] } }, { "type": "Feature", "properties": { - "stopId": 754, - "stopCode": 754, - "stopName": "SP50", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Spiaggia dOro", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5254008976978, - 38.2410999642774 + 15.6081006056063, + 38.2731047996947 ] } }, { "type": "Feature", "properties": { - "stopId": 753, - "stopCode": 753, - "stopName": "SP50 C.da Orbo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Sport 4 Club 2", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5278009002219, - 38.2480999641744 + 15.5545478306898, + 38.1840212177399 ] } }, { "type": "Feature", "properties": { - "stopId": 752, - "stopCode": 752, - "stopName": "SP50 S. Cosimo; Casa di Riposo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Sport Piu", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.526900899435, - 38.2510999642124 + 15.5423127054537, + 38.1896769725394 ] } }, { "type": "Feature", "properties": { - "stopId": 751, - "stopCode": 751, - "stopName": "SP50 S. Cosimo; 125", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Sporting", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5243008969471, - 38.2520999643227 + 15.5029254795254, + 38.0977946327633 ] } }, { "type": "Feature", "properties": { - "stopId": 750, - "stopCode": 750, - "stopName": "SP50 S. Cosimo; 117", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Stadio", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5233008960518, - 38.2545999643647 + 15.5369022415253, + 38.1646855326902 ] } }, { "type": "Feature", "properties": { - "stopId": 749, - "stopCode": 749, - "stopName": "SP50 S. Cosimo; Carabinieri", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Stadio Giovanni Celeste", + "category": "SportsActivity", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5221236313098, - 38.2569959765148 + 15.5371964216592, + 38.1647808751915 ] } }, { "type": "Feature", "properties": { - "stopId": 748, - "stopCode": 748, - "stopName": "SP50 Castanea; via Calabrisella 31", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Stadio San Filippo", + "category": "SportsActivity", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5238261436674, - 38.2597952448481 + 15.521289980423, + 38.1602681014356 ] } }, { "type": "Feature", "properties": { - "stopId": 747, - "stopCode": 747, - "stopName": "SP50 Castanea; via Calabrisella 47", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Strumenti Musicali Piparo", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5238811231519, - 38.2602700912728 + 15.5562883649793, + 38.204099270603 ] } }, { "type": "Feature", "properties": { - "stopId": 746, - "stopCode": 746, - "stopName": "SP50 Castanea; Casa Popolari", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Studio Danza di Mariangela Bonanno", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5244691292225, - 38.2618651730801 + 15.5489403136196, + 38.1985988256255 ] } }, { "type": "Feature", "properties": { - "stopId": 745, - "stopCode": 745, - "stopName": "SP50 Castanea; 5a", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Studio Dentistico", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.523127731975, - 38.2632426136502 + 15.5530109148771, + 38.1930028526078 ] } }, { "type": "Feature", "properties": { - "stopId": 744, - "stopCode": 744, - "stopName": "SP50 Castanea; p.zza SS. Rosario", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Studio Dentistico", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.521700894757, - 38.2633999644313 + 15.558835971356, + 38.2072240913464 ] } }, { "type": "Feature", "properties": { - "stopId": 743, - "stopCode": 743, - "stopName": "SP50 Castanea; casa vinicola", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Studio Dentistico Associato Campo", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5234008964693, - 38.2658999643591 + 15.5556920236308, + 38.205370030914 ] } }, { "type": "Feature", "properties": { - "stopId": 742, - "stopCode": 742, - "stopName": "SP50 Castanea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Studio Dentistico Associato Currò", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5254008984493, - 38.2674999642739 + 15.5475923037132, + 38.1916099910525 ] } }, { "type": "Feature", "properties": { - "stopId": 741, - "stopCode": 741, - "stopName": "SP50 Castanea; casa Camarda-Costa", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Studio di Valutazione Medico Legale", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5285009014807, - 38.2683999641419 + 15.5532993622619, + 38.182810804794 ] } }, { "type": "Feature", "properties": { - "stopId": 740, - "stopCode": 740, - "stopName": "SP50 Castanea; inizio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Studio Medico Cecconi Giusj", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.531000903951, - 38.2697999640351 + 15.5548470527742, + 38.2022131906797 ] } }, { "type": "Feature", "properties": { - "stopId": 739, - "stopCode": 739, - "stopName": "SP50 Massa S. Giorgio; c.da Vigna Grande", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Studio Medico di Pietro Giuseppe", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5358398145334, - 38.272353640414 + 15.5513636909621, + 38.1841902610805 ] } }, { "type": "Feature", "properties": { - "stopId": 738, - "stopCode": 738, - "stopName": "SP50 Massa S. Giorgio; 41", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Studio Medico Girbino Giuseppe", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5368787256173, - 38.2736890875175 + 15.5511297209434, + 38.1847299759131 ] } }, { "type": "Feature", "properties": { - "stopId": 737, - "stopCode": 737, - "stopName": "SP50 Massa S. Giorgio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Trattoria da Nonna Angela", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5370076038202, - 38.2752247214671 + 15.5980008938312, + 38.2545649130781 ] } }, { "type": "Feature", "properties": { - "stopId": 736, - "stopCode": 736, - "stopName": "SP50 Massa S. Giorgio; inizio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Trattoria la Terrazza", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5371486313086, - 38.2739003430576 + 15.60950608526, + 38.2581235916978 ] } }, { "type": "Feature", "properties": { - "stopId": 735, - "stopCode": 735, - "stopName": "SP45 Massa S. Nicola Km 12;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Trattoria Mar.Belli", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5431397930412, - 38.2710305756796 + 15.5508103106686, + 38.1865308443852 ] } }, { "type": "Feature", "properties": { - "stopId": 734, - "stopCode": 734, - "stopName": "SP45 Massa S. Lucia; scuola elementare", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Tremestieri", + "category": "Rest Area", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5481009207408, - 38.2702999632979 + 15.5176755529869, + 38.1319473141996 ] } }, { "type": "Feature", "properties": { - "stopId": 1734, - "stopCode": 1734, - "stopName": "SP45 Massa S. Lucia - scuola elementare", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Tremestieri", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5480009206418, - 38.2702999633022 + 15.5217821068278, + 38.1380354121035 ] } }, { "type": "Feature", "properties": { - "stopId": 1733, - "stopCode": 1733, - "stopName": "SP45 Massa S. Lucia - 5", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Tremestieri", + "category": "Railway Station", + "type": "Rail_Station" }, "geometry": { "type": "Point", "coordinates": [ - 15.5482009207929, - 38.2686999632938 + 15.524603341568, + 38.138183464889 ] } }, { "type": "Feature", "properties": { - "stopId": 1732, - "stopCode": 1732, - "stopName": "SP45 Massa S. Lucia Km 11;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Tremestieri", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.5474860711261, - 38.2687303498246 + 15.5229452597431, + 38.1424112080494 ] } }, { "type": "Feature", "properties": { - "stopId": 1731, - "stopCode": 1731, - "stopName": "SP45 Massa S. Giovanni Km 10 -800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Tremestieri Ovest ", + "category": "Rest Area", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5459212465342, - 38.2679289757086 + 15.5158471888299, + 38.1440964289278 ] } }, { "type": "Feature", "properties": { - "stopId": 1730, - "stopCode": 1730, - "stopName": "Massa S. Giovanni - piazza di S. Giovanni", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Tuodi", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5450009175549, - 38.2659999634331 + 15.5458824858397, + 38.1816805074806 ] } }, { "type": "Feature", "properties": { - "stopId": 1729, - "stopCode": 1729, - "stopName": "Massa S. Giovanni - chiesa di S. Giovanni", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "U.S. Antonello", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5438246060674, - 38.2649670237895 + 15.5377012497432, + 38.2133739841173 ] } }, { "type": "Feature", "properties": { - "stopId": 1728, - "stopCode": 1728, - "stopName": "SP45 Massa S. Giovanni Km 10;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Uanella", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5426606615804, - 38.2636968054494 + 15.5548577946589, + 38.1998520752866 ] } }, { "type": "Feature", "properties": { - "stopId": 1727, - "stopCode": 1727, - "stopName": "SP45 Massa S. Giovanni Km 10 -000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ubertà", + "category": "Coffee Shop", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5423217156762, - 38.2620947012345 + 15.5587654266375, + 38.2069008752458 ] } }, { "type": "Feature", "properties": { - "stopId": 1726, - "stopCode": 1726, - "stopName": "SP45 Massa S. Giovanni Km 9 -900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ubreria Editrice Genal", + "category": "Book Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5422096761475, - 38.2598100518813 + 15.551806050486, + 38.1879829898782 ] } }, { "type": "Feature", "properties": { - "stopId": 1725, - "stopCode": 1725, - "stopName": "SP45 Massa S. Giovanni Km 9 -700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ubreria Michele lntilla", + "category": "Book Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5437078314111, - 38.2594190052282 + 15.5528154896304, + 38.1908057150305 ] } }, { "type": "Feature", "properties": { - "stopId": 1724, - "stopCode": 1724, - "stopName": "SP45 Massa S. Giovanni Km 7;700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Uci", + "category": "Cinema", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.5489541227035, - 38.2592771436601 + 15.5207771168125, + 38.1363952201795 ] } }, { "type": "Feature", "properties": { - "stopId": 1723, - "stopCode": 1723, - "stopName": "SP45 Curcuraci Km 6 -500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Udo Spiaggia dOro", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.5590009312954, - 38.2608999628223 + 15.6117392425134, + 38.2727209920684 ] } }, { "type": "Feature", "properties": { - "stopId": 1722, - "stopCode": 1722, - "stopName": "SP45 Curcuraci Km 6 -200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Uffici Giudiziari", + "category": "CourtHouse", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.561300933618, - 38.2616999627209 + 15.5511629889443, + 38.1882878735645 ] } }, { "type": "Feature", "properties": { - "stopId": 1721, - "stopCode": 1721, - "stopName": "SP45 Curcuraci - comp. Delle More", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Uffici Giudiziari", + "category": "CourtHouse", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5664009388016, - 38.2639999624951 + 15.5517758148315, + 38.1902790367369 ] } }, { "type": "Feature", "properties": { - "stopId": 1720, - "stopCode": 1720, - "stopName": "SP45 Curcuraci - Circolo Tennis", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ufficio Postale C.so C. B. Cavour", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5675009398367, - 38.2615999624467 + 15.5518353599187, + 38.1932652593264 ] } }, { "type": "Feature", "properties": { - "stopId": 868, - "stopCode": 868, - "stopName": "Viale Stagno D'Alcontres; 327", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ufficio Postale Strada San Giacomo", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6036906945257, - 38.2571123660176 + 15.5534911534899, + 38.1918834950991 ] } }, { "type": "Feature", "properties": { - "stopId": 1868, - "stopCode": 1868, - "stopName": "Viale Stagno D'Alcontres - 327", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ufficio Postale Via C. Battisti", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6035456849731, - 38.2570020152165 + 15.5469876640575, + 38.1824034217855 ] } }, { "type": "Feature", "properties": { - "stopId": 792, - "stopCode": 792, - "stopName": "Piano Rocca; SS113; Km 20;100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ufficio Postale Via Chione", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5543009275816, - 38.2938999630243 + 15.5457465958621, + 38.1869989877841 ] } }, { "type": "Feature", "properties": { - "stopId": 793, - "stopCode": 793, - "stopName": "Piano Rocca; SS113; Km 20;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ufficio Postale Via Monte Scuderi", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5520009253068, - 38.2942999631248 + 15.546299356948, + 38.2116218547855 ] } }, { "type": "Feature", "properties": { - "stopId": 794, - "stopCode": 794, - "stopName": "Piano Rocca; SS113; Km 20;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ufficio Postale Via Nicola Fabrizi", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5485331221671, - 38.294902062606 + 15.5559872962507, + 38.1844238098027 ] } }, { "type": "Feature", "properties": { - "stopId": 795, - "stopCode": 795, - "stopName": "Spartà - Strada Statale 113; Km 20;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ufficio Postale Via P. Castelli", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5462628003642, - 38.2933552951849 + 15.5406673537042, + 38.1932630022434 ] } }, { "type": "Feature", "properties": { - "stopId": 796, - "stopCode": 796, - "stopName": "Spartà - Strada Statale 113; Km 21;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ufficio Postale Via Palermo", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5418982468923, - 38.2944104918172 + 15.5380060070784, + 38.2119289235332 ] } }, { "type": "Feature", "properties": { - "stopId": 797, - "stopCode": 797, - "stopName": "Spartà - Strada Statale 113; Km 21;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ufficio Postale Via Risorgimento", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5367967203102, - 38.2937138625322 + 15.5534977074863, + 38.1874161046964 ] } }, { "type": "Feature", "properties": { - "stopId": 798, - "stopCode": 798, - "stopName": "Piano Torre; disc. Marina di Mezzacampa", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ufficio Postale Via Santa Cecilia", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5329800454838, - 38.2931904936222 + 15.5519903923082, + 38.181670084546 ] } }, { "type": "Feature", "properties": { - "stopId": 799, - "stopCode": 799, - "stopName": "Piano Torre; SS113; Km 22;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ufficio Postale Via Uberto Bonino", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5287934524339, - 38.2926241761007 + 15.5392790820598, + 38.1649935384349 ] } }, { "type": "Feature", "properties": { - "stopId": 801, - "stopCode": 801, - "stopName": "Piano Torre; SS113; Km 23;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ufficio Postale Via Vecchia Comunale", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5240008978193, - 38.2929999643301 + 15.5372562860737, + 38.1655958650816 ] } }, { "type": "Feature", "properties": { - "stopId": 802, - "stopCode": 802, - "stopName": "Piano Torre; SS113; Km 23;400 c.da Ziino", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Ufficio Postale Via XXVII Luglio", + "category": "Post Office", + "type": "Public_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.5190673792035, - 38.292206282781 + 15.5514806688818, + 38.1861851029522 ] } }, { "type": "Feature", "properties": { - "stopId": 803, - "stopCode": 803, - "stopName": "Piano Torre; SS113; Km 23;700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Uni Euro ", + "category": "Consumer Electronics Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5166045923103, - 38.2917028441247 + 15.5233059588073, + 38.1435015057893 ] } }, { "type": "Feature", "properties": { - "stopId": 804, - "stopCode": 804, - "stopName": "Calamona; SS113; Pineta", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "UniCredit Banca", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5164649943481, - 38.2901690647074 + 15.5515792108876, + 38.1831786273158 ] } }, { "type": "Feature", "properties": { - "stopId": 805, - "stopCode": 805, - "stopName": "Calamona; SS113; Km 24;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "UniCredit Banca", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5160966411884, - 38.2890904659804 + 15.5540578436159, + 38.1848416347573 ] } }, { "type": "Feature", "properties": { - "stopId": 806, - "stopCode": 806, - "stopName": "Calamona; SS113; Km 25;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "UniCredit Banca", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5083868148887, - 38.2890073361301 + 15.5550140847851, + 38.1894244899852 ] } }, { "type": "Feature", "properties": { - "stopId": 807, - "stopCode": 807, - "stopName": "S. Saba; SS113; Km 25;600", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "UniCredit Banca", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5068008811591, - 38.2876999650538 + 15.5550519121151, + 38.1894456594704 ] } }, { "type": "Feature", "properties": { - "stopId": 808, - "stopCode": 808, - "stopName": "S. Saba; SS113; Km 25;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "UniCredit Banca", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5055339497037, - 38.2864752324689 + 15.549708329024, + 38.1895096348436 ] } }, { "type": "Feature", "properties": { - "stopId": 809, - "stopCode": 809, - "stopName": "S.Saba; SS113; disc. mare", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "UniCredit Banca", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5035991706555, - 38.2846096701872 + 15.5496161253284, + 38.1896741458111 ] } }, { "type": "Feature", "properties": { - "stopId": 810, - "stopCode": 810, - "stopName": "S.Saba; SS113; disc. paese", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "UniCredit Banca", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.5002142179579, - 38.282671171702 + 15.5544512909705, + 38.1896897627291 ] } }, { "type": "Feature", "properties": { - "stopId": 811, - "stopCode": 811, - "stopName": "S. Saba; SS113; cont. Musarra", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "UniCredit Banca", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.496500871205, - 38.2806999654814 + 15.5562457611362, + 38.2005893107435 ] } }, { "type": "Feature", "properties": { - "stopId": 812, - "stopCode": 812, - "stopName": "S.Saba; SS113; cont. Corridore", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "UniCredit Banca", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4944797021908, - 38.2792998034364 + 15.5542504392358, + 38.2045845605358 ] } }, { "type": "Feature", "properties": { - "stopId": 813, - "stopCode": 813, - "stopName": "S. Saba; SS113; Km 27;350", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "UniCredit Banca", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4920008668883, - 38.2776999656669 + 15.5590083515951, + 38.2112884650127 ] } }, { "type": "Feature", "properties": { - "stopId": 814, - "stopCode": 814, - "stopName": "S. Saba; SS113; Km 27;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "UniCredit Banca", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4909666680773, - 38.2768130308752 + 15.5477189454469, + 38.211742457345 ] } }, { "type": "Feature", "properties": { - "stopId": 815, - "stopCode": 815, - "stopName": "Rodia; SS113; Km 27;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "UniCredit Banca", + "category": "Petrol Station", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4887008637262, - 38.2751999658022 + 15.5594831783428, + 38.2176714360379 ] } }, { "type": "Feature", "properties": { - "stopId": 816, - "stopCode": 816, - "stopName": "Rodia; SS113; Km 28;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "UniCredit Banca", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4869728792881, - 38.273809906919 + 15.5633043668593, + 38.2199925083008 ] } }, { "type": "Feature", "properties": { - "stopId": 817, - "stopCode": 817, - "stopName": "Rodia; SS113; Km 28;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "UniCredit Banca di Roma", + "category": "ATM", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4845341630667, - 38.2717728946295 + 15.5544221955202, + 38.1894377160645 ] } }, { "type": "Feature", "properties": { - "stopId": 818, - "stopCode": 818, - "stopName": "Rodia; SS113; Km 28;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Unipol Banca", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4832008584694, - 38.2706999660269 + 15.5550307790038, + 38.1841384354584 ] } }, { "type": "Feature", "properties": { - "stopId": 819, - "stopCode": 819, - "stopName": "Rodia; SS113; Km 28;850; farmacia", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Unipol Banca", + "category": "Bank", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4807646600738, - 38.2678057600063 + 15.5586855848546, + 38.2066176022096 ] } }, { "type": "Feature", "properties": { - "stopId": 820, - "stopCode": 820, - "stopName": "Rodia; SS113; Km 29;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Università di Messina", + "category": "UniversityorCollege", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4780144267245, - 38.2668972927327 + 15.5506955967005, + 38.1887615185711 ] } }, { "type": "Feature", "properties": { - "stopId": 821, - "stopCode": 821, - "stopName": "Marmora; SS113; ponte di Marmora", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Università di Messina ", + "category": "UniversityorCollege", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4743930290493, - 38.2655096051529 + 15.5952024875408, + 38.2609835596595 ] } }, { "type": "Feature", "properties": { - "stopId": 1821, - "stopCode": 1821, - "stopName": "Marmora - SS113 - ponte di Marmora", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Università di Messina Farmacia e Veterinaria", + "category": "UniversityorCollege", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4743566058581, - 38.265415237422 + 15.5504257496504, + 38.2302495820164 ] } }, { "type": "Feature", "properties": { - "stopId": 1820, - "stopCode": 1820, - "stopName": "Rodia - SS113 - Km 29 -200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Università di Messina-Scienze", + "category": "UniversityorCollege", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4779740451887, - 38.2668257662165 + 15.596863283307, + 38.2608014071701 ] } }, { "type": "Feature", "properties": { - "stopId": 1819, - "stopCode": 1819, - "stopName": "Rodia - SS113 - Km 28 -850 - farmacia", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Uomo Club", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4808413926738, - 38.2678358684243 + 15.5543374538274, + 38.188741564966 ] } }, { "type": "Feature", "properties": { - "stopId": 1818, - "stopCode": 1818, - "stopName": "Rodia - SS113 - Km 28 -500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Uons", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.4832008584666, - 38.270599966027 + 15.5506118272368, + 38.2041726765899 ] } }, { "type": "Feature", "properties": { - "stopId": 1817, - "stopCode": 1817, - "stopName": "Rodia - SS113 - Km 28 -300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Up To Date", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4845322354779, - 38.2716849652112 + 15.5540567392678, + 38.1836570488743 ] } }, { "type": "Feature", "properties": { - "stopId": 1815, - "stopCode": 1815, - "stopName": "Rodia - SS113 - Km 27 -800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Vadala Candeloro", + "category": "Vehicle Repair Facility", + "type": "Automobile_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.4887008637236, - 38.2750999658022 + 15.5498971218682, + 38.1861996890868 ] } }, { "type": "Feature", "properties": { - "stopId": 1813, - "stopCode": 1813, - "stopName": "S. Saba - SS113 - Km 27 -350", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Valle degli Angeli", + "category": "School", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.4920008668856, - 38.2775999656669 + 15.5368324244472, + 38.1702622263144 ] } }, { "type": "Feature", "properties": { - "stopId": 1812, - "stopCode": 1812, - "stopName": "S.Saba - SS113 - cont. Corridore", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Velia ", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4944827781267, - 38.2792183917659 + 15.552518094949, + 38.183948747058 ] } }, { "type": "Feature", "properties": { - "stopId": 1811, - "stopCode": 1811, - "stopName": "S. Saba - SS113 - cont. Musarra", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Verdura Salvatore", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.4965008712023, - 38.2805999654815 + 15.5516193820355, + 38.1843524000862 ] } }, { "type": "Feature", "properties": { - "stopId": 1810, - "stopCode": 1810, - "stopName": "S.Saba - SS113 - disc. paese", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Veterinaria", + "category": "UniversityorCollege", + "type": "School" }, "geometry": { "type": "Point", "coordinates": [ - 15.5002008747525, - 38.2825999653284 + 15.5485091346586, + 38.2310863107306 ] } }, { "type": "Feature", "properties": { - "stopId": 1809, - "stopCode": 1809, - "stopName": "S.Saba - SS113 - disc. mare", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Via Alessio Valore", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.503548716465, - 38.2844747171312 + 15.5595625634678, + 38.1874154803248 ] } }, { "type": "Feature", "properties": { - "stopId": 1808, - "stopCode": 1808, - "stopName": "S. Saba - SS113 - Km 25 -800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Via Calabria", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5055374810744, - 38.2863777469181 + 15.5594707015066, + 38.1864693839211 ] } }, { "type": "Feature", "properties": { - "stopId": 1807, - "stopCode": 1807, - "stopName": "S. Saba - SS113 - Km 25 -600", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Via del Santo", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5068008811564, - 38.2875999650538 + 15.5415924785786, + 38.1781556884959 ] } }, { "type": "Feature", "properties": { - "stopId": 1806, - "stopCode": 1806, - "stopName": "Calamona - SS113 - Km 25 -300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Via Enrico Fermi", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5083801450306, - 38.288924783907 + 15.5390216181153, + 38.1622683016901 ] } }, { "type": "Feature", "properties": { - "stopId": 1805, - "stopCode": 1805, - "stopName": "Calamona - SS113 - Km 24 -500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Via Enrico Fermi", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5159781049771, - 38.2890878622375 + 15.5385050308019, + 38.1626377550426 ] } }, { "type": "Feature", "properties": { - "stopId": 1804, - "stopCode": 1804, - "stopName": "Calamona - SS113 - Pineta", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Via Giuseppe la Farina", + "category": "ParkingGarage", + "type": "Enclosed_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5164661756614, - 38.2902372507101 + 15.5563004715035, + 38.1841193818267 ] } }, { "type": "Feature", "properties": { - "stopId": 1801, - "stopCode": 1801, - "stopName": "Piano Torre - SS113 - Km 23 -000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Via Giuseppe Natoli", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5239008977197, - 38.2928999643344 + 15.5548555687009, + 38.1835088380022 ] } }, { "type": "Feature", "properties": { - "stopId": 1799, - "stopCode": 1799, - "stopName": "Piano Torre - SS113 - Km 22 -500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Via Santa Cecilia", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5286915284027, - 38.2925483853718 + 15.556794544183, + 38.1790254919807 ] } }, { "type": "Feature", "properties": { - "stopId": 1798, - "stopCode": 1798, - "stopName": "Piano Torre - disc. Marina di Mezzacampa", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Via Stazione", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5328593459731, - 38.2931178603597 + 15.5582033501275, + 38.1849779814292 ] } }, { "type": "Feature", "properties": { - "stopId": 1796, - "stopCode": 1796, - "stopName": "Spartà - Strada Statale 113 - Km 21 -30", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Via XXVII Luglio", + "category": "ParkingGarage", + "type": "Enclosed_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5418907093827, - 38.2943530455468 + 15.5555117757413, + 38.1838497872266 ] } }, { "type": "Feature", "properties": { - "stopId": 1795, - "stopCode": 1795, - "stopName": "Spartà - Strada Statale 113 - Km 20 -800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Viale Annunziata", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5462152803157, - 38.2932740797102 + 15.5617521454509, + 38.2181009074337 ] } }, { "type": "Feature", "properties": { - "stopId": 1794, - "stopCode": 1794, - "stopName": "Piano Rocca - SS113 - Km 20 -500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Viale Annunziata", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5484009217522, - 38.2947999632816 + 15.5619603796296, + 38.2183258033534 ] } }, { "type": "Feature", "properties": { - "stopId": 1793, - "stopCode": 1793, - "stopName": "Piano Rocca - SS113 - Km 20 -300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Viale Europa", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5519009252046, - 38.2941999631292 + 15.5505095088371, + 38.178128409594 ] } }, { "type": "Feature", "properties": { - "stopId": 1792, - "stopCode": 1792, - "stopName": "Piano Rocca - SS113 - Km 20 -100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Viale Europa", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5543009275787, - 38.2937999630242 + 15.5491100814544, + 38.1789175841491 ] } }, { "type": "Feature", "properties": { - "stopId": 1787, - "stopCode": 1787, - "stopName": "Tono - Strada Statale 113 - Km 16 -900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Viale Europa", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5741009471766, - 38.2841999621497 + 15.5473858623075, + 38.1795612909096 ] } }, { "type": "Feature", "properties": { - "stopId": 1785, - "stopCode": 1785, - "stopName": "Tono - Strada Statale 113 - Km 15 - 950", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Viale Europa", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5804009534605, - 38.2802999618678 + 15.5471317021909, + 38.1798609953084 ] } }, { "type": "Feature", "properties": { - "stopId": 1784, - "stopCode": 1784, - "stopName": "Casa Bianca - Strada Statale 113 - Km 15 -500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Viale Europa", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5852009582925, - 38.2779999616515 + 15.5428564206561, + 38.1820992028878 ] } }, { "type": "Feature", "properties": { - "stopId": 1783, - "stopCode": 1783, - "stopName": "Casa Bianca - Strada Statale 113 - Km 15 -150", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Viale Europa", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5884765002276, - 38.2770741707061 + 15.5420081202704, + 38.1825790644878 ] } }, { "type": "Feature", "properties": { - "stopId": 1782, - "stopCode": 1782, - "stopName": "Timpazzi - Strada Statale 113 - Km 14 -900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Viale Europa ", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5925128625094, - 38.2748305765237 + 15.5476836852052, + 38.1795706806585 ] } }, { "type": "Feature", "properties": { - "stopId": 1781, - "stopCode": 1781, - "stopName": "Timpazzi - Strada Statale 113 - Km 14 -600", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Viale Europa ", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.5966598025655, - 38.2733563898505 + 15.5414622543725, + 38.1828534138502 ] } }, { "type": "Feature", "properties": { - "stopId": 1780, - "stopCode": 1780, - "stopName": "Timpazzi - Strada Statale 113 - Km 14 -000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Viale Giostra", + "category": "Open Parking Area", + "type": "Open_Carpark" }, "geometry": { "type": "Point", "coordinates": [ - 15.6014899180509, - 38.2721338399307 + 15.5567115999681, + 38.2063094707239 ] } }, { "type": "Feature", "properties": { - "stopId": 1779, - "stopCode": 1779, - "stopName": "Timpazzi - Strada Statale 113 - Km 13 -900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Villa Angela", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.604893544932, - 38.2715725517308 + 15.5072720197601, + 38.1055341575105 ] } }, { "type": "Feature", "properties": { - "stopId": 1778, - "stopCode": 1778, - "stopName": "Timpazzi - Strada Statale 113 - Km 13 -400", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Villa Dante", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.6110960964403, - 38.2707841341556 + 15.5426245599465, + 38.1726334740677 ] } }, { "type": "Feature", "properties": { - "stopId": 1777, - "stopCode": 1777, - "stopName": "Mortelle - Strada Statale 113 - Spiaggia D'Oro", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Villa Dante", + "category": "Park (City/County)", + "type": "Regio Nat State Park" }, "geometry": { "type": "Point", "coordinates": [ - 15.6145077222191, - 38.2707846970663 + 15.5435830534037, + 38.174250353833 ] } }, { "type": "Feature", "properties": { - "stopId": 1775, - "stopCode": 1775, - "stopName": "Mortelle - Strada Statale 113 n. 75a", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Villa Mazzini", + "category": "Recreation Facility", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.6212009955276, - 38.2709999599943 + 15.5538028051655, + 38.1973720145668 ] } }, { "type": "Feature", "properties": { - "stopId": 1774, - "stopCode": 1774, - "stopName": "Mortelle - Strada Statale 113 - Lido Delfino", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Villa Mazzini", + "category": "Historical Monument", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.623696322536, - 38.2711641364864 + 15.5546931701761, + 38.1980799305801 ] } }, { "type": "Feature", "properties": { - "stopId": 1773, - "stopCode": 1773, - "stopName": "Mortelle - Strada Statale 113 n. 33", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Villa Mazzini", + "category": "Park (City/County)", + "type": "Regio Nat State Park" }, "geometry": { "type": "Point", "coordinates": [ - 15.6271956512296, - 38.2713462655207 + 15.5542644970598, + 38.1982283322008 ] } }, { "type": "Feature", "properties": { - "stopId": 1772, - "stopCode": 1772, - "stopName": "Mortelle - Strada Statale 113 - Lido Mortelle", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Villa Morgana", + "category": "HotelorMotel", + "type": "Hotel" }, "geometry": { "type": "Point", "coordinates": [ - 15.629194716636, - 38.271251138281 + 15.6202193047691, + 38.263573914931 ] } }, { "type": "Feature", "properties": { - "stopId": 1771, - "stopCode": 1771, - "stopName": "Mortelle - Strada Statale 113 - Villa Regina", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Vinci Via Catania", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.6329862326884, - 38.2704930740311 + 15.5437851082555, + 38.1766354837458 ] } }, { "type": "Feature", "properties": { - "stopId": 1767, - "stopCode": 1767, - "stopName": "Ganzirri - via C. Pompea - 382", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Vinci Via Giuseppe Garibaldi", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.6270010014675, - 38.2643999597222 + 15.5556693825739, + 38.2030617397408 ] } }, { "type": "Feature", "properties": { - "stopId": 822, - "stopCode": 822, - "stopName": "Ganzirri; via Lago Grande n. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Vinci Viale Principe Umberto", + "category": "Grocery Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.6087009820115, - 38.2589999605787 + 15.5479880753452, + 38.1972118597972 ] } }, { "type": "Feature", "properties": { - "stopId": 823, - "stopCode": 823, - "stopName": "Ganzirri; via Lago Grande n. 41", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Vittorio Emanuele ", + "category": "Theatre", + "type": "Cultural" }, "geometry": { "type": "Point", "coordinates": [ - 15.6104009837489, - 38.2576999605 + 15.5548414172069, + 38.1955115318462 ] } }, { "type": "Feature", "properties": { - "stopId": 824, - "stopCode": 824, - "stopName": "Ganzirri; via Lago Grande n. 70", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Vivifit Centro Fitness", + "category": "SportsCenter", + "type": "Sport_Recreation" }, "geometry": { "type": "Point", "coordinates": [ - 15.6129009863871, - 38.2582999603839 + 15.6216538781409, + 38.2613104219038 ] } }, { "type": "Feature", "properties": { - "stopId": 825, - "stopCode": 825, - "stopName": "Ganzirri; via Lago Grande n. 87", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Voglia di Pane di Impoco Antonino", + "category": "Specialty Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.6151009887161, - 38.2588999602813 + 15.5449987934442, + 38.1910020706298 ] } }, { "type": "Feature", "properties": { - "stopId": 826, - "stopCode": 826, - "stopName": "Ganzirri; via Lago Grande n. 98", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Vola Palace Hotel", + "category": "HotelorMotel", + "type": "Hotel" }, "geometry": { "type": "Point", "coordinates": [ - 15.6181009919178, - 38.260299960141 + 15.4460658842289, + 38.2433811232125 ] } }, { "type": "Feature", "properties": { - "stopId": 827, - "stopCode": 827, - "stopName": "Ganzirri; via Lago Grande n. 106", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Volo Food Drink", + "category": "Restaurant", + "type": "Restaurant" }, "geometry": { "type": "Point", "coordinates": [ - 15.625000999233, - 38.260899959817 + 15.5531756808452, + 38.1916950860638 ] } }, { "type": "Feature", "properties": { - "stopId": 828, - "stopCode": 828, - "stopName": "Ganzirri; SP46 n.127", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Xstore", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.6297643671571, - 38.2606941065018 + 15.55166151882, + 38.1832669809049 ] } }, { "type": "Feature", "properties": { - "stopId": 829, - "stopCode": 829, - "stopName": "Torre Faro; SP46 ex Motel Faro", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Zafferia", + "category": "Builtup_Area", + "type": "Builtup_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.6330172296258, - 38.2613183912013 + 15.5050346764312, + 38.1518787896341 ] } }, { "type": "Feature", "properties": { - "stopId": 830, - "stopCode": 830, - "stopName": "Torre Faro; via Ciruito n. 170", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Zafferia", + "category": "City Center", + "type": "City_Town_Center" }, "geometry": { "type": "Point", "coordinates": [ - 15.6354876131702, - 38.2627147042387 + 15.5072201906703, + 38.151983279883 ] } }, { "type": "Feature", "properties": { - "stopId": 831, - "stopCode": 831, - "stopName": "Torre Faro; via Ciruito n. 177", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Zanghi Dr. Letterio", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6375010126742, - 38.2641999592239 + 15.5498393202176, + 38.1832464636887 ] } }, { "type": "Feature", "properties": { - "stopId": 833, - "stopCode": 833, - "stopName": "Torre Faro; via Nuova n. 41", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Zingales Dr. Giuseppe", + "category": "Pharmacy", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6414010168923, - 38.2649999590373 + 15.526279545153, + 38.1723491280017 ] } }, { "type": "Feature", "properties": { - "stopId": 834, - "stopCode": 834, - "stopName": "Torre Faro; via Palazzo; p.zza Chiesa", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Zodda Angelo", + "category": "Medical Service", + "type": "Medical_Facility" }, "geometry": { "type": "Point", "coordinates": [ - 15.6429010185022, - 38.2647999589654 + 15.5525169333552, + 38.1785096642632 ] } }, { "type": "Feature", "properties": { - "stopId": 835, - "stopCode": 835, - "stopName": "Torre Faro; via Palazzo n. 89", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Zona Artigianale Ponte Gallo", + "category": "Industrial Complex", + "type": "lndustrial_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.646201022105, - 38.2659999588067 + 15.4485834921004, + 38.2424085174864 ] } }, { "type": "Feature", "properties": { - "stopId": 836, - "stopCode": 836, - "stopName": "Torre Faro; via Area Torre n. 28", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Zona Artigianale Ponte Gallo", + "category": "Industrial Zone", + "type": "Industry" }, "geometry": { "type": "Point", "coordinates": [ - 15.6490010251633, - 38.2667999586716 + 15.4478644203992, + 38.2428227491759 ] } }, { "type": "Feature", "properties": { - "stopId": 837, - "stopCode": 837, - "stopName": "Torre Faro; via Circonvallazione Tirrena n. 63", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "Zuiki", + "category": "Clothing Store", + "type": "Retail_Services" }, "geometry": { "type": "Point", "coordinates": [ - 15.6508090875678, - 38.2688804824113 + 15.5532624412444, + 38.1850658345941 ] } }, { "type": "Feature", "properties": { - "stopId": 838, - "stopCode": 838, - "stopName": "Torre Faro; Contrada Torre Bianca n. 33", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.6469238355754, - 38.2710962764828 + 15.5107818234629, + 38.2818791188834 ] } }, { "type": "Feature", "properties": { - "stopId": 839, - "stopCode": 839, - "stopName": "Torre Faro; Contrada Torre Bianca n. 17a", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.6440640140901, - 38.271581830482 + 15.5111498039966, + 38.2685919951373 ] } }, { "type": "Feature", "properties": { - "stopId": 840, - "stopCode": 840, - "stopName": "Torre Faro; Contrada Torre Bianca n. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.6415010171934, - 38.2709999590317 + 15.5056126373036, + 38.2803221341406 ] } }, { "type": "Feature", "properties": { - "stopId": 841, - "stopCode": 841, - "stopName": "Torre Faro; Poste e Telecomunicazioni", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.6391010146078, - 38.2708999591466 + 15.4894017187199, + 38.2733851108389 ] } }, { "type": "Feature", "properties": { - "stopId": 842, - "stopCode": 842, - "stopName": "Torre Faro; istituto Marino", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.6339037614532, - 38.2709105900736 + 15.502221195375, + 38.2694635282884 ] } }, { "type": "Feature", "properties": { - "stopId": 895, - "stopCode": 895, - "stopName": "Via Archimede; 15", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.6001214098385, - 38.2615944537026 + 15.5005993830532, + 38.2760616117849 ] } }, { "type": "Feature", "properties": { - "stopId": 896, - "stopCode": 896, - "stopName": "Via Archimede; 28", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.6005009736132, - 38.2634999609563 + 15.4995329245695, + 38.2818683205641 ] } }, { "type": "Feature", "properties": { - "stopId": 897, - "stopCode": 897, - "stopName": "Via Archimede; 37", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.6012528210773, - 38.2651615140313 + 15.5149415924456, + 38.2925519268494 ] } }, { "type": "Feature", "properties": { - "stopId": 902, - "stopCode": 902, - "stopName": "Case Sperone; 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.601723041664, - 38.2661173095846 + 15.5233751929904, + 38.2949335835413 ] } }, { "type": "Feature", "properties": { - "stopId": 903, - "stopCode": 903, - "stopName": "Via Sperone Alto; Chiesa dei Miracoli", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5997949517654, - 38.2668033858643 + 15.5241107581395, + 38.2696121444226 ] } }, { "type": "Feature", "properties": { - "stopId": 904, - "stopCode": 904, - "stopName": "Via Sperone Alto; via S. Caterina", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5958049522545, - 38.2679044424394 + 15.4747120591527, + 38.2491595733598 ] } }, { "type": "Feature", "properties": { - "stopId": 905, - "stopCode": 905, - "stopName": "Via Sperone Alto; 39", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5935130621087, - 38.2687087840438 + 15.5277234905383, + 38.2829527290488 ] } }, { "type": "Feature", "properties": { - "stopId": 906, - "stopCode": 906, - "stopName": "C.a Badessa", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.58512646954, - 38.2717086367147 + 15.5574231103001, + 38.2886572396089 ] } }, { "type": "Feature", "properties": { - "stopId": 907, - "stopCode": 907, - "stopName": "C.da Badessa; coop. Solemar", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.584775184041, - 38.2701055148975 + 15.5591295244413, + 38.2637738380369 ] } }, { "type": "Feature", "properties": { - "stopId": 908, - "stopCode": 908, - "stopName": "C.da Badessa; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5843330946055, - 38.2684219096985 + 15.464900576113, + 38.2543191362326 ] } }, { "type": "Feature", "properties": { - "stopId": 1907, - "stopCode": 1907, - "stopName": "C.da Badessa - coop. Solemar", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5848009576405, - 38.2699999616707 + 15.540581239513, + 38.2727898737723 ] } }, { "type": "Feature", "properties": { - "stopId": 1906, - "stopCode": 1906, - "stopName": "C.a Badessa", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5851650243925, - 38.2716744205063 + 15.5482731304455, + 38.2844142151521 ] } }, { "type": "Feature", "properties": { - "stopId": 1904, - "stopCode": 1904, - "stopName": "Via Sperone Alto - via S. Caterina", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5956829653332, - 38.2678926221078 + 15.542269260273, + 38.2600533203343 ] } }, { "type": "Feature", "properties": { - "stopId": 1903, - "stopCode": 1903, - "stopName": "Via Sperone Alto - Chiesa dei Miracoli", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5997157387987, - 38.2667536340328 + 15.5129487504671, + 38.2544305374279 ] } }, { "type": "Feature", "properties": { - "stopId": 1896, - "stopCode": 1896, - "stopName": "Via Archimede - 28", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.6004009735094, - 38.2634999609609 + 15.53306407591, + 38.2017504078724 ] } }, { "type": "Feature", "properties": { - "stopId": 1832, - "stopCode": 1832, - "stopName": "Torre Faro; via Circuito statua Padre Pio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.6389779077453, - 38.265487855646 + 15.5189689652048, + 38.1959068878751 ] } }, { "type": "Feature", "properties": { - "stopId": 1769, - "stopCode": 1769, - "stopName": "Ganzirri - via C. Pompea - 2095", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.6323010071811, - 38.2664999594711 + 15.5000647081072, + 38.137342070797 ] } }, { "type": "Feature", "properties": { - "stopId": 1768, - "stopCode": 1768, - "stopName": "Ganzirri - via C. Pompea - 2055", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.6307010054544, - 38.265899959547 + 15.4875018289484, + 38.2687035605982 ] } }, { "type": "Feature", "properties": { - "stopId": 862, - "stopCode": 862, - "stopName": "Frantinaro rotatoria; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.6252009996985, - 38.2688999598065 + 15.4975006719007, + 38.2668352889877 ] } }, { "type": "Feature", "properties": { - "stopId": 1861, - "stopCode": 1861, - "stopName": "St. Panoramica dello Stretto Km 8 -700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.6226036928315, - 38.2666189158561 + 15.4791012125718, + 38.2651832733988 ] } }, { "type": "Feature", "properties": { - "stopId": 1860, - "stopCode": 1860, - "stopName": "St. Panoramica dello Stretto Km 8 -100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.6156845879376, - 38.2666241885953 + 15.5546657029525, + 38.2806761781646 ] } }, { "type": "Feature", "properties": { - "stopId": 2850, - "stopCode": 2850, - "stopName": "Strada Panoramica dello Stretto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.60818961564, - 38.2650147048614 + 15.5443830786154, + 38.2971107995307 ] } }, { "type": "Feature", "properties": { - "stopId": 2851, - "stopCode": 2851, - "stopName": "Strada Panoramica dello Stretto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.604989169819, - 38.26377320202 + 15.5394246160319, + 38.2103961676187 ] } }, { "type": "Feature", "properties": { - "stopId": 452, - "stopCode": 452, - "stopName": "St. Comunale S. Lucia Km 0;140", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5273008969316, - 38.1497999642086 + 15.561360752229, + 38.2594496088082 ] } }, { "type": "Feature", "properties": { - "stopId": 458, - "stopCode": 458, - "stopName": "St. Comunale S. Lucia Km 0;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5256008953045, - 38.1502999642809 + 15.4899583934744, + 38.2364216133143 ] } }, { "type": "Feature", "properties": { - "stopId": 453, - "stopCode": 453, - "stopName": "St. Comunale S. Lucia Km 0;400", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5252008949443, - 38.1511999642977 + 15.5526624990206, + 38.2480698093592 ] } }, { "type": "Feature", "properties": { - "stopId": 454, - "stopCode": 454, - "stopName": "St. Comunale S. Lucia Km 0;550", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.525100894885, - 38.1524999643018 + 15.5519944172887, + 38.2637870833382 ] } }, { "type": "Feature", "properties": { - "stopId": 455, - "stopCode": 455, - "stopName": "St. Comunale S. Lucia Km 0;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5242008940658, - 38.1541999643398 + 15.5746563898537, + 38.2569089578717 ] } }, { "type": "Feature", "properties": { - "stopId": 456, - "stopCode": 456, - "stopName": "St. Comunale S. Lucia; Scuola Elemen.", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5230008929328, - 38.1549999643905 + 15.5566858286437, + 38.2503439053559 ] } }, { "type": "Feature", "properties": { - "stopId": 457, - "stopCode": 457, - "stopName": "St. Comunale S. Lucia Km 1;100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5220008920048, - 38.1561999644327 + 15.5657816326819, + 38.2712726743644 ] } }, { "type": "Feature", "properties": { - "stopId": 470, - "stopCode": 470, - "stopName": "Chiesa S. Lucia", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5202008902921, - 38.1567999645087 + 15.5341074852629, + 38.2306083267553 ] } }, { "type": "Feature", "properties": { - "stopId": 471, - "stopCode": 471, - "stopName": "Via S. Lucia; 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5187008888586, - 38.1569999645719 + 15.509773761628, + 38.1556874217097 ] } }, { "type": "Feature", "properties": { - "stopId": 472, - "stopCode": 472, - "stopName": "Via S. Lucia; 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.517400887644, - 38.1580999646266 + 15.553415056308, + 38.2135369376268 ] } }, { "type": "Feature", "properties": { - "stopId": 463, - "stopCode": 463, - "stopName": "St. Militare; inc. St. Comunale S. Lucia", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5161008864026, - 38.1581999646813 + 15.5103798502909, + 38.1539713294724 ] } }, { "type": "Feature", "properties": { - "stopId": 473, - "stopCode": 473, - "stopName": "St. Militare; inc. St. Piano di Zona", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5137135504901, - 38.1552778217066 + 15.4704155252689, + 38.2434726527313 ] } }, { "type": "Feature", "properties": { - "stopId": 474, - "stopCode": 474, - "stopName": "St. Militare; pal. Città Sole", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5131008833992, - 38.153299964808 + 15.4700676889692, + 38.2370134390299 ] } }, { "type": "Feature", "properties": { - "stopId": 475, - "stopCode": 475, - "stopName": "Piano di Zona", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5151008852943, - 38.1527999647241 + 15.4723831803256, + 38.1244738675135 ] } }, { "type": "Feature", "properties": { - "stopId": 1473, - "stopCode": 1473, - "stopName": "St. Militare - inc. St. Piano di Zona", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.513500883837, - 38.1552999647909 + 15.4842741295897, + 38.1385017825937 ] } }, { "type": "Feature", "properties": { - "stopId": 464, - "stopCode": 464, - "stopName": "St. Comunale S. Lucia Km 2;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5154008857981, - 38.1604999647105 + 15.5131934752533, + 38.1375080804883 ] } }, { "type": "Feature", "properties": { - "stopId": 465, - "stopCode": 465, - "stopName": "St. Comunale S. Lucia Km 2;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5128008833548, - 38.1618999648194 + 15.4888429128137, + 38.1692971328292 ] } }, { "type": "Feature", "properties": { - "stopId": 466, - "stopCode": 466, - "stopName": "S. Filippo inf.; via Libertà", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.512300882895, - 38.1624999648403 + 15.4818172626491, + 38.1651895073523 ] } }, { "type": "Feature", "properties": { - "stopId": 467, - "stopCode": 467, - "stopName": "S. Filippo inf.; via Libertà n. 37", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5111008817601, - 38.1627999648904 + 15.5192832163452, + 38.2151980140053 ] } }, { "type": "Feature", "properties": { - "stopId": 468, - "stopCode": 468, - "stopName": "S. Filippo inf.; via Libertà n. 69", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5099391906637, - 38.163128264939 + 15.4835743458812, + 38.2194698836646 ] } }, { "type": "Feature", "properties": { - "stopId": 469, - "stopCode": 469, - "stopName": "S. Filippo inf.; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5090008797847, - 38.1635999649781 + 15.4853134035033, + 38.2575081466897 ] } }, { "type": "Feature", "properties": { - "stopId": 1462, - "stopCode": 1462, - "stopName": "St. Militare - Case Arcobaleno fine", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5142008845221, - 38.1558999647614 + 15.5204543376577, + 38.2252498607127 ] } }, { "type": "Feature", "properties": { - "stopId": 460, - "stopCode": 460, - "stopName": "St. Militare; Case Arcobaleno n. 173", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.516200886408, - 38.1549999646775 + 15.5102434837057, + 38.1881706258913 ] } }, { "type": "Feature", "properties": { - "stopId": 1459, - "stopCode": 1459, - "stopName": "St. Militare - Case Arcobaleno inizio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Woodland", + "type": "Forest" }, "geometry": { "type": "Point", "coordinates": [ - 15.5191008891856, - 38.1549999645554 + 15.5203159807295, + 38.2076273700179 ] } }, { "type": "Feature", "properties": { - "stopId": 1457, - "stopCode": 1457, - "stopName": "St. Comunale S. Lucia Km 1 100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Beach", + "type": "Sand_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5219770120648, - 38.156143789054 + 15.5408990698765, + 38.1584882416036 ] } }, { "type": "Feature", "properties": { - "stopId": 1456, - "stopCode": 1456, - "stopName": "St. Comunale S. Lucia Scuola Elemen.", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Beach", + "type": "Sand_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5230335217029, - 38.1549500948806 + 15.50111734943, + 38.0933604595779 ] } }, { "type": "Feature", "properties": { - "stopId": 1455, - "stopCode": 1455, - "stopName": "St. Comunale S. Lucia Km 0;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Beach", + "type": "Sand_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5243008941622, - 38.1541999643355 + 15.4984473535391, + 38.2848535406462 ] } }, { "type": "Feature", "properties": { - "stopId": 1454, - "stopCode": 1454, - "stopName": "St. Comunale S. Lucia Km 0;550", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Beach", + "type": "Sand_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5250008947885, - 38.1524999643061 + 15.5412576260481, + 38.2962329723205 ] } }, { "type": "Feature", "properties": { - "stopId": 1453, - "stopCode": 1453, - "stopName": "St. Comunale S. Lucia Km 0 400", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Beach", + "type": "Sand_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5251355340537, - 38.15114238426 + 15.451808085663, + 38.2539052444143 ] } }, { "type": "Feature", "properties": { - "stopId": 1458, - "stopCode": 1458, - "stopName": "St. Comunale S. Lucia Km 0;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Beach", + "type": "Sand_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5255008952081, - 38.1502999642851 + 15.474018965749, + 38.2689853162528 ] } }, { "type": "Feature", "properties": { - "stopId": 1452, - "stopCode": 1452, - "stopName": "St. Comunale S. Lucia Km 0;140", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Beach", + "type": "Sand_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.527200896835, - 38.1497999642129 + 15.5611355604291, + 38.2139385484871 ] } }, { "type": "Feature", "properties": { - "stopId": 1468, - "stopCode": 1468, - "stopName": "S. Filippo inf. - via Libertà n. 69", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Beach", + "type": "Sand_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5100008807216, - 38.1630999649364 + 15.6093958046836, + 38.2751836000225 ] } }, { "type": "Feature", "properties": { - "stopId": 1467, - "stopCode": 1467, - "stopName": "S. Filippo inf. - via Libertà n. 37", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Beach", + "type": "Sand_Area" }, "geometry": { "type": "Point", "coordinates": [ - 15.5110231016858, - 38.1627948648937 + 15.5934437309442, + 38.2478678848772 ] } }, { "type": "Feature", "properties": { - "stopId": 1466, - "stopCode": 1466, - "stopName": "S. Filippo inf. - via Libertà", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5122204128178, - 38.1624801048437 + 15.5257328064158, + 38.1514100308085 ] } }, { "type": "Feature", "properties": { - "stopId": 1465, - "stopCode": 1465, - "stopName": "St. Comunale S. Lucia Km 2;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5127062432663, - 38.1619602448233 + 15.5229815236317, + 38.1794082964126 ] } }, { "type": "Feature", "properties": { - "stopId": 1464, - "stopCode": 1464, - "stopName": "St. Comunale S. Lucia Km 2 000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.51551891678, - 38.1604219353224 + 15.52261068538, + 38.1781683939567 ] } }, { "type": "Feature", "properties": { - "stopId": 1155, - "stopCode": 1155, - "stopName": "Via Rosso da Messina", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5349009048018, - 38.1671999638817 + 15.4655745831444, + 38.2507811442759 ] } }, { "type": "Feature", "properties": { - "stopId": 156, - "stopCode": 156, - "stopName": "Via L. Pirandello; fer. 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.533717476609, - 38.1677613775613 + 15.5448741635612, + 38.2061410341932 ] } }, { "type": "Feature", "properties": { - "stopId": 157, - "stopCode": 157, - "stopName": "Via L. Pirandello; fer. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.532031761154, - 38.168905238593 + 15.5180309780985, + 38.1746857152798 ] } }, { "type": "Feature", "properties": { - "stopId": 158, - "stopCode": 158, - "stopName": "Via A. di Anfuso; fer. 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5307190194097, - 38.1696136734455 + 15.5184193237675, + 38.1748874596342 ] } }, { "type": "Feature", "properties": { - "stopId": 159, - "stopCode": 159, - "stopName": "Via A. di Anfuso; fer. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5287330991051, - 38.1704337059187 + 15.5443344963442, + 38.2071305780731 ] } }, { "type": "Feature", "properties": { - "stopId": 160, - "stopCode": 160, - "stopName": "Via A. di Anfuso; fer. 3", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5271008973465, - 38.1710999642143 + 15.526191307653, + 38.187569294106 ] } }, { "type": "Feature", "properties": { - "stopId": 161, - "stopCode": 161, - "stopName": "Rione Aldisio; via A. di Anfuso", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.525459918067, - 38.171761117906 + 15.5258263733457, + 38.1872452017822 ] } }, { "type": "Feature", "properties": { - "stopId": 162, - "stopCode": 162, - "stopName": "Rione Aldisio; via G. di Giovanni", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5271008973778, - 38.1721999642142 + 15.5255974789881, + 38.1873086088388 ] } }, { "type": "Feature", "properties": { - "stopId": 930, - "stopCode": 930, - "stopName": "C.da Baglio - Capolinea Bus", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5208008911944, - 38.1682999644818 + 15.5259908365827, + 38.1876416601204 ] } }, { "type": "Feature", "properties": { - "stopId": 1163, - "stopCode": 1163, - "stopName": "Rione Aldisio - via G. di Giovanni", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5268008970935, - 38.1723999642269 + 15.5129012996768, + 38.1612290334081 ] } }, { "type": "Feature", "properties": { - "stopId": 1161, - "stopCode": 1161, - "stopName": "Rione Aldisio via A. di Anfuso", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5253969080604, - 38.1717105102981 + 15.5126863970896, + 38.1613876119318 ] } }, { "type": "Feature", "properties": { - "stopId": 1160, - "stopCode": 1160, - "stopName": "Via A. di Anfuso - fer. 3", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5270196864218, - 38.1710305427069 + 15.526920336906, + 38.1503299671945 ] } }, { "type": "Feature", "properties": { - "stopId": 1159, - "stopCode": 1159, - "stopName": "Via A. di Anfuso - fer. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5287008988714, - 38.1702999641463 + 15.547104644132, + 38.1046367948107 ] } }, { "type": "Feature", "properties": { - "stopId": 1158, - "stopCode": 1158, - "stopName": "Via A. di Anfuso - fer. 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5308069495528, - 38.1695084016737 + 15.5267153982309, + 38.1885973802461 ] } }, { "type": "Feature", "properties": { - "stopId": 1157, - "stopCode": 1157, - "stopName": "Via L. Pirandello - fer. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5319009019339, - 38.1688999640099 + 15.5129188995452, + 38.1618813827136 ] } }, { "type": "Feature", "properties": { - "stopId": 1156, - "stopCode": 1156, - "stopName": "Via L. Pirandello - fer. 1", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5336009035514, - 38.1676999639373 + 15.5268911699871, + 38.1884422574525 ] } }, { "type": "Feature", "properties": { - "stopId": 721, - "stopCode": 721, - "stopName": "SP45 Curcuraci; comp. Delle More", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5664009387986, - 38.2638999624951 + 15.498576711086, + 38.2339294595798 ] } }, { "type": "Feature", "properties": { - "stopId": 722, - "stopCode": 722, - "stopName": "SP45 Curcuraci Km 6;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5614009337182, - 38.2616999627165 + 15.5121349770892, + 38.1583089939637 ] } }, { "type": "Feature", "properties": { - "stopId": 723, - "stopCode": 723, - "stopName": "SP45 Curcuraci Km 6;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5590247047009, - 38.2609883862506 + 15.5449299273099, + 38.2042727170004 ] } }, { "type": "Feature", "properties": { - "stopId": 724, - "stopCode": 724, - "stopName": "SP45 Massa S. Giovanni Km 7;700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.548888394774, - 38.2593008346841 + 15.5447470251707, + 38.204557090155 ] } }, { "type": "Feature", "properties": { - "stopId": 725, - "stopCode": 725, - "stopName": "SP45 Massa S. Giovanni Km 9;700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5437995259459, - 38.2593898498223 + 15.5444917368025, + 38.2063182718488 ] } }, { "type": "Feature", "properties": { - "stopId": 726, - "stopCode": 726, - "stopName": "SP45 Massa S. Giovanni Km 9;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5422989168138, - 38.2598620565598 + 15.5120387916659, + 38.1586051081703 ] } }, { "type": "Feature", "properties": { - "stopId": 727, - "stopCode": 727, - "stopName": "SP45 Massa S. Giovanni Km 10;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5424150102462, - 38.2620925951969 + 15.5265284427188, + 38.1879347416725 ] } }, { "type": "Feature", "properties": { - "stopId": 728, - "stopCode": 728, - "stopName": "SP45 Massa S. Giovanni Km 10;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5428799803391, - 38.2636186415002 + 15.5193882484494, + 38.1751733194118 ] } }, { "type": "Feature", "properties": { - "stopId": 729, - "stopCode": 729, - "stopName": "Massa S. Giovanni; chiesa di S. Giovanni", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5438292144216, - 38.2648855159242 + 15.5261760317724, + 38.1878291300605 ] } }, { "type": "Feature", "properties": { - "stopId": 730, - "stopCode": 730, - "stopName": "Massa S. Giovanni; piazza di S. Giovanni", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.545000917552, - 38.265899963433 + 15.526407205727, + 38.1881051131671 ] } }, { "type": "Feature", "properties": { - "stopId": 731, - "stopCode": 731, - "stopName": "SP45 Massa S. Giovanni Km 10;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5459639846199, - 38.2678749291695 + 15.5128579587805, + 38.1606765283226 ] } }, { "type": "Feature", "properties": { - "stopId": 732, - "stopCode": 732, - "stopName": "SP45 Massa S. Lucia Km 11;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5473781477087, - 38.2687874229292 + 15.4678865719354, + 38.2501515020912 ] } }, { "type": "Feature", "properties": { - "stopId": 733, - "stopCode": 733, - "stopName": "SP45 Massa S. Lucia; 5", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5482009207901, - 38.2685999632938 + 15.4703019571855, + 38.248353336652 ] } }, { "type": "Feature", "properties": { - "stopId": 1735, - "stopCode": 1735, - "stopName": "SP45 Massa S. Nicola Km 12 -000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5431995008542, - 38.2709489012094 + 15.5127270268074, + 38.1621403927238 ] } }, { "type": "Feature", "properties": { - "stopId": 1736, - "stopCode": 1736, - "stopName": "SP50 Massa S. Giorgio; inizio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5370781249904, - 38.2738894380839 + 15.5231600577872, + 38.1790581459629 ] } }, { "type": "Feature", "properties": { - "stopId": 1738, - "stopCode": 1738, - "stopName": "SP50 Massa S. Giorgio - 41", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5368271196651, - 38.2737865438125 + 15.5233442181692, + 38.1799936744206 ] } }, { "type": "Feature", "properties": { - "stopId": 1739, - "stopCode": 1739, - "stopName": "SP50 Massa S. Giorgio - c.da Vigna Grande", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Bridge" }, "geometry": { "type": "Point", "coordinates": [ - 15.5357325260819, - 38.272369455909 + 15.4680775237617, + 38.249871208403 ] } }, { "type": "Feature", "properties": { - "stopId": 1740, - "stopCode": 1740, - "stopName": "SP50 Castanea - inizio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5309009038537, - 38.2697999640394 + 15.4766210724536, + 38.0627957634089 ] } }, { "type": "Feature", "properties": { - "stopId": 1741, - "stopCode": 1741, - "stopName": "SP50 Castanea - casa Camarda-Costa", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5285009014778, - 38.268299964142 + 15.4759482737173, + 38.0617530003574 ] } }, { "type": "Feature", "properties": { - "stopId": 1742, - "stopCode": 1742, - "stopName": "SP50 Castanea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5254008984465, - 38.267399964274 + 15.528512817471, + 38.1932481341556 ] } }, { "type": "Feature", "properties": { - "stopId": 1743, - "stopCode": 1743, - "stopName": "SP50 Castanea - casa vinicola", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5234008964665, - 38.2657999643591 + 15.526653427724, + 38.2191951936429 ] } }, { "type": "Feature", "properties": { - "stopId": 1744, - "stopCode": 1744, - "stopName": "SP50 Castanea - p.zza SS. Rosario", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5217008947541, - 38.2632999644314 + 15.4520405483813, + 38.2471140796647 ] } }, { "type": "Feature", "properties": { - "stopId": 1745, - "stopCode": 1745, - "stopName": "SP50 Castanea - 5a", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5230008960062, - 38.2631999643763 + 15.518439679007, + 38.2244917284089 ] } }, { "type": "Feature", "properties": { - "stopId": 1746, - "stopCode": 1746, - "stopName": "SP50 Castanea - Casa Popolari", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5243405712083, - 38.2618396360368 + 15.5152635225663, + 38.2257095417118 ] } }, { "type": "Feature", "properties": { - "stopId": 1747, - "stopCode": 1747, - "stopName": "SP50 Castanea - via Calabrisella 47", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5238800356882, - 38.2603863165589 + 15.5139487004034, + 38.2261915428916 ] } }, { "type": "Feature", "properties": { - "stopId": 1748, - "stopCode": 1748, - "stopName": "SP50 Castanea; via Calabrisella 31", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5237617707832, - 38.259723375241 + 15.5145117142324, + 38.2259859232038 ] } }, { "type": "Feature", "properties": { - "stopId": 1749, - "stopCode": 1749, - "stopName": "SP50 S. Cosimo - Carabinieri", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5220553102203, - 38.2568983790529 + 15.5138863563511, + 38.2250003468348 ] } }, { "type": "Feature", "properties": { - "stopId": 1750, - "stopCode": 1750, - "stopName": "SP50 S. Cosimo - 117", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5234008961456, - 38.2544999643605 + 15.5156445535003, + 38.2242251864531 ] } }, { "type": "Feature", "properties": { - "stopId": 1751, - "stopCode": 1751, - "stopName": "SP50 S. Cosimo - 125", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5243008969442, - 38.2519999643227 + 15.5203282915521, + 38.2225068993353 ] } }, { "type": "Feature", "properties": { - "stopId": 1752, - "stopCode": 1752, - "stopName": "SP50 S. Cosimo - Casa di Riposo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5269008994321, - 38.2509999642123 + 15.5209235876712, + 38.2231699497944 ] } }, { "type": "Feature", "properties": { - "stopId": 1753, - "stopCode": 1753, - "stopName": "SP50 C.da Orbo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.527800900219, - 38.2479999641744 + 15.5165873638792, + 38.2238064203008 ] } }, { "type": "Feature", "properties": { - "stopId": 1754, - "stopCode": 1754, - "stopName": "SP50", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5253008975982, - 38.2409999642816 + 15.5184073778338, + 38.2230527108615 ] } }, { "type": "Feature", "properties": { - "stopId": 2853, - "stopCode": 2853, - "stopName": "Strada Panoramica dello Stretto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.6030043057614, - 38.2611406676679 + 15.4728079557137, + 38.0551263714417 ] } }, { "type": "Feature", "properties": { - "stopId": 2852, - "stopCode": 2852, - "stopName": "Strada Panoramica dello Stretto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.6052895637474, - 38.2636194621512 + 15.5231295078689, + 38.1820590732295 ] } }, { "type": "Feature", "properties": { - "stopId": 2849, - "stopCode": 2849, - "stopName": "Strada Panoramica dello Stretto", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.6094717264668, - 38.2649515291117 + 15.5230691916796, + 38.1840059574549 ] } }, { "type": "Feature", "properties": { - "stopId": 860, - "stopCode": 860, - "stopName": "St. Panoramica dello Stretto Km 8;100", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.6158710495752, - 38.2665360450206 + 15.5230357062062, + 38.1838058721593 ] } }, { "type": "Feature", "properties": { - "stopId": 861, - "stopCode": 861, - "stopName": "St. Panoramica dello Stretto Km 8;700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.6227916230855, - 38.2664367855198 + 15.4791707517797, + 38.2205174306975 ] } }, { "type": "Feature", "properties": { - "stopId": 898, - "stopCode": 898, - "stopName": "Serri; Strada Comunale n.32", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.6029009761921, - 38.2662999608456 + 15.4830084802309, + 38.2173165710431 ] } }, { "type": "Feature", "properties": { - "stopId": 899, - "stopCode": 899, - "stopName": "Serri; Strada Comunale; Granatari-Masse", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.6065011684913, - 38.2680968202532 + 15.5225304292392, + 38.221784966897 ] } }, { "type": "Feature", "properties": { - "stopId": 900, - "stopCode": 900, - "stopName": "C.da Serri; 22", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.6090009826052, - 38.2679999605636 + 15.5287153350243, + 38.2161842488374 ] } }, { "type": "Feature", "properties": { - "stopId": 901, - "stopCode": 901, - "stopName": "C.da Serri; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.6107009843872, - 38.2680999604847 + 15.5274005392689, + 38.2188788038259 ] } }, { "type": "Feature", "properties": { - "stopId": 1899, - "stopCode": 1899, - "stopName": "Serri; Strada Comunale; Granatari-Masse", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.6064254603369, - 38.2681219943466 + 15.5280841493226, + 38.2181455958974 ] } }, { "type": "Feature", "properties": { - "stopId": 1898, - "stopCode": 1898, - "stopName": "Serri; Strada Comunale n.32", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.6028724554917, - 38.2663454993098 + 15.5269961495867, + 38.2188169331434 ] } }, { "type": "Feature", "properties": { - "stopId": 2001, - "stopCode": 2001, - "stopName": "Università di Messina - Incubatore d'Imprese", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5978197406826, - 38.2585380010799 + 15.5232701492219, + 38.2213121695578 ] } }, { "type": "Feature", "properties": { - "stopId": 2014, - "stopCode": 2014, - "stopName": "Dipartimento di Scienze - Biblioteca", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5978894808251, - 38.2608252310765 + 15.524322729424, + 38.2207287354211 ] } }, { "type": "Feature", "properties": { - "stopId": 2013, - "stopCode": 2013, - "stopName": "Dipartimento di Scienze - Aula Magna", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5991662121422, - 38.260669381018 + 15.5271134342084, + 38.2191723556111 ] } }, { "type": "Feature", "properties": { - "stopId": 1905, - "stopCode": 1905, - "stopName": "Via Sperone Alto; 39 ", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5933990818773, - 38.268716157285 + 15.5051010471512, + 38.2285209507603 ] } }, { "type": "Feature", "properties": { - "stopId": 1902, - "stopCode": 1902, - "stopName": "Case Sperone; 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.6016016853481, - 38.2661388980291 + 15.475942824971, + 38.244163772223 ] } }, { "type": "Feature", "properties": { - "stopId": 1897, - "stopCode": 1897, - "stopName": "Via Archimede; 37", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.6012632114864, - 38.2652163463544 + 15.4746532287614, + 38.2446525554158 ] } }, { "type": "Feature", "properties": { - "stopId": 1895, - "stopCode": 1895, - "stopName": "Via Archimede; 15", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.6000811626132, - 38.261624702552 + 15.47704939739, + 38.0630365653445 ] } }, { "type": "Feature", "properties": { - "stopId": 209, - "stopCode": 209, - "stopName": "Via Sardegna; 11", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5464009163932, - 38.1786999633838 + 15.4749948253607, + 38.0586888281987 ] } }, { "type": "Feature", "properties": { - "stopId": 210, - "stopCode": 210, - "stopName": "Via del Santo; 56", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5451009150997, - 38.1781999634403 + 15.5228635571647, + 38.1821984999428 ] } }, { "type": "Feature", "properties": { - "stopId": 212, - "stopCode": 212, - "stopName": "Via del Santo; 152", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5419009119611, - 38.1782999635788 + 15.5279025636451, + 38.1914087931888 ] } }, { "type": "Feature", "properties": { - "stopId": 214, - "stopCode": 214, - "stopName": "Via del Santo; 244", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.538900909007, - 38.1776999637083 + 15.5276052101423, + 38.1912610246584 ] } }, { "type": "Feature", "properties": { - "stopId": 216, - "stopCode": 216, - "stopName": "Via del Santo; 257", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5365009066289, - 38.1764999638117 + 15.5274275272222, + 38.1904100660717 ] } }, { "type": "Feature", "properties": { - "stopId": 217, - "stopCode": 217, - "stopName": "Via del Santo; 20", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.535100905247, - 38.1758999638719 + 15.5287781638275, + 38.190970186175 ] } }, { "type": "Feature", "properties": { - "stopId": 218, - "stopCode": 218, - "stopName": "Via del Santo; 57", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5334009035753, - 38.1752999639448 + 15.4914706301503, + 38.0797018988864 ] } }, { "type": "Feature", "properties": { - "stopId": 220, - "stopCode": 220, - "stopName": "Via del Santo; 105", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5306204482707, - 38.1738948533408 + 15.4912610272403, + 38.0784876068972 ] } }, { "type": "Feature", "properties": { - "stopId": 221, - "stopCode": 221, - "stopName": "Via del Santo; 222", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5290526332402, - 38.1733779852369 + 15.4927570739273, + 38.0820022569805 ] } }, { "type": "Feature", "properties": { - "stopId": 222, - "stopCode": 222, - "stopName": "Via del Santo; 288", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5272304155223, - 38.1731568994381 + 15.4884275483294, + 38.0728439125563 ] } }, { "type": "Feature", "properties": { - "stopId": 223, - "stopCode": 223, - "stopName": "Via del Santo; 312", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.526974671731, - 38.1735894239923 + 15.4956377403159, + 38.0883053398408 ] } }, { "type": "Feature", "properties": { - "stopId": 224, - "stopCode": 224, - "stopName": "Via del Santo; 384", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5259095631098, - 38.1749959237659 + 15.540710672996, + 38.1876272043176 ] } }, { "type": "Feature", "properties": { - "stopId": 227, - "stopCode": 227, - "stopName": "Via del Santo; 406", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Brunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5239008943883, - 38.1756999643496 + 15.5319779389484, + 38.1957284658747 ] } }, { "type": "Feature", "properties": { - "stopId": 228, - "stopCode": 228, - "stopName": "Via del Santo; 442", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5227102946824, - 38.1761173303932 + 15.4930889150881, + 38.0821223328899 ] } }, { "type": "Feature", "properties": { - "stopId": 201, - "stopCode": 201, - "stopName": "Bordonaro; via Comunale n. 58", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.521631961819, - 38.1765248076137 + 15.5431475961051, + 38.2018935585372 ] } }, { "type": "Feature", "properties": { - "stopId": 230, - "stopCode": 230, - "stopName": "Via Comunale Bordonaro; 84", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5196928468552, - 38.1769471579224 + 15.4911565896278, + 38.0795325736757 ] } }, { "type": "Feature", "properties": { - "stopId": 203, - "stopCode": 203, - "stopName": "Bordonaro; via Comunale inc. Oglio Vecchio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5171735359094, - 38.175924878866 + 15.5404127249052, + 38.189365193455 ] } }, { "type": "Feature", "properties": { - "stopId": 204, - "stopCode": 204, - "stopName": "Bordonaro; Via Cianciolo n. 90", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5135449500002, - 38.176409477654 + 15.4910130412729, + 38.0784979456939 ] } }, { "type": "Feature", "properties": { - "stopId": 232, - "stopCode": 232, - "stopName": "Via Cumia; 23", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5125008834846, - 38.17669996483 + 15.4872777422428, + 38.0717589365974 ] } }, { "type": "Feature", "properties": { - "stopId": 233, - "stopCode": 233, - "stopName": "Via Cumia Km 1;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5080956601441, - 38.1731960031779 + 15.4963272462422, + 38.0894523166154 ] } }, { "type": "Feature", "properties": { - "stopId": 234, - "stopCode": 234, - "stopName": "Via Cumia Km 1;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5040281028394, - 38.1739348622629 + 15.4525275900911, + 38.2474828967245 ] } }, { "type": "Feature", "properties": { - "stopId": 235, - "stopCode": 235, - "stopName": "Via Cumia; p.zza Cumia Inferiore", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5031008745069, - 38.1748999652222 + 15.4543410304691, + 38.2476735516396 ] } }, { "type": "Feature", "properties": { - "stopId": 236, - "stopCode": 236, - "stopName": "Via Cumia Km 1;900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5026008740121, - 38.174099965243 + 15.5406340951491, + 38.1885065340946 ] } }, { "type": "Feature", "properties": { - "stopId": 237, - "stopCode": 237, - "stopName": "Via Cumia Km 2;600", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5023571049682, - 38.1719940350247 + 15.4878171398583, + 38.0728160730659 ] } }, { "type": "Feature", "properties": { - "stopId": 238, - "stopCode": 238, - "stopName": "Via Cumia Km 3;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5016445892427, - 38.1713769255678 + 15.4531754860123, + 38.2473984621696 ] } }, { "type": "Feature", "properties": { - "stopId": 239, - "stopCode": 239, - "stopName": "Via Cumia Km 3;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.501583310171, - 38.1725252824968 + 15.5309056817786, + 38.1949380192729 ] } }, { "type": "Feature", "properties": { - "stopId": 240, - "stopCode": 240, - "stopName": "Via Cumia Km 3;350", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5000008715189, - 38.1726999653509 + 15.4553269708524, + 38.2475599907365 ] } }, { "type": "Feature", "properties": { - "stopId": 241, - "stopCode": 241, - "stopName": "Via Cumia Superiore n. 8; Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.4983008699341, - 38.173299965421 + 15.4944295885412, + 38.0852174788576 ] } }, { "type": "Feature", "properties": { - "stopId": 205, - "stopCode": 205, - "stopName": "Bordonaro; via Cianciolo n. 120", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5124008833976, - 38.1769999648342 + 15.4964430976611, + 38.0900018306525 ] } }, { "type": "Feature", "properties": { - "stopId": 206, - "stopCode": 206, - "stopName": "Bordonaro; via Cianciolo n. 178", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.510852147604, - 38.1778014363305 + 15.5303778061481, + 38.1948535700008 ] } }, { "type": "Feature", "properties": { - "stopId": 207, - "stopCode": 207, - "stopName": "Bordonaro; via Cianciolo n. 73", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5103008814751, - 38.1797999649217 + 15.5136412141691, + 38.170201785758 ] } }, { "type": "Feature", "properties": { - "stopId": 208, - "stopCode": 208, - "stopName": "Bordonaro Sup. - Capolinea", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5076008789552, - 38.1814999650342 + 15.5406360262777, + 38.1871403571375 ] } }, { "type": "Feature", "properties": { - "stopId": 1207, - "stopCode": 1207, - "stopName": "Bordonaro - via Cianciolo n. 73", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5103008814722, - 38.1796999649217 + 15.4944966881077, + 38.2077088625751 ] } }, { "type": "Feature", "properties": { - "stopId": 1206, - "stopCode": 1206, - "stopName": "Bordonaro; via Ciangcolo n. 178", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5107700501681, - 38.1778284320579 + 15.506446359894, + 38.1976534340644 ] } }, { "type": "Feature", "properties": { - "stopId": 1205, - "stopCode": 1205, - "stopName": "Bordonaro - via Cianciolo n. 120", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5124008833948, - 38.1768999648341 + 15.4997428681113, + 38.2032749180515 ] } }, { "type": "Feature", "properties": { - "stopId": 1240, - "stopCode": 1240, - "stopName": "Via Cumia Km 3 -350", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.4999008714247, - 38.172699965355 + 15.4777735070082, + 38.0640873451109 ] } }, { "type": "Feature", "properties": { - "stopId": 1238, - "stopCode": 1238, - "stopName": "Via Cumia Km 3 -000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5016008729951, - 38.1714999652848 + 15.4849043311204, + 38.0703233762659 ] } }, { "type": "Feature", "properties": { - "stopId": 1237, - "stopCode": 1237, - "stopName": "Via Cumia Km 2 -600", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5023766598379, - 38.1720751914753 + 15.4841003458031, + 38.0695573991403 ] } }, { "type": "Feature", "properties": { - "stopId": 1236, - "stopCode": 1236, - "stopName": "Via Cumia Km 1 -900", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5027008741065, - 38.1740999652389 + 15.5224692603515, + 38.1775871095708 ] } }, { "type": "Feature", "properties": { - "stopId": 1235, - "stopCode": 1235, - "stopName": "Via Cumia - p.zza Cumia Inferiore", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5030008744123, - 38.1748999652263 + 15.5127116876404, + 38.1652522083161 ] } }, { "type": "Feature", "properties": { - "stopId": 1233, - "stopCode": 1233, - "stopName": "Via Cumia Km 1 -000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5081196683722, - 38.173086261789 + 15.5216988813241, + 38.176654168704 ] } }, { "type": "Feature", "properties": { - "stopId": 1232, - "stopCode": 1232, - "stopName": "Via Cumia - 23", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.51260088358, - 38.1766999648258 + 15.4985458950787, + 38.0930916487234 ] } }, { "type": "Feature", "properties": { - "stopId": 1230, - "stopCode": 1230, - "stopName": "Via Comunale Bordonaro; 84", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5195022449933, - 38.176851471749 + 15.5135589097825, + 38.1698465279993 ] } }, { "type": "Feature", "properties": { - "stopId": 1201, - "stopCode": 1201, - "stopName": "Bordonaro via Comunale n. 58", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5216507583545, - 38.1764317175253 + 15.4983569414826, + 38.0932404332124 ] } }, { "type": "Feature", "properties": { - "stopId": 1228, - "stopCode": 1228, - "stopName": "Via del Santo; 442", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5227987310665, - 38.1760585066965 + 15.521789478556, + 38.1770724429405 ] } }, { "type": "Feature", "properties": { - "stopId": 199, - "stopCode": 199, - "stopName": "Bordonaro; Case Gialle Chiesa", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5240008944278, - 38.1736999643457 + 15.4958054047696, + 38.0890379091773 ] } }, { "type": "Feature", "properties": { - "stopId": 1222, - "stopCode": 1222, - "stopName": "Via del Santo - 288", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5272754647687, - 38.1730704554393 + 15.5130871984853, + 38.1676358823247 ] } }, { "type": "Feature", "properties": { - "stopId": 1221, - "stopCode": 1221, - "stopName": "Via del Santo - 222", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5291873289688, - 38.1733278675675 + 15.5133262414892, + 38.1675479311154 ] } }, { "type": "Feature", "properties": { - "stopId": 1220, - "stopCode": 1220, - "stopName": "Via del Santo - 105", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5307465121984, - 38.1738114060743 + 15.5138187315913, + 38.1698577387781 ] } }, { "type": "Feature", "properties": { - "stopId": 219, - "stopCode": 219, - "stopName": "Viacolo S. Cosimo", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5335009036609, - 38.1748999639406 + 15.49454006427, + 38.0864865384212 ] } }, { "type": "Feature", "properties": { - "stopId": 215, - "stopCode": 215, - "stopName": "Vico Torrente Baglio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5393009093749, - 38.1768999636912 + 15.4723704243232, + 38.2262085278691 ] } }, { "type": "Feature", "properties": { - "stopId": 213, - "stopCode": 213, - "stopName": "Vico Baglio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.543500913519, - 38.1778999635097 + 15.4923345274017, + 38.0811791505047 ] } }, { "type": "Feature", "properties": { - "stopId": 1381, - "stopCode": 1381, - "stopName": "Ponte Schiavo; SP35 Km 6;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.465830504415, - 38.0848556350941 + 15.5008024600206, + 38.0983458507902 ] } }, { "type": "Feature", "properties": { - "stopId": 1112, - "stopCode": 1112, - "stopName": "Provinciale", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5428009126376, - 38.1711999635408 + 15.51296302307, + 38.1653286863186 ] } }, { "type": "Feature", "properties": { - "stopId": 1893, - "stopCode": 1893, - "stopName": "Viale San Matino; Don Orione", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5476752748434, - 38.1764629128356 + 15.5129317358399, + 38.164835386263 ] } }, { "type": "Feature", "properties": { - "stopId": 1892, - "stopCode": 1892, - "stopName": "Viale San Martino; 347", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5494646763721, - 38.1784531950115 + 15.5233478287785, + 38.1801786248896 ] } }, { "type": "Feature", "properties": { - "stopId": 1450, - "stopCode": 1450, - "stopName": "Zafferia; via Comunale Km 2;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5072250313612, - 38.1528567292839 + 15.5139012243093, + 38.1701880062486 ] } }, { "type": "Feature", "properties": { - "stopId": 1449, - "stopCode": 1449, - "stopName": "Zafferia - Case Popolari", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5096508301182, - 38.1534442649523 + 15.5017183483642, + 38.0996093440559 ] } }, { "type": "Feature", "properties": { - "stopId": 1443, - "stopCode": 1443, - "stopName": "Tor. Zafferia; via Comunale Km 0;460", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5208633533884, - 38.1463177012409 + 15.4947590144305, + 38.0865052238851 ] } }, { "type": "Feature", "properties": { - "stopId": 1432, - "stopCode": 1432, - "stopName": "Larderia Sup. - SP39 Km 3;300", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.4952751948995, - 38.1418590347209 + 15.4764220504474, + 38.0622057177527 ] } }, { "type": "Feature", "properties": { - "stopId": 997, - "stopCode": 997, - "stopName": "Via Guardia; Parcheggio Verde Stadio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5150008855031, - 38.1635999647269 + 15.5425666191621, + 38.2015801305692 ] } }, { "type": "Feature", "properties": { - "stopId": 998, - "stopCode": 998, - "stopName": "Via Guardia", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.516700887177, - 38.1652999646552 + 15.5410362903393, + 38.2001742775593 ] } }, { "type": "Feature", "properties": { - "stopId": 1998, - "stopCode": 1998, - "stopName": "Via Guardia", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5166650262932, - 38.1652778246195 + 15.5373149623331, + 38.1913459960867 ] } }, { "type": "Feature", "properties": { - "stopId": 1997, - "stopCode": 1997, - "stopName": "Via Guardia; Parcheggio Verde Stadio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5150008991951, - 38.1636231652168 + 15.501468182031, + 38.0996089264454 ] } }, { "type": "Feature", "properties": { - "stopId": 1995, - "stopCode": 1995, - "stopName": "Via degli Agrumi; PalaRescifina", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5235526274516, - 38.1570358214146 + 15.4719105724592, + 38.0543857717816 ] } }, { "type": "Feature", "properties": { - "stopId": 1491, - "stopCode": 1491, - "stopName": "Via degli Agrumi", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5269008966366, - 38.1529999642252 + 15.5384446774806, + 38.2230876163316 ] } }, { "type": "Feature", "properties": { - "stopId": 155, - "stopCode": 155, - "stopName": "Via Rosso da Messina", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5350545628181, - 38.1672447782304 + 15.5098337985328, + 38.227687970328 ] } }, { "type": "Feature", "properties": { - "stopId": 1239, - "stopCode": 1239, - "stopName": "Via Cumia Km 3;200", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5015223330029, - 38.1724725695352 + 15.508682549744, + 38.2272437283186 ] } }, { "type": "Feature", "properties": { - "stopId": 1234, - "stopCode": 1234, - "stopName": "Via Cumia Km 1;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5039577305713, - 38.1739215148476 + 15.4858602240132, + 38.2149407465258 ] } }, { "type": "Feature", "properties": { - "stopId": 1204, - "stopCode": 1204, - "stopName": "Bordonaro; Via Cianciolo n. 90", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5134832728426, - 38.1764384724848 + 15.4865040257462, + 38.2144039530036 ] } }, { "type": "Feature", "properties": { - "stopId": 1203, - "stopCode": 1203, - "stopName": "Bordonaro; via Comunale inc. Oglio Vecchio", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5172793244685, - 38.1758985815066 + 15.52836431357, + 38.2166691027373 ] } }, { "type": "Feature", "properties": { - "stopId": 279, - "stopCode": 279, - "stopName": "Via Comunale Bisconte; ang. v.le Europa", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5390445967206, - 38.1863895661396 + 15.5276174509843, + 38.2178551842818 ] } }, { "type": "Feature", "properties": { - "stopId": 130, - "stopCode": 130, - "stopName": "Via T. Cannizzaro; 166", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5505976134536, - 38.1897224413507 + 15.4768387685581, + 38.2434782159989 ] } }, { "type": "Feature", "properties": { - "stopId": 132, - "stopCode": 132, - "stopName": "Via T. Cannizzaro; 252", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Brunnel", + "type": "Tunnel" }, "geometry": { "type": "Point", "coordinates": [ - 15.5476009179309, - 38.1908999633301 + 15.4758299336897, + 38.2439769507065 ] } }, { "type": "Feature", "properties": { - "stopId": 1268, - "stopCode": 1268, - "stopName": "Via Gerobino Pilli; 45", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Railway Element", + "type": "Rail" }, "geometry": { "type": "Point", "coordinates": [ - 15.5399247285163, - 38.1847163055571 + 15.5385232634557, + 38.1565113547995 ] } }, { "type": "Feature", "properties": { - "stopId": 1132, - "stopCode": 1132, - "stopName": "Via T. Cannizzaro - 252", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Railway Element", + "type": "Rail" }, "geometry": { "type": "Point", "coordinates": [ - 15.5474580161548, - 38.1908135341202 + 15.541004762811, + 38.1597534673161 ] } }, { "type": "Feature", "properties": { - "stopId": 1130, - "stopCode": 1130, - "stopName": "Via T. Cannizzaro - 166", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Railway Element", + "type": "Rail" }, "geometry": { "type": "Point", "coordinates": [ - 15.5504721143948, - 38.1896256570976 + 15.5331228807353, + 38.1497032058405 ] } }, { "type": "Feature", "properties": { - "stopId": 1816, - "stopCode": 1816, - "stopName": "Rodia; SS113; Km 28;000", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Railway Element", + "type": "Rail" }, "geometry": { "type": "Point", "coordinates": [ - 15.4870068776244, - 38.2737520030582 + 15.5015718353133, + 38.0970532471696 ] } }, { "type": "Feature", "properties": { - "stopId": 1814, - "stopCode": 1814, - "stopName": "S. Saba; SS113; Km 27;500", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Railway Element", + "type": "Rail" }, "geometry": { "type": "Point", "coordinates": [ - 15.490955953001, - 38.2767272300946 + 15.5125810624625, + 38.1175656502453 ] } }, { "type": "Feature", "properties": { - "stopId": 1803, - "stopCode": 1803, - "stopName": "Piano Torre; SS113; Km 23;700", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Railway Element", + "type": "Rail" }, "geometry": { "type": "Point", "coordinates": [ - 15.5166696497096, - 38.2916270605439 + 15.5138507328621, + 38.1202189727869 ] } }, { "type": "Feature", "properties": { - "stopId": 1802, - "stopCode": 1802, - "stopName": "Piano Torre; SS113; Km 23;400 c.da Ziino", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Railway Element", + "type": "Rail" }, "geometry": { "type": "Point", "coordinates": [ - 15.5191076261488, - 38.2921378677965 + 15.522110539152, + 38.190532525023 ] } }, { "type": "Feature", "properties": { - "stopId": 1797, - "stopCode": 1797, - "stopName": "Spartà - Strada Statale 113; Km 21;800", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Railway Element", + "type": "Rail" }, "geometry": { "type": "Point", "coordinates": [ - 15.5366961511614, - 38.2936422913038 + 15.5157542130807, + 38.1911779344139 ] } }, { "type": "Feature", "properties": { - "stopId": 1786, - "stopCode": 1786, - "stopName": "Tono; Strada Statale 113; Km 16;600", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Railway Element", + "type": "Rail" }, "geometry": { "type": "Point", "coordinates": [ - 15.5764038808965, - 38.2823247507516 + 15.5140803194647, + 38.191387937547 ] } }, { "type": "Feature", "properties": { - "stopId": 1776, - "stopCode": 1776, - "stopName": "Mortelle; Strada Statale 113 n. 42", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Railway Element", + "type": "Rail" }, "geometry": { "type": "Point", "coordinates": [ - 15.6184801019358, - 38.2709473470122 + 15.5333589643443, + 38.1742200741416 ] } }, { "type": "Feature", "properties": { - "stopId": 509, - "stopCode": 509, - "stopName": "Via Montepiselli; 23", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Railway Element", + "type": "Rail" }, "geometry": { "type": "Point", "coordinates": [ - 15.5397009101798, - 38.191199963672 + 15.5267440819691, + 38.1405111506359 ] } }, { "type": "Feature", "properties": { - "stopId": 626, - "stopCode": 626, - "stopName": "Via S. Jachiddu; Oasi S. Francesco", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Railway Element", + "type": "Rail" }, "geometry": { "type": "Point", "coordinates": [ - 15.5441009153173, - 38.2194999634781 + 15.521000007891, + 38.1315450023142 ] } }, { "type": "Feature", "properties": { - "stopId": 624, - "stopCode": 624, - "stopName": "Via S. Jachiddu; coop. Azalea 73", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Railway Element", + "type": "Rail" }, "geometry": { "type": "Point", "coordinates": [ - 15.5392009104769, - 38.21839996369 + 15.5386609755943, + 38.1856858130594 ] } }, { "type": "Feature", "properties": { - "stopId": 1131, - "stopCode": 1131, - "stopName": "Via T. Cannizzaro - 231", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Railway Element", + "type": "Rail" }, "geometry": { "type": "Point", "coordinates": [ - 15.549079475401, - 38.1900556955192 + 15.5442163948176, + 38.1640344971603 ] } }, { "type": "Feature", "properties": { - "stopId": 875, - "stopCode": 875, - "stopName": "Torrente Guardia; fer. 2", - "mainStop": true, - "type": "bus", - "year": "2021" + "name": "", + "category": "Railway Element", + "type": "Rail" }, "geometry": { "type": "Point", "coordinates": [ - 15.569800941876, - 38.2522999623456 + 15.4925296730303, + 38.0799455046039 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.4907193283484, + 38.0762783835517 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.487311311043, + 38.0712792658918 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.486308506608, + 38.0703649150225 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5327740844098, + 38.1925072363995 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5108405590017, + 38.1150434313276 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.477019517766, + 38.0613098297074 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.537880566692, + 38.168460777911 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5359279629809, + 38.180891510054 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5158574850393, + 38.1232289328224 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.517632034208, + 38.1260912119305 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5027994699435, + 38.1004310984554 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.560481617711, + 38.1852305607957 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5367852547303, + 38.1843183432388 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5056147333073, + 38.1077141561919 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5297277953294, + 38.1918618121075 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5297420098091, + 38.1450943618991 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5280977737802, + 38.1426292137228 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.549861287998, + 38.171513737707 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.534707729668, + 38.1768154606783 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.4950485930121, + 38.0853070166696 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5396472061803, + 38.190136338249 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.4806630865579, + 38.0658327310414 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.4774489724039, + 38.0620315727131 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.4766501137896, + 38.0605783704228 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.4750462813965, + 38.0556223666908 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.4611869564975, + 38.2322219869451 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5349444317524, + 38.1698008502097 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.4993404398728, + 38.0928876621272 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5560813064883, + 38.179928516745 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5436371926627, + 38.1680650099676 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5138309002016, + 38.1915450437035 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5229609622229, + 38.1344406238362 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Railway Element", + "type": "Rail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5336657382764, + 38.1715266367567 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Place of Worship", + "type": "Religious_Facility" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.4864600077085, + 38.0693529866941 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5753165257886, + 38.2406664934859 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5955034182639, + 38.2581929437535 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5415313528331, + 38.1827037900026 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5078667617697, + 38.1536097202411 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5014599280057, + 38.0909842315186 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5503578180337, + 38.2200108856442 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5232421307396, + 38.143348262019 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5985721120609, + 38.2683048014158 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5162196142132, + 38.161893811946 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.520921063941, + 38.1367957502826 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5014599839925, + 38.0908941399829 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5503578066142, + 38.2200108856445 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5255794340801, + 38.1473317673775 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5253023011066, + 38.1469626031161 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5486792723197, + 38.1789125702239 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5290408785427, + 38.1701738170623 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5256202822882, + 38.1540195666499 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5934968558429, + 38.2627379536719 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5496306514021, + 38.1894702852543 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5232485184597, + 38.1715652311663 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5428661966221, + 38.1819952851469 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5498698766064, + 38.1785092822047 + ] + } + }, + { + "type": "Feature", + "properties": { + "name": "", + "category": "Open Parking Area", + "type": "Open_Carpark" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5414660147697, + 38.1674309006378 ] } } ] }, - "total": 1474, - "count": 1474, + "total": 1531, + "count": 1531, "page": 0, "totalPages": 1, "nextPage": true diff --git a/src/assets/map/map-component-maps/messina_cycling_paths.json b/src/assets/map/map-component-maps/messina_cycling_paths.json index 1bf1172fb42b182f7c0a2a6fe2738556f148cb8a..811785eab0d86fa4ae77fecdb36e3d8f52739851 100644 --- a/src/assets/map/map-component-maps/messina_cycling_paths.json +++ b/src/assets/map/map-component-maps/messina_cycling_paths.json @@ -1,117 +1 @@ -[ - { - "id": "urn:ngsi-ld:GtfsShape:messina:CyclingPaths:CRS84:1", - "alternateName": "CyclingPaths", - "description": "Pista ciclabile Messina - Dinnamare", - "location": { - "coordinates": [ - [15.5612754821777, 38.2057461528513], - [15.5396461486816, 38.2137042649229], - [15.5279731750488, 38.2217626526206], - [15.5256128311157, 38.2283031144339], - [15.5229520797729, 38.2282019777484], - [15.5219650268555, 38.2273928792016], - [15.5218362808228, 38.2263140671392], - [15.5210638046265, 38.2264152064497], - [15.5202054977417, 38.2273254539165], - [15.5213642120361, 38.2298538593357], - [15.5227375030518, 38.2319439414548], - [15.5241537094116, 38.2345058956597], - [15.5190896987915, 38.229449320375], - [15.5154848098755, 38.2247969606063], - [15.5132102966309, 38.2201780192588], - [15.5113220214844, 38.217716711774], - [15.5091762542725, 38.218289900406], - [15.5061721801758, 38.2153227575021], - [15.5024814605713, 38.2124566523255], - [15.5002498626709, 38.2096241551407], - [15.49720287323, 38.2074322661897], - [15.4951858520508, 38.2059484885141], - [15.4920101165771, 38.1995746449794], - [15.4849290847778, 38.1928629579669], - [15.4799938201904, 38.1879046813689], - [15.4727840423584, 38.1738375293672], - [15.4648876190186, 38.1668198052653], - [15.4643297195435, 38.1587890805601] - ], - "type": "LineString" - }, - "name": "Messina - Dinnamare", - "type": "GtfsShape", - "@context": [ - "https://smartdatamodels.org/context.jsonld", - "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld" - ], - "dateCreated": "2022-10-14T09:39:09.016Z", - "dateModified": "2022-10-14T09:39:09.016Z" - }, - { - "id": "urn:ngsi-ld:GtfsShape:messina:CyclingPaths:CRS84:2", - "alternateName": "CyclingPaths", - "description": "Pista ciclabile Messina - Centro", - "location": { - "coordinates": [ - [15.556404590607, 38.197247547181], - [15.55163025856, 38.189414124437], - [15.552043318749, 38.189178012077], - [15.552424192429, 38.188967197626], - [15.552581101656, 38.189100010947], - [15.552727282047, 38.188996711505], - [15.552932471037, 38.188906060766], - [15.553153753281, 38.188773246963], - [15.553459525108, 38.188596161463], - [15.55367410183, 38.188478104766], - [15.555133223534, 38.19032059499], - [15.556321442127, 38.191861615525], - [15.556497126818, 38.19204186355], - [15.556568875909, 38.192110906863], - [15.556604750454, 38.192143320436], - [15.556640625, 38.192142005046], - [15.557144880295, 38.19711264068], - [15.556860566139, 38.197175878031], - [15.556436777115, 38.197289705411], - [15.556404590607, 38.197247547181] - ], - "type": "LineString" - }, - "name": "Messina - Centro", - "type": "GtfsShape", - "@context": [ - "https://smartdatamodels.org/context.jsonld", - "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld" - ], - "dateCreated": "2022-10-14T09:39:09.024Z", - "dateModified": "2022-10-14T09:39:09.024Z" - }, - { - "id": "urn:ngsi-ld:GtfsShape:messina:CyclingPaths:CRS84:3", - "alternateName": "CyclingPaths", - "location": { - "coordinates": [ - [15.565814, 38.218324], - [15.5655241012573, 38.2208523355462], - [15.5656099319458, 38.2223020944011], - [15.5667686462402, 38.2248306744285], - [15.5687856674194, 38.226920900893], - [15.56960105896, 38.2284379631292], - [15.5700302124023, 38.2298201478416], - [15.5710601806641, 38.2329552499491], - [15.5720043182373, 38.2344721863219], - [15.5731201171875, 38.2355171685269], - [15.5760169029236, 38.2369497810148], - [15.5778193473816, 38.2380115814698], - [15.5783772468567, 38.2375059641392], - [15.5791068077087, 38.2379441660288] - ], - "type": "LineString" - }, - "name": "Messina - Litoranea", - "type": "GtfsShape", - "@context": [ - "https://smartdatamodels.org/context.jsonld", - "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld" - ], - "dateCreated": "2022-10-14T09:39:09.028Z", - "dateModified": "2022-10-14T09:39:09.028Z" - } -] +[{"id":"urn:ngsi-ld:GtfsShape:messina:CyclingPaths:CRS84:1","alternateName":"CyclingPaths","description":"Pista ciclabile Messina - Dinnamare","location":{"coordinates":[[15.5612754821777,38.2057461528513],[15.5396461486816,38.2137042649229],[15.5279731750488,38.2217626526206],[15.5256128311157,38.2283031144339],[15.5229520797729,38.2282019777484],[15.5219650268555,38.2273928792016],[15.5218362808228,38.2263140671392],[15.5210638046265,38.2264152064497],[15.5202054977417,38.2273254539165],[15.5213642120361,38.2298538593357],[15.5227375030518,38.2319439414548],[15.5241537094116,38.2345058956597],[15.5190896987915,38.229449320375],[15.5154848098755,38.2247969606063],[15.5132102966309,38.2201780192588],[15.5113220214844,38.217716711774],[15.5091762542725,38.218289900406],[15.5061721801758,38.2153227575021],[15.5024814605713,38.2124566523255],[15.5002498626709,38.2096241551407],[15.49720287323,38.2074322661897],[15.4951858520508,38.2059484885141],[15.4920101165771,38.1995746449794],[15.4849290847778,38.1928629579669],[15.4799938201904,38.1879046813689],[15.4727840423584,38.1738375293672],[15.4648876190186,38.1668198052653],[15.4643297195435,38.1587890805601]],"type":"LineString"},"name":"Messina - Dinnamare","type":"GtfsShape","@context":["https:\/\/smartdatamodels.org\/context.jsonld","https:\/\/uri.etsi.org\/ngsi-ld\/v1\/ngsi-ld-core-context.jsonld"],"dateCreated":"2022-10-14T09:39:09.016Z","dateModified":"2022-10-14T09:39:09.016Z"}, {"id":"urn:ngsi-ld:GtfsShape:messina:CyclingPaths:CRS84:2","alternateName":"CyclingPaths","description":"Pista ciclabile Messina - Centro","location":{"coordinates":[[15.556404590607,38.197247547181],[15.55163025856,38.189414124437],[15.552043318749,38.189178012077],[15.552424192429,38.188967197626],[15.552581101656,38.189100010947],[15.552727282047,38.188996711505],[15.552932471037,38.188906060766],[15.553153753281,38.188773246963],[15.553459525108,38.188596161463],[15.55367410183,38.188478104766],[15.555133223534,38.19032059499],[15.556321442127,38.191861615525],[15.556497126818,38.19204186355],[15.556568875909,38.192110906863],[15.556604750454,38.192143320436],[15.556640625,38.192142005046],[15.557144880295,38.19711264068],[15.556860566139,38.197175878031],[15.556436777115,38.197289705411],[15.556404590607,38.197247547181]],"type":"LineString"},"name":"Messina - Centro","type":"GtfsShape","@context":["https:\/\/smartdatamodels.org\/context.jsonld","https:\/\/uri.etsi.org\/ngsi-ld\/v1\/ngsi-ld-core-context.jsonld"],"dateCreated":"2022-10-14T09:39:09.024Z","dateModified":"2022-10-14T09:39:09.024Z"}, {"id":"urn:ngsi-ld:GtfsShape:messina:CyclingPaths:CRS84:3","alternateName":"CyclingPaths","location":{"coordinates":[[15.565814,38.218324],[15.5655241012573,38.2208523355462],[15.5656099319458,38.2223020944011],[15.5667686462402,38.2248306744285],[15.5687856674194,38.226920900893],[15.56960105896,38.2284379631292],[15.5700302124023,38.2298201478416],[15.5710601806641,38.2329552499491],[15.5720043182373,38.2344721863219],[15.5731201171875,38.2355171685269],[15.5760169029236,38.2369497810148],[15.5778193473816,38.2380115814698],[15.5783772468567,38.2375059641392],[15.5791068077087,38.2379441660288]],"type":"LineString"},"name":"Messina - Litoranea","type":"GtfsShape","@context":["https:\/\/smartdatamodels.org\/context.jsonld","https:\/\/uri.etsi.org\/ngsi-ld\/v1\/ngsi-ld-core-context.jsonld"],"dateCreated":"2022-10-14T09:39:09.028Z","dateModified":"2022-10-14T09:39:09.028Z"}] \ No newline at end of file diff --git a/src/assets/map/map-component-maps/messina_pois.json b/src/assets/map/map-component-maps/messina_pois.json index acb9601e29a9146e68086da8d6da2d2bf7f8a5d7..a858ff6a6b1f714bd89cad04be7b73839fd5454a 100644 --- a/src/assets/map/map-component-maps/messina_pois.json +++ b/src/assets/map/map-component-maps/messina_pois.json @@ -3122,6 +3122,21 @@ ] } }, + { + "type": "Feature", + "properties": { + "name": "Casa di Kiposo Uesire", + "category": "Medical service", + "type": "Medical_Facility" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.5512628545939, + 39.9924097586637 + ] + } + }, { "type": "Feature", "properties": {