diff --git a/src/app/pages/dashboard-management/dashboard-card-view/dashboard-card-view.component.ts b/src/app/pages/dashboard-management/dashboard-card-view/dashboard-card-view.component.ts
index d51c47f5bfb7b8767ae0cd79af95e7db4b9db6ca..edf7c2b1bff8916b7a7e04efac99364d33e595d0 100644
--- a/src/app/pages/dashboard-management/dashboard-card-view/dashboard-card-view.component.ts
+++ b/src/app/pages/dashboard-management/dashboard-card-view/dashboard-card-view.component.ts
@@ -10,6 +10,8 @@ import { MenuType } from '../../../model/enumeration/menu-type.model';
 import { DashboardCloneWizardComponent } from '../dashboard-clone-wizard/dashboard-clone-wizard.component';
 import { TargetCrudService } from '../services/target-crud.service';
 import { OidcUserInformationService } from '../../../auth/services/oidc-user-information.service';
+import { UserCrudService } from '../services/user-crud.service';
+import { IGroupRepresentation } from '../../../model/group-representation.model';
 
 @Component({
   selector: 'ngx-dashboard-card-view',
@@ -22,7 +24,7 @@ export class DashboardCardViewComponent implements OnInit {
   constructor(private route: ActivatedRoute, private service: DashboardPageCrudService, private translateService: TranslateService,
     private toastrService: NbToastrService, private router: Router, private dashboardCloneService: DashboardCloneWizardComponent,
     private targetService: TargetCrudService,
-    private userService: OidcUserInformationService,
+    private userService: OidcUserInformationService, private userCrudService: UserCrudService
     ) {
     route.params.subscribe(params => {
       if (params['dashboardType'] != undefined && params['dashboardType'] != null) {
@@ -55,6 +57,9 @@ export class DashboardCardViewComponent implements OnInit {
     );
     this.getSharedWithUser();
     this.getSharedWithRole();
+    this.getSharedWithGroup();
+    this.getPublic();
+    
   }
   openDashboard(dashboardId: number) {
     this.dashboardCloneService.previewDashboard(dashboardId);
@@ -100,6 +105,10 @@ export class DashboardCardViewComponent implements OnInit {
     );
   }
   getSharedWithRole(){
+    console.log(this.userService.user);
+    console.log("GROUP IDM")
+    this.userCrudService.getIdmGroups().subscribe(res => {console.log(res)});
+    console.log()
     this.targetService.getAll().subscribe(
       (data) => {
         for (let i = 0; i < data.length; i++) {
@@ -118,6 +127,33 @@ export class DashboardCardViewComponent implements OnInit {
       error => (this.showError(error))
     );
   }
+  getSharedWithGroup(){
+    let groups: string[] = [];
+    this.targetService.getAll().subscribe(
+      (data) => {
+        this.userCrudService.getUserGroups(this.userService.user.preferred_username)
+        .subscribe(res => {
+          groups = Object.keys(res);
+          console.log(groups)
+          for (let i = 0; i < data.length; i++) {
+            for(let j = 0; j<groups.length; j++){
+              if (data[i].createdBy !== this.userService.user.preferred_username && data[i].name == groups[j]) {
+                this.service.getPageById(data[i].dashboardPage.id.toString()).subscribe(res => {
+                  if(res.type.toString()=== this.dashboardType.toString()){
+                    this.pages.push(res);
+                  }
+                });
+              }
+            }
+  
+          }
+        });
+      },
+      error => (this.showError(error))
+    );
+  }
+
+
   getPublic(){
     this.targetService.getAll().subscribe(
       (data) => {
@@ -130,7 +166,7 @@ export class DashboardCardViewComponent implements OnInit {
           // console.log(data[i].name);
             console.log("IS EQUAL");
             this.service.getPageById(data[i].dashboardPage.id.toString()).subscribe(res => {
-              if(res.type.toString()=== this.dashboardType.toString()){
+              if(data[i].name === this.dashboardType.toString()){
                 console.log("LOG-----> getPageById----> res");
                 console.log(res);
                 this.pages.push(res);
diff --git a/src/app/pages/dashboard-management/manage-dashboard-page/manage-dashboard-page.component.ts b/src/app/pages/dashboard-management/manage-dashboard-page/manage-dashboard-page.component.ts
index e9357ca94c5c3a6e36367494a04f2a9c0fd1334b..5b74b5263de943a8f031aa4a623d96e5b315a3cc 100644
--- a/src/app/pages/dashboard-management/manage-dashboard-page/manage-dashboard-page.component.ts
+++ b/src/app/pages/dashboard-management/manage-dashboard-page/manage-dashboard-page.component.ts
@@ -17,6 +17,7 @@ import { DashboardSharingComponent } from '../dashboard-sharing/dashboard-sharin
 import { DashboardPageCrudService } from '../services/dashboard-page-crud.service';
 import { MenuBlockCrudService } from '../services/menu-block-crud.service';
 import { TargetCrudService } from '../services/target-crud.service';
+import { UserCrudService } from '../services/user-crud.service';
 
 @Component({
   selector: 'ngx-manage-dashboard-page',
@@ -37,7 +38,7 @@ export class ManageDashboardPageComponent implements OnInit {
     private toastrService: NbToastrService,
     private targetService: TargetCrudService,
     private userService: OidcUserInformationService,
-    private dashboardCloneService: DashboardCloneWizardComponent,
+    private dashboardCloneService: DashboardCloneWizardComponent, private userCrudService: UserCrudService
   ) {
     this.initTableSettings();
   }
@@ -84,6 +85,8 @@ export class ManageDashboardPageComponent implements OnInit {
       error => (this.showError(error))
     );
     this.getSharedWithRole();
+    this.getSharedWithGroup();
+    this.getPublic();
   }
 
   getSharedWithRole() {
@@ -105,6 +108,49 @@ export class ManageDashboardPageComponent implements OnInit {
     );
   }
 
+  getSharedWithGroup() {
+    let groups: string[] = [];
+    this.targetService.getAll().subscribe(
+      (data) => {
+        this.userCrudService.getUserGroups(this.userService.user.preferred_username)
+          .subscribe(res => {
+            groups = Object.keys(res);
+            console.log(groups)
+            for (let i = 0; i < data.length; i++) {
+              for (let j = 0; j < groups.length; j++) {
+                if (data[i].createdBy !== this.userService.user.preferred_username && data[i].name == groups[j]) {
+                  this.service.getPageById(data[i].dashboardPage.id.toString()).subscribe(res => {
+                    this.pages.push(res);
+                    this.source.empty();
+                    this.source.load(this.pages);
+                  });
+                }
+              }
+
+            }
+          });
+      },
+      error => (this.showError(error))
+    );
+  }
+  getPublic(){
+    this.targetService.getAll().subscribe(
+      (data) => {
+        for (let i = 0; i < data.length; i++) {
+          if (data[i].name === "PUBLIC") {
+            console.log("IS EQUAL");
+            this.service.getPageById(data[i].dashboardPage.id.toString()).subscribe(res => {
+              this.pages.push(res);
+              this.source.empty();
+              this.source.load(this.pages);
+            });
+
+          }
+        }
+      },
+      error => (this.showError(error))
+    );
+  }
   showSuccess() {
     this.toastrService.success(this.translateService.instant('dashboardPage.deleted'), this.translateService.instant('general.success'));
   }
diff --git a/src/app/pages/dashboard-management/services/user-crud.service.ts b/src/app/pages/dashboard-management/services/user-crud.service.ts
index 522075074b3c895be9551f33daf71ab3d4f5f4b1..fae94eaa89e9bd4d72a6ea2e251dcdba8ca39130 100644
--- a/src/app/pages/dashboard-management/services/user-crud.service.ts
+++ b/src/app/pages/dashboard-management/services/user-crud.service.ts
@@ -32,4 +32,8 @@ export class UserCrudService {
     return this.http.get<Array<string>>(`${this.apiURL}/user/get-user-roles`);
   }
 
+  getUserGroups(username:string): Observable<Array<string>> {
+    return this.http.get<Array<string>>(`${this.apiURL}/user/get-user-groups/${username}`);
+  }
+
 }
diff --git a/src/app/pages/dashboard-management/target-filter/target-filter.component.html b/src/app/pages/dashboard-management/target-filter/target-filter.component.html
index 0560c7a880de3147f0ead0525e5de8b460ac1501..3329a06f40c01abdb4bb2b487fccc625803163b6 100644
--- a/src/app/pages/dashboard-management/target-filter/target-filter.component.html
+++ b/src/app/pages/dashboard-management/target-filter/target-filter.component.html
@@ -45,7 +45,8 @@
                 </button>
 
                <!-- GROUPS -->
-                <!-- <nb-select *ngIf="!useIDM4Target" size="small" placeholder="{{'target.select_group'|translate}}" formControlName="selectedAvailableGroup" 
+
+                <nb-select *ngIf="!useIDM4Target" size="small" placeholder="{{'target.select_group'|translate}}" formControlName="selectedAvailableGroup" 
                         nbTooltip="{{'target.select_group'|translate}}">
                     <nb-option *ngFor="let group of filterTarget(fullListAvailableGroup,'GROUP'); " [value]="group">
                         {{group.code}} - {{group.value}}
@@ -59,7 +60,7 @@
                 </nb-select>
                 <button nbButton size="small" status="primary" (click)="addTargetGroup()">
                     <nb-icon icon="globe-2-outline"></nb-icon>{{'general.add' | translate}} {{'TargetType.GROUP'| translate}}
-                </button>  -->
+                </button> 
 
         </div>
 
diff --git a/src/assets/map/map-component-maps/amsterdam_bike_request.json b/src/assets/map/map-component-maps/amsterdam_bike_request.json
new file mode 100644
index 0000000000000000000000000000000000000000..9f361857383892ed15b02a52354b3b3f9e5e97b1
--- /dev/null
+++ b/src/assets/map/map-component-maps/amsterdam_bike_request.json
@@ -0,0 +1 @@
+[{"id": "urn:ngsi-ld:MapLayer:Amsterdam:bike", "alternateName": "amsterdam_bike.geojson", "name": "amsterdam_bike", "description": "test", "type": "MapLayer", "@context": ["https://smartdatamodels.org/context.jsonld", "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld", "https://git.code.tecnalia.com/urbanite/public/-/raw/main/datamodels/maplayer-ngsi.jsonld"], "map": {"@context": ["https://smartdatamodels.org/context.jsonld"], "type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"coordinates": [[[4.914765321697576, 52.40090183267139], [4.915541444235235, 52.400950402869555], [4.91975319585497, 52.399989331685894], [4.921291152361031, 52.39906063072072], [4.920719034910035, 52.39882703716078], [4.92233283760631, 52.396670728970136], [4.921903260306038, 52.39563937230829], [4.921305221099868, 52.39449316320201], [4.919613526908911, 52.39131987622145], [4.918129031281871, 52.38973810987231], [4.914011775271143, 52.38677854055973], [4.907329225317251, 52.38368092273388], [4.903585393166414, 52.381929138044526], [4.901761479811459, 52.38095824038207], [4.901018744312124, 52.381213229949], [4.898765695528242, 52.38254209065461], [4.901371913848172, 52.38289438813774], [4.902102733399489, 52.3830664423431], [4.906108167746497, 52.384835154707716], [4.907317644407415, 52.38624393687988], [4.905893747846394, 52.38962920790566], [4.906003868545694, 52.39042600780894], [4.906351875640484, 52.391042851735676], [4.908108144185644, 52.39278800341869], [4.908576344553484, 52.39327828587099], [4.910093546421034, 52.39270160204829], [4.910672683616696, 52.392946150930236], [4.912368896879733, 52.39224904934902], [4.912500697921658, 52.39193815516871], [4.913212156378294, 52.39257867898371], [4.912800298561742, 52.39278415075017], [4.912825331327467, 52.39331416344003], [4.912481799003642, 52.394004836845404], [4.910698563465024, 52.39692801208564], [4.910497980948334, 52.397169916623106], [4.910306737254687, 52.39729470435094], [4.909244433496565, 52.39771306717191], [4.9093810120624, 52.397937051235026], [4.90994032208103, 52.39845290542105], [4.909176504050571, 52.39981563387057], [4.908308523973129, 52.40116557808521], [4.910691259985583, 52.40076440622973], [4.913035792192208, 52.400757501384014], [4.914765321697576, 52.40090183267139]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:amsterdam:nord_neighborhood_zones:1", "properties": {"fill": "#e2311d", "fill-opacity": 0.5, "type": "GtfsShape", "name": "1", "alternateName": "amsterdam_nord_neighborhood", "description": "Volewijck", "val": 49}}, {"type": "Feature", "geometry": {"coordinates": [[[4.938476069361814, 52.38667009662046], [4.932917228974744, 52.38758712688807], [4.932415329044288, 52.38634494853828], [4.929649608148546, 52.38739263811766], [4.928144248018517, 52.38593153054013], [4.923915721212286, 52.38756115591255], [4.922639151601694, 52.38633369815733], [4.922374874152637, 52.38618881361332], [4.921814825657258, 52.38605215871583], [4.920594151333283, 52.38589461033694], [4.91942395292781, 52.38570116322633], [4.918785752073676, 52.38554589532762], [4.918974883874535, 52.38538450564292], [4.919288319144524, 52.38439116869839], [4.918715767810546, 52.38429399536289], [4.91952141874024, 52.38174548891267], [4.919830370660967, 52.380790689335484], [4.916726155076746, 52.38039826355543], [4.910977668477963, 52.379982775898824], [4.905809072745559, 52.37986649150764], [4.903912376835659, 52.38024087762426], [4.901761479811459, 52.38095824038207], [4.903585393166414, 52.381929138044526], [4.907329225317251, 52.38368092273388], [4.914011775271143, 52.38677854055973], [4.918129031281871, 52.38973810987231], [4.919613526908911, 52.39131987622145], [4.921305221099868, 52.39449316320201], [4.921903260306038, 52.39563937230829], [4.92233283760631, 52.396670728970136], [4.920719034910035, 52.39882703716078], [4.921291152361031, 52.39906063072072], [4.922852444523584, 52.39720959917465], [4.923679713027314, 52.394370989614444], [4.924797904101808, 52.390665481121474], [4.925289397942452, 52.390641694207396], [4.927122030594963, 52.39093800490533], [4.930511706234499, 52.39123041451638], [4.933185892484837, 52.39133165030548], [4.933242386389241, 52.39141689002612], [4.934062382366925, 52.391348353433706], [4.934121009158291, 52.39138318016723], [4.935041449838626, 52.39121022497236], [4.939723575155166, 52.39058143482714], [4.938877660748319, 52.38834143403167], [4.938476069361814, 52.38667009662046]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:amsterdam:nord_neighborhood_zones:2", "properties": {"fill": "#b40000", "fill-opacity": 0.5, "type": "GtfsShape", "name": "2", "alternateName": "amsterdam_nord_neighborhood", "description": "Ijplein/Vogelbuurt", "val": 54}}, {"type": "Feature", "geometry": {"coordinates": [[[4.940988161886632, 52.394423121350876], [4.943372545956413, 52.39371037186233], [4.94423799349508, 52.3934624967905], [4.951722139587116, 52.39121489258841], [4.951977228519229, 52.39074474289332], [4.952488028400832, 52.38982174525832], [4.952374696150697, 52.386713535655005], [4.952206800248285, 52.386698583830196], [4.950010812863678, 52.386629202338206], [4.949215860148592, 52.38670931115011], [4.948288658712987, 52.38676420856667], [4.948078079305986, 52.38681730897759], [4.947787358166889, 52.3869679872409], [4.947493246690029, 52.38713447047139], [4.945003183974524, 52.38908864212299], [4.944744384048194, 52.3892765061362], [4.944300928561598, 52.389670305281946], [4.943577203111065, 52.39005415557726], [4.942842877362385, 52.390365790867435], [4.942354327938515, 52.3907416179807], [4.941974403701782, 52.391000697448874], [4.941686500304144, 52.39110737678512], [4.941004850741043, 52.39123976042666], [4.939516755099445, 52.391539635421644], [4.939424654087139, 52.39145871301004], [4.939370161707754, 52.39149409807904], [4.938681227707832, 52.39162644082491], [4.938228507884923, 52.39189017583235], [4.936780878717386, 52.39241805170783], [4.935048120469574, 52.393012049439655], [4.936759450643873, 52.39357270308016], [4.940210755751604, 52.39467081066381], [4.940988161886632, 52.394423121350876]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:amsterdam:nord_neighborhood_zones:3", "properties": {"fill": "#e2311d", "fill-opacity": 0.5, "type": "GtfsShape", "name": "3", "alternateName": "amsterdam_nord_neighborhood", "description": "Tuindorp Nieuwendam", "val": 45}}, {"type": "Feature", "geometry": {"coordinates": [[[4.924505590598806, 52.39521654116566], [4.933557395307461, 52.39300634949315], [4.933345422610702, 52.39295412811837], [4.932955482050617, 52.39276429715585], [4.932867362014578, 52.39261121408004], [4.932976472938405, 52.39213510735018], [4.93346425826285, 52.39231690968747], [4.933693693134966, 52.3921625716556], [4.933189464745404, 52.39185070086186], [4.932201715451805, 52.39180934223633], [4.928741769274319, 52.391587397116666], [4.927203728796544, 52.39147416623338], [4.92669187021648, 52.39135749476236], [4.925695147712809, 52.39124832493076], [4.925082296330785, 52.39120935565984], [4.924157238527356, 52.394837518865636], [4.924505590598806, 52.39521654116566]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:amsterdam:nord_neighborhood_zones:4", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "4", "alternateName": "amsterdam_nord_neighborhood", "description": "Tuindorp Buiksloot", "val": 1}}, {"type": "Feature", "geometry": {"coordinates": [[[4.914765321697576, 52.40090183267139], [4.914629273914697, 52.40145838912378], [4.91568792169271, 52.40131134554705], [4.917237210699669, 52.401079239640914], [4.920043746704475, 52.400332053218015], [4.921437266791094, 52.39976758914186], [4.921722766024446, 52.3995151249957], [4.921981155174395, 52.3992274569441], [4.922262748612398, 52.39934670507433], [4.922722601536242, 52.39865003435257], [4.923743369088956, 52.39701585439414], [4.924877837500365, 52.3957068778086], [4.924505590598806, 52.39521654116566], [4.924157238527356, 52.394837518865636], [4.925082296330785, 52.39120935565984], [4.925695147712809, 52.39124832493076], [4.92669187021648, 52.39135749476236], [4.927203728796544, 52.39147416623338], [4.928741769274319, 52.391587397116666], [4.932201715451805, 52.39180934223633], [4.933189464745404, 52.39185070086186], [4.933693693134966, 52.3921625716556], [4.93346425826285, 52.39231690968747], [4.932976472938405, 52.39213510735018], [4.932867362014578, 52.39261121408004], [4.932955482050617, 52.39276429715585], [4.933345422610702, 52.39295412811837], [4.933557395307461, 52.39300634949315], [4.933812500807677, 52.39294949072982], [4.935048120469574, 52.393012049439655], [4.936780878717386, 52.39241805170783], [4.938228507884923, 52.39189017583235], [4.938681227707832, 52.39162644082491], [4.939370161707754, 52.39149409807904], [4.939424654087139, 52.39145871301004], [4.939516755099445, 52.391539635421644], [4.941004850741043, 52.39123976042666], [4.941686500304144, 52.39110737678512], [4.941974403701782, 52.391000697448874], [4.942354327938515, 52.3907416179807], [4.942842877362385, 52.390365790867435], [4.943577203111065, 52.39005415557726], [4.944300928561598, 52.389670305281946], [4.944744384048194, 52.3892765061362], [4.945003183974524, 52.38908864212299], [4.947493246690029, 52.38713447047139], [4.947787358166889, 52.3869679872409], [4.948078079305986, 52.38681730897759], [4.948288658712987, 52.38676420856667], [4.949215860148592, 52.38670931115011], [4.950010812863678, 52.386629202338206], [4.952206800248285, 52.386698583830196], [4.952374696150697, 52.386713535655005], [4.952379575819202, 52.38629832411822], [4.951511393171976, 52.386021279808816], [4.950863925802226, 52.385892844391684], [4.950163276249901, 52.38583693637478], [4.948594177552267, 52.38585232967005], [4.947228592641095, 52.38596046409056], [4.947081113565957, 52.38592383070315], [4.946985064347382, 52.38583350731423], [4.946919890505022, 52.3857255030708], [4.945912144268952, 52.385838906592674], [4.945679217914965, 52.38594580046863], [4.945092577968819, 52.38603852169333], [4.944904499526996, 52.38561764656571], [4.944523361919569, 52.38568048433242], [4.938476069361814, 52.38667009662046], [4.938877660748319, 52.38834143403167], [4.939723575155166, 52.39058143482714], [4.935041449838626, 52.39121022497236], [4.934121009158291, 52.39138318016723], [4.934062382366925, 52.391348353433706], [4.933242386389241, 52.39141689002612], [4.933185892484837, 52.39133165030548], [4.930511706234499, 52.39123041451638], [4.927122030594963, 52.39093800490533], [4.925289397942452, 52.390641694207396], [4.924797904101808, 52.390665481121474], [4.923679713027314, 52.394370989614444], [4.922852444523584, 52.39720959917465], [4.921291152361031, 52.39906063072072], [4.91975319585497, 52.399989331685894], [4.915541444235235, 52.400950402869555], [4.914765321697576, 52.40090183267139]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:amsterdam:nord_neighborhood_zones:5", "properties": {"fill": "#fcd7c4", "fill-opacity": 0.5, "type": "GtfsShape", "name": "5", "alternateName": "amsterdam_nord_neighborhood", "description": "Nieuwendammerdijk/Buiksloterdijk", "val": 18}}, {"type": "Feature", "geometry": {"coordinates": [[[4.874804907606179, 52.416086860872326], [4.875091604307482, 52.416602193293016], [4.875970973857969, 52.417321766141505], [4.878095982464179, 52.418906807305966], [4.879151646971271, 52.419067049019084], [4.879509394299934, 52.419103184741154], [4.8818759817666, 52.41774502404975], [4.882085985263571, 52.41754967451903], [4.883006545998746, 52.416792837091876], [4.883690010337231, 52.41633750893641], [4.884489379980443, 52.41578331035694], [4.884805889337763, 52.415533043991815], [4.885666474831551, 52.41478186335496], [4.885818457472327, 52.414710335873885], [4.887528165293416, 52.414860911145595], [4.888195676272412, 52.41481033773539], [4.889155922219198, 52.41489544641711], [4.890125676923834, 52.41507005907254], [4.892377342481134, 52.41548433175245], [4.89259753549277, 52.41552973988542], [4.892752748896939, 52.41560255836291], [4.893674119006795, 52.41569636584236], [4.895074462548187, 52.415756071155705], [4.895946260194447, 52.41587387668478], [4.896348943692167, 52.41572032922267], [4.897423353298135, 52.415354035642636], [4.897930564883291, 52.41517768183159], [4.900761371691509, 52.413067717968026], [4.901931574245619, 52.412212400371715], [4.902944714845726, 52.411523015091774], [4.904416448160879, 52.410509734003085], [4.906694065776938, 52.40874537369639], [4.907202120224012, 52.40788385626557], [4.906562623371387, 52.40640670687628], [4.906012986473172, 52.405962059157545], [4.903754441644558, 52.40480356934441], [4.902644096306963, 52.40419744500664], [4.902178419348223, 52.403767457783246], [4.899873508102935, 52.40162648757874], [4.893576392805818, 52.40458710172254], [4.893209708716216, 52.40492714887795], [4.89312265119688, 52.406283695995384], [4.892643225604732, 52.40694705103933], [4.890320889634237, 52.408116288103564], [4.878891681609028, 52.413539436353005], [4.875199424954252, 52.41517753417173], [4.874804907606179, 52.416086860872326]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:amsterdam:nord_neighborhood_zones:6", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "6", "alternateName": "amsterdam_nord_neighborhood", "description": "Tuindorp Oostzaan", "val": 3}}, {"type": "Feature", "geometry": {"coordinates": [[[4.862678113483632, 52.42994148712694], [4.86279551151829, 52.42996088066677], [4.862826323331189, 52.42996640957527], [4.862852756267363, 52.42996922281554], [4.863036071959272, 52.43000957927428], [4.863285380136708, 52.430064607397576], [4.863379243747761, 52.43008479507572], [4.863506828106291, 52.430113220551114], [4.863546419254123, 52.43012238311436], [4.863555219650935, 52.43012421952326], [4.863754656554733, 52.43016913990529], [4.863852920813893, 52.4301902454051], [4.863958483460403, 52.43021587685612], [4.863958472840584, 52.43021677557122], [4.863998096031974, 52.43022324183835], [4.864111020857281, 52.43024800689281], [4.864187284331362, 52.43026452119512], [4.86419692877876, 52.43031938823483], [4.864206573249827, 52.43037425527315], [4.864367922471976, 52.4304073226238], [4.864492599653023, 52.43043303791981], [4.864733153932995, 52.43048263179754], [4.864878362572854, 52.4305129310069], [4.864929684874788, 52.43052484109285], [4.864991203840331, 52.43054488494353], [4.865013205194439, 52.43054947569634], [4.865136815510358, 52.43054103266132], [4.865172060081502, 52.43054478296002], [4.865229443760705, 52.430541440664044], [4.865257358078106, 52.43054336112856], [4.865329275172466, 52.43055446297898], [4.865386499988677, 52.43056460133438], [4.865468550347267, 52.430589229143386], [4.865549141092822, 52.430612951708696], [4.865572602244107, 52.43061844754453], [4.865716415703891, 52.430642448249586], [4.865857309895019, 52.43066463841401], [4.865939519398195, 52.430675785168845], [4.865970363841247, 52.43067861711438], [4.866055757268596, 52.4306691062715], [4.86615879418511, 52.43065967293781], [4.86618382090424, 52.430657086679695], [4.866232340597501, 52.43065729997578], [4.866404280406377, 52.4306652457696], [4.866585073743808, 52.43067053392147], [4.866690924366551, 52.430671897626084], [4.866726232557824, 52.43067025517091], [4.866857226043953, 52.430659146480416], [4.866991202285575, 52.43064445569131], [4.867126680398636, 52.43062707505656], [4.867338708570898, 52.430601941226236], [4.867527222390139, 52.430575805148614], [4.867783432602594, 52.43054457291957], [4.867927773997692, 52.430523635169266], [4.868016223201821, 52.43050424992615], [4.868188721049113, 52.43046456120902], [4.868364201282393, 52.43042129025136], [4.868547127338296, 52.43036996276542], [4.868743317085666, 52.43031599673834], [4.868858451527944, 52.43027785361036], [4.868913072853111, 52.430259218502286], [4.868961876120195, 52.43023516535776], [4.869007791361916, 52.43020660575719], [4.869074479728422, 52.43016195924931], [4.869182682651569, 52.43008783503688], [4.869308633599074, 52.430004800668186], [4.869479080954822, 52.4298887063753], [4.869544266580656, 52.429846749323154], [4.869656878741373, 52.42977264393685], [4.869696890992271, 52.42974585581398], [4.869739266094236, 52.4297685098874], [4.869802046440805, 52.42980653198077], [4.869828290720746, 52.429825520550054], [4.869858788326672, 52.42985800910545], [4.869894694588998, 52.429930965535654], [4.86993396145236, 52.429967986156285], [4.869973396343631, 52.429990627310765], [4.870042331202828, 52.43000530833168], [4.870095103596655, 52.43001902002988], [4.870158010530942, 52.43004625734373], [4.870197456099715, 52.43006799970765], [4.870223595778329, 52.430095975347], [4.870241018751638, 52.43011492534179], [4.870271632267467, 52.43013752791565], [4.870357665313621, 52.430199018930836], [4.870471434680102, 52.430277707288056], [4.870480182959698, 52.430284036762025], [4.870547260176873, 52.430331963563404], [4.870596935272277, 52.430359142955645], [4.870623306035331, 52.430367346757784], [4.870662898891395, 52.43037650694464], [4.870740614366952, 52.43039482087136], [4.870957696475146, 52.430188152772025], [4.871287740553218, 52.43012937296814], [4.871421776547359, 52.4301092848676], [4.871461095650151, 52.4301012934298], [4.871560317437092, 52.43008112736268], [4.871721027355552, 52.43004317974764], [4.871847910257224, 52.43000598358424], [4.871971915144404, 52.429963382204214], [4.872100372422124, 52.42991720500059], [4.872224502241115, 52.42986381876182], [4.872336921874714, 52.42980588771253], [4.872446432026887, 52.429745247634955], [4.872550133945158, 52.429678290902906], [4.872643575058089, 52.429608593245284], [4.872671530885993, 52.42960691709828], [4.872693824959743, 52.429586342372666], [4.87273697411114, 52.42954249037746], [4.872814835143946, 52.42954822091909], [4.872942674544123, 52.4295550670529], [4.873047052456629, 52.42955641869595], [4.873122077373202, 52.42955314911602], [4.873247174508815, 52.42954290655703], [4.873336057463519, 52.429485771249034], [4.873365921445713, 52.429446355228535], [4.873396025217977, 52.429386268724855], [4.873433855541121, 52.42929386029369], [4.873456493184078, 52.429243627783094], [4.873489672725062, 52.429171870686936], [4.87350024594164, 52.42914764995604], [4.873543935959601, 52.429057064409065], [4.873602557508128, 52.42894677080046], [4.873658248716792, 52.42883556570154], [4.873710832440914, 52.42873872729647], [4.873764896582771, 52.42864099651891], [4.873807021556433, 52.42855849294292], [4.873832578007177, 52.42851007052288], [4.874022106772053, 52.42814150032957], [4.874112381253378, 52.42796393638613], [4.874221103606585, 52.42797069838639], [4.874475214303405, 52.42773812000785], [4.874640029066195, 52.42759862612616], [4.874668243590322, 52.427574481585474], [4.874727633729663, 52.4275244077651], [4.875039648028405, 52.427242646653134], [4.875243192876407, 52.42705927997434], [4.875252097048699, 52.4270521283457], [4.875477609604734, 52.426876046255494], [4.87571480901825, 52.426706305510464], [4.875966604450358, 52.42654561487695], [4.876090896483735, 52.426476946339214], [4.876232944049904, 52.426398467848855], [4.876479724268253, 52.42628988269275], [4.876535880164161, 52.42626495935918], [4.876612680253005, 52.42623473237595], [4.876573058772673, 52.42622827032441], [4.876640986081292, 52.42620249890037], [4.87667643539387, 52.426188271431045], [4.876705962657259, 52.42617761348825], [4.876738430199615, 52.42616696820341], [4.876778300249196, 52.426151860984056], [4.876815209265275, 52.42613853852248], [4.876877214291124, 52.426116336504464], [4.876920014181298, 52.42610214061628], [4.8769657853956, 52.42608526122024], [4.877011535867869, 52.4260701792411], [4.877131052234595, 52.426032945721566], [4.877150246889264, 52.42602583824209], [4.87722401271968, 52.42600368666132], [4.877311061478482, 52.42597709837798], [4.877339097614801, 52.42596823138582], [4.877402520551484, 52.42595052900371], [4.877464473298567, 52.425932820263895], [4.877480696547037, 52.42592839623559], [4.877549989580566, 52.425911617785246], [4.877666471731897, 52.42588245953517], [4.877782881365225, 52.425859592192616], [4.877827088832167, 52.425850794599896], [4.877863935265363, 52.42584286411499], [4.877936126952559, 52.42582969294548], [4.878003908191416, 52.42581650278115], [4.878036313161732, 52.42581124944421], [4.878111434684513, 52.4257989895182], [4.878213059898402, 52.42578324833542], [4.878299963049574, 52.42576924136866], [4.878369183243644, 52.425758753460926], [4.878464896771064, 52.425745682964674], [4.878557659655153, 52.42573349848849], [4.878604765823181, 52.425728308095486], [4.878657773149105, 52.4257213454839], [4.87872990249218, 52.4257135661355], [4.878799070912367, 52.425707571564296], [4.87885644731372, 52.425704222655405], [4.878993262375244, 52.42569672060838], [4.879077101111541, 52.425693485073374], [4.879121235982673, 52.425690978020526], [4.87925652928913, 52.42568796295463], [4.879344757771273, 52.4256865435696], [4.879407973409885, 52.425686814465294], [4.879519672470495, 52.42568998932833], [4.879632831378612, 52.42569406910051], [4.879720977474276, 52.42569983917713], [4.879825274450768, 52.42570747586243], [4.879913400009601, 52.42571504323145], [4.880001535891537, 52.42572171181713], [4.880070560075852, 52.42572829855215], [4.880157205296141, 52.42573675816635], [4.880243840261961, 52.42574611643496], [4.880320204902036, 52.42575363318781], [4.880400959400279, 52.42576296618872], [4.880467022874309, 52.42577133755397], [4.880538946347431, 52.42578153146013], [4.880613799843207, 52.42579263660957], [4.880654891663392, 52.42579910359454], [4.880729693828126, 52.42581470225988], [4.880797176194871, 52.425827573313455], [4.880876388867939, 52.42584319073298], [4.880933590635593, 52.42585511902148], [4.881003972308661, 52.42587159738974], [4.881081694453979, 52.425889005828], [4.881207797751633, 52.42591830470441], [4.881254749798623, 52.42592659402575], [4.881332461873834, 52.42594490101739], [4.88140284383879, 52.42596137914873], [4.881482026177796, 52.425979692317064], [4.881512817046916, 52.42598701380556], [4.881581759786473, 52.42600078940358], [4.881615511491423, 52.42600632597467], [4.88163603192369, 52.42601180609], [4.881656593398098, 52.426013691330255], [4.881666863876896, 52.42601553266693], [4.881702116521417, 52.42601837933112], [4.881728558572279, 52.426020289642864], [4.881755000625444, 52.42602219994876], [4.881766761767162, 52.42602225011137], [4.881807936019522, 52.42602152695331], [4.88182557773199, 52.42602160218886], [4.881859421779684, 52.42601905022927], [4.881871182920724, 52.42601910038149], [4.881888845141379, 52.42601737817175], [4.881930060402206, 52.42601306009956], [4.881993399556533, 52.42600254500109], [4.882046416934556, 52.42599468215554], [4.882095023868961, 52.42598680048774], [4.882148061708749, 52.42597714016072], [4.882193728323926, 52.42596924592127], [4.882211411008249, 52.42596572622751], [4.882249737144243, 52.42595690192462], [4.8822615290102, 52.42595425588412], [4.882308716951891, 52.425941874274514], [4.882332331403901, 52.42593388602661], [4.882360356266231, 52.42592591656274], [4.882392842758028, 52.425913472289736], [4.882420898327684, 52.425902806657454], [4.882456355791331, 52.42588767873717], [4.882469658735688, 52.42588144406554], [4.882499235614919, 52.42586629108604], [4.882530303093983, 52.42584934692382], [4.882573223807094, 52.425824364373504], [4.882629488324787, 52.425789552245476], [4.882663557401749, 52.425767228258636], [4.882684303096592, 52.42575293639545], [4.882719852488533, 52.42572971993289], [4.882724314075523, 52.425725245117704], [4.882756953870176, 52.4256993199729], [4.882785152523956, 52.42567607220044], [4.882822264051224, 52.42564477350144], [4.882835648752644, 52.4256313490434], [4.882866828518309, 52.42560451889254], [4.882899519309832, 52.42557410011699], [4.882906962053662, 52.42556604293454], [4.882917355283308, 52.42555709954545], [4.882944083635417, 52.42553384547828], [4.882958938392587, 52.42552042726157], [4.882966360651538, 52.42551416751152], [4.882972282085341, 52.425510597660185], [4.882976712927797, 52.42550881898965], [4.882982593431334, 52.42550884401039], [4.882991414186712, 52.425508881540914], [4.883009035234174, 52.42551075403625], [4.883044287564584, 52.425513600300974], [4.883272116204449, 52.4255181643828], [4.883383764008758, 52.42552582919335], [4.883532093475142, 52.4255399411398], [4.883680484344808, 52.42554866059141], [4.883845005819142, 52.425561043420046], [4.883999267123357, 52.425570686168314], [4.884141787884952, 52.42557848135376], [4.884271108157193, 52.42558352406135], [4.884420989856557, 52.425590451388295], [4.884651749102551, 52.42559592401038], [4.884813402134918, 52.42560200199752], [4.884989787082351, 52.425605445912375], [4.885141179854773, 52.42560878368515], [4.885289632391147, 52.42561210881155], [4.885451346665719, 52.42561279361809], [4.885636572845342, 52.425614476479964], [4.885723320685923, 52.42561394484029], [4.885810078699503, 52.425612514418674], [4.885836530862636, 52.42561352509522], [4.885905657486587, 52.42561112124705], [4.885939490817015, 52.42560946683943], [4.885992435831369, 52.42560789325494], [4.886064502697743, 52.42560550174963], [4.886095395758819, 52.42560383486361], [4.886216007388278, 52.42559895224579], [4.886335128533943, 52.42559586072864], [4.886448358984243, 52.425593642961836], [4.886541027933544, 52.425589540697686], [4.886605754254365, 52.42558621908932], [4.88663961801418, 52.42558186832606], [4.88676473131102, 52.42556891531176], [4.886795634475666, 52.42556634952449], [4.886870641489473, 52.42556396994428], [4.887047077204197, 52.42556291720326], [4.887208781187948, 52.42556449832918], [4.887376365698408, 52.42556610403706], [4.887391066984388, 52.425566166042366], [4.88744546174292, 52.42556639544609], [4.887576272774925, 52.425569643308634], [4.887568830879268, 52.425577700785496], [4.887748054861706, 52.425590140176666], [4.887765686280156, 52.42559111324611], [4.888105033000948, 52.425615011954264], [4.888153516921105, 52.42561791242256], [4.888299059838737, 52.425618525240075], [4.888450442798253, 52.42562275750293], [4.88859300500242, 52.425626952459666], [4.888742938119715, 52.42562938072582], [4.88892076329746, 52.425635521128434], [4.889114820617571, 52.42563633692197], [4.889305947787105, 52.425636241325485], [4.889477963249896, 52.42563606515314], [4.889689702546323, 52.42563335922287], [4.889854437990961, 52.425626860612], [4.88993974595739, 52.425623623558316], [4.890097140764135, 52.42561619504664], [4.890245734905143, 52.42560693189819], [4.89043110240154, 52.425596025198864], [4.890591437289742, 52.425588608355625], [4.890691496807307, 52.42558093877181], [4.890870973497834, 52.425570905464866], [4.891056360829222, 52.42555820034873], [4.891222616253332, 52.42554721239438], [4.891352088200733, 52.42553876658743], [4.891475709765974, 52.425527599882784], [4.89155519726358, 52.425518944751715], [4.891615502674102, 52.42551650067835], [4.891692029759113, 52.4255096305975], [4.891859835389011, 52.42549145814248], [4.891970235606307, 52.425479336896714], [4.892101217529867, 52.425467301537445], [4.892211507128494, 52.42546506597748], [4.892293924580121, 52.42545732135067], [4.892379232047311, 52.42545408253957], [4.892458679079054, 52.42544902167858], [4.89255289761287, 52.425437731094405], [4.892683899327462, 52.42542389765207], [4.89285908494622, 52.425403058296205], [4.892979805626703, 52.42538828287853], [4.893050431731766, 52.425383184833585], [4.893163741526618, 52.42537377089276], [4.893260920015018, 52.425360694563885], [4.893330126032042, 52.425351096627914], [4.893440475402006, 52.42534346760731], [4.893534663409485, 52.42533487239954], [4.893600919067238, 52.42532616077612], [4.893648063119864, 52.425317369520954], [4.893739310789659, 52.4253087619047], [4.89390126437619, 52.42528786591046], [4.894189778181247, 52.42525581239051], [4.894389944453429, 52.42523597345824], [4.894467970744332, 52.425226411537864], [4.894566638639636, 52.425211542810274], [4.894637314260605, 52.42520195022104], [4.89468735823361, 52.42519676565065], [4.894780145521006, 52.425181872305224], [4.894896424642665, 52.42516977276456], [4.894981821268092, 52.42515844360242], [4.895068717926257, 52.42514442432527], [4.895170285730995, 52.42513316218261], [4.895270433282154, 52.42511740025234], [4.895360269998425, 52.42510339296616], [4.895450046784191, 52.425094777929345], [4.895508921205178, 52.425088730894004], [4.895641480863506, 52.42506681180083], [4.895740148012028, 52.42505194209444], [4.895899129589152, 52.42503372733077], [4.895991985905828, 52.42501254199713], [4.896075941737492, 52.424998509792516], [4.89615109678028, 52.42498264353899], [4.896233582394786, 52.4249686051307], [4.896324858733006, 52.4249572993617], [4.896413224683728, 52.42494328518624], [4.89652948282351, 52.424932981480154], [4.89664145999457, 52.42491097604621], [4.896722475213042, 52.42489693121131], [4.8968608643785, 52.424879528688656], [4.897064286257199, 52.42483093836445], [4.897139460552483, 52.424813274042855], [4.897257277769061, 52.424794887222475], [4.89737363472378, 52.42477559548839], [4.897432597908378, 52.42476145901689], [4.897494471449718, 52.42475003082575], [4.897548994444508, 52.42473857223066], [4.897730254144808, 52.424699775561415], [4.897828969432073, 52.42468041051262], [4.89787465179147, 52.42467071278159], [4.897957146209913, 52.424655774450976], [4.898021989448699, 52.42464166196233], [4.898083892447541, 52.42462753730271], [4.898147245657723, 52.424615216117594], [4.898247430673395, 52.42459585678622], [4.898312243970167, 52.42458444029831], [4.898344675406293, 52.42457648524098], [4.898366716952379, 52.42457747492606], [4.898406340159974, 52.42458392969291], [4.898389185023626, 52.42453981964597], [4.898382042846448, 52.42452091620556], [4.898423255123299, 52.42451659239035], [4.898449746600389, 52.424514005370206], [4.898527820332099, 52.42449994717157], [4.898579382732563, 52.42449027341665], [4.898691312992739, 52.42447005978267], [4.898753462424074, 52.42390926801341], [4.89831863987748, 52.41722576594074], [4.898371270986186, 52.41699859620793], [4.89836319979892, 52.41677760217731], [4.898361247985226, 52.41666142908238], [4.898351435751456, 52.416524956461764], [4.898094206842754, 52.41624509880864], [4.898061634814654, 52.41611990154364], [4.89795842578865, 52.41587577596181], [4.897835822255487, 52.41570423513454], [4.897051219557202, 52.41559669063763], [4.897423353298135, 52.415354035642636], [4.896348943692167, 52.41572032922267], [4.895946260194447, 52.41587387668478], [4.895074462548187, 52.415756071155705], [4.893674119006795, 52.41569636584236], [4.892752748896939, 52.41560255836291], [4.89259753549277, 52.41552973988542], [4.892377342481134, 52.41548433175245], [4.890125676923834, 52.41507005907254], [4.889155922219198, 52.41489544641711], [4.888195676272412, 52.41481033773539], [4.887528165293416, 52.414860911145595], [4.885818457472327, 52.414710335873885], [4.885666474831551, 52.41478186335496], [4.884805889337763, 52.415533043991815], [4.884489379980443, 52.41578331035694], [4.883690010337231, 52.41633750893641], [4.883006545998746, 52.416792837091876], [4.882085985263571, 52.41754967451903], [4.8818759817666, 52.41774502404975], [4.879509394299934, 52.419103184741154], [4.879151646971271, 52.419067049019084], [4.878095982464179, 52.418906807305966], [4.875970973857969, 52.417321766141505], [4.875091604307482, 52.416602193293016], [4.874804907606179, 52.416086860872326], [4.873542152271374, 52.41601515442223], [4.872906953253405, 52.416134496112754], [4.869296499745893, 52.41772234473722], [4.867831009295883, 52.41825177325572], [4.864505098842709, 52.41488071224358], [4.856781567264679, 52.417304546008275], [4.858209804911887, 52.41861158727404], [4.858769634356483, 52.419123684711515], [4.859098233638197, 52.41942713452029], [4.859373071181302, 52.41967821558661], [4.859403629106363, 52.41970441586725], [4.859432706429557, 52.4197315083094], [4.859460324565625, 52.419757695480925], [4.85948792131967, 52.41978568007898], [4.859514058882972, 52.41981275940783], [4.859540185771943, 52.41984073744736], [4.859563372825374, 52.41986870239004], [4.859588019137982, 52.41989757258976], [4.859609725610316, 52.41992642969434], [4.859631432110888, 52.41995528679482], [4.859752284841543, 52.42017602202648], [4.85983068137952, 52.42038218794624], [4.859840617927898, 52.42041189138417], [4.85984906313591, 52.420443385712076], [4.859857519055817, 52.4204739813227], [4.859864505031969, 52.4205045703908], [4.859871491017697, 52.42053515945829], [4.859875526398469, 52.4205666341583], [4.859879572484503, 52.420597210141516], [4.859882137916967, 52.42062867829927], [4.859884703352998, 52.42066014645671], [4.859885809530524, 52.42069070935603], [4.859885435047354, 52.42072216442994], [4.859883601299451, 52.42075271424573], [4.859881756849378, 52.420784162777636], [4.859854306406865, 52.42099075633066], [4.859807110705913, 52.42112715840231], [4.859724442525656, 52.4212795803033], [4.859697479800465, 52.421321702180336], [4.859664551454616, 52.42137098760368], [4.859603340025361, 52.42144980629948], [4.859482343671989, 52.421611045002734], [4.858478899296347, 52.42291427326451], [4.858329524056611, 52.423112233450176], [4.858201103862259, 52.423278830265346], [4.858032164451042, 52.42351445080049], [4.857982750558773, 52.42358972626979], [4.857939216737948, 52.423665027980554], [4.857906102093606, 52.42372959105094], [4.857866688178073, 52.42382917775172], [4.857846760944557, 52.42389739476514], [4.857829558943585, 52.423983599219405], [4.857816670411966, 52.424077911811324], [4.857811035524111, 52.424180345676845], [4.857817257936532, 52.424274743640105], [4.857833846154177, 52.424362896563615], [4.857856250330113, 52.42445646804363], [4.857861851388758, 52.424479860912754], [4.857878858687799, 52.42453296392445], [4.857898720279855, 52.42459326978942], [4.8579243441506, 52.42466348778432], [4.857947221233666, 52.424717515763895], [4.857986076127787, 52.4247877928351], [4.858019201088399, 52.42484546161779], [4.858046639017786, 52.42488692725555], [4.85807985003115, 52.42493740629722], [4.858110239018121, 52.424977986332465], [4.85814502763937, 52.4250194847651], [4.858188583287151, 52.425065516141224], [4.858242300970556, 52.42512237802085], [4.858387745041235, 52.425254246587464], [4.860561747006154, 52.42714324134748], [4.860884718755247, 52.42743138149164], [4.861270390092778, 52.427763838366864], [4.861500376681554, 52.427958991527], [4.861733273722987, 52.4281568534189], [4.862210718628916, 52.428562513784485], [4.862394134798116, 52.42871791329439], [4.862453732577315, 52.42877569799166], [4.862511732494395, 52.42884426073108], [4.862562296233266, 52.42891998061939], [4.862619966461959, 52.4290164034735], [4.862668911301562, 52.42910469881786], [4.862706041155646, 52.42919743566151], [4.862737002777084, 52.42931441177362], [4.862745068531541, 52.429378259584205], [4.862744323436833, 52.429441169639986], [4.862733233333915, 52.42950852772452], [4.862702753080899, 52.42959916780905], [4.86275847386663, 52.42961199707159], [4.862805394418011, 52.42962298984388], [4.862772090790799, 52.429703731067356], [4.862769054473662, 52.42971180649036], [4.862738765752664, 52.429786269709965], [4.862737263555112, 52.429788959348464], [4.862729678051982, 52.42980869854561], [4.862678113483632, 52.42994148712694]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:amsterdam:nord_neighborhood_zones:7", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "7", "alternateName": "amsterdam_nord_neighborhood", "description": "Oostzanerwerf", "val": 0}}, {"type": "Feature", "geometry": {"coordinates": [[[4.898691312992739, 52.42447005978267], [4.898739950174968, 52.42446127625526], [4.898741103085224, 52.42449004135735], [4.899009314199109, 52.42443182836589], [4.899013734384647, 52.4244309478143], [4.899078567053912, 52.42441773346598], [4.899121298781266, 52.42440892186243], [4.89916993066617, 52.42439833702013], [4.899228872973212, 52.42438599709247], [4.899267184465052, 52.424378065995704], [4.899354137641262, 52.424358651248276], [4.899455890616096, 52.42433030974269], [4.899463260859359, 52.42432854255549], [4.899475061165012, 52.424324996078774], [4.899488341454973, 52.424320556931015], [4.899570874260239, 52.42430202259333], [4.899604745669603, 52.424296769399916], [4.899610635918465, 52.42429589487484], [4.89961506597274, 52.4242941155806], [4.899662267098795, 52.424279929606115], [4.899758089891065, 52.42425605724859], [4.899843651643045, 52.424229446331964], [4.899846601705423, 52.424228559703366], [4.899849551767688, 52.42422767307473], [4.899886383037134, 52.42422063445167], [4.8998922732704, 52.424219759912546], [4.899898173391811, 52.4242179866529], [4.899938014030569, 52.424204669062256], [4.899939494003831, 52.42420377638665], [4.899940964089415, 52.42420378243133], [4.899976345012858, 52.42419494029498], [4.900057417181056, 52.42417550085279], [4.900222590407622, 52.42412854540109], [4.900227010538879, 52.42412766480421], [4.900229960586826, 52.42412677816602], [4.9002639207133, 52.42411343630089], [4.900266870759562, 52.424112549661814], [4.900271290888346, 52.42411166906321], [4.900312552001783, 52.424102850988184], [4.90031697212864, 52.424101970387845], [4.900319922173134, 52.42410108374747], [4.900470403913952, 52.424053168828166], [4.900504294779117, 52.42404611793621], [4.90052198512355, 52.42404169678497], [4.900580995702477, 52.42402306514007], [4.900756586676564, 52.42396446783244], [4.90075806662531, 52.423963575146594], [4.900759536703064, 52.423963581181084], [4.90083029782623, 52.42394589640706], [4.90083471792723, 52.42394501578736], [4.900839147897307, 52.42394323644713], [4.900883427841703, 52.423927240476246], [4.900886377863191, 52.42392635382168], [4.900887857808049, 52.423925461134154], [4.900960088895174, 52.42390778231524], [4.901025028740544, 52.423884680973806], [4.901026508681216, 52.42388378828454], [4.901027978756423, 52.42388379431568], [4.901088439258783, 52.4238669658889], [4.901092859346794, 52.42386608525958], [4.901097289298621, 52.423864305909575], [4.901119458779437, 52.423853611716396], [4.901122408791307, 52.42385272505594], [4.90112535880306, 52.423851838395365], [4.90125659969451, 52.42381552744811], [4.90132004945911, 52.423794217356814], [4.901461610087915, 52.42375525221233], [4.901886457896336, 52.42362307751022], [4.902048775599746, 52.423568018975615], [4.902141753868324, 52.42353514543985], [4.902180123156188, 52.42352182107431], [4.90222146207011, 52.423505812567086], [4.902283401506341, 52.42348809082358], [4.902360149730698, 52.42346054326713], [4.902417678865936, 52.42344280340922], [4.90248852701766, 52.42341702915488], [4.902579995249503, 52.423387744143014], [4.90277182050213, 52.42332291891866], [4.902869247199203, 52.42328646795427], [4.902913535581986, 52.42326957249996], [4.902944505003007, 52.42326071145051], [4.902999142662604, 52.42323846569028], [4.903253032901384, 52.42314423416032], [4.903335728856669, 52.42311041893647], [4.903653045521687, 52.42299667277529], [4.903685543517361, 52.42298242520444], [4.903689973276781, 52.42298064575691], [4.903744629836875, 52.422956602208885], [4.903837644797625, 52.42292013245108], [4.903949858410002, 52.42287565206587], [4.904127067261761, 52.42280267619676], [4.90432794310034, 52.422716315090355], [4.90436636980607, 52.42269759768671], [4.90464104013135, 52.422584573875326], [4.904731182039477, 52.422541800391066], [4.904855212759391, 52.42249197469633], [4.904937896489214, 52.42245905706761], [4.904986691186894, 52.42243319156959], [4.90505607598704, 52.42240651106728], [4.905172804741056, 52.42235216152618], [4.905282065749152, 52.42230856663215], [4.905344158726516, 52.42227646374109], [4.905382574844846, 52.42225864472626], [4.905571587889749, 52.422181220890614], [4.905614394347046, 52.42216521716654], [4.905639521467268, 52.42215273662702], [4.905660179893708, 52.42214563048905], [4.905670499333831, 52.42214297614001], [4.905686777007829, 52.42213315591305], [4.905698625081786, 52.422125115207166], [4.905704534462163, 52.422122442935624], [4.905899611977437, 52.42202796676032], [4.905927669202064, 52.42201639682172], [4.905988310817405, 52.42198249017704], [4.906121353855132, 52.42191472453698], [4.906124303637931, 52.421913837751326], [4.906125783409942, 52.421912944997786], [4.906174567052058, 52.42188797772726], [4.906325356942345, 52.42181039752585], [4.906329776721394, 52.42180951670036], [4.906479037543219, 52.42173732266466], [4.906623839115091, 52.421669604161735], [4.906678502215822, 52.42164466052806], [4.906802615962487, 52.42158674428595], [4.906926709894708, 52.42153062535571], [4.907012417974866, 52.421489629690235], [4.907164616595193, 52.421417446696715], [4.907302036900833, 52.4213523937477], [4.907364003503243, 52.421323690199415], [4.907403982335524, 52.4213051722293], [4.907508877264336, 52.4212570638021], [4.907531034160328, 52.421247267121394], [4.907573790348764, 52.42123575629242], [4.907613587077048, 52.42122603099262], [4.907663673702364, 52.42121634732078], [4.907725568849152, 52.42120221760341], [4.907800723019952, 52.421185445212316], [4.90796723992896, 52.4211483707952], [4.908001127382241, 52.421141317750106], [4.908082161285042, 52.421124568957836], [4.90807358441619, 52.42110206525351], [4.908065036721256, 52.42107686538327], [4.908046315824868, 52.4210408392444], [4.908031888232408, 52.421015615595564], [4.908016078180594, 52.42098229750492], [4.908001650624334, 52.420957073852094], [4.907987300870857, 52.42092466042347], [4.907978665747785, 52.42090754904192], [4.907971461713988, 52.42089403849157], [4.907962865498142, 52.42087333222174], [4.907965815174768, 52.420872445389904], [4.907982023809044, 52.42086891589608], [4.908001182116184, 52.42086449956731], [4.908070426542229, 52.420850399390204], [4.908552225483406, 52.42074898897389], [4.908565494081349, 52.42074544752472], [4.908568443737425, 52.42074456067782], [4.908615618797792, 52.420732168561095], [4.908676072121493, 52.420715336242054], [4.908689379535423, 52.42070819989148], [4.908816447381072, 52.42064849594982], [4.908854870396751, 52.42062977707752], [4.908955342546545, 52.42058254827896], [4.909234591901819, 52.42045155709572], [4.909423726222835, 52.42036154495906], [4.909609919861711, 52.42027152066884], [4.909617308405659, 52.42026795540298], [4.910149009428153, 52.420036419260235], [4.910262747087777, 52.41998564771456], [4.910425234534251, 52.41991260318852], [4.910602488560341, 52.41983332650498], [4.910682242513486, 52.4197985955685], [4.910824023788495, 52.419737151121986], [4.910956946396319, 52.419679265947345], [4.911113455240353, 52.419615184061826], [4.911317184943587, 52.41953421515811], [4.911427912542391, 52.41948972173516], [4.911627202361988, 52.41941143075616], [4.911796967565771, 52.41934470488852], [4.911878160696952, 52.419312675205894], [4.911922441673519, 52.419295776360556], [4.912437612761787, 52.4190956203034], [4.912862729635439, 52.418931052002065], [4.913082641248756, 52.41884834732138], [4.913091499185994, 52.41884478771853], [4.913122492336589, 52.41883322782592], [4.913262652997794, 52.41878525540005], [4.913401401125912, 52.418731884593655], [4.913460466503433, 52.41870695543837], [4.913531339102665, 52.418677579646584], [4.913544606682951, 52.41867403763689], [4.913563801925761, 52.41866602551358], [4.913593334533263, 52.418653560898925], [4.913668587845397, 52.41862689881772], [4.913805797856081, 52.418579812720196], [4.91391206286078, 52.41853979295733], [4.91393419777854, 52.418531792515715], [4.914044833848866, 52.418495385136644], [4.914110979285252, 52.41849564924168], [4.914168295733673, 52.41849677682564], [4.914410829015988, 52.41849774477735], [4.914526951016058, 52.41849820804506], [4.914551968063089, 52.41849561155199], [4.914574054898902, 52.418492104605136], [4.914581423569247, 52.41849033647327], [4.914587303163234, 52.418490359924114], [4.914597534922073, 52.41849579329989], [4.914601935029784, 52.41849670961037], [4.914607785859911, 52.418499429228895], [4.914615116177769, 52.41850125598666], [4.914623925983101, 52.41850218988321], [4.914634215275416, 52.418502230918364], [4.914645993641613, 52.41850048036872], [4.914702929850649, 52.41867506707467], [4.914708838227967, 52.41867239435089], [4.91474860233491, 52.41866536281292], [4.914928093558032, 52.41865079939117], [4.915010532717798, 52.41863944403817], [4.915197392418995, 52.4186231120491], [4.915387210933131, 52.418604994024726], [4.915456315490652, 52.418603471638235], [4.915497511039085, 52.41860004059233], [4.915566711273357, 52.41858953091159], [4.915662465372839, 52.41857013925144], [4.915690460462347, 52.41856395932458], [4.915731780306871, 52.41854884479801], [4.915787923460646, 52.418522105336315], [4.915870610790158, 52.41848738258508], [4.915911987872495, 52.41846687565696], [4.915994694121828, 52.418430355372315], [4.916049309717143, 52.41840900227891], [4.916127577388685, 52.41837516053635], [4.916177773612935, 52.41835468857572], [4.916244148175408, 52.41833338213486], [4.916266273015391, 52.41832627997961], [4.916303182763476, 52.418311147726875], [4.916459736354777, 52.418241666405564], [4.916561693521863, 52.41819174078596], [4.916645849516421, 52.4181570233278], [4.916744828327614, 52.41811068076772], [4.91681565962547, 52.41808489789629], [4.916988466186607, 52.41800739154594], [4.917046020546235, 52.41798604965559], [4.917153846450236, 52.417937045573844], [4.917229115476517, 52.41790858377617], [4.91729262537643, 52.41788007529826], [4.91739299651747, 52.41784092780792], [4.917468322406917, 52.41780707351733], [4.917539238555634, 52.417773201700435], [4.917624862863663, 52.417738489367835], [4.917762265930219, 52.417672525479425], [4.917859686923167, 52.41763426466774], [4.91792763419522, 52.41760307714259], [4.91799553377543, 52.417576383195296], [4.918097449612516, 52.41753005113676], [4.91819631132347, 52.41749449203579], [4.918333712782735, 52.417428527479274], [4.918397202261845, 52.41740181585164], [4.918477021807961, 52.41735988984898], [4.918705924405001, 52.417259235094875], [4.918788531067372, 52.41723170008067], [4.918899321422725, 52.417180009848025], [4.918968680125073, 52.4171542198718], [4.919116387341144, 52.41708649761014], [4.919187244107294, 52.41705801714058], [4.919374769481064, 52.41697786916607], [4.919374788463204, 52.41697607171871], [4.919382156690352, 52.41697430328718], [4.91938365501199, 52.416971612919184], [4.919388064558743, 52.416971630328426], [4.919388083540341, 52.416969832881065], [4.919395451765919, 52.416968064448625], [4.919451590705814, 52.416941323236735], [4.91957857633082, 52.41688700001643], [4.91966870171498, 52.41684331636064], [4.919723275648519, 52.41682555645686], [4.919783795291609, 52.41680152865415], [4.919810337811388, 52.41679354450364], [4.919854546879259, 52.41678293374415], [4.91988108937512, 52.416774949577764], [4.919960830554892, 52.416740212357084], [4.920121687620081, 52.41667973078569], [4.920220668970047, 52.41663248657487], [4.920260496685851, 52.4166191621135], [4.920264963035333, 52.416613787146964], [4.92042516582175, 52.4166153171073], [4.920441362439634, 52.416612684626415], [4.920498623186597, 52.41657604748393], [4.919103179393328, 52.41547083210057], [4.913395706248243, 52.41070910843032], [4.912619201547494, 52.41007673184149], [4.911453940045112, 52.40959306276634], [4.91059422605099, 52.40933651576846], [4.909034700722181, 52.408015341133], [4.907202120224012, 52.40788385626557], [4.906694065776938, 52.40874537369639], [4.904416448160879, 52.410509734003085], [4.902944714845726, 52.411523015091774], [4.901931574245619, 52.412212400371715], [4.900761371691509, 52.413067717968026], [4.897930564883291, 52.41517768183159], [4.897423353298135, 52.415354035642636], [4.897051219557202, 52.41559669063763], [4.897835822255487, 52.41570423513454], [4.89795842578865, 52.41587577596181], [4.898061634814654, 52.41611990154364], [4.898094206842754, 52.41624509880864], [4.898351435751456, 52.416524956461764], [4.898361247985226, 52.41666142908238], [4.89836319979892, 52.41677760217731], [4.898371270986186, 52.41699859620793], [4.89831863987748, 52.41722576594074], [4.898753462424074, 52.42390926801341], [4.898691312992739, 52.42447005978267]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:amsterdam:nord_neighborhood_zones:8", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "8", "alternateName": "amsterdam_nord_neighborhood", "description": "Kadoelen", "val": 0}}, {"type": "Feature", "geometry": {"coordinates": [[[4.940988161886632, 52.394423121350876], [4.944703759608239, 52.39787999884404], [4.945752629346226, 52.39772226963984], [4.946598153220723, 52.397859378233775], [4.947414088298609, 52.39861723649387], [4.949183120452609, 52.40024565333252], [4.951797119691493, 52.40266657915118], [4.953860529449407, 52.401581205165954], [4.954819443084317, 52.401040463477806], [4.955738674096025, 52.401585094467286], [4.957670141564385, 52.401340504819274], [4.958815895367477, 52.40245044517514], [4.964021380406762, 52.399321330656804], [4.967076237152878, 52.39623727135059], [4.970820137958925, 52.391579665358044], [4.969953513536121, 52.39137147305982], [4.969587549915666, 52.391451746116694], [4.968141506844578, 52.391083808220934], [4.968635126132953, 52.390404875090816], [4.966710735362138, 52.389960091538015], [4.960116449229568, 52.38825679736449], [4.953309883075088, 52.38658498171861], [4.952379575819202, 52.38629832411822], [4.952374696150697, 52.386713535655005], [4.952488028400832, 52.38982174525832], [4.951977228519229, 52.39074474289332], [4.951722139587116, 52.39121489258841], [4.94423799349508, 52.3934624967905], [4.943372545956413, 52.39371037186233], [4.940988161886632, 52.394423121350876]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:amsterdam:nord_neighborhood_zones:9", "properties": {"fill": "#f46f48", "fill-opacity": 0.5, "type": "GtfsShape", "name": "9", "alternateName": "amsterdam_nord_neighborhood", "description": "Nieuwendam-Noord", "val": 33}}, {"type": "Feature", "geometry": {"coordinates": [[[4.931043139768366, 52.41167939576711], [4.931063624509672, 52.41168300406776], [4.931120840085558, 52.41169311069977], [4.931211895234763, 52.4116997524965], [4.931451221306337, 52.411723142352514], [4.931602468634543, 52.411736306695076], [4.93192263664029, 52.41175910766638], [4.932325051633262, 52.411787616127235], [4.932602636556936, 52.411806656721815], [4.932918424197128, 52.41182674190732], [4.933175415670427, 52.41184749972073], [4.933407441203742, 52.41186636383586], [4.933745173700869, 52.411896417236285], [4.934269418712486, 52.411940664225575], [4.93451611451008, 52.4119622785292], [4.934626212378967, 52.41197528178062], [4.934742170701551, 52.411990104831645], [4.934884565112379, 52.41200682621497], [4.935012281102781, 52.41202169388572], [4.935041656504498, 52.412023603514314], [4.935142899875917, 52.412040167538464], [4.935204498409056, 52.41205298519936], [4.935283705742419, 52.41206856627576], [4.93548017674535, 52.4121151523051], [4.935792506605128, 52.412186446020606], [4.936098894638707, 52.41226400761473], [4.936452167794775, 52.41235612696279], [4.93682443891658, 52.41245910259934], [4.937261205405807, 52.412579398452436], [4.93799697508053, 52.41278171513143], [4.938852995672268, 52.41301144512503], [4.939489138047502, 52.413183716345834], [4.939593243480846, 52.41320837621173], [4.939735525656824, 52.41323677520937], [4.939904190555937, 52.413272463720965], [4.940301662333185, 52.41335575076321], [4.940747537251196, 52.41344910522368], [4.941274068769893, 52.413560736788895], [4.941719938774279, 52.41365498631603], [4.942076327751123, 52.4137318215878], [4.942356462536724, 52.413791293073835], [4.942491381583149, 52.41382145862493], [4.942569106867571, 52.413838826766984], [4.942646937165156, 52.413859797483745], [4.944156012717532, 52.41168972289151], [4.944270347431599, 52.411249712615636], [4.944471440164343, 52.41102554928325], [4.946571281544648, 52.409829217163335], [4.94968656493292, 52.407944061540256], [4.95000142609141, 52.407817689624125], [4.950661651741976, 52.40774993086265], [4.951588421419522, 52.407618887317575], [4.956939850867117, 52.406388805000354], [4.958391418260569, 52.40581027740017], [4.95866307826688, 52.40555026009602], [4.95935880781117, 52.403809312455934], [4.95948639591788, 52.40323438602324], [4.958815895367477, 52.40245044517514], [4.957670141564385, 52.401340504819274], [4.955738674096025, 52.401585094467286], [4.954819443084317, 52.401040463477806], [4.953860529449407, 52.401581205165954], [4.951797119691493, 52.40266657915118], [4.949183120452609, 52.40024565333252], [4.947414088298609, 52.39861723649387], [4.946598153220723, 52.397859378233775], [4.945752629346226, 52.39772226963984], [4.944703759608239, 52.39787999884404], [4.940988161886632, 52.394423121350876], [4.940210755751604, 52.39467081066381], [4.936759450643873, 52.39357270308016], [4.935048120469574, 52.393012049439655], [4.933812500807677, 52.39294949072982], [4.933557395307461, 52.39300634949315], [4.924505590598806, 52.39521654116566], [4.924877837500365, 52.3957068778086], [4.923743369088956, 52.39701585439414], [4.922722601536242, 52.39865003435257], [4.922262748612398, 52.39934670507433], [4.922656083296434, 52.39983070485769], [4.92281874239821, 52.400812073990615], [4.925209342791737, 52.40475867944677], [4.925231469465505, 52.407055374599075], [4.928862111024594, 52.41011299947634], [4.929658307986297, 52.41113091375716], [4.931043139768366, 52.41167939576711]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:amsterdam:nord_neighborhood_zones:10", "properties": {"fill": "#e2311d", "fill-opacity": 0.5, "type": "GtfsShape", "name": "10", "alternateName": "amsterdam_nord_neighborhood", "description": "Buikslotermeer", "val": 48}}, {"type": "Feature", "geometry": {"coordinates": [[[4.920498623186597, 52.41657604748393], [4.920515356093701, 52.41656534173609], [4.920527256792202, 52.4165519071895], [4.920537839126231, 52.41652408727055], [4.920548203703126, 52.41651693800025], [4.92060857102326, 52.41650728935605], [4.920657094465807, 52.41650568289851], [4.920673300494527, 52.416502151661916], [4.920680696984467, 52.4164976869775], [4.920704450917756, 52.416475311468965], [4.920722306572183, 52.41645471025764], [4.920760872327365, 52.41642160791409], [4.920774204893068, 52.41641177402389], [4.920797977657054, 52.41638760104819], [4.920845381191303, 52.41635273594148], [4.920891210762204, 52.41632775099478], [4.921010796445893, 52.41627789092577], [4.921100824620848, 52.41624319341167], [4.921148085939076, 52.416221809042554], [4.921227900756275, 52.416179881170294], [4.921261857925017, 52.416165634525214], [4.921365132968379, 52.41612919137796], [4.921452220923605, 52.416094482038055], [4.921489145937971, 52.416077550709915], [4.921537923945643, 52.41605167834056], [4.92160141896651, 52.41602406625908], [4.921712240794649, 52.41596877847851], [4.921932272225892, 52.415871677694554], [4.922026887591054, 52.41581992102671], [4.922054946111796, 52.41580744851974], [4.92345723109919, 52.41524313044498], [4.923799943253136, 52.415079997949974], [4.92415593727807, 52.41491152380244], [4.92440409982404, 52.414793856856015], [4.925077730802791, 52.41446933693104], [4.925116207208631, 52.414444321672796], [4.92517983828525, 52.41440322678697], [4.925470805660497, 52.4142677492841], [4.925496128763594, 52.414235492554226], [4.925538995274502, 52.41421229178797], [4.925691007652174, 52.41415266696675], [4.925733761646057, 52.41414025082796], [4.925775083302014, 52.41412423405042], [4.925832721980347, 52.41409390061381], [4.925958203157894, 52.41404136223017], [4.926057172391282, 52.413994113102085], [4.926126559355839, 52.413964724007016], [4.926182727836811, 52.41393438467917], [4.926348134397751, 52.41385863342616], [4.926486907424669, 52.413799854851604], [4.926557847643749, 52.41376238269157], [4.926633140912732, 52.413730319978065], [4.926677476081333, 52.413707124509074], [4.926783764483035, 52.413662599506125], [4.926875364620287, 52.41361711858283], [4.926950620067168, 52.41358865056641], [4.927040703471067, 52.41354765743066], [4.927126302840191, 52.413513836906404], [4.927223771923456, 52.41346927726404], [4.927306403548284, 52.41343814137284], [4.927333007999592, 52.41342386445091], [4.927380253975803, 52.413403376300785], [4.927476271481705, 52.41335701329487], [4.927598949014703, 52.41329098087679], [4.927870450530834, 52.41318867615042], [4.927897036016451, 52.413176196551234], [4.927936960798089, 52.41315298351466], [4.92804030716118, 52.4131084459823], [4.928103859103481, 52.41307453931144], [4.928137793058093, 52.41306208813128], [4.928167271275126, 52.413054113486226], [4.928210079380269, 52.41303630409666], [4.928267705666924, 52.41300686818998], [4.928381320764128, 52.412964167657236], [4.928440444477616, 52.41293204118098], [4.928530543777012, 52.41288924945256], [4.928563017058817, 52.41287589373493], [4.92862063360003, 52.41284735638043], [4.928656055551937, 52.412833113288336], [4.928719606628078, 52.41279920628408], [4.928772748741133, 52.41277694287168], [4.928854084930181, 52.41272872442335], [4.928914649806413, 52.41269929956986], [4.929028319255779, 52.41265120605916], [4.929112510716608, 52.41261108732755], [4.929198078824398, 52.41257996147208], [4.929239462801464, 52.41255765239884], [4.929332472110002, 52.41251756759319], [4.92939603150243, 52.41248276149714], [4.929469860128446, 52.41244979256271], [4.929583407660957, 52.41241338194806], [4.929626298114184, 52.41238748351243], [4.929651412926533, 52.412374997840345], [4.929714823384465, 52.41235457118166], [4.929806362140815, 52.41231448032643], [4.929862396132712, 52.41229672139701], [4.929884562160372, 52.41228512305496], [4.92990528630988, 52.412270822859384], [4.929930400977508, 52.412258337127724], [4.929964296694676, 52.41224948032351], [4.929986434848753, 52.41224057813924], [4.930058811485484, 52.41220580571227], [4.930091246716856, 52.41219604447541], [4.930132629885676, 52.412173735087386], [4.930172534051405, 52.41215231874143], [4.930256667915124, 52.41211759154438], [4.930275848028852, 52.412110475421045], [4.930337797399217, 52.41208914403343], [4.930355470731523, 52.41208561713308], [4.930384910835316, 52.412081236836244], [4.930397493020583, 52.4120012955747], [4.930397567148729, 52.4119941057686], [4.930402254183099, 52.41196716099425], [4.930405443730373, 52.41194290673072], [4.930565938745285, 52.411771861939535], [4.930716070735511, 52.411607967094824], [4.930796652780363, 52.41163254409154], [4.930862649247849, 52.4116462797191], [4.930969731864683, 52.41166646485413], [4.931043139768366, 52.41167939576711], [4.929658307986297, 52.41113091375716], [4.928862111024594, 52.41011299947634], [4.925231469465505, 52.407055374599075], [4.925209342791737, 52.40475867944677], [4.92281874239821, 52.400812073990615], [4.922656083296434, 52.39983070485769], [4.922262748612398, 52.39934670507433], [4.921981155174395, 52.3992274569441], [4.921722766024446, 52.3995151249957], [4.921437266791094, 52.39976758914186], [4.920043746704475, 52.400332053218015], [4.917237210699669, 52.401079239640914], [4.91568792169271, 52.40131134554705], [4.914629273914697, 52.40145838912378], [4.914765321697576, 52.40090183267139], [4.913035792192208, 52.400757501384014], [4.910691259985583, 52.40076440622973], [4.908308523973129, 52.40116557808521], [4.903956848841748, 52.402918562555236], [4.902178419348223, 52.403767457783246], [4.902644096306963, 52.40419744500664], [4.903754441644558, 52.40480356934441], [4.906012986473172, 52.405962059157545], [4.906562623371387, 52.40640670687628], [4.907202120224012, 52.40788385626557], [4.909034700722181, 52.408015341133], [4.91059422605099, 52.40933651576846], [4.911453940045112, 52.40959306276634], [4.912619201547494, 52.41007673184149], [4.913395706248243, 52.41070910843032], [4.919103179393328, 52.41547083210057], [4.920498623186597, 52.41657604748393]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:amsterdam:nord_neighborhood_zones:11", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "11", "alternateName": "amsterdam_nord_neighborhood", "description": "Banne Buiksloot", "val": 9}}, {"type": "Feature", "geometry": {"coordinates": [[[4.864505098842709, 52.41488071224358], [4.867831009295883, 52.41825177325572], [4.869296499745893, 52.41772234473722], [4.872906953253405, 52.416134496112754], [4.873542152271374, 52.41601515442223], [4.874804907606179, 52.416086860872326], [4.875199424954252, 52.41517753417173], [4.878891681609028, 52.413539436353005], [4.890320889634237, 52.408116288103564], [4.892643225604732, 52.40694705103933], [4.89312265119688, 52.406283695995384], [4.893209708716216, 52.40492714887795], [4.893576392805818, 52.40458710172254], [4.899873508102935, 52.40162648757874], [4.902178419348223, 52.403767457783246], [4.903956848841748, 52.402918562555236], [4.908308523973129, 52.40116557808521], [4.909176504050571, 52.39981563387057], [4.90994032208103, 52.39845290542105], [4.9093810120624, 52.397937051235026], [4.909244433496565, 52.39771306717191], [4.910306737254687, 52.39729470435094], [4.910497980948334, 52.397169916623106], [4.910698563465024, 52.39692801208564], [4.912481799003642, 52.394004836845404], [4.912825331327467, 52.39331416344003], [4.912800298561742, 52.39278415075017], [4.913212156378294, 52.39257867898371], [4.912500697921658, 52.39193815516871], [4.912368896879733, 52.39224904934902], [4.910672683616696, 52.392946150930236], [4.910093546421034, 52.39270160204829], [4.908576344553484, 52.39327828587099], [4.908108144185644, 52.39278800341869], [4.906351875640484, 52.391042851735676], [4.906003868545694, 52.39042600780894], [4.905893747846394, 52.38962920790566], [4.907317644407415, 52.38624393687988], [4.906108167746497, 52.384835154707716], [4.902102733399489, 52.3830664423431], [4.901371913848172, 52.38289438813774], [4.898765695528242, 52.38254209065461], [4.897100171123946, 52.383473434288426], [4.895665831954963, 52.388831383576665], [4.892798210725361, 52.393345461110336], [4.891022577844691, 52.39482594497003], [4.888666278049833, 52.39676862201276], [4.884377195553136, 52.39924187389027], [4.88631502092572, 52.40060650186], [4.865700813773708, 52.4144628427209], [4.864505098842709, 52.41488071224358]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:amsterdam:nord_neighborhood_zones:12", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "12", "alternateName": "amsterdam_nord_neighborhood", "description": "Buiksloterham", "val": 10}}, {"type": "Feature", "geometry": {"coordinates": [[[4.952379575819202, 52.38629832411822], [4.952412458317404, 52.38212093800688], [4.943104898206634, 52.38203350890166], [4.938098158593528, 52.382025503207686], [4.937306322398523, 52.38204325925429], [4.93146714245202, 52.38199473369173], [4.919830370660967, 52.380790689335484], [4.91952141874024, 52.38174548891267], [4.918715767810546, 52.38429399536289], [4.919288319144524, 52.38439116869839], [4.918974883874535, 52.38538450564292], [4.918785752073676, 52.38554589532762], [4.91942395292781, 52.38570116322633], [4.920594151333283, 52.38589461033694], [4.921814825657258, 52.38605215871583], [4.922374874152637, 52.38618881361332], [4.922639151601694, 52.38633369815733], [4.923915721212286, 52.38756115591255], [4.928144248018517, 52.38593153054013], [4.929649608148546, 52.38739263811766], [4.932415329044288, 52.38634494853828], [4.932917228974744, 52.38758712688807], [4.938476069361814, 52.38667009662046], [4.944523361919569, 52.38568048433242], [4.944904499526996, 52.38561764656571], [4.945092577968819, 52.38603852169333], [4.945679217914965, 52.38594580046863], [4.945912144268952, 52.385838906592674], [4.946919890505022, 52.3857255030708], [4.946985064347382, 52.38583350731423], [4.947081113565957, 52.38592383070315], [4.947228592641095, 52.38596046409056], [4.948594177552267, 52.38585232967005], [4.950163276249901, 52.38583693637478], [4.950863925802226, 52.385892844391684], [4.951511393171976, 52.386021279808816], [4.952379575819202, 52.38629832411822]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:amsterdam:nord_neighborhood_zones:13", "properties": {"fill": null, "fill-opacity": 0.5, "type": "GtfsShape", "name": "13", "alternateName": "amsterdam_nord_neighborhood", "description": "Nieuwendammerham", "val": 72}}, {"type": "Feature", "geometry": {"coordinates": [[[4.985252846183419, 52.42445643794329], [4.985780480817385, 52.42398637920954], [4.986567375542739, 52.42329520198475], [4.986897743302316, 52.42301500756975], [4.987042929657804, 52.42289146948891], [4.987044407833069, 52.42289057572355], [4.987048858596777, 52.422886096969044], [4.987050336771797, 52.42288520320357], [4.987051814946701, 52.42288430943811], [4.987102186511001, 52.42284133919276], [4.987495198170038, 52.42311229231973], [4.987685244515582, 52.42323067023646], [4.987768706075665, 52.423267800579424], [4.987918653087361, 52.42326830586782], [4.988259789996014, 52.42326046715302], [4.988834659574331, 52.42325431211565], [4.989006504073938, 52.42327196600259], [4.989100281546915, 52.42330643379585], [4.989183486011347, 52.423372322477455], [4.989568503137089, 52.423716939818334], [4.989921168031813, 52.4240632449344], [4.990198335370705, 52.42430414161792], [4.990363039888149, 52.42446287430971], [4.990405173860346, 52.42451873826166], [4.99041494131033, 52.42457719010706], [4.990399826252979, 52.42478744841165], [4.990388818811182, 52.424867400841094], [4.990380977033134, 52.42492219870031], [4.990363597825929, 52.42505695390464], [4.990355611037657, 52.425127928881544], [4.990352292305569, 52.42517015929815], [4.990358684726139, 52.42527713265851], [4.990360082389985, 52.425285226141746], [4.990394399446687, 52.42539319175361], [4.990433199558883, 52.42549308355831], [4.990444711128974, 52.425520983528166], [4.990462360906508, 52.425520143857206], [4.990452263114181, 52.425498539913], [4.990465558805588, 52.425491394374426], [4.990481794778168, 52.42548425867673], [4.990502400924924, 52.42548163138416], [4.990503911315402, 52.42547714266036], [4.990489636532871, 52.425429460817334], [4.990613176653144, 52.42542448174686], [4.990651424452333, 52.42542191346116], [4.990679365171006, 52.425421108190584], [4.990932293693886, 52.42541476410334], [4.991116117515208, 52.425409087301595], [4.99113818569319, 52.425407363540565], [4.991201417795171, 52.42540577732443], [4.991372002253478, 52.425400954643905], [4.991382060314058, 52.425427052155655], [4.991392270985444, 52.42543607381519], [4.991409840399875, 52.425444221293155], [4.991428912085715, 52.425448778761805], [4.991475924500008, 52.425452530768965], [4.991528817490082, 52.42545630239026], [4.991642026446523, 52.42545578153452], [4.991725856636298, 52.425452466273164], [4.991727326778155, 52.42545247117885], [4.991864130189908, 52.42544394003812], [4.992011248595382, 52.4254327468677], [4.992165653504748, 52.425428767848636], [4.992315543797772, 52.425436457411514], [4.992419883783962, 52.4254412987964], [4.992556606950949, 52.425441754146895], [4.992718370556661, 52.42543690015505], [4.992830173329759, 52.42542918343745], [4.992946322487279, 52.42542867111926], [4.993055168922959, 52.42542274186637], [4.993203725122465, 52.425415147020566], [4.993346424684809, 52.42540483625858], [4.993459681430149, 52.42539892129062], [4.993564013468193, 52.42540466039709], [4.993677110481967, 52.42541671980549], [4.993803414881943, 52.425431519213745], [4.993920994277374, 52.425435504465995], [4.994067968551862, 52.4254404858673], [4.994185500146675, 52.42544986323259], [4.994229564540233, 52.425454503126105], [4.994260429554527, 52.4254555042187], [4.994389818019675, 52.42545413562353], [4.994441288938702, 52.425452508696374], [4.994463428733144, 52.425442695752295], [4.994525206565096, 52.42543930543181], [4.994738393057105, 52.42543821407123], [4.994961886450253, 52.425435358927636], [4.995166212289642, 52.42543873125027], [4.995202910157372, 52.42544514392523], [4.995248500468852, 52.42544349719699], [4.995251233969993, 52.42546687388402], [4.995373311480231, 52.42546098625802], [4.995437727476862, 52.42549175689812], [4.995565669711805, 52.425487685971085], [4.995577573898548, 52.42547154770618], [4.996220200971413, 52.425453896821665], [4.996965769157575, 52.425432986424866], [4.998550740104806, 52.42542021948288], [4.998784500527283, 52.425420087063074], [4.999063882600166, 52.425414711066495], [4.999200605773166, 52.425415158749225], [4.999348987772872, 52.42542732824985], [4.999445962075202, 52.42543393685099], [4.99956211905099, 52.42543251931677], [4.999628306911734, 52.425429140760016], [4.999660634312622, 52.425431043983096], [4.99996511091711, 52.42541406409479], [4.99998275261793, 52.42541412173502], [4.999994513751858, 52.42541416016032], [5.000128210255765, 52.42542448319377], [5.000155978029759, 52.42544344774308], [5.000207558667007, 52.425429236093514], [5.000717427774865, 52.42529339029107], [5.000808874254035, 52.425259535756375], [5.000894408696601, 52.425229256902696], [5.000931279657482, 52.42521589574668], [5.000972561000691, 52.425202548952015], [5.001040390930326, 52.42517940233894], [5.001056609417034, 52.425174062649575], [5.001181954605443, 52.425130431959396], [5.001310278959753, 52.42508231705977], [5.001488767441598, 52.42501369391591], [5.001652452405898, 52.42495670616752], [5.00181467464411, 52.424898814681384], [5.001948893767947, 52.42484892074808], [5.002119959393236, 52.42478836132413], [5.002307250531514, 52.424721563060565], [5.002479800905043, 52.42465921042862], [5.002665628642735, 52.42459150809319], [5.002819019743639, 52.42453448533502], [5.002993038779491, 52.424472136719686], [5.003171506613062, 52.42440530848725], [5.00334699475229, 52.42434296411289], [5.003478215755714, 52.42429935002678], [5.003619828406816, 52.42424408560762], [5.003787980329379, 52.42417991932552], [5.00390447608567, 52.424138953395136], [5.004050451341336, 52.424089095103994], [5.004183203170058, 52.42403829514289], [5.004343964181809, 52.4239785979637], [5.004510589601512, 52.42392071701427], [5.004718532343848, 52.423844994070954], [5.004935302658654, 52.4237684004809], [5.005131421260313, 52.42369982871879], [5.00529952243585, 52.423641052663044], [5.00541603087114, 52.4235982877777], [5.00557234741208, 52.423542169638], [5.005641665702837, 52.4235163289195], [5.005710976172326, 52.42349138689082], [5.005755186886698, 52.42347894661664], [5.005862812096181, 52.42344334274516], [5.005970460338147, 52.423405042583504], [5.006016179640014, 52.42338811328708], [5.006084027356553, 52.4233622675801], [5.006188765986656, 52.423320362841324], [5.006238926254039, 52.423299852714045], [5.006265511223408, 52.42328555807942], [5.006333327726474, 52.423263307151714], [5.006426212618164, 52.423232149174865], [5.006517650482005, 52.423198290210564], [5.00667397193772, 52.42314127187904], [5.006803746915587, 52.42309405444845], [5.006861256966968, 52.42307356764855], [5.00710453491355, 52.42299076387136], [5.007195917789944, 52.42296319549676], [5.007306457586184, 52.422930295927365], [5.007371340610587, 52.422907136247275], [5.007464239435396, 52.42287417999104], [5.007768026099995, 52.42276370729491], [5.007940561166326, 52.42270134666894], [5.007959756492975, 52.42269152178404], [5.008021667949612, 52.42267194726139], [5.008141080547306, 52.42263278401304], [5.008357815957821, 52.42255888032261], [5.008374040290065, 52.42255264089575], [5.008539208087082, 52.42249205336031], [5.008713195696006, 52.42243149376248], [5.008745651841088, 52.42241811607759], [5.008816444242903, 52.422391379455156], [5.00893590910521, 52.422345924284194], [5.009120224226921, 52.422280903273794], [5.009320762881145, 52.42220964241805], [5.009379740657239, 52.42218915907675], [5.009418076565678, 52.422175799952534], [5.009549254528845, 52.42213577403483], [5.009615620573047, 52.4221108203414], [5.009711486759878, 52.42207427675644], [5.009987308836302, 52.421966405564795], [5.01016869608309, 52.42189957609442], [5.010204099100014, 52.42188530862973], [5.01023793264249, 52.4218827199856], [5.010304267332638, 52.42186136082961], [5.010391274042598, 52.421829282297615], [5.010470899937433, 52.42180077526211], [5.010631598520615, 52.42174646189483], [5.010922108861582, 52.42163953395536], [5.010973719786206, 52.4216208239424], [5.011057770243925, 52.421590533047684], [5.011103493360805, 52.421572703046394], [5.011180178306842, 52.42154418620146], [5.011262743209686, 52.42151568795933], [5.011308443287859, 52.421500554072914], [5.011371852114864, 52.42147738752819], [5.011573853522823, 52.421406127501115], [5.01185548601215, 52.42130546042553], [5.012013256316162, 52.42124933840032], [5.012132676772834, 52.421208373646536], [5.012319983322539, 52.42113616708491], [5.012420270378763, 52.42109783778298], [5.012520496448258, 52.42106669824887], [5.012611917587831, 52.421033733288304], [5.012670915073675, 52.42101055210551], [5.0127520080274, 52.42098204817467], [5.012849331586135, 52.42094640541333], [5.013011509333375, 52.420890295982154], [5.013073423633212, 52.42086982007572], [5.013163351198081, 52.4208395462421], [5.013294590097304, 52.42079142757294], [5.013384517352041, 52.42076115357064], [5.013474467230642, 52.42072818330433], [5.013568819355896, 52.42069612560471], [5.013680879377938, 52.42065603484176], [5.013719227818188, 52.42064087685518], [5.013739921262611, 52.42062746073264], [5.013795977649587, 52.420604269721636], [5.013965639156675, 52.42053200496245], [5.013995129647629, 52.42052131276762], [5.014095383585228, 52.42048657696745], [5.01436963192726, 52.42038857694007], [5.014522963175694, 52.42033513387752], [5.014779501971688, 52.4202451660111], [5.014884157029494, 52.42021134213053], [5.014923891564335, 52.420206074422126], [5.014945978888909, 52.42020165002499], [5.014971036357172, 52.42019363992989], [5.014985804024849, 52.42018559751157], [5.015003526729179, 52.42017576686073], [5.015044791589512, 52.42016331387209], [5.015147946090771, 52.4201330800695], [5.015226065724601, 52.42010816013522], [5.015323377829848, 52.42007341406308], [5.015579981340225, 52.41997535586636], [5.015748054530644, 52.419916564912185], [5.01582912843508, 52.419889856328915], [5.015879242690867, 52.41987383575801], [5.015992776033257, 52.41983284867085], [5.016110749151575, 52.41978828035442], [5.016290625719571, 52.41972413305637], [5.016476351494564, 52.419663598806544], [5.016563334383408, 52.41963331318286], [5.016588421313175, 52.419621707815004], [5.016706363204942, 52.41958073383147], [5.016920129510943, 52.41950680521016], [5.017210542442284, 52.419407950362135], [5.017562879093069, 52.41928681907045], [5.01763660105275, 52.41926008631981], [5.017809138567671, 52.41919411631975], [5.017814965861918, 52.41920042577411], [5.018205682181458, 52.419059639567095], [5.018296563589998, 52.41909048020582], [5.018300965908995, 52.41909139266561], [5.018302428359495, 52.41909229597378], [5.018314157899987, 52.41909592750892], [5.018353726406251, 52.41911043076271], [5.018375715571953, 52.41911768924686], [5.018388915060513, 52.41912132534938], [5.018413844108633, 52.419128592975675], [5.018449062715757, 52.4191358926144], [5.018462299618945, 52.419135035046246], [5.01851236719223, 52.41912440575218], [5.018616044680234, 52.41920741378861], [5.018638026460092, 52.41921557095647], [5.019029155608077, 52.419378562765274], [5.019311765138005, 52.41951065874737], [5.019723374357081, 52.41968629439647], [5.019925572358358, 52.41976601170185], [5.020186599256747, 52.41984231584006], [5.020314024257813, 52.419898433242274], [5.020392896144087, 52.4199597927688], [5.02046998580009, 52.420058894458656], [5.020658753930578, 52.420340788923774], [5.020957935626673, 52.42078120528412], [5.021110464985767, 52.421001871615815], [5.021145782894324, 52.42105591591504], [5.021154015375783, 52.42106851403096], [5.021281415434935, 52.421128225311904], [5.021288743175627, 52.421130944202815], [5.021407479416927, 52.42117175473557], [5.021516014870322, 52.42120174860992], [5.021611402007295, 52.421221815516965], [5.021612879429915, 52.42122092131926], [5.021655687579558, 52.4211994832406], [5.021660112426251, 52.42119769937824], [5.021933174899449, 52.4210637280133], [5.022373684954482, 52.420767596900674], [5.023203142828387, 52.42036570752244], [5.023558233644239, 52.42026613702931], [5.023857132264375, 52.42020683719649], [5.023863019524056, 52.420205956490854], [5.024276773801307, 52.42012274128295], [5.024278243770707, 52.420122745784525], [5.02428707831219, 52.42012097532814], [5.024303255337037, 52.420120126110476], [5.024315022453458, 52.420119263387356], [5.024417971822674, 52.420113287292104], [5.024745951415643, 52.4200927207177], [5.024816546660604, 52.42008844283], [5.024820963917326, 52.42008755758177], [5.024941545413429, 52.42008253370116], [5.024956230396662, 52.420084376099496], [5.024962110269465, 52.42008439407207], [5.025389518696475, 52.420128839970744], [5.025401271114284, 52.420129774605385], [5.025623060499298, 52.420152021622606], [5.025624530469793, 52.42015202610751], [5.026065822030714, 52.4201165227007], [5.026499902082916, 52.42006391935242], [5.026916655812168, 52.41997261526656], [5.027260033876122, 52.4198658080425], [5.028357354227261, 52.41941616309887], [5.028692973985231, 52.419177211200626], [5.028865035266054, 52.41898629669748], [5.028867996938774, 52.418983609386565], [5.028979251985548, 52.41885901873715], [5.029236664892979, 52.41847423048094], [5.029291734265036, 52.41838991379786], [5.029510452677536, 52.4180634271595], [5.029727944526665, 52.41770637871261], [5.029945137030279, 52.41720373053121], [5.030049579465135, 52.41682926422471], [5.030083691249595, 52.41660917187036], [5.030085298742812, 52.41659210035514], [5.030108991476605, 52.416205706758554], [5.030044437070694, 52.41564378978647], [5.032489614852169, 52.41627756686052], [5.0334682337838, 52.416685830844145], [5.034064059817481, 52.41717383459777], [5.034404391527706, 52.417813863357274], [5.034768450516285, 52.418059408043106], [5.035046596082525, 52.41820313698239], [5.035238775492577, 52.41825134192528], [5.035470849822484, 52.41827360106732], [5.035869245185808, 52.41826849153575], [5.036309267721657, 52.4182041860828], [5.03687463600791, 52.4180890205553], [5.037369701650871, 52.41794128963636], [5.038638098737091, 52.41758732253312], [5.039389371025925, 52.41738191738797], [5.040109012251077, 52.41730716125965], [5.04071042722401, 52.41724468266452], [5.042589521311185, 52.416985029056804], [5.043493909520699, 52.416744092857684], [5.043996175983306, 52.41661073524543], [5.047272395881468, 52.41567378895758], [5.049177075620619, 52.415129198958155], [5.050925047767932, 52.41527887155741], [5.052520792038644, 52.41554043289546], [5.055088322809798, 52.41597276722626], [5.057756341145767, 52.41653744208758], [5.062089218141171, 52.416183614751404], [5.062556713951708, 52.416173212521045], [5.063188135274384, 52.416258524717534], [5.06368221342214, 52.41643243537878], [5.064380995073468, 52.41675519621683], [5.064826447011232, 52.41694694468751], [5.065412279786496, 52.41723973319122], [5.065811405786594, 52.41713206698434], [5.066245878385022, 52.417014608868925], [5.067298861117315, 52.41673704458083], [5.067602229738603, 52.41665787396055], [5.067667026716487, 52.41664097235557], [5.067690589830868, 52.41663474460526], [5.067814291213746, 52.41660272289149], [5.067851108917803, 52.416592935812616], [5.067862893688893, 52.4165893725513], [5.067918851896492, 52.4165751432543], [5.067935052704185, 52.41657069312879], [5.067960046746938, 52.41656986170515], [5.068076197806414, 52.41656568076027], [5.068108547599878, 52.416563970358304], [5.068152656243972, 52.41656229160449], [5.068246752948365, 52.416558949871266], [5.068263563913696, 52.41655835250485], [5.068261558129945, 52.41654417824658], [5.068281810842975, 52.416350497285116], [5.068285593854903, 52.41633565285492], [5.068371069249796, 52.4160001693529], [5.068425566644909, 52.4157639076135], [5.068426323642733, 52.41574306573844], [5.068430258617624, 52.41563476024279], [5.068412711640505, 52.415452508562396], [5.06839527842357, 52.41540563656031], [5.068364622539526, 52.4153232191934], [5.06830140358421, 52.4152008184854], [5.068211963394287, 52.41505530669257], [5.068211929938099, 52.41505525806976], [5.068050977368595, 52.41488993023132], [5.067946317451681, 52.41476048831143], [5.067864243076701, 52.414638027567136], [5.067778957076302, 52.41443714176395], [5.06763899427589, 52.41397548757262], [5.067528353472398, 52.41363039089003], [5.067497030339173, 52.41354123170038], [5.067495307857102, 52.41353632794096], [5.067495099022176, 52.41353573419937], [5.067494355219773, 52.413535339436855], [5.06748822911108, 52.4135320864934], [5.067333571534816, 52.41344996154623], [5.067294007458136, 52.41343272448154], [5.067274044487945, 52.41342402636529], [5.067269880468496, 52.41342221222144], [5.067269660693523, 52.41342211636012], [5.06726939485003, 52.413422090477304], [5.067264163154742, 52.413421582936586], [5.067221303498234, 52.41341742551696], [5.067220677812174, 52.41341736450972], [5.067219848657772, 52.41341739192981], [5.067157351763529, 52.41341947454343], [5.067156550540869, 52.41341950113974], [5.06715580887048, 52.413419625861174], [5.066089968548209, 52.413598820416325], [5.065777987857048, 52.41365505455986], [5.065308370691029, 52.41373970084755], [5.064387007683686, 52.413912478757595], [5.063044774356888, 52.41413945333428], [5.062510542635757, 52.41422793820037], [5.062257650907251, 52.41425953730291], [5.061918010179691, 52.414293198595374], [5.061472743648781, 52.41433348904856], [5.060906586262684, 52.41440343648059], [5.060771516396611, 52.414424763141454], [5.060661722837196, 52.414442097825784], [5.060361046783062, 52.41448957072581], [5.05928510971976, 52.41465266134786], [5.058584975792772, 52.414733748931596], [5.058060406401956, 52.41478764746152], [5.057815165971149, 52.414805417511914], [5.057634074693984, 52.414816445058804], [5.057497760971797, 52.41481393314428], [5.057487023882956, 52.414813735204255], [5.057245820562899, 52.414794612429304], [5.057004651877465, 52.414770869658525], [5.056763586601901, 52.41473329484483], [5.056590379557718, 52.414698218672385], [5.056214081840056, 52.41459107922102], [5.055820878944261, 52.41447466108197], [5.055452073229441, 52.414374451574325], [5.055247856669999, 52.41430842785935], [5.055186486396403, 52.414288586677415], [5.055121035583358, 52.41426742634008], [5.054635967649918, 52.414081560606654], [5.05394405752659, 52.413823606397706], [5.053389314296342, 52.413628300354475], [5.053290385783059, 52.413591239178864], [5.052539491275724, 52.413309927991875], [5.052263022005373, 52.413201567661524], [5.052210515558902, 52.413180988734204], [5.051835408133798, 52.41300900243299], [5.051488974988143, 52.412816164151735], [5.051301754349423, 52.41268657230566], [5.05110918807755, 52.41250811762713], [5.050606012592747, 52.41192244699416], [5.050583447435937, 52.41189618146859], [5.050226075400141, 52.411488702522675], [5.050135377964379, 52.41138528806532], [5.048945257841541, 52.410028233543635], [5.048460460847898, 52.409477978194715], [5.048396268053235, 52.40941241463888], [5.048330310959458, 52.4093450484887], [5.048301422783259, 52.40929614812082], [5.048268388108414, 52.40924022918018], [5.048257396177708, 52.40921588727751], [5.048167443695455, 52.409016689309915], [5.048107133425776, 52.408874091699616], [5.048100929211761, 52.4088594206194], [5.048100233429563, 52.40885777660017], [5.048098695620395, 52.40885631531508], [5.048079709455768, 52.40883826338091], [5.048026626162025, 52.408787795464725], [5.047856592188098, 52.408651263865785], [5.047810743760466, 52.40861890763922], [5.047697825886675, 52.40853921856801], [5.047697776189234, 52.40853918337411], [5.047697569256541, 52.40853895449706], [5.047590347015976, 52.40842027560549], [5.047059483463734, 52.407745512274936], [5.046830886048338, 52.40743962905878], [5.046492150871239, 52.40699564031816], [5.046351573617615, 52.4068075863576], [5.046351039774384, 52.406806873006474], [5.046350221620627, 52.4068062487131], [5.046254673120677, 52.40673333807768], [5.046186120424768, 52.40669426956254], [5.046181319848358, 52.40669153431014], [5.046180857497355, 52.406691270542396], [5.046180252605687, 52.406691196900944], [5.046173682463813, 52.40669039966776], [5.046004249308392, 52.40666983006776], [5.045434728639508, 52.406577495151666], [5.045019076440039, 52.40649606347949], [5.044649108182741, 52.406407788071874], [5.044407446798584, 52.40635190548995], [5.044358818239735, 52.406340665143894], [5.044079871306679, 52.406251310338625], [5.043875317197996, 52.4061857843998], [5.043807190944213, 52.406164698065794], [5.043649493661872, 52.40611588599771], [5.04364777548218, 52.406115354344216], [5.043645891825464, 52.4061151268895], [5.043499652133248, 52.40609748887874], [5.042912672128473, 52.40605043345219], [5.042770347036951, 52.40602211339976], [5.042662407290575, 52.40596947393367], [5.042355872024843, 52.40579068217441], [5.041961412506352, 52.40555406804543], [5.04173417614938, 52.405445267229396], [5.041489700078495, 52.40535386055338], [5.041233725507982, 52.405272881331], [5.040971915318896, 52.40521631272679], [5.040971874243768, 52.405216303619234], [5.040971808166484, 52.40521629713484], [5.040726868159433, 52.40519117717188], [5.039689848102257, 52.40509395038266], [5.039083040626139, 52.40503461264731], [5.038965396348326, 52.405017799902836], [5.038883676444189, 52.40500612030625], [5.038621857195546, 52.4049460503007], [5.038371551564181, 52.4048720559064], [5.038223764142543, 52.40481232068388], [5.038008066534838, 52.4046861017741], [5.037860872256918, 52.40455311909126], [5.03774203402511, 52.40443765575773], [5.037591364993379, 52.404334240598295], [5.037588905170877, 52.404332552663035], [5.037367800274538, 52.40417143582105], [5.037135472260391, 52.40398587513594], [5.036963760353673, 52.40384565576615], [5.036843244236395, 52.40374724137464], [5.036818219215003, 52.40372680511266], [5.036628243154683, 52.40359541994674], [5.03661253015984, 52.40358595716586], [5.036532647602782, 52.40353784752462], [5.036401250751598, 52.403458712081225], [5.036111723987698, 52.403297390242074], [5.035867492589611, 52.40317806615919], [5.035852522585448, 52.403171677434194], [5.035779813741495, 52.403140643383516], [5.035698953667462, 52.403106132076765], [5.035632447110881, 52.40307774610133], [5.035628810803594, 52.40307619394108], [5.035361555300739, 52.40298470691966], [5.035088529535534, 52.40290017650529], [5.034622050523318, 52.40276623140603], [5.034309146596419, 52.40267809332432], [5.034047554975881, 52.40259010737094], [5.033962397894522, 52.40254451115758], [5.033909384912585, 52.40250790484862], [5.033865990793432, 52.40247794026509], [5.033792653734629, 52.40238005347186], [5.033713795930437, 52.402257721908924], [5.033651667142382, 52.402184287725824], [5.033565230073152, 52.402105705666806], [5.033555428225798, 52.402096793981016], [5.03350960917317, 52.40205738596101], [5.03342519235945, 52.401984779380676], [5.033238209639333, 52.40183771429682], [5.03321241739634, 52.40180844556449], [5.033175380413361, 52.401766417705716], [5.03310259396133, 52.401683819092405], [5.032989839253379, 52.40152302669776], [5.032936445618289, 52.401426933575], [5.032895314988815, 52.40137964014001], [5.032857355601174, 52.4013359943492], [5.032772410599473, 52.40126249144314], [5.032685141493255, 52.401201827475695], [5.032681820057732, 52.401199519411335], [5.032681695853706, 52.40119943275889], [5.032681521368534, 52.40119938640007], [5.032676898120625, 52.4011981736218], [5.032534133391103, 52.40116071028842], [5.032533760947856, 52.4011606130063], [5.032533279500108, 52.4011605495507], [5.032317330003499, 52.40113205845115], [5.032026827053798, 52.40109630709819], [5.031782143315246, 52.4010362732239], [5.031628676560808, 52.400976512640646], [5.031526491350271, 52.40092039300393], [5.031448309110051, 52.40085797315675], [5.031390535079855, 52.400811846130885], [5.03131174268849, 52.400682538737954], [5.03124442331413, 52.40054630037945], [5.031200199096039, 52.40044982775429], [5.0311995853767, 52.400448488557146], [5.031198381089688, 52.40044731834956], [5.031120388546459, 52.40037150554414], [5.030916401598065, 52.400213924054], [5.030610655102612, 52.39994789730049], [5.030347697474518, 52.39968024604805], [5.030144166091295, 52.399466842646135], [5.029725524096288, 52.39906094089955], [5.029555936295379, 52.39888251970437], [5.029426155746023, 52.39871468902318], [5.029308171816156, 52.39849806424357], [5.029061271796932, 52.39800895930887], [5.02900819940293, 52.39789486853312], [5.02884271042406, 52.39753911006165], [5.028764453554248, 52.397347024133694], [5.028591813390459, 52.39684069781441], [5.028497007369082, 52.39657878188779], [5.028447072395609, 52.39640944817503], [5.028448116886477, 52.39628038047001], [5.028452085516629, 52.39623822538274], [5.02846059031138, 52.39614786917161], [5.028558951011474, 52.39597025751394], [5.028569549368765, 52.395934539635114], [5.02857603340844, 52.395912690643456], [5.028576531836383, 52.39591101057296], [5.028576164488931, 52.39590938180711], [5.028560023300698, 52.395837711681054], [5.028532721035832, 52.395769446415194], [5.028532085983758, 52.39576785638407], [5.028530596265193, 52.39576639768051], [5.028464203397133, 52.39570137629856], [5.028384351020295, 52.39564330466476], [5.028367862347895, 52.395631313799214], [5.028192126068573, 52.39550869383127], [5.028016503845589, 52.3953721162033], [5.027995920184078, 52.395345327370954], [5.02792698298072, 52.39525560813281], [5.027903670564463, 52.39522526719778], [5.027819395862849, 52.39507153034339], [5.027701868514785, 52.39480257035792], [5.027646336870491, 52.394619261508105], [5.027568712851726, 52.39435043145553], [5.027508133653193, 52.39408861848132], [5.027475503087439, 52.39389318288022], [5.02747113325726, 52.39372921778856], [5.027449040535148, 52.39364194400034], [5.027415462877813, 52.39356509689346], [5.027333788830704, 52.39344449583025], [5.027272506872713, 52.39336004997943], [5.02718157234397, 52.39323473902497], [5.027040388953435, 52.39307035801345], [5.026932854237229, 52.39297584992845], [5.026774204088525, 52.39285675792325], [5.026666627410296, 52.39276573665256], [5.026593293923836, 52.392671332337905], [5.026565815672256, 52.39254566489776], [5.026533133648294, 52.39235720318794], [5.026466238985675, 52.392172115482865], [5.026371612038154, 52.39189276214584], [5.026328000197942, 52.391646701443236], [5.026289350808871, 52.39149310234742], [5.026284588036188, 52.39137797457661], [5.026283238385234, 52.39137593926544], [5.026126911167153, 52.391140284157046], [5.025957808059982, 52.39090605484649], [5.025873648304504, 52.390741846226405], [5.025811988829957, 52.39061259608096], [5.025750685674506, 52.39044148270761], [5.025678609445759, 52.390193591226335], [5.025623490159855, 52.38996144381449], [5.025584389489354, 52.38986365610393], [5.025482948941811, 52.389720326550204], [5.0253365821081, 52.38949662727091], [5.02532573775044, 52.38942682332356], [5.025316018359081, 52.389220986338096], [5.025305558854702, 52.389105841063895], [5.025205274739235, 52.38882298211187], [5.025177631886372, 52.38871824588122], [5.025195840870566, 52.38858225605287], [5.025271627503526, 52.38837492773241], [5.025278266451851, 52.38825983467892], [5.025239058514771, 52.388176003351234], [5.02523876185937, 52.388175814603606], [5.025234610991065, 52.388173249437244], [5.025119950826045, 52.38810238218708], [5.024768137527139, 52.387940961820874], [5.024767872640272, 52.38794084057637], [5.024765541207151, 52.387940329237466], [5.024574422684418, 52.387898393182596], [5.024403627760469, 52.38787345083393], [5.024215820683172, 52.38783799452388], [5.023988347310421, 52.38777450076016], [5.023732391862606, 52.387707440954806], [5.023562957569819, 52.387658414758796], [5.023561798402914, 52.387658078658404], [5.02353027570727, 52.38765246168644], [5.023339270907094, 52.387548267672045], [5.023339055939177, 52.38754815017269], [5.023098560729391, 52.38749122957177], [5.022789306063579, 52.38742356347376], [5.022493785598677, 52.387373895210644], [5.022491394564566, 52.38737349329223], [5.022198735320111, 52.38737961114087], [5.02189430048027, 52.38742432072105], [5.021634565866001, 52.3873940130447], [5.021185229810878, 52.3872775120201], [5.020656222172343, 52.387146804990756], [5.020042130876958, 52.38697425965535], [5.020028854938253, 52.38697052908539], [5.019988978766981, 52.386959324633885], [5.019979951307768, 52.38695678820247], [5.019977663968271, 52.38695593178118], [5.019966608009287, 52.38695179196011], [5.01996490788538, 52.38695115485956], [5.019856880288949, 52.38691070544645], [5.019803215820811, 52.38689061075851], [5.0196575530674, 52.38683606687697], [5.01960166295377, 52.38681513922866], [5.019458225041399, 52.386761428865604], [5.019328984342056, 52.38671303455876], [5.01928893439942, 52.38669803745434], [5.019262240795451, 52.38668804209314], [5.01912738407363, 52.38662400154978], [5.019107968369535, 52.386614781033146], [5.019049595937668, 52.38657868868837], [5.019019954537036, 52.386560360676384], [5.019019919463601, 52.38656033899709], [5.018962540504045, 52.38652013516512], [5.018958755161598, 52.38651748283444], [5.018937421727786, 52.38650253480941], [5.018888148396594, 52.3864414455484], [5.018784359902091, 52.38628370462469], [5.018709442920577, 52.38614806410769], [5.018596143367993, 52.385894009946156], [5.018576403940665, 52.38584974650177], [5.018446156870748, 52.38554974774379], [5.018358969658705, 52.38539205809455], [5.018277066384843, 52.38526316319565], [5.018236563257351, 52.38520909153153], [5.018186906683685, 52.38514280322202], [5.018151247097, 52.385095197032946], [5.018143451291403, 52.38508662641302], [5.018043736383702, 52.38497698754399], [5.018041631707693, 52.38497467296296], [5.018015318569596, 52.38494807027388], [5.017964654406428, 52.38489684737244], [5.017911257833531, 52.38484286122302], [5.017892172362075, 52.38482356550792], [5.017754816352987, 52.384713110676046], [5.017644892614609, 52.38462982997074], [5.017643839105938, 52.384629167890864], [5.017485126867985, 52.384529370133876], [5.01748257128769, 52.3845277632585], [5.017344892502734, 52.38445624131519], [5.017251245131378, 52.38441939169073], [5.017162159780145, 52.38438433759129], [5.017136782557061, 52.3843743521461], [5.016932603427604, 52.384317855944936], [5.016809508656011, 52.38429152199924], [5.016755926446011, 52.38428005877893], [5.016609443004257, 52.38425822706946], [5.01659351295749, 52.38425585302533], [5.016581911998183, 52.38425412435541], [5.016570004746334, 52.384253191928046], [5.016477318449204, 52.38424593195216], [5.016424381704016, 52.38424178562869], [5.016163056597088, 52.384240976258035], [5.016112912941803, 52.38424410234264], [5.016032961700666, 52.3842490880102], [5.016008103688683, 52.384250637766876], [5.015988974631083, 52.38425334780087], [5.015902885037812, 52.38426554198916], [5.01569151829212, 52.38430668332824], [5.015334589957744, 52.38437615652208], [5.014945873168724, 52.384451815579126], [5.014941538930506, 52.38445265937613], [5.014901512704987, 52.38446044986683], [5.014797405878048, 52.3844780573837], [5.014629506837179, 52.38450645422723], [5.014586992953245, 52.38451364450212], [5.014490855302865, 52.384529904410115], [5.014488847499647, 52.38453024411551], [5.014432069261249, 52.38453854615407], [5.014334179394043, 52.38455285999224], [5.014199602976042, 52.38457253707604], [5.014117118999371, 52.384561420235194], [5.013946069545049, 52.38451658131584], [5.013805443775069, 52.38447650264226], [5.013702859636076, 52.384443536141006], [5.013554591644566, 52.38440576985068], [5.013274983988756, 52.384327692731844], [5.013215839203467, 52.384304506660655], [5.012973019864573, 52.38423941525971], [5.012865438957407, 52.38420691757243], [5.012840911053186, 52.38419701747287], [5.012802040593313, 52.384181327141015], [5.0127373192198, 52.38415065448421], [5.012652187188441, 52.38407930216752], [5.012624049426436, 52.384060316699916], [5.012621940476346, 52.38405889447915], [5.012619289401095, 52.384058009801315], [5.011979543887706, 52.383844546400596], [5.011904923445014, 52.383819647929975], [5.011589339286951, 52.383716126569304], [5.011511050976663, 52.383690445078294], [5.011266000892728, 52.383610060517825], [5.011128588039881, 52.38356498363372], [5.01098235984439, 52.383518166444745], [5.010900700878253, 52.38349202176299], [5.010762403645304, 52.38344774333773], [5.010716779222541, 52.38343313632748], [5.01069944028626, 52.383427584377436], [5.01056750656603, 52.3833853436741], [5.010471671718025, 52.38335465980063], [5.010357973753541, 52.38331825590996], [5.01027704059843, 52.383292343187954], [5.010192072017564, 52.383265138625454], [5.010167425335096, 52.38325724722319], [5.010127269758019, 52.38324400194275], [5.010040673762939, 52.38321543765405], [5.009825409451014, 52.38314443185632], [5.009754427197511, 52.38312101848339], [5.009534810830409, 52.38304857554269], [5.009382806780819, 52.382998434993986], [5.009333209015475, 52.382982074767085], [5.009301800715231, 52.38297190571584], [5.009207580314874, 52.38294139762756], [5.00915425384273, 52.3829241311558], [5.008976405010761, 52.38286654491799], [5.008949377876421, 52.38285779363139], [5.008931960819097, 52.38285215399133], [5.008919099538439, 52.38284913890726], [5.008903797629184, 52.382845552501934], [5.008880483456184, 52.382840086353625], [5.008699582089243, 52.38278779444593], [5.00869698437616, 52.382787042867115], [5.008694273267488, 52.38278684276634], [5.008663420685269, 52.382784561067204], [5.008617339243022, 52.382781153065295], [5.008534704450653, 52.38276588854094], [5.008510851775879, 52.382757445692356], [5.008491916377852, 52.38275074238967], [5.008477203546088, 52.38274164839536], [5.008460144263519, 52.38273110438107], [5.008455682211732, 52.38272834528992], [5.00845531694119, 52.38272812032988], [5.008463973874689, 52.382725882231654], [5.00847305622108, 52.382723534046555], [5.008474779953231, 52.38272308837948], [5.008519835447716, 52.382711438876434], [5.008553917714395, 52.38270461208918], [5.008565901307793, 52.3827022120564], [5.008614926118477, 52.38270423820202], [5.008674516434676, 52.38271255348568], [5.008786479352795, 52.382724738988124], [5.008813680683116, 52.382729930868734], [5.008921767541477, 52.38275056121928], [5.009022785629568, 52.3827799390291], [5.00907831720622, 52.38279608914738], [5.00909831632265, 52.38280190507771], [5.009146006709114, 52.38281868353204], [5.009222454618573, 52.38284557944727], [5.009321648868172, 52.382880477673346], [5.009523346042174, 52.38294952227424], [5.009580441256653, 52.382969067275454], [5.009705548348643, 52.38301188680384], [5.009715966868863, 52.383015453047136], [5.009832597994816, 52.38305377408015], [5.010524092945054, 52.38328097159534], [5.011282790185225, 52.38353024256111], [5.012085265076433, 52.383793887286664], [5.012233872534511, 52.38384270948675], [5.012256983884923, 52.38385038618425], [5.012711985754565, 52.384001517311], [5.012712359251109, 52.38400164162243], [5.012712835645016, 52.38400175637277], [5.012806840561369, 52.38402441297847], [5.012846979313014, 52.384034087406484], [5.012847596428956, 52.3840342358553], [5.012848453113838, 52.384034366187336], [5.012934273058613, 52.384047382757856], [5.012937468045432, 52.38404786650171], [5.012938736939874, 52.38404805925144], [5.012940022114845, 52.3840480633125], [5.012943025752417, 52.38404807280372], [5.012957717872985, 52.38404811922818], [5.012995841304188, 52.38404823968294], [5.013002713685742, 52.38404826139563], [5.013007872011021, 52.38404827769259], [5.013012583576099, 52.38404693005388], [5.013018908850023, 52.38404512105533], [5.013049862345656, 52.384036268064534], [5.013056303937579, 52.38403442527848], [5.013060553175875, 52.384033210093], [5.013063610518501, 52.384031032162724], [5.013068243078667, 52.38402773215995], [5.013083646538162, 52.38401675749296], [5.013103988414976, 52.38400226628536], [5.013106500486899, 52.38400047669467], [5.013107854052949, 52.38399951210388], [5.013108682928952, 52.38399841194016], [5.013110463998909, 52.38399604483248], [5.013112858539301, 52.38399286538348], [5.013119251948484, 52.383984370700034], [5.013119413863815, 52.383984155508415], [5.013132626957098, 52.38396660486138], [5.013134688767852, 52.38396386565348], [5.013135825142105, 52.3839623557263], [5.013136124871662, 52.38396077754705], [5.013136716683561, 52.383957657115], [5.013139564964443, 52.38394265048424], [5.013139586489925, 52.38394253640935], [5.013140972950506, 52.38393523384839], [5.013141183549138, 52.38393412274423], [5.013141550936398, 52.383932185273636], [5.013141604700886, 52.38393190592826], [5.01314159515865, 52.383931469998274], [5.013140750656287, 52.3838891481963], [5.013139864461684, 52.383844804046475], [5.013139863394733, 52.38384475640868], [5.013138306361922, 52.38376675687285], [5.013133927647347, 52.38354755191545], [5.01313386668234, 52.38354450581628], [5.013133828637208, 52.38354257335643], [5.013132817812179, 52.383540867008755], [5.013130948221058, 52.383537710940914], [5.013116986366039, 52.38351414532668], [5.013115517920845, 52.383511666395094], [5.013114741707124, 52.383510355345045], [5.013113369132049, 52.38350922216387], [5.013110987177111, 52.38350725623669], [5.013089710017724, 52.38348969821096], [5.013085067177192, 52.38348586650063], [5.013081791081289, 52.38348316256064], [5.013076794093061, 52.38348161438601], [5.01307038635102, 52.383479628551235], [5.013026935574578, 52.383466166234044], [5.013023106167552, 52.38346497945332], [5.013021097702846, 52.38346435745566], [5.013019034487703, 52.3834641316393], [5.013014419425606, 52.38346362363826], [5.012957557924094, 52.38345738002972], [5.012844213147046, 52.383451943820475], [5.012623017979285, 52.383446166462306], [5.012418562779133, 52.383423517961205], [5.012067600638969, 52.38336403852785], [5.012064029253664, 52.38336343403267], [5.012062319102792, 52.38336314370827], [5.012060525760752, 52.383363138028045], [5.01205701545158, 52.38336312690958], [5.012041208779086, 52.38336307684243], [5.012026018981093, 52.38336302872721], [5.012012543212708, 52.38336298603973], [5.012003569666851, 52.383369147392095], [5.011993569346052, 52.38337601371607], [5.011970822259765, 52.383391632252305], [5.011940275551813, 52.38340676950062], [5.011890442339817, 52.3834133792826], [5.011829649300062, 52.38340641894219], [5.011632858918003, 52.38333363612202], [5.011631161914199, 52.383333007898266], [5.011629303347953, 52.383332552623315], [5.011533642959442, 52.383309116887986], [5.011533191514264, 52.383309005807064], [5.011532415552168, 52.383308884709145], [5.011494270360827, 52.383302912767064], [5.011490769016055, 52.38330236420005], [5.011489010273238, 52.38330208899215], [5.011487373929721, 52.383302102675344], [5.01148324488739, 52.383302136312714], [5.011339653733884, 52.38330331377016], [5.011289949677577, 52.3832946896803], [5.011240360385665, 52.383272530566245], [5.011127614357247, 52.383202803413454], [5.011122854023051, 52.38319986012889], [5.011119306427784, 52.383197665769266], [5.011114544959413, 52.38319658831234], [5.011107981813162, 52.38319510338712], [5.011058585969571, 52.38318392859062], [5.010975846784797, 52.38315827574534], [5.010923510630689, 52.383132719435935], [5.010868528163734, 52.383093619326324], [5.010852219065405, 52.3830614007819], [5.010851002430772, 52.38301195866814], [5.010851001312909, 52.38301191732153], [5.010850820956154, 52.38300461250275], [5.010850539587038, 52.38299311463432], [5.010850520014098, 52.382992305685505], [5.010848103991483, 52.382893813371545], [5.010868381129707, 52.38278554991347], [5.010915206516952, 52.38264521306179], [5.010968733961452, 52.38253027854364], [5.011030587687077, 52.38241030142177], [5.011152408868399, 52.38223003422645], [5.011166418818696, 52.382209302004846], [5.011172844416646, 52.382202914225786], [5.011180290579842, 52.382195512286856], [5.011189570517223, 52.38218628628784], [5.011192058972559, 52.38218381450107], [5.011205464028327, 52.38217050054155], [5.011233329674162, 52.38216038714348], [5.011260947787189, 52.382150364626916], [5.011321867761177, 52.382140401961024], [5.011369734439749, 52.382138298868284], [5.011393789729619, 52.38213724185966], [5.011393838174134, 52.38213724470969], [5.011460131933358, 52.382140840685786], [5.011518118618764, 52.382151180656365], [5.011570496968149, 52.38217165883291], [5.011674237607797, 52.382217278271604], [5.01167518144069, 52.38221769289765], [5.011675984132829, 52.382217950691405], [5.011679120217914, 52.38221895556548], [5.011755172786806, 52.38224333655144], [5.011770417881759, 52.38224704374153], [5.011882120046563, 52.38227420697103], [5.011987034580686, 52.38229485143412], [5.012039485249439, 52.38230144374365], [5.012041756468609, 52.382301728655726], [5.012042274384625, 52.382301794108436], [5.01204280899634, 52.38230179580187], [5.012045060534023, 52.382301802933746], [5.012165634565122, 52.382302184797545], [5.012173254250629, 52.382302208925346], [5.012179158478771, 52.38230222762079], [5.012184249531337, 52.38230062237278], [5.012191633541217, 52.382298294589354], [5.012306721841218, 52.38226200738801], [5.012367698933718, 52.38224527668035], [5.012403638714768, 52.38224708009268], [5.012458892802131, 52.38225233294355], [5.01245900999533, 52.38225236926485], [5.012514061436301, 52.382269440181034], [5.012515833088522, 52.38227009559141], [5.012625715246593, 52.382310735601315], [5.012636616065291, 52.38231476687489], [5.012666814773588, 52.382325936033844], [5.012699971148006, 52.38233819844539], [5.012712006712892, 52.38234265032606], [5.012712545530371, 52.38234284975757], [5.012712894295254, 52.38234294433169], [5.012748957672287, 52.382352734436736], [5.012753976654634, 52.382354096651454], [5.012756697897287, 52.38235483505029], [5.01275984703953, 52.38235499330227], [5.012764681599251, 52.38235523597374], [5.012786587604941, 52.382356335209266], [5.012790755633734, 52.38235654431584], [5.012792637783274, 52.382356638344575], [5.012794559374573, 52.38235640984203], [5.012798243784106, 52.382355970310265], [5.012820131143354, 52.38235336298254], [5.012827945437236, 52.38235243139962], [5.012834157169841, 52.38235169157975], [5.012839042721111, 52.38234919947392], [5.012845373871337, 52.382345970457735], [5.012850067653901, 52.3823435766092], [5.012886259346706, 52.38232511626429], [5.012886921666794, 52.38232477862515], [5.012887310130865, 52.382324520110394], [5.012908919155195, 52.38231016415704], [5.012971682719373, 52.382268468455194], [5.012973136115341, 52.382267503282335], [5.012974298284129, 52.38226641316001], [5.013028890503668, 52.382215209659876], [5.013101226560545, 52.382162959399984], [5.013121884562486, 52.38214919628339], [5.013156852183877, 52.38212589934128], [5.013273113415122, 52.382037972888], [5.013276504333957, 52.38203540863801], [5.013278298829229, 52.38203405177893], [5.013279346127621, 52.382032299801416], [5.013281022130505, 52.38202949286362], [5.013298279529157, 52.38200061437031], [5.013301467623625, 52.38199527859317], [5.013303803571468, 52.38199136915877], [5.013302536140851, 52.38198717692236], [5.013300970033332, 52.38198200139514], [5.013295131490033, 52.38196269910549], [5.013293832605832, 52.38195840520941], [5.013292929527415, 52.381955420262976], [5.013290043833914, 52.381952935959575], [5.013285882248143, 52.38194935383351], [5.013272699056462, 52.38193800397695], [5.013230230282151, 52.38190144302466], [5.013229106045966, 52.38190047510215], [5.013228061343937, 52.38189982918794], [5.013148697684174, 52.38185076045647], [5.013148466827468, 52.38185061772284], [5.01314820789869, 52.381850494673316], [5.013028744719492, 52.38179379723436], [5.013009484770818, 52.38175781282913], [5.013168477100133, 52.38179765390409], [5.013320506605124, 52.38183033121395], [5.013321931633798, 52.381830637696844], [5.013323660168972, 52.38183083189371], [5.013394503573315, 52.38183880734006], [5.01339823209659, 52.38183922714628], [5.013400126436233, 52.38183944073932], [5.013401892660011, 52.38183934565232], [5.013406077535303, 52.38183911889046], [5.01347580231966, 52.38183535381236], [5.01348798515805, 52.38183469661206], [5.013498091733477, 52.381834150597314], [5.013505300380345, 52.381829782885546], [5.013510827545928, 52.38182643445778], [5.013513737283013, 52.38182467127802], [5.013537006298267, 52.38181057299943], [5.013546816958994, 52.38180331049014], [5.013551938077053, 52.381799518588], [5.013557724264814, 52.381795235362965], [5.013562042843509, 52.38179203860594], [5.013563146975706, 52.381787896994446], [5.01356457720526, 52.38178253049907], [5.01356484716661, 52.38178151844492], [5.01356973080746, 52.38176320178348], [5.013570373856717, 52.38176079153233], [5.013570611968083, 52.38175989891314], [5.01357046153385, 52.381758926875825], [5.013570103545697, 52.38175661502687], [5.013565700741778, 52.38172814360569], [5.013565430572256, 52.381726391064376], [5.013565374822858, 52.381726034978364], [5.01356517982762, 52.381725645198834], [5.013564399808957, 52.381724090574444], [5.013560160282241, 52.38171563871425], [5.013551767939381, 52.38169890333558], [5.013560320128772, 52.38163059377233], [5.01356057057359, 52.381628585827144], [5.013560664987231, 52.38162783925297], [5.013560468554563, 52.3816270971538], [5.013559923468485, 52.38162502738056], [5.013554199193302, 52.38160331138558], [5.013549947995682, 52.38158718135573], [5.013532678596911, 52.38154709776542], [5.013511974927785, 52.38149904568871], [5.013485788536626, 52.38145012428029], [5.013484948423034, 52.38144855598418], [5.013484747441387, 52.381448179667096], [5.013484416995811, 52.38144782900555], [5.013483127282341, 52.38144645522111], [5.01338746544399, 52.381344622762725], [5.013387593843991, 52.38132938913445], [5.013398824209753, 52.38130911253512], [5.013485481404659, 52.381189917929625], [5.013569484267313, 52.3810743728509], [5.013578325751459, 52.38106096783015], [5.013660158759033, 52.380936888375544], [5.013667524383769, 52.380925721107026], [5.013694292439947, 52.38090277202747], [5.013700958558796, 52.38089705714403], [5.013754158524281, 52.380871532863495], [5.013765051854513, 52.38086630675124], [5.01377454425896, 52.38086175209075], [5.013776028501761, 52.38085449925848], [5.01377779766012, 52.380845852444146], [5.013783198556126, 52.380819456622554], [5.013784495397975, 52.38066543068579], [5.013782753750004, 52.38065336738802], [5.013777837055884, 52.38061929235737], [5.013761297998035, 52.38050470093176], [5.013750523764414, 52.38043003635993], [5.01374851723472, 52.38029646483317], [5.013748358794083, 52.38028597846308], [5.013748053891203, 52.38026567623804], [5.013747959250606, 52.380259299214565], [5.013747879064953, 52.3802539962587], [5.013742796803911, 52.3802497084112], [5.013736584357956, 52.380244465209394], [5.013717677214029, 52.380228510958894], [5.013700301019621, 52.38020202533206], [5.013687631768144, 52.38018271409522], [5.013685132248832, 52.38016699762829], [5.01367712883275, 52.38011666681031], [5.01367778454077, 52.38003880901721], [5.013703347932785, 52.37995933111342], [5.013708204117972, 52.379924885147595], [5.013712173087907, 52.379896733119054], [5.013713340389653, 52.37988421073625], [5.013718167562297, 52.379832453598056], [5.013728642208454, 52.3797201214431], [5.013728898931221, 52.37971736574556], [5.013729440492189, 52.37965305194952], [5.013718951921667, 52.37958530604367], [5.013717748489802, 52.379581714385274], [5.013686588220121, 52.37948872173209], [5.013660033243682, 52.37939108530346], [5.013628999650461, 52.37927698017926], [5.013626241750599, 52.379266839719996], [5.013626230357445, 52.37926679744221], [5.013628640361797, 52.379251982637975], [5.013632684380539, 52.37922712481292], [5.013640513672457, 52.379179008144696], [5.013640820292894, 52.37917712889879], [5.013640053662114, 52.37917521031702], [5.013627271067051, 52.37914323872982], [5.013608327938198, 52.379104417105495], [5.013608242743842, 52.37910424427415], [5.013604985125515, 52.379086478926105], [5.013602963181671, 52.379075449214135], [5.013600530074954, 52.3790365160937], [5.013611745528006, 52.37901792909447], [5.013623046569428, 52.37901010325901], [5.013631215816517, 52.3790044461464], [5.01363033593036, 52.3789969683553], [5.013628888578785, 52.37898467589581], [5.013628625463248, 52.3789824362461], [5.013628587703471, 52.37898238579621], [5.013627079976793, 52.37898040016563], [5.013607564100185, 52.37895466093169], [5.013606788458557, 52.37895363838836], [5.013606750691205, 52.37895358883725], [5.013520327263048, 52.378875463489884], [5.013513955016875, 52.37885748788661], [5.013509516650624, 52.37884495410662], [5.013509687782135, 52.378824642591596], [5.013562997194052, 52.37879822177078], [5.013570773785285, 52.37879436724175], [5.013572796889656, 52.37878834561753], [5.013575755492191, 52.378779537182666], [5.013576452956348, 52.37877746144184], [5.013575951447293, 52.37877545292074], [5.013573826175638, 52.378766928634214], [5.013568544162111, 52.37874575417857], [5.01356842627372, 52.37874527836076], [5.013568148081229, 52.37874482900012], [5.013567151247, 52.378743216169816], [5.013554944319833, 52.37872347316654], [5.013554792207028, 52.37872322462793], [5.013554467367817, 52.378722908137036], [5.013535592932354, 52.37870455066053], [5.013510871386344, 52.37868416060223], [5.0134726893243, 52.378643614633354], [5.013472501549506, 52.37864341541402], [5.013472430815273, 52.37864326959115], [5.013454292158072, 52.378606097909646], [5.013453473575896, 52.37860442092988], [5.013451828963367, 52.37860299659206], [5.013448850291576, 52.37860041672805], [5.013424465479282, 52.378579291626444], [5.013420215447776, 52.37857561035883], [5.013398565831181, 52.3785568558349], [5.013368336852948, 52.37853474969954], [5.013307040873632, 52.37845372140352], [5.013305446094474, 52.37845161326191], [5.013305375005013, 52.37845150967962], [5.01327483571712, 52.378406996363836], [5.013274021804762, 52.37840581191992], [5.013272803333326, 52.378404883245], [5.013270052637598, 52.37840278852971], [5.013238313854031, 52.37837861942434], [5.013213862483228, 52.378364020888945], [5.013158514153684, 52.37833097561133], [5.013062105846407, 52.37828665862658], [5.013001846091732, 52.378253681343644], [5.012990833828089, 52.378247655389565], [5.012990547305921, 52.37824749809939], [5.01299016225243, 52.37824735667557], [5.01297196790732, 52.37824069866399], [5.012958728079486, 52.37823585293468], [5.012929904404983, 52.3782253047322], [5.012849934306844, 52.3781996619038], [5.012797660042868, 52.378167338891856], [5.012770364019045, 52.37812492981436], [5.012764456461995, 52.378113889597905], [5.012742023416999, 52.37807196234678], [5.012737703350699, 52.37806389037207], [5.012711128450839, 52.37797435329116], [5.012708593796702, 52.37796581061619], [5.012701545246133, 52.37794206366208], [5.012672330160002, 52.37784363034659], [5.012671874619076, 52.377842097412596], [5.012671830353352, 52.377841948077844], [5.012671702827081, 52.37784174545267], [5.012670889927695, 52.377840444168356], [5.012633633542846, 52.377780891094424], [5.012633239197537, 52.377780459339355], [5.012598011919822, 52.37774184397963], [5.012512849909835, 52.377677259037995], [5.012452441883442, 52.377622345771016], [5.012437515154041, 52.377608776635824], [5.01242869933292, 52.3776007614244], [5.012425026679987, 52.37759742257854], [5.012420905180059, 52.37759036951905], [5.012419886025231, 52.37758862538838], [5.012403224835417, 52.3775601177996], [5.012392452692469, 52.37752622727612], [5.012403868454041, 52.3774839496058], [5.012445640737232, 52.37744853569017], [5.012509472583471, 52.37742164892292], [5.012575979376244, 52.377404935601525], [5.01266518702705, 52.37739907111474], [5.012670933877152, 52.37739869293458], [5.012674194489264, 52.37739847855535], [5.01267722899704, 52.377397561526394], [5.012682115707594, 52.377396085931224], [5.012727855573653, 52.37738227007323], [5.012729592940003, 52.37738174529622], [5.012729642999737, 52.3773817301755], [5.012731007790224, 52.377380978630626], [5.012734216903405, 52.37737921012432], [5.012790573187428, 52.37734816795065], [5.012790756144844, 52.37734806696875], [5.012790877385192, 52.37734797028557], [5.012999544146107, 52.37718284203451], [5.013050748119904, 52.37713666355274], [5.01305813991467, 52.377129997406406], [5.013064494329718, 52.37712426808933], [5.013062793561225, 52.37711749592338], [5.013060716229168, 52.377109228822235], [5.013039454414828, 52.37702458347813], [5.013038705626998, 52.37702160171022], [5.01303599384381, 52.37701908379385], [5.013032381524527, 52.37701573077684], [5.012940434585374, 52.37693036324915], [5.012865033959703, 52.376836869198975], [5.012804912536422, 52.376745823102844], [5.012804857415082, 52.376745742039844], [5.012804755460075, 52.37674564195474], [5.01267357086672, 52.37661801520752], [5.0126726269876, 52.376617097280764], [5.012671156488643, 52.37661628284395], [5.012575292607456, 52.37656312332248], [5.012568137501238, 52.37655915601308], [5.012562676527737, 52.37655612787831], [5.012555520962202, 52.37655534488728], [5.012545832995823, 52.376554285153915], [5.012442248275342, 52.37654294844636], [5.012403766826565, 52.37651574690752], [5.012381936566587, 52.376480131701584], [5.012354871221074, 52.37641233315801], [5.012340330041154, 52.3763344272058], [5.012316305548556, 52.37623282497649], [5.012316297026135, 52.37623279079649], [5.012280949053955, 52.37616328532376], [5.01225248691085, 52.376119874785864], [5.012251318335135, 52.37611809153315], [5.012250922522335, 52.376117488108065], [5.012250381694094, 52.376117014544604], [5.012248402091536, 52.37611527725738], [5.012185770260122, 52.376060356790525], [5.012185047222467, 52.37605972266977], [5.012184111648524, 52.37605921460163], [5.012181917427219, 52.376058023980896], [5.012050178338749, 52.37598651359014], [5.011965139606911, 52.375951420657636], [5.011963396656444, 52.37595070151633], [5.011875177147328, 52.3759199538509], [5.011812295796426, 52.375904321864915], [5.011808448966355, 52.375903365968654], [5.011806183371289, 52.37590280245197], [5.011803746708534, 52.375902670698544], [5.011799504572481, 52.37590244064907], [5.011739865080643, 52.37589921285803], [5.011720653564335, 52.37588221923122], [5.011701659816745, 52.375839849686784], [5.011696059774527, 52.375813714743416], [5.01168569339119, 52.3757653139823], [5.011683434094873, 52.375706069273555], [5.011688737599662, 52.375672688913475], [5.011703715226817, 52.37562584338528], [5.011707036841091, 52.37561545881098], [5.011728599703805, 52.37558053829054], [5.011756687041465, 52.37553505370524], [5.011779309940666, 52.375498417199985], [5.011780372626816, 52.37549657091214], [5.011851901266714, 52.37537235835156], [5.011910115602197, 52.375271267402624], [5.012019334387399, 52.37508160482789], [5.012089468153544, 52.37495981346182], [5.012090717123869, 52.37495764240847], [5.012091283464602, 52.37495666005547], [5.012091418873129, 52.3749555819673], [5.012091675561918, 52.37495353359786], [5.012095750831067, 52.37492104089896], [5.012096070461002, 52.374918495712215], [5.012094754925096, 52.37491603522249], [5.012089754410985, 52.37490668661496], [5.012084541385805, 52.37489694097898], [5.012082915032758, 52.37489389980163], [5.012079243026836, 52.37489155587678], [5.012074904987371, 52.374888785625274], [5.012074341183704, 52.37488842613115], [5.012019962227994, 52.37485371704802], [5.011909402189302, 52.374783146271206], [5.011900863420911, 52.37477769696575], [5.011783875608339, 52.374703023511366], [5.011685475867627, 52.374640214152976], [5.011675771600634, 52.374634019654636], [5.011668903828897, 52.374629636172884], [5.011675118697221, 52.37462267607693], [5.011689794506409, 52.37460623927596], [5.011724825719415, 52.37456700784226], [5.011833736709114, 52.37453109246347], [5.011835477329456, 52.37453051827779], [5.011836889776087, 52.3745298531754], [5.011850254974216, 52.374523555654676], [5.011912088669474, 52.374494422249185], [5.0119197391766, 52.374490818182245], [5.011926106987196, 52.37448781761477], [5.011928671961939, 52.37448318811891], [5.011931890140197, 52.374477376121575], [5.011933882453337, 52.37447378198496], [5.011940968973934, 52.374460987162614], [5.011946416570737, 52.37445115306881], [5.01194647772012, 52.37445104181581], [5.011946427358251, 52.37445091942428], [5.011942243831794, 52.3744408265251], [5.011886193148153, 52.37430559696591], [5.011879968961747, 52.37429058405183], [5.011879957434649, 52.374290557951106], [5.011875463698367, 52.374283287983765], [5.011860280396298, 52.37425871617544], [5.011857015118157, 52.37425343457276], [5.011854723193026, 52.37425182750772], [5.01185116705353, 52.37424933474766], [5.011807585414743, 52.37421878331423], [5.011766747848326, 52.374184483728804], [5.011761494246536, 52.37418007121623], [5.011758728471051, 52.37417893000454], [5.011754475913681, 52.37417717471674], [5.011682208814935, 52.37414734746713], [5.01155020735845, 52.37407793066572], [5.011515428248403, 52.37404390096534], [5.011675842154517, 52.37394309743667], [5.01175726605462, 52.37389193190403], [5.011795377302655, 52.37386868754628], [5.011938245060179, 52.37378154947438], [5.011989333858254, 52.37375038941579], [5.012042769555816, 52.37371779784817], [5.012106902326126, 52.373678681855026], [5.012257041467201, 52.373587108557494], [5.012859950579295, 52.37321937208784], [5.012832717070336, 52.37320140237889], [5.01280847430913, 52.3731854068184], [5.012783750692487, 52.373200635509534], [5.012486441585446, 52.37338376119243], [5.012194209454352, 52.37356375742769], [5.012193723790053, 52.37356405787459], [5.012074921609806, 52.373637231094136], [5.011954612084021, 52.373709919477626], [5.011954272596769, 52.37371012511772], [5.011916269658551, 52.37371000468945], [5.011902424998152, 52.37370826214887], [5.011885728678961, 52.373706160050695], [5.011812462184814, 52.37369282383511], [5.011739322390173, 52.37366452354659], [5.011684488349706, 52.37363416916558], [5.011681500809136, 52.373632514952845], [5.011636658292327, 52.373593660261], [5.011635974600138, 52.373593067604396], [5.01163525313212, 52.37359260065504], [5.011574106356463, 52.37355305161284], [5.011570706389823, 52.37355085323529], [5.011569085275374, 52.37354980462746], [5.011567006057738, 52.373549096097015], [5.011562702667383, 52.37354762914409], [5.011514819238156, 52.37353130577397], [5.011508114503485, 52.37352902051524], [5.011500346595861, 52.373528123170615], [5.01133298384936, 52.373508788124404], [5.011324853598952, 52.373507848275025], [5.011236433879727, 52.373488873286995], [5.011236348863608, 52.373488855041806], [5.011236307793526, 52.37348884951883], [5.011166105547391, 52.37347926688306], [5.01107153993594, 52.373454637001494], [5.011013623841357, 52.373433862335695], [5.010935136895099, 52.37339967113346], [5.010932218103386, 52.3733983999938], [5.010931385630221, 52.373398036944096], [5.010930359871874, 52.37339778203071], [5.01092717709188, 52.37339699089119], [5.010809349838905, 52.37336770228571], [5.010708626622748, 52.373346800389385], [5.010647548240546, 52.37333911947766], [5.010568269499047, 52.37331452881291], [5.010539678983386, 52.373287167560974], [5.010536646301358, 52.37328426569019], [5.010534912929516, 52.373282606449784], [5.01053229484619, 52.3732813758023], [5.010528095687606, 52.37327940044237], [5.010483361700071, 52.3732583600671], [5.010458318197015, 52.3732497735884], [5.010435996672277, 52.373240559439324], [5.01033934867916, 52.37320066671282], [5.010328135764548, 52.37318802765105], [5.010321935071996, 52.37318104608592], [5.010321764901952, 52.37318085320867], [5.010293492530661, 52.373176912019666], [5.010213282378123, 52.373165732213586], [5.010211834737223, 52.37316552987676], [5.010138601421351, 52.373148453865106], [5.010103051641337, 52.373134298365265], [5.010098737263295, 52.37313257966973], [5.0100959405225, 52.37313146618176], [5.010092757901782, 52.37313100576561], [5.010087464776602, 52.37313024023845], [5.009937161527435, 52.37310850031555], [5.009903757792386, 52.373082194900974], [5.009889229933612, 52.37306568054691], [5.009885592511887, 52.373061546323456], [5.009880060459311, 52.3730583147141], [5.009835248810592, 52.373032138302776], [5.009832132098343, 52.37303031825852], [5.009830827264484, 52.373029555543006], [5.009829685952289, 52.37302907645936], [5.009760698254813, 52.373000095223155], [5.009745521794104, 52.37299371954615], [5.009737342779306, 52.3729936934756], [5.009727442794107, 52.372993661918734], [5.009675214572132, 52.37299349542405], [5.009629467820814, 52.37298024558238], [5.009579282310962, 52.37294056507512], [5.009576532793862, 52.37293839208172], [5.009574798491694, 52.37293702042879], [5.009568695067597, 52.37293450060187], [5.009560701062884, 52.372931200010356], [5.009560635214318, 52.372931172837454], [5.009549951667098, 52.37292676178259], [5.009547377721808, 52.37292569932289], [5.009544035281255, 52.3729248680911], [5.009533590330194, 52.37292227150295], [5.00953306280716, 52.372922140398416], [5.009522713104566, 52.37291956748092], [5.009516867859991, 52.37291811440972], [5.009514592915356, 52.372917980428205], [5.009510332163666, 52.37291772956491], [5.009487835145943, 52.37291640672921], [5.009483257365067, 52.372916137777246], [5.00947877687025, 52.37291651534724], [5.009443364932781, 52.37291950043015], [5.00944042152643, 52.372919748986064], [5.009439965472195, 52.37291984729414], [5.009437205629275, 52.37292043976371], [5.009402607433187, 52.37292788080966], [5.009399244411419, 52.372928604371204], [5.009397552602506, 52.37292896836598], [5.00939621153397, 52.37292953030921], [5.009392850021358, 52.37293093873412], [5.009380930722561, 52.37293593288959], [5.009379344205823, 52.37293583076116], [5.009303334511762, 52.372948260806915], [5.009199299401101, 52.37298155784596], [5.00919531816103, 52.37298072995786], [5.009158565341579, 52.37296873815324], [5.009137402241907, 52.372961832787624], [5.009112942172167, 52.37295134699801], [5.009097796185376, 52.37294485449548], [5.009091149372901, 52.37294165613902], [5.009082662810303, 52.37293757201707], [5.009042983767442, 52.372918480477374], [5.008994230897247, 52.37289960350983], [5.008911915451646, 52.37287314158785], [5.008860125694516, 52.372850507014014], [5.008691765623164, 52.37272131800006], [5.008599625578961, 52.372650615111596], [5.008530680489811, 52.37259770996653], [5.008512124285236, 52.37258528182513], [5.008510414527488, 52.37258413672365], [5.008508331732465, 52.37258317018215], [5.008492187175738, 52.37257567498133], [5.008483355789345, 52.37257157533279], [5.008472210946999, 52.372569963255955], [5.008439269220818, 52.37256519690134], [5.008401757290895, 52.372562203561664], [5.008398548016347, 52.3725619479329], [5.008394754913427, 52.37256213712259], [5.008361868599348, 52.37256378001595], [5.008359485787941, 52.37256389911878], [5.008357199186613, 52.3725642728798], [5.008303386784414, 52.37257307577657], [5.008209204393563, 52.372594409455395], [5.008133935216355, 52.37261145897437], [5.008101842188489, 52.372618727906826], [5.008017340634696, 52.372637868880375], [5.008011687996221, 52.37263863090792], [5.007927767199916, 52.37264994903032], [5.00792761871548, 52.37264996922636], [5.007926868951317, 52.3726500701829], [5.007912698380831, 52.37265198140714], [5.007910256497999, 52.37265231062272], [5.007908100269357, 52.372653064071436], [5.007903223711151, 52.3726547686877], [5.007898588699148, 52.3726563886948], [5.007872488589511, 52.37266551024109], [5.007811682545799, 52.372686761773124], [5.007785748821015, 52.37269582631244], [5.007754533500425, 52.37270673526447], [5.007742441415173, 52.37271406099667], [5.007696957342355, 52.3727416124761], [5.007649603003543, 52.37277029757737], [5.007640077806868, 52.372776067675524], [5.007627589281994, 52.37278492901314], [5.007615004729514, 52.372793857449054], [5.00760621858748, 52.37280009097984], [5.007559656546333, 52.37283312860671], [5.007510541478259, 52.37286797623065], [5.007297025060227, 52.37301946849776], [5.007237019459437, 52.37306204459961], [5.007187212457877, 52.37309738149307], [5.007187088349397, 52.37309747007252], [5.0071739111614, 52.37310681987779], [5.007070811587338, 52.373179969283875], [5.00693423584686, 52.3732768706155], [5.006819116464553, 52.37335854733041], [5.006689778354258, 52.37345228640474], [5.006668947966395, 52.37346738342914], [5.006625559776832, 52.3734988292873], [5.006624702733725, 52.373499451174446], [5.006611445987479, 52.373505551626465], [5.006559161996731, 52.373529612479935], [5.006538103322629, 52.37353930267734], [5.006467403363127, 52.37355958610035], [5.006205574330667, 52.37363470220516], [5.005916684306765, 52.37371757951741], [5.00567810086531, 52.37378602586823], [5.004551519892519, 52.37410921234903], [5.004294377528635, 52.37418297774783], [5.003979220409194, 52.37427338423126], [5.003540122068458, 52.374394105478814], [5.003465012181667, 52.37441475569758], [5.003399882355613, 52.374432661031456], [5.003375760779335, 52.37443929302881], [5.003077183771082, 52.37452137885874], [5.003068529391867, 52.374523984166814], [5.002955456995678, 52.37455802294375], [5.002683630833273, 52.37463985035208], [5.002471382169714, 52.3747037426238], [5.00246494801982, 52.37470567922986], [5.002327767960692, 52.37474697120562], [5.002152067926225, 52.374799863964306], [5.001996750797928, 52.37484661679579], [5.001938033237462, 52.374864292327715], [5.00187462469908, 52.374883379805276], [5.001873875274506, 52.37488360475425], [5.001759551014141, 52.374918018494554], [5.001696924479575, 52.37494781540675], [5.00169688457316, 52.3749478449361], [5.001451742756531, 52.375131122664776], [5.001368096940493, 52.37519365943967], [5.001333705257933, 52.37521937158897], [5.001314121393417, 52.37525664246105], [5.001306528219823, 52.37527109681728], [5.001266756438285, 52.37538601987467], [5.001247131070948, 52.37544272908182], [5.001240888605909, 52.375472911723385], [5.001219017011655, 52.37557865110238], [5.001209924606087, 52.37562261240096], [5.001167745862265, 52.37577223426735], [5.001142996156082, 52.375860024903176], [5.001136416609471, 52.375883365041986], [5.001136407485596, 52.37588340096281], [5.000996084531691, 52.376419523835516], [5.000995318601625, 52.37642231559653], [5.000983717541454, 52.37646458530388], [5.000965584156106, 52.37653065096414], [5.000901488875084, 52.376764179084674], [5.000901466072211, 52.37676426798799], [5.000866419559185, 52.3769022524125], [5.000829436888365, 52.37704786371235], [5.000824116915523, 52.377060597125976], [5.000814033383604, 52.37708473469769], [5.000795040037514, 52.37710768289252], [5.000771852289498, 52.377135700809134], [5.000704286031167, 52.37719566697315], [5.000701728544439, 52.377197936095406], [5.000672930551554, 52.377225464729854], [5.000584809587266, 52.3773097022743], [5.000583166459641, 52.37731203549496], [5.000525282225951, 52.37739422275679], [5.000452139649389, 52.377498072509525], [5.000424674910438, 52.377534850126644], [5.00037261761758, 52.37760456172034], [5.000296407406347, 52.37770661550919], [5.000214927591548, 52.377815727100646], [5.000168140383439, 52.377878379851865], [5.00011944357224, 52.37794358871944], [5.000039870888791, 52.37805014494247], [4.999996590130284, 52.37810809956257], [4.999991044419621, 52.378115526793444], [4.999904209129984, 52.378234490883784], [4.999900192882489, 52.378237805873184], [4.9998528188053, 52.37827691524606], [4.999818694201075, 52.378297063570805], [4.999775783022868, 52.378322398670356], [4.99975956509827, 52.37833197407486], [4.999632732542071, 52.378382662802046], [4.999433529627935, 52.37845727413459], [4.999103854298578, 52.378580752156985], [4.999035580039132, 52.37860632382916], [4.999027776591122, 52.37860924619852], [4.998980457303039, 52.37862652621679], [4.998912659979499, 52.37865128510124], [4.998760998267, 52.378706669316486], [4.998736369794957, 52.37871566335559], [4.998731118782354, 52.3787175811706], [4.998701121936695, 52.378734847793716], [4.998629284118856, 52.378776197030874], [4.998620590001168, 52.378781201583976], [4.998529120117412, 52.37878323820999], [4.998483269665778, 52.378776321827054], [4.998426377939492, 52.37876773882255], [4.998325596067996, 52.378746421790616], [4.998224983731467, 52.37870411009737], [4.998188738845148, 52.37867954735546], [4.99818521449949, 52.37867716034482], [4.998180431446115, 52.37867595556817], [4.998117262669006, 52.37866004034804], [4.998114875538073, 52.37865943932092], [4.998073469481305, 52.37863459804619], [4.998045698537955, 52.37858980495693], [4.99803548771251, 52.37857333749935], [4.998034800419997, 52.3785724975926], [4.998014976456595, 52.37854827366427], [4.998003307028635, 52.378534013269245], [4.998003291039798, 52.37853399434263], [4.997959783915857, 52.37848083055398], [4.99795969217582, 52.37848074127477], [4.997870043429833, 52.37839818269411], [4.997800024538728, 52.37834925563909], [4.997798591143339, 52.37834825419633], [4.997796881640881, 52.37834758798354], [4.997793102596406, 52.37834611416677], [4.997736816507864, 52.37832416459962], [4.997736223745507, 52.37832393346536], [4.997736182767344, 52.37832391715284], [4.997735473387425, 52.378323753941096], [4.997724656743819, 52.37832127283084], [4.997723586803655, 52.37832102754451], [4.99769740993749, 52.3783150239884], [4.997692473556997, 52.3783138923862], [4.997692212670801, 52.37831383220971], [4.997686509507418, 52.37831422418714], [4.997663380918733, 52.378315812625154], [4.997656888630415, 52.37831625862766], [4.997652756372383, 52.37831654252629], [4.997649004596968, 52.37831781721589], [4.997541101298638, 52.378354507500084], [4.997494735998482, 52.378352934888476], [4.997462315593007, 52.37834714800855], [4.997366582462094, 52.37830481478611], [4.997365293612674, 52.378304245220775], [4.997236936856162, 52.37826407028353], [4.997132804443452, 52.37823817547415], [4.997043137423272, 52.378222368326554], [4.997042506892091, 52.378222257498756], [4.996936095527312, 52.378212203818464], [4.996933596551284, 52.37821196729717], [4.996847812659955, 52.37820884447658], [4.996764299129723, 52.378211409269696], [4.996758393743067, 52.37821175110362], [4.99667195231879, 52.37821675621033], [4.996671493869871, 52.37821678345895], [4.996671014330672, 52.3782168708553], [4.996587867841462, 52.378232119198564], [4.99649509786671, 52.378231813175155], [4.996448770263901, 52.37822598013465], [4.996313516015753, 52.378178690183304], [4.996240779337698, 52.37815891633619], [4.996239484176245, 52.378158565137426], [4.996237946457466, 52.378158407271016], [4.99620951757151, 52.378155507472776], [4.996205712863302, 52.3781551201266], [4.996167645311613, 52.37815123670364], [4.995973442815343, 52.378151902111455], [4.995956598744441, 52.37815195970956], [4.995873300416213, 52.37813180382019], [4.995810956057549, 52.37810036573001], [4.995741863740428, 52.37804477347587], [4.995688655528417, 52.37800804573249], [4.99568473911042, 52.37800534188413], [4.995681942286228, 52.378003411978185], [4.995678243797179, 52.37800230685335], [4.995672538589536, 52.37800060370694], [4.995528129073015, 52.3779574708266], [4.99536856544417, 52.377905839243994], [4.995098060168956, 52.37783117603015], [4.995097885831052, 52.37783112781837], [4.995097621831371, 52.377831088297405], [4.995019461811421, 52.37781955358783], [4.995019139132943, 52.377819506682236], [4.995018952673136, 52.377819500672146], [4.994967616471534, 52.37781796363438], [4.994965813497998, 52.37781791002829], [4.994924240138417, 52.37779932069135], [4.994817149806301, 52.37773869027069], [4.994815783500839, 52.37773791729994], [4.994813955699526, 52.37773735041473], [4.994810716038978, 52.37773634564695], [4.994752099089244, 52.37771815634819], [4.994751088526886, 52.37771784292557], [4.994751019687541, 52.37771782202587], [4.994749847779922, 52.37771765187084], [4.994703113972601, 52.37771084163909], [4.994701224854698, 52.377710565748586], [4.994699188915026, 52.377710617420526], [4.994668849464547, 52.377711402145025], [4.994659448261298, 52.37771164510676], [4.994652514873359, 52.37771182434678], [4.994646607635116, 52.37771420626473], [4.994639338539722, 52.377717138205774], [4.994589669345688, 52.37773716789145], [4.994543091169032, 52.377759725244644], [4.994515249375024, 52.37776105297602], [4.994449712343665, 52.37774702253258], [4.994444520397191, 52.377745910618515], [4.994441181248868, 52.37774519581165], [4.994437734021137, 52.377745242798554], [4.99435940098094, 52.37774631494781], [4.994357681034419, 52.37774633890165], [4.994356146850655, 52.37774661332816], [4.994274353021812, 52.37776119855021], [4.994272053959386, 52.37776160884766], [4.994271734772202, 52.37776166530952], [4.994271552161112, 52.37776172222459], [4.994108947187943, 52.37781222883327], [4.993997881179089, 52.377858092568864], [4.993962847009042, 52.37787256588705], [4.99396231342063, 52.377872786110125], [4.993961961950128, 52.37787300514037], [4.993959921039619, 52.37787427910288], [4.993930072435556, 52.37789290035222], [4.993930005088767, 52.3778928767607], [4.993929943592325, 52.377892855884916], [4.993905904094079, 52.377883067596926], [4.993888619318754, 52.37787602858948], [4.993449024857116, 52.377697098647765], [4.993123556479363, 52.37755013307052], [4.992874408160867, 52.377382730278384], [4.99265280927882, 52.377213695807676], [4.992610453385828, 52.3771813869963], [4.992585089763081, 52.37716204015565], [4.992584814080001, 52.37716182892607], [4.992577651722885, 52.37716216726157], [4.992530991370411, 52.37716436922721], [4.992501432519594, 52.377165763561926], [4.992474878176189, 52.37716701691124], [4.992118421930078, 52.377183836804726], [4.991942346819118, 52.377192145234], [4.991799378677736, 52.377198890445264], [4.991767012132375, 52.377200417226994], [4.991759631655351, 52.37720067569335], [4.991743482440392, 52.377201242813534], [4.991725849485163, 52.377201862497564], [4.991421749662701, 52.37721254310018], [4.991380036097479, 52.377214007979696], [4.991360252681439, 52.37721648715613], [4.991313875741818, 52.37722229813032], [4.990987116271803, 52.37731787468568], [4.990975810905821, 52.37732118116457], [4.99092511637035, 52.37733600832962], [4.990921106920432, 52.377337181282556], [4.990892298666104, 52.37734560786584], [4.990862795407806, 52.37735423793327], [4.990812584108861, 52.37737217100108], [4.990811613203846, 52.3773725182696], [4.990811209420434, 52.377373166724986], [4.990804550764325, 52.37738385501728], [4.990782425161679, 52.377400593249895], [4.990748512196994, 52.377426250905856], [4.990714034074415, 52.37740357558254], [4.990711632364104, 52.37740199560195], [4.990708350415758, 52.3774027773244], [4.990628153161029, 52.37742187268034], [4.990625610020311, 52.37742247802035], [4.990611815538938, 52.37742576174886], [4.990611687493948, 52.37742579277684], [4.990605680058125, 52.377420308168524], [4.990570604118072, 52.37738829173603], [4.990567986419709, 52.37738590303947], [4.99056367739622, 52.37738707228074], [4.990220237332303, 52.377480230697195], [4.989828721931833, 52.377586428769426], [4.989740479556654, 52.37759890408952], [4.989663965530273, 52.37759726946042], [4.98966164559285, 52.3775972194307], [4.989504938389401, 52.37757072886152], [4.989490284900681, 52.37756825208729], [4.989354869155498, 52.37752527667349], [4.989312501769538, 52.37750315953279], [4.989136688670207, 52.37741138001429], [4.988717280385508, 52.37720626443219], [4.988593725945767, 52.37714279127238], [4.988472742432086, 52.37708742451052], [4.987933544535363, 52.37685991984125], [4.987928131370838, 52.37685763580386], [4.987858432505919, 52.376826680999415], [4.987824331205101, 52.37680069954118], [4.987790419278038, 52.37675532336161], [4.987732139555248, 52.376662647453664], [4.987696686522485, 52.37660627055469], [4.987610607530089, 52.37648634550853], [4.987566137322943, 52.37643931585644], [4.987513722844423, 52.376395485941366], [4.987448106433519, 52.37634999366081], [4.987223444963631, 52.376223138314025], [4.986829284809152, 52.376005176976115], [4.986506175722272, 52.37581492999475], [4.986076874552728, 52.37555867664136], [4.985939732706774, 52.37547167709577], [4.985753907331612, 52.3753537934573], [4.985609934783371, 52.3752624589887], [4.985609781472137, 52.375262361402115], [4.985540899661235, 52.375218663490024], [4.985317164715871, 52.37508154371037], [4.985246181771811, 52.37504856975319], [4.98509516884608, 52.37499896649771], [4.984987489304187, 52.374972174408974], [4.984917366015861, 52.37495472754982], [4.984779766298725, 52.37489971394785], [4.984655604235084, 52.37483655810995], [4.984531541489719, 52.374762500451354], [4.984435879841916, 52.374688460170155], [4.98443459659244, 52.374687465365895], [4.984426023521767, 52.37468082938089], [4.98438924493892, 52.37465236170763], [4.984298550608953, 52.374582159760855], [4.984283798983873, 52.37457074198193], [4.984223690171317, 52.374515968891664], [4.984133581828077, 52.374433861063075], [4.984032094834381, 52.37432715565191], [4.98394487425178, 52.37421613612469], [4.983944006140644, 52.37421503128167], [4.983889080954993, 52.37413872865792], [4.98386922091462, 52.374111139910575], [4.983821409439525, 52.37406534312283], [4.983820640774075, 52.37406460711157], [4.983819511508036, 52.37406396154604], [4.983764706274851, 52.37403263979984], [4.983763023334289, 52.37403167777952], [4.983760895370324, 52.37403104678628], [4.983729870696179, 52.37402185276401], [4.983567537670734, 52.37397374226099], [4.983545795679857, 52.37396886694323], [4.98344884195484, 52.37394712421651], [4.983345466568458, 52.37392394125714], [4.983345252602875, 52.37392389379157], [4.983344887290634, 52.37392385659508], [4.98306485442297, 52.37389565963426], [4.982994858144928, 52.37389113361617], [4.982994373833046, 52.37389110230374], [4.982985814719683, 52.37389054910719], [4.982842247113118, 52.373881265429475], [4.98282755208413, 52.37388094202465], [4.982740916162276, 52.37387903555833], [4.982695267464555, 52.37387803119898], [4.982662686985515, 52.37387909279098], [4.982543763804262, 52.37388296908331], [4.982537802775505, 52.3738835050491], [4.982347811140548, 52.37390058020525], [4.982245602639849, 52.37386353770833], [4.982078883364816, 52.37380311503982], [4.982004188691794, 52.37377024326051], [4.981957140981454, 52.373736252715766], [4.981802472922347, 52.3735090356718], [4.981801357181268, 52.373507396996814], [4.98179948223174, 52.37350608107591], [4.981774810254702, 52.37348876366977], [4.981771956258108, 52.373486759536796], [4.981768119363485, 52.37348561305627], [4.981719295661642, 52.3734710206903], [4.981718810921956, 52.37347087612666], [4.981718379831859, 52.37347080634431], [4.981665137283857, 52.373462187302316], [4.981657270626691, 52.37346091377299], [4.981649693344827, 52.37346252177914], [4.981601491511164, 52.37347275181502], [4.98159850620981, 52.37347338510612], [4.981596181614191, 52.3734745113865], [4.981530088565125, 52.373506517426726], [4.981529196186061, 52.37350695027108], [4.981506080460929, 52.37351954367873], [4.981460275489871, 52.373544497363916], [4.981459847502785, 52.37354473047537], [4.981459584159421, 52.373544944378104], [4.981414829402036, 52.37358126114699], [4.981341830378949, 52.37364049489898], [4.981306901961971, 52.37366883819933], [4.981262411686528, 52.37369307550382], [4.981168203591984, 52.373744398302954], [4.981071325071283, 52.37377364446851], [4.981071072444308, 52.37377364989347], [4.981048306516805, 52.373774152414505], [4.980988501157482, 52.37377547248126], [4.980798806876715, 52.37373715522653], [4.980510082083196, 52.37367883259707], [4.980509799188384, 52.373678775902015], [4.980509546809081, 52.37367875436364], [4.980378795205143, 52.373667765407234], [4.9802683063754, 52.37366533568369], [4.980264953066519, 52.3736652621453], [4.980261669412485, 52.37366591954291], [4.980239116347792, 52.37367043562991], [4.980234558655729, 52.37367134839169], [4.980186179149942, 52.37368103618441], [4.980183813513319, 52.3736815088931], [4.980181993667776, 52.37368187382836], [4.980181220371017, 52.37368228999531], [4.980178693878811, 52.37368364923311], [4.980147435889681, 52.373700467349884], [4.98012348287675, 52.37371335510161], [4.980119716743297, 52.37371538145482], [4.980119583925274, 52.37371545289951], [4.980119508045874, 52.37371556049059], [4.980117527691088, 52.37371837401037], [4.980057569603082, 52.373803534466454], [4.979858809020032, 52.374102858992785], [4.979639829938334, 52.37440160129232], [4.979583616174288, 52.37447828824044], [4.979579266814873, 52.37448400559777], [4.979462208289617, 52.374637880252486], [4.979460345753705, 52.37464032836891], [4.979437497309288, 52.37467036374298], [4.979436122348033, 52.37467216912282], [4.979426818545177, 52.37468440074548], [4.97928149205814, 52.37487543710965], [4.979280069434864, 52.37487715424438], [4.979050068550886, 52.37515484790816], [4.978984163365156, 52.375234422149944], [4.978695969613007, 52.37556889264967], [4.978616397347106, 52.37565129738367], [4.978600336954949, 52.37566793025108], [4.978500648567629, 52.37576560562841], [4.978359884640761, 52.375883990480325], [4.978256985095866, 52.37595871806433], [4.978097539591093, 52.376070773691204], [4.977926692967014, 52.37618791536035], [4.977607273663409, 52.376406924981914], [4.977456380742844, 52.37651484803927], [4.977278000024064, 52.376647706378215], [4.976980119875358, 52.37688384113865], [4.976797200064452, 52.37703555710296], [4.976741500361324, 52.37708690466628], [4.976577551046792, 52.3772380434228], [4.976467553214055, 52.37733944625709], [4.976319963889481, 52.37748469426347], [4.976225880952845, 52.37757728396928], [4.976056182167544, 52.37773119271101], [4.975993152283143, 52.37778714490951], [4.975860872663304, 52.37790457118608], [4.975811738158448, 52.37794818746246], [4.97574946433853, 52.37800346898142], [4.975692317585203, 52.37805222976496], [4.975691347968633, 52.3780530568549], [4.97563004725648, 52.378105362284636], [4.975629985076174, 52.37810541599447], [4.975476560956271, 52.37823632442977], [4.975420014625008, 52.37828457217594], [4.975316919747613, 52.378371131456575], [4.975187358962984, 52.378479912219575], [4.975040575619821, 52.378603153353694], [4.974966770677463, 52.3786651197863], [4.974866866795424, 52.378748998876915], [4.97486555534701, 52.37875009979202], [4.974690658751777, 52.378894045423436], [4.974615043919307, 52.37895627855575], [4.97454922633531, 52.379010448801615], [4.974549189352785, 52.37901047743321], [4.974412606575016, 52.37911684305829], [4.974374333684167, 52.37914664931636], [4.974345281700766, 52.37916927421808], [4.97429072964755, 52.379211756503345], [4.974265630488867, 52.37923130251611], [4.974092945954468, 52.37935746211714], [4.974092478951922, 52.37935777415718], [4.974013596098495, 52.37941040028569], [4.973979579034044, 52.37943309495442], [4.973966005004401, 52.37944215118343], [4.973965939975095, 52.379442194996], [4.973965968783113, 52.3794420980299], [4.973996546616381, 52.379341019933655], [4.974029386750058, 52.37923245581578], [4.974053586279604, 52.379145530774274], [4.974072768408323, 52.37907662284823], [4.974072905153368, 52.379076132599444], [4.974106564518449, 52.37893759748933], [4.974117922987626, 52.37876036463244], [4.974129583503223, 52.37847910072619], [4.97413290405785, 52.37839899635872], [4.974133210645964, 52.37839162305774], [4.974137739541928, 52.3782823804338], [4.974138185647039, 52.378271695668566], [4.974142863291377, 52.37815877850867], [4.974142963858694, 52.378156337812406], [4.974111926768744, 52.378070011878414], [4.974111568901511, 52.37806901479797], [4.974110147835783, 52.37806848226564], [4.974107386199417, 52.37806744714089], [4.974104263082626, 52.37806627594039], [4.974101387819141, 52.37806766438972], [4.974098850389328, 52.37806888954336], [4.974097547734079, 52.378069519527685], [4.974101964752507, 52.37804230324], [4.97419791849435, 52.37746723922838], [4.974271795391506, 52.37688604041856], [4.974297683193832, 52.37667010335707], [4.974314195937678, 52.37653236216678], [4.974317886189505, 52.37650162556006], [4.974319226645105, 52.376490461271416], [4.974319577434077, 52.376452777245674], [4.974289167599975, 52.37641290083036], [4.974257762202414, 52.3763960473147], [4.97424588509134, 52.376389673193884], [4.974238143338289, 52.37638551906422], [4.974169927228484, 52.37636644122939], [4.974046856110361, 52.376363917790485], [4.973981694166641, 52.376384622686906], [4.973933665562845, 52.37641197888945], [4.973923258445262, 52.37641790677995], [4.973881818573087, 52.37646172078664], [4.973881067720237, 52.37646460230539], [4.973873006123839, 52.37649556091628], [4.9738675779116, 52.37651640591893], [4.973867566961957, 52.37651647778198], [4.973867319542704, 52.37651812884988], [4.973865724112075, 52.376528748490394], [4.973865656727996, 52.37652920303068], [4.973865650485372, 52.376529242554575], [4.973811727697103, 52.37688834492874], [4.973728957510242, 52.37743985314985], [4.973688904281504, 52.37772703967239], [4.973665975672781, 52.377891405843506], [4.973638794548827, 52.37808624507818], [4.973638343662524, 52.378086719849314], [4.973621781140934, 52.378104144794875], [4.973619513381472, 52.378106530287575], [4.973551050197395, 52.37817856539652], [4.973549142830377, 52.378180572867606], [4.973537479155432, 52.378192844314775], [4.973537459820917, 52.378192870311395], [4.9734883116485, 52.3782600287415], [4.973403248000304, 52.378555131484205], [4.973377943955956, 52.37864290996809], [4.973377930344546, 52.37864295216251], [4.973376394822458, 52.37864760240164], [4.97333253971321, 52.37878045654056], [4.973308372986184, 52.378853664601394], [4.973302306380678, 52.37887203932853], [4.973302244398622, 52.378872228751426], [4.97321299445452, 52.379142595256], [4.973000070069697, 52.37978759112504], [4.972991631725632, 52.37981315395141], [4.972939751701063, 52.37982485416143], [4.972889586128501, 52.37982517748513], [4.972839420555267, 52.37982550078747], [4.972732717155189, 52.37981652621448], [4.972716545081767, 52.379815166405166], [4.972432115942648, 52.379776530297775], [4.971672622009937, 52.37966988072745], [4.969807925420563, 52.37939692024622], [4.969805650023744, 52.379396655179654], [4.96968508916201, 52.37938261929428], [4.969650059876212, 52.37937110663572], [4.969630242891059, 52.37936459441165], [4.969485701845449, 52.379290999757124], [4.969485305740485, 52.37929079793525], [4.969484854797582, 52.37929064894711], [4.969448393059438, 52.379278580232565], [4.969438119530226, 52.37927517991241], [4.96943691751184, 52.37927478201287], [4.969435657798587, 52.37927458433445], [4.969387608215693, 52.37926705573034], [4.969385223707098, 52.37926668152001], [4.969382767434631, 52.37926675374294], [4.969113300561407, 52.37927463759412], [4.968979069865593, 52.37928475648315], [4.968805446684074, 52.37929784578251], [4.968711734076163, 52.37930490970355], [4.968604326766519, 52.37932093976318], [4.968601826527104, 52.379321312900984], [4.968595633293087, 52.37932223651096], [4.968595075884603, 52.37932231992338], [4.968594677069976, 52.37932256118038], [4.968590047865599, 52.37932536154834], [4.968542993609528, 52.37935382628665], [4.96843577624193, 52.37944289055199], [4.968435407655189, 52.37944319662646], [4.968405788924239, 52.379467795357165], [4.968393233273927, 52.37947822157368], [4.9683907182908, 52.37948031039826], [4.96837240284037, 52.37949552553726], [4.96832199494243, 52.37953740138986], [4.968290355447831, 52.37956368442064], [4.968287060347981, 52.37956642118972], [4.968285609677465, 52.379567625796554], [4.968264241857991, 52.37958537183028], [4.96825509522018, 52.37959296729622], [4.968072557466053, 52.37975740216057], [4.968046603904503, 52.37978078156488], [4.967972007814779, 52.37984797885553], [4.967932015585301, 52.37988544162395], [4.967644884244626, 52.38015440938685], [4.967393446796583, 52.38038993679046], [4.967352199960661, 52.38042857319542], [4.967351630930047, 52.38042910684224], [4.967332872441057, 52.380446981493094], [4.967187173110427, 52.38058581842117], [4.967145356341256, 52.38062566516651], [4.967098953939525, 52.38066988160535], [4.967096907187503, 52.38067183185584], [4.967024528567896, 52.380738747008145], [4.967024478199331, 52.38073879266647], [4.966962400054418, 52.38079618415841], [4.966332773574737, 52.381379882154285], [4.966332659480223, 52.38137998780309], [4.966207647055739, 52.3814965267616], [4.966123942032455, 52.381574556569376], [4.966067096511528, 52.38162247163634], [4.966060380577273, 52.381628132444554], [4.965954296430239, 52.38171754899542], [4.965865702075756, 52.381789293239535], [4.96577164872398, 52.381865456094125], [4.965729259357283, 52.38188724680075], [4.965666546051399, 52.38191948430199], [4.965597476227471, 52.38195601591074], [4.965500711858039, 52.382007194909875], [4.965326052440013, 52.382099570795454], [4.965211045750364, 52.382153661283894], [4.965209012719994, 52.38215461661735], [4.965207534614791, 52.38215590826871], [4.964886493780228, 52.382436416232636], [4.964732578384294, 52.38256787790968], [4.964471615224444, 52.382782848073994], [4.964214074933454, 52.38297900974411], [4.963989257162876, 52.38313666785344], [4.963751460438688, 52.38329823369622], [4.963563624773419, 52.38341672201907], [4.963563389826609, 52.38341686947489], [4.963546776046546, 52.383427350762204], [4.963442343933319, 52.383493226913544], [4.963439293959712, 52.3834951501429], [4.963295604709127, 52.3835857895736], [4.963257235297282, 52.38356059016978], [4.963189474791305, 52.3835160879104], [4.963179341289215, 52.3835076679499], [4.963134772309853, 52.38347063294158], [4.963065381231266, 52.383412973141986], [4.963044715061726, 52.38339580012437], [4.962987184429913, 52.38334799547121], [4.962345196153229, 52.38280775628067], [4.961683737608863, 52.382251127369315], [4.96165161681449, 52.38222409752859], [4.961641311007519, 52.38221517440378], [4.961337748226861, 52.38195233666498], [4.96116496730087, 52.381802734076565], [4.961163016888642, 52.38180104457126], [4.961395376152406, 52.381700069878185], [4.961440947314438, 52.38168026584534], [4.961477391820877, 52.38166442849371], [4.961503540115495, 52.38165306502516], [4.961498704678439, 52.381648512473404], [4.96148601203012, 52.381636561800725], [4.961471958403699, 52.381623331784766], [4.961452856862887, 52.38160534712604], [4.961454708325786, 52.381595466462926], [4.961455821297302, 52.38158953411796], [4.96147544705413, 52.381484828386306], [4.961482321849457, 52.38144814302246], [4.96148665778122, 52.381425014498255], [4.961407708440658, 52.381460895200696], [4.960049896705167, 52.38207797112115], [4.960034592768642, 52.38207502908746], [4.959872323599315, 52.38214943847376], [4.959835261331635, 52.382114971896236], [4.960662458833141, 52.381736108127065], [4.960688020250984, 52.381724401193594], [4.960694813702596, 52.381721290765356], [4.960670637495568, 52.38170136794118], [4.960665203648919, 52.38169688959509], [4.96062150556424, 52.38166087865008], [4.960619754028682, 52.381659435215056], [4.960617388001873, 52.381658355364074], [4.960510646393712, 52.38160963791782], [4.960487179211383, 52.38159892726039], [4.96046357466295, 52.381609514149964], [4.959660588628085, 52.381969640200616], [4.95957548599522, 52.38199741936505], [4.959569253808554, 52.38199227120206], [4.959558568598315, 52.38198344538855], [4.95961405455438, 52.38193504049323], [4.959745072188378, 52.38187503282871], [4.96002944309893, 52.381744787891996], [4.961061989911761, 52.381271854657214], [4.961146853082793, 52.381232984594995], [4.961218828669105, 52.38120001704585], [4.961172443932034, 52.38119309686831], [4.961131362499667, 52.381186967792], [4.960986638202696, 52.38116537636885], [4.960946561451527, 52.38115939734279], [4.960939464795787, 52.38118046403063], [4.960939336278914, 52.381180846442156], [4.960431329661761, 52.381378488908695], [4.960368210901837, 52.38140781374793], [4.960296266651219, 52.38144123926428], [4.960269354594685, 52.38141902183208], [4.959667933682447, 52.3816495713721], [4.95944332142825, 52.381737738092234], [4.959284546610319, 52.381766333939204], [4.958028001859518, 52.381992630492235], [4.954834229837627, 52.382126344024805], [4.952412458317404, 52.38212093800688], [4.952379575819202, 52.38629832411822], [4.953309883075088, 52.38658498171861], [4.960116449229568, 52.38825679736449], [4.966710735362138, 52.389960091538015], [4.968635126132953, 52.390404875090816], [4.968141506844578, 52.391083808220934], [4.969587549915666, 52.391451746116694], [4.969953513536121, 52.39137147305982], [4.970820137958925, 52.391579665358044], [4.967076237152878, 52.39623727135059], [4.964021380406762, 52.399321330656804], [4.958815895367477, 52.40245044517514], [4.95948639591788, 52.40323438602324], [4.95935880781117, 52.403809312455934], [4.95866307826688, 52.40555026009602], [4.958391418260569, 52.40581027740017], [4.956939850867117, 52.406388805000354], [4.951588421419522, 52.407618887317575], [4.950661651741976, 52.40774993086265], [4.95000142609141, 52.407817689624125], [4.94968656493292, 52.407944061540256], [4.946571281544648, 52.409829217163335], [4.944471440164343, 52.41102554928325], [4.944270347431599, 52.411249712615636], [4.944156012717532, 52.41168972289151], [4.942646937165156, 52.413859797483745], [4.942657057334578, 52.413862524544314], [4.942796259846359, 52.41390528846371], [4.942929619666411, 52.41394443526962], [4.94307763221312, 52.413988130649415], [4.943136260221601, 52.41400452807422], [4.943269548598887, 52.41405086431056], [4.943569876653879, 52.41414905526403], [4.943875959188834, 52.41425984962568], [4.943975543428136, 52.41429617258937], [4.944009186177126, 52.41431247611571], [4.944069149887929, 52.414342359476294], [4.944120277102799, 52.414374007283776], [4.944436647719841, 52.41463223533558], [4.94455452322237, 52.4147504133339], [4.944779673478038, 52.41501818598953], [4.944975134462785, 52.41531550647706], [4.945097511254107, 52.415572109754876], [4.945567504033407, 52.416788087012975], [4.945704121108475, 52.41709147814363], [4.945773214531717, 52.41723823338654], [4.945806260208369, 52.41731475105817], [4.945961720355683, 52.41764517482614], [4.945999077833966, 52.417731594846785], [4.946052416205591, 52.41783694830046], [4.946069634161516, 52.41787925409835], [4.9461459720832, 52.41803682117648], [4.946148813432683, 52.41804671810675], [4.946243741674294, 52.41825648235655], [4.946250939072729, 52.41827178805044], [4.946409238379122, 52.418613006825005], [4.946422136673916, 52.418646308900904], [4.94648259423373, 52.41877505635945], [4.946518519522364, 52.41885787582679], [4.946593372919109, 52.4190172345735], [4.946604819424839, 52.41904873370925], [4.946764585217031, 52.4193908561509], [4.946774606683844, 52.419417856174604], [4.946833614245748, 52.419544800520185], [4.946996144859868, 52.41990490806145], [4.947168833931147, 52.42027853445313], [4.947216396466523, 52.420373979514544], [4.947227861616895, 52.42040368113029], [4.94728829712828, 52.42053512431295], [4.947309811200437, 52.42058912971575], [4.947383200375647, 52.420748482455195], [4.947446362644854, 52.42090150587915], [4.947457801318539, 52.42093390364703], [4.947698339721485, 52.42143360715425], [4.947788204895459, 52.42156246291424], [4.948309566601172, 52.42146553152327], [4.948313985514667, 52.42146464913042], [4.948512818640194, 52.42142673873275], [4.948526066455975, 52.42142499025671], [4.948577124928382, 52.421464724638106], [4.948616610333789, 52.421485542232], [4.948621002547095, 52.42148735600509], [4.948635578005559, 52.42149999256991], [4.948844925854824, 52.421587946747444], [4.948906417147028, 52.42161333943684], [4.948910800492028, 52.42161605192495], [4.948921054977073, 52.421619684885805], [4.949210979076607, 52.421735797908795], [4.949272488555511, 52.4217593929562], [4.949288596499324, 52.4217657437921], [4.949350106061317, 52.42178933879917], [4.94946286191966, 52.42183379453009], [4.949525832804794, 52.42185829360162], [4.949651774784234, 52.42190729164414], [4.949682538629566, 52.4219181903314], [4.949708927941628, 52.42192547782658], [4.949720696964962, 52.42192462251606], [4.949731013722235, 52.42192196432602], [4.949770926102242, 52.42189964269494], [4.949791657223494, 52.421884440321044], [4.949805064872394, 52.421866514637244], [4.94980806702828, 52.42186023440795], [4.949827168364673, 52.42186120366699], [4.949852149766997, 52.42186219462396], [4.949855089799544, 52.42186220547432], [4.950191599401149, 52.42187602952171], [4.950467865090616, 52.42188693433084], [4.950726490706847, 52.42189777352484], [4.950995397726721, 52.421909548757874], [4.951083563414014, 52.42191346829], [4.951130586300073, 52.42191543885017], [4.951289295205378, 52.42192141530855], [4.951424483855039, 52.42192730506559], [4.951481796902701, 52.4219293133258], [4.951516909392156, 52.42194651883393], [4.951517999289772, 52.42198516945572], [4.951519380910216, 52.421994162120036], [4.951610333532348, 52.42231265696053], [4.951640126, 52.4224224149901], [4.951643555130091, 52.422522189773936], [4.951643493266609, 52.42252848085516], [4.951643431403105, 52.42253477193639], [4.951632018720067, 52.42264887230115], [4.951612050848857, 52.42273597846659], [4.951589125123984, 52.42282487127132], [4.951541031635242, 52.42293164671579], [4.951496187451779, 52.42300697754546], [4.951519619921797, 52.42301605127847], [4.95151814102661, 52.42301694459972], [4.951418542058244, 52.423128923172925], [4.951418533215882, 52.42312982189865], [4.951332314652348, 52.42322657071032], [4.951339647273431, 52.42322839519598], [4.95141293814752, 52.42325023493046], [4.951440727866094, 52.42326471725066], [4.951543358247926, 52.423292956091714], [4.951591870361791, 52.42329313442265], [4.951744350579994, 52.423335037689846], [4.951901232455342, 52.42337785568601], [4.951912957661195, 52.42338149378708], [4.952058026340016, 52.423429660732005], [4.952066820264214, 52.423432389296245], [4.952107832106035, 52.42344781876482], [4.952203077681838, 52.42347962495062], [4.952329080182819, 52.42352322778381], [4.95246533816039, 52.4235704631362], [4.952521024548236, 52.42358864256635], [4.952625029449051, 52.423626771845534], [4.952770055632592, 52.42367943154661], [4.952825030205738, 52.42362031502717], [4.952781086619289, 52.42360397630341], [4.952681474223363, 52.4235676607831], [4.952589221170414, 52.42353047340978], [4.952557020693985, 52.42351597518418], [4.952507267588822, 52.42349242498544], [4.952494098695818, 52.423486085373355], [4.952543554725338, 52.423390099654185], [4.952581020736804, 52.42331743765333], [4.952591496382718, 52.42329860215016], [4.952609560430674, 52.42325552800366], [4.952630432299648, 52.423225945523384], [4.95263935848296, 52.423215193157425], [4.952675054355821, 52.42317308241264], [4.952707757145816, 52.42313635323228], [4.952716753820338, 52.42311841105327], [4.952739174950247, 52.423080745409464], [4.952764518523769, 52.42304488799117], [4.952776446452646, 52.42302785531133], [4.952791323296546, 52.42300993468184], [4.952803224762995, 52.422995598176875], [4.952819633336139, 52.422971391850886], [4.952837414995473, 52.42295707689587], [4.952844862208037, 52.42294721785145], [4.95284645564744, 52.422934641076594], [4.952925073361627, 52.422863028544114], [4.952953215779012, 52.422841561472936], [4.953063065304934, 52.42273321419988], [4.953095776255624, 52.42269558618227], [4.953140397220371, 52.422642722889194], [4.953195281946709, 52.4225925934433], [4.953233908061665, 52.422551392016956], [4.953324372801368, 52.42247083501722], [4.953368852424664, 52.422432351252155], [4.953459395881995, 52.42234370561193], [4.953505327692048, 52.42230702462696], [4.953558741558492, 52.422256889628365], [4.953578080704044, 52.42223359267736], [4.953601785925462, 52.42221480548987], [4.95362982203544, 52.422204122967976], [4.953647506358617, 52.42219969387598], [4.953659284176603, 52.42219793944806], [4.95369018115336, 52.42219535620309], [4.953713692805007, 52.42219634096831], [4.953809253418441, 52.42219579172798], [4.953853327879948, 52.42219864918164], [4.953989961384068, 52.42220723756589], [4.954016404316366, 52.42220913174492], [4.954101578090879, 52.42221843064156], [4.954182262739725, 52.4222358018983], [4.954223362065739, 52.422242243376054], [4.954252692380727, 52.42224954060148], [4.954274698907488, 52.42225411478956], [4.954299601580844, 52.42226319334466], [4.954324530613839, 52.42226957571589], [4.954340657035314, 52.422274128412724], [4.954364107267199, 52.42228140413233], [4.95439342006788, 52.42229049877523], [4.95443007425722, 52.422300518979455], [4.954444739449902, 52.42230416756746], [4.954475495973952, 52.42231596373692], [4.954518012774158, 52.42232780283752], [4.954547334415904, 52.42233599871617], [4.954578152435655, 52.4223415037755], [4.954598706564001, 52.4223442750844], [4.954630977075214, 52.42235158294876], [4.954655923758811, 52.42235616779783], [4.954689664321887, 52.42236348101179], [4.954719003569489, 52.4223698793955], [4.954764521975224, 52.422375438053756], [4.95481150165339, 52.42238190078445], [4.954870250393776, 52.422387507674465], [4.954949553323556, 52.422395885783445], [4.955036206459031, 52.422404290644025], [4.955128739769122, 52.42241271688039], [4.955165464355648, 52.422415547047066], [4.955199257641115, 52.42241746775844], [4.955224257010666, 52.42241666013035], [4.955261042955957, 52.42241319918365], [4.955271333203951, 52.42241323668994], [4.955297793841778, 52.422413333130535], [4.955309536598849, 52.42241517344367], [4.955369904436482, 52.422405507096954], [4.955406690361253, 52.422402046105034], [4.95541698936783, 52.42240118487233], [4.955443449998867, 52.42240128128043], [4.955466944279904, 52.422404063150374], [4.95547721700641, 52.42240589809135], [4.955480157076839, 52.42240590880214], [4.955552118736891, 52.422413361004416], [4.95559470597892, 52.42241800990847], [4.955641703337295, 52.42242267485748], [4.955776859095632, 52.422432154554386], [4.955878212825199, 52.42244061231535], [4.955878239080192, 52.42243791613646], [4.955882946742472, 52.4224073754929], [4.955882955494032, 52.42240647676658], [4.955917553990325, 52.42217472307342], [4.955920739066057, 52.422149569434886], [4.955925499171578, 52.42211363642946], [4.95593174679462, 52.4220759113206], [4.955939595684758, 52.42202471066477], [4.95594281573789, 52.42199596211918], [4.955949098329748, 52.42195464210277], [4.956003322850528, 52.42197191582555], [4.956158699029028, 52.42201831775182], [4.956245168031558, 52.42204559498295], [4.956292147577713, 52.42205205712675], [4.956345050943413, 52.42205404699846], [4.956697716878026, 52.42206970881013], [4.956837299326734, 52.42207740586475], [4.957200238351977, 52.422094901002914], [4.957383930453619, 52.422101858699804], [4.957489737409737, 52.42210583744463], [4.957564691279809, 52.422107906726254], [4.957638183847129, 52.422109071905375], [4.957852737912122, 52.42211703949843], [4.958049651739959, 52.42212494282236], [4.958073163453661, 52.422125926722416], [4.958550774177964, 52.42214293415114], [4.958718296397653, 52.42214983128805], [4.958810838577092, 52.42215735592226], [4.958907773491315, 52.422166693876115], [4.958948899513231, 52.422170437535186], [4.959059116862162, 52.422174430815474], [4.959179615744397, 52.4221793598867], [4.959292799240685, 52.422180667388496], [4.959539694589094, 52.42218874869973], [4.959646980655999, 52.42219183209644], [4.959813033206856, 52.42219872238195], [4.96005848472493, 52.422204101130326], [4.960258356728542, 52.422210213927094], [4.96028628728858, 52.4222103145494], [4.960455236776739, 52.42222170816017], [4.960483132711988, 52.4222254036433], [4.960834305526502, 52.422243744029714], [4.961037074647204, 52.422254359724846], [4.96128099610473, 52.422266021742104], [4.961419127230843, 52.42227191066201], [4.961479355341184, 52.42227662083008], [4.961527857755987, 52.42227769381791], [4.961536677947405, 52.422277725499605], [4.961573420109255, 52.4222787562264], [4.962064143394951, 52.42230837918637], [4.962278725109982, 52.42231364258393], [4.962493289642469, 52.42232070304682], [4.962532980546697, 52.42232084528576], [4.962557962500118, 52.42232183356376], [4.962820977958891, 52.42233535834133], [4.962942990784119, 52.42233579521452], [4.963157538325484, 52.422344651928476], [4.963457339369894, 52.422354711882484], [4.963604325658546, 52.422357034884726], [4.963674852958808, 52.42236088199131], [4.963717458196463, 52.42236373052198], [4.963836453730027, 52.42237224451232], [4.96390844252204, 52.42237699545865], [4.964181834812964, 52.42238156669962], [4.964516917215016, 52.42239174990495], [4.964677116866192, 52.422395916218996], [4.964716790702431, 52.42239785518066], [4.96475941318648, 52.422398905882375], [4.964854948416427, 52.42240104391354], [4.965004815045504, 52.422409666746645], [4.965173698023466, 52.422428243447094], [4.965713082072807, 52.422442745680684], [4.965737987204048, 52.42245182183339], [4.965761430857907, 52.42245999402586], [4.965921647973491, 52.42246236120275], [4.966122923669125, 52.42247565915033], [4.966646035784514, 52.422500884406624], [4.966665137773152, 52.422501850951164], [4.966788535844166, 52.42251127635389], [4.96682232971607, 52.42251319375019], [4.966878165671668, 52.42251608807537], [4.966935420511963, 52.422524379951675], [4.967329331860831, 52.42253206753624], [4.9677643704723, 52.42254349441059], [4.9678496754346, 52.42253930251403], [4.967899631324988, 52.422542175550156], [4.967952535812115, 52.422544160239134], [4.968047969460776, 52.42255708042495], [4.968167025874657, 52.42255929897418], [4.968385943208999, 52.422572655451894], [4.968456462779749, 52.422577398439806], [4.968832615517113, 52.422597600877396], [4.968897297438179, 52.42259782920648], [4.968948731994014, 52.42259980826169], [4.969017807080313, 52.42260184954475], [4.969085403645599, 52.42260478432847], [4.969280826215173, 52.422615359982906], [4.96946746251449, 52.42262230931417], [4.969845213172263, 52.42262903280546], [4.969989277569354, 52.422629540077004], [4.97003190040681, 52.422630588881965], [4.970105385727874, 52.422632645055295], [4.970196410063891, 52.422645547989184], [4.970221307770144, 52.4226555219277], [4.970268323856619, 52.422658383620174], [4.970378501182704, 52.42266686000903], [4.971029731681639, 52.422669148758416], [4.971107551270669, 52.42267930834668], [4.971225011524916, 52.42269499957718], [4.971364590078747, 52.422703578245724], [4.971429229991136, 52.422708298831154], [4.971477682520391, 52.42271476011221], [4.971552638098836, 52.42271682054477], [4.971748137630083, 52.42271930358025], [4.971981841588926, 52.42272371767097], [4.972124394167561, 52.42272871083458], [4.972205238415519, 52.42272989272182], [4.972294902959617, 52.422731105434615], [4.972390380370802, 52.42273952848444], [4.972637129891119, 52.42276375960377], [4.972831117607338, 52.4227707293489], [4.972895766182609, 52.42277455040645], [4.973233676138265, 52.422797301428446], [4.973320409144932, 52.42279760436712], [4.973354161538154, 52.42280401353985], [4.97339524740575, 52.42281224582448], [4.973483022378997, 52.42285838889951], [4.973819901605485, 52.42299168177957], [4.973935591728561, 52.42303971939951], [4.974175700917354, 52.4231457110476], [4.974262091088523, 52.42318286114134], [4.974330941150658, 52.423209164980584], [4.974472900980304, 52.42327796500029], [4.974528562570598, 52.423299729006615], [4.974639852431138, 52.423346851852216], [4.974691103979803, 52.42336860042895], [4.974855090867346, 52.423440172926576], [4.974953192585569, 52.423482755801956], [4.975146406269758, 52.42357330345326], [4.975288443757033, 52.42363401394187], [4.975472938546229, 52.42371374566628], [4.975568126356249, 52.42375362163284], [4.975704351457281, 52.42380712137369], [4.97574390181912, 52.42382253756222], [4.975817105585309, 52.4238551469433], [4.975928490010622, 52.423892382568695], [4.975992856808119, 52.42392675868634], [4.976095471071091, 52.42395857118138], [4.9761013347477, 52.42396038903553], [4.976137928522244, 52.423977592348976], [4.976238375723405, 52.424025915454735], [4.976256480539871, 52.42403462517505], [4.976282825474177, 52.42404729912027], [4.976331138454396, 52.424069036791295], [4.976373579440757, 52.42408985533008], [4.976423370942161, 52.42411069933166], [4.976429259657276, 52.424109820985784], [4.97650246440382, 52.42414242994244], [4.976585976602158, 52.42417327705308], [4.976648882551088, 52.42420674899175], [4.976679554697415, 52.42422842540592], [4.976730741638914, 52.42425736292163], [4.976768847644661, 52.42427007749179], [4.976890399742864, 52.42432082876871], [4.977041246002116, 52.42438336514521], [4.977104210843138, 52.424410545745815], [4.977173064505434, 52.42443684793015], [4.977200905006196, 52.42444683057307], [4.97723751624769, 52.42446223609012], [4.977351552542437, 52.42453093602379], [4.977454110984292, 52.424569038435834], [4.977603530330126, 52.424627075372456], [4.977714893275754, 52.42466700549951], [4.977887702257332, 52.42473950299447], [4.978047322249485, 52.424807460919006], [4.978101509101922, 52.42483011689583], [4.97815273916973, 52.42485456015544], [4.978171784331692, 52.42486181594101], [4.97821728336973, 52.42487006177405], [4.978248039725832, 52.424882750501], [4.978297841299761, 52.424902694985086], [4.978324170742189, 52.42491716593104], [4.978416440053549, 52.42495523200423], [4.978497006578723, 52.42498696635159], [4.978597906242414, 52.42504573344465], [4.978644767903347, 52.42506566764533], [4.978864458394886, 52.42515630043866], [4.979008042460273, 52.42520982169953], [4.9792307243519, 52.42529507157181], [4.979280477168867, 52.425320408009775], [4.97929951443936, 52.4253285623416], [4.979375589112521, 52.42536926819003], [4.97942240181955, 52.42539459445021], [4.979893918438422, 52.4255993348257], [4.980116554434669, 52.42568997539733], [4.980265981058941, 52.42574800896963], [4.980326042546027, 52.425771582846274], [4.98038318030425, 52.425793349143625], [4.980519268965987, 52.42586302044025], [4.9808282180297, 52.4260006911365], [4.980939438954396, 52.426056795330574], [4.981005381863987, 52.42608038902026], [4.981081541808455, 52.42611210649004], [4.981129884120653, 52.4261311460154], [4.981156256417283, 52.42614112268999], [4.981299805268627, 52.426199134808044], [4.981406756774158, 52.426239945081356], [4.981431667265226, 52.42624901793279], [4.981474170373331, 52.426263543543506], [4.981522529484096, 52.42628078545241], [4.981559119053836, 52.426298885814965], [4.981620487545184, 52.42634043862541], [4.981794812540738, 52.426409340527925], [4.981860707080592, 52.42643832610861], [4.982125731620696, 52.426556969272674], [4.982447955017289, 52.42669108604612], [4.982571006885952, 52.426740039046855], [4.982636959893795, 52.426762733098876], [4.983821197713316, 52.42571702255934], [4.984508854566146, 52.42511359941385], [4.984716281595388, 52.42493724905555], [4.985252846183419, 52.42445643794329]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:amsterdam:nord_neighborhood_zones:14", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "14", "alternateName": "amsterdam_nord_neighborhood", "description": "Waterland", "val": 8}}]}}]
\ No newline at end of file
diff --git a/src/assets/map/map-component-maps/bilbao_air_quality_request.json b/src/assets/map/map-component-maps/bilbao_air_quality_request.json
new file mode 100644
index 0000000000000000000000000000000000000000..dc874e39eeb5834cb7ff096c74143737a1147830
--- /dev/null
+++ b/src/assets/map/map-component-maps/bilbao_air_quality_request.json
@@ -0,0 +1 @@
+[{"id": "urn:ngsi-ld:MapLayer:Bilbao:air_quality", "alternateName": "bilbao_air_quality.geojson", "name": "bilbao_air_quality", "description": "test", "type": "MapLayer", "@context": ["https://smartdatamodels.org/context.jsonld", "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld", "https://git.code.tecnalia.com/urbanite/public/-/raw/main/datamodels/maplayer-ngsi.jsonld"], "map": {"@context": ["https://smartdatamodels.org/context.jsonld"], "type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"coordinates": [-2.935188110338201, 43.26750551179745], "type": "Point"}, "properties": {"name": "60", "type": "GtfsShape", "no": 2.19, "no2": 15.29, "nox": 12.06, "o3": 71.88, "pm10": 14.0, "pm25": 10.14, "so2": 3.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.902376115931137, 43.25491056506432], "type": "Point"}, "properties": {"name": "62", "type": "GtfsShape", "no": 2.19, "no2": 15.29, "nox": 12.06, "o3": 71.88, "pm10": 14.0, "pm25": 10.14, "so2": 3.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.960475856567045, 43.245553729819484], "type": "Point"}, "properties": {"name": "92", "type": "GtfsShape", "no": 2.19, "no2": 15.29, "nox": 12.06, "o3": 71.88, "pm10": 14.0, "pm25": 10.14, "so2": 3.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.9475439999557134, 43.26522199716327], "type": "Point"}, "properties": {"name": "88", "type": "GtfsShape", "no": 2.19, "no2": 15.29, "nox": 12.06, "o3": 71.88, "pm10": 14.0, "pm25": 10.14, "so2": 3.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.953278416670214, 43.28099012364825], "type": "Point"}, "properties": {"name": "87", "type": "GtfsShape", "no": 2.19, "no2": 15.29, "nox": 12.06, "o3": 71.88, "pm10": 14.0, "pm25": 10.14, "so2": 3.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.945656664175787, 43.25880286639215], "type": "Point"}, "properties": {"name": "81", "type": "GtfsShape", "no": 2.19, "no2": 15.29, "nox": 12.06, "o3": 71.88, "pm10": 14.0, "pm25": 10.14, "so2": 3.2}}]}}]
\ No newline at end of file
diff --git a/src/assets/map/map-component-maps/bilbao_bike_request.json b/src/assets/map/map-component-maps/bilbao_bike_request.json
new file mode 100644
index 0000000000000000000000000000000000000000..3a7220f58a370c83e0268f64c4cf55c5661f47b5
--- /dev/null
+++ b/src/assets/map/map-component-maps/bilbao_bike_request.json
@@ -0,0 +1 @@
+[{"id": "urn:ngsi-ld:MapLayer:Bilbao:bike", "alternateName": "bilbao_bike.geojson", "name": "bilbao_bike", "description": "test", "type": "MapLayer", "@context": ["https://smartdatamodels.org/context.jsonld", "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld", "https://git.code.tecnalia.com/urbanite/public/-/raw/main/datamodels/maplayer-ngsi.jsonld"], "map": {"@context": ["https://smartdatamodels.org/context.jsonld"], "type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"coordinates": [[[-2.946875159747346, 43.28765677402011], [-2.948036212008221, 43.285500055171745], [-2.94855789318532, 43.28480482409332], [-2.948854294391912, 43.28355617737056], [-2.946868994980295, 43.28166009063471], [-2.944097794994632, 43.279911503713834], [-2.943959269080793, 43.27980808360746], [-2.93948318801015, 43.27947756048146], [-2.934780659757943, 43.27826193640211], [-2.933322580507499, 43.27822310389527], [-2.933322580507499, 43.27822310389527], [-2.933515426179498, 43.27751244359683], [-2.933762492889851, 43.276839716167835], [-2.933815797729184, 43.2765082631635], [-2.933902263066293, 43.276240839341135], [-2.934008082048305, 43.275930573175586], [-2.934084988486175, 43.275667645084106], [-2.934122888203293, 43.27548382928258], [-2.934153145493881, 43.2752249255204], [-2.934167324652771, 43.27498635886733], [-2.934137376944749, 43.274769913750546], [-2.934087218096667, 43.27463754334969], [-2.934175447499099, 43.274426928070504], [-2.934249770478115, 43.27429588969181], [-2.934364861332903, 43.274147049067906], [-2.934448004837252, 43.27403420132087], [-2.934584835874506, 43.27389014442224], [-2.934754162092275, 43.2736714724728], [-2.934824476400656, 43.273581124188475], [-2.934898264590372, 43.27347286221333], [-2.935005980310302, 43.273376233115684], [-2.935087406241269, 43.27334756033596], [-2.935163482705004, 43.27328467372726], [-2.935249976725267, 43.27317200733559], [-2.935323340515162, 43.27307949978435], [-2.935355612864611, 43.27302298027653], [-2.935394400517823, 43.27295521090569], [-2.93546851347704, 43.27282642228905], [-2.935495019961091, 43.27274478159947], [-2.935515003746185, 43.27268132293639], [-2.935598566298967, 43.27255262958408], [-2.935695809545827, 43.27236263460401], [-2.935777299648132, 43.27217470134209], [-2.935804770027457, 43.272045436152425], [-2.935962708593123, 43.271533443795384], [-2.936164747513875, 43.27092154438238], [-2.936155910231383, 43.27062696685159], [-2.93617900164343, 43.27031098038564], [-2.936220985248524, 43.26990470603399], [-2.937536685039381, 43.26987167141488], [-2.938005839277664, 43.26985779218709], [-2.938637707562993, 43.26980969764579], [-2.938821033034044, 43.26979115997708], [-2.939316234715834, 43.26974118794736], [-2.939857790823712, 43.2696703515841], [-2.940626034390812, 43.26950059938804], [-2.940830644867825, 43.26943057334333], [-2.941099479526594, 43.269353557809566], [-2.941535124382266, 43.26920541461459], [-2.942004709845796, 43.26905206532597], [-2.942754930342045, 43.26879991375084], [-2.943430136617255, 43.26856977711453], [-2.944008877482006, 43.26837614081313], [-2.94458761892668, 43.26817782010341], [-2.944694239611807, 43.26814114013764], [-2.945129055864785, 43.267991182255564], [-2.946047072250705, 43.267663015449216], [-2.950119316287103, 43.26628589921041], [-2.950810828453814, 43.266052034849864], [-2.953063904745591, 43.26567765317404], [-2.954666597343961, 43.265426310091875], [-2.955428996158128, 43.26533937217871], [-2.956014161301182, 43.26530034630263], [-2.956630401946253, 43.26528176566307], [-2.957000935324305, 43.26530423258286], [-2.957448997505514, 43.26531988500962], [-2.957937774940435, 43.265376423547686], [-2.958383046626828, 43.2654624734882], [-2.958744254304258, 43.26560556940332], [-2.959105569859155, 43.265741822055936], [-2.959441769540955, 43.26590984468], [-2.95989988987082, 43.266243921439234], [-2.960276860082474, 43.26653484460484], [-2.960737949445678, 43.26684839253547], [-2.961242782728698, 43.26724612993536], [-2.961869083125849, 43.26774374707502], [-2.962308427250646, 43.26808699071317], [-2.962875524612914, 43.26855514348119], [-2.963427184593344, 43.26902553917351], [-2.963813580627311, 43.26941422431782], [-2.964165762535094, 43.26976202456136], [-2.964437826498028, 43.27002427192228], [-2.964543037381935, 43.27012567646323], [-2.964777053505444, 43.27047127741456], [-2.964982037067444, 43.270771314661395], [-2.965121630311642, 43.2709894958826], [-2.965224264443628, 43.27115977064168], [-2.965373286366977, 43.271418827251985], [-2.965540972126659, 43.2717390184878], [-2.965755274168445, 43.2721070284425], [-2.965922850649475, 43.27244792555092], [-2.966137217974174, 43.27270682049885], [-2.966398221558182, 43.272979503067035], [-2.966743114990824, 43.27334070722932], [-2.966976066457811, 43.27363381670447], [-2.96738606790055, 43.27406327907941], [-2.967677783717536, 43.27431337032581], [-2.967758716572454, 43.27442205725866], [-2.968078596521088, 43.27484302900159], [-2.968395192544307, 43.27533449101712], [-2.968649836148682, 43.27576453590362], [-2.968888728491617, 43.276201328024385], [-2.968939173123815, 43.27632224962744], [-2.969059347606293, 43.27661082261873], [-2.969149127395473, 43.27692018379145], [-2.969201530095921, 43.27719082269306], [-2.969232189153122, 43.277454613568445], [-2.969202440242924, 43.277804185043216], [-2.969190723671732, 43.27806454341344], [-2.969156018486443, 43.27836675867958], [-2.969121499136981, 43.27870273453608], [-2.969098255779985, 43.2790469960009], [-2.96906360860174, 43.27943329751044], [-2.969006022893717, 43.27976080438148], [-2.968930887621846, 43.28022361875616], [-2.96893804729477, 43.28053340756923], [-2.968862779786198, 43.28085406736317], [-2.96877204978027, 43.281201911367205], [-2.968671996736524, 43.28149510564818], [-2.968528175614457, 43.28191567759417], [-2.968409275921709, 43.282290792012496], [-2.968262208268835, 43.28269326701758], [-2.968118516367531, 43.28305018852298], [-2.967938807243482, 43.28347777179688], [-2.967880754511643, 43.283708317476325], [-2.96786211654124, 43.283782135281854], [-2.967783811928459, 43.28406183054717], [-2.967764504032199, 43.28444156359158], [-2.96775796286381, 43.284703093334954], [-2.967748176497547, 43.284950937883025], [-2.96778210710601, 43.28517385696398], [-2.967850152202267, 43.285464936869495], [-2.967930742348857, 43.28567427475262], [-2.968011330736226, 43.285888023945965], [-2.968107494030323, 43.286056493303214], [-2.968197564365291, 43.2862156879908], [-2.968343527099929, 43.286393173780105], [-2.968495779400437, 43.28659568890887], [-2.96869153096219, 43.286805057873785], [-2.968968130305675, 43.287130494608206], [-2.971240339091424, 43.28984543336079], [-2.971240542253577, 43.28984570349587], [-2.971363414294379, 43.29009736258216], [-2.971367577648054, 43.29010609634015], [-2.971246411173178, 43.29011767955841], [-2.971125144625562, 43.29012584155914], [-2.971003981315912, 43.29013058239355], [-2.970882819576502, 43.29013199206413], [-2.970782801365447, 43.29013061614094], [-2.970682174412177, 43.29012689924635], [-2.970581548555963, 43.2901209315636], [-2.97048092385147, 43.290112623064644], [-2.970353060508629, 43.29009971599285], [-2.970252234686132, 43.29008708589669], [-2.970162285765547, 43.2900727480174], [-2.970080876131137, 43.29005625162922], [-2.970002720730121, 43.290036605056535], [-2.96992019690759, 43.29001236585378], [-2.969832085170669, 43.28998308354985], [-2.969733405798581, 43.28994704628219], [-2.969657085582075, 43.28991668662649], [-2.969574974606442, 43.28988047355955], [-2.969351918601668, 43.289772380410724], [-2.969227233562101, 43.28970716666119], [-2.968951348274814, 43.28955089352035], [-2.96882564873224, 43.28948360841103], [-2.968686532737692, 43.28941577932281], [-2.968528107083872, 43.28934335332499], [-2.967949274572387, 43.28909381501207], [-2.967184082065276, 43.288753832317404], [-2.966955540053716, 43.28865617615098], [-2.966748438291074, 43.28857148979594], [-2.966537065949381, 43.28849076304848], [-2.966069198722643, 43.28832047225617], [-2.96587977854898, 43.288247403182474], [-2.965618517060451, 43.288140461684876], [-2.965365286844401, 43.288032351656206], [-2.965062368487347, 43.28790036847091], [-2.964878242129477, 43.28781694612636], [-2.964711596944665, 43.28773631974754], [-2.964565176678865, 43.28765930051329], [-2.964460622467231, 43.28760011965701], [-2.964355663997632, 43.287537337457074], [-2.964249894726911, 43.28747095378518], [-2.964143111553819, 43.287400698491176], [-2.964035111274204, 43.28732648148016], [-2.963925487511641, 43.28724803253623], [-2.963813529133749, 43.287164811261356], [-2.96369832173677, 43.287076277189946], [-2.963601811537678, 43.28699594150436], [-2.963380152031006, 43.28679771902414], [-2.963318487183264, 43.286747103502265], [-2.963260274061321, 43.28670333118728], [-2.963157761842144, 43.286633706532136], [-2.963040920469339, 43.286561196257686], [-2.962907210127077, 43.286483998935296], [-2.962725845188821, 43.28638427892298], [-2.962623934357094, 43.286330318863456], [-2.962518669129273, 43.28627716786609], [-2.962410151093175, 43.28622491598307], [-2.962298075503422, 43.28617329302056], [-2.962182543892539, 43.28612247905776], [-2.962063251573121, 43.286072113870986], [-2.961939893524613, 43.286022377403114], [-2.961812368283852, 43.28597299952291], [-2.961546035346838, 43.28587622015988], [-2.961258765842452, 43.28577943308622], [-2.960945580656867, 43.285681015939154], [-2.960592558380045, 43.28557664236327], [-2.960415845295171, 43.28552310467515], [-2.960364730168759, 43.28550994287717], [-2.960317983192581, 43.28550029366647], [-2.960225400150187, 43.28548693735709], [-2.960116349476095, 43.285477266383054], [-2.960036362360053, 43.28547489773631], [-2.959953322348341, 43.28547828976136], [-2.959866212924229, 43.28548762215105], [-2.959773306223591, 43.28550289428843], [-2.959693306426781, 43.28551970137619], [-2.959604460905194, 43.28554136680019], [-2.959319722067459, 43.28561950028379], [-2.959219998269032, 43.28564530283073], [-2.959126477242032, 43.28566669613188], [-2.959041395768792, 43.28568260066662], [-2.958759830349844, 43.2857251728047], [-2.95844381063882, 43.28576575112024], [-2.95814304077069, 43.2857996720668], [-2.95744778578435, 43.28587314853137], [-2.957118654635477, 43.28591155763309], [-2.956977874141025, 43.285928069935004], [-2.956828963279144, 43.285943498658675], [-2.95649892393204, 43.285971642434866], [-2.956181288610746, 43.28599357807468], [-2.95543512833948, 43.28603947420537], [-2.955076732047079, 43.28606580226528], [-2.954912880254857, 43.28608023231684], [-2.954759598182608, 43.28609547656701], [-2.95461454781268, 43.286111984270924], [-2.954476814463376, 43.28612966506781], [-2.954295166248619, 43.28615660105078], [-2.954123984415603, 43.286186511869154], [-2.953962252500293, 43.28621948718885], [-2.953808852195364, 43.28625588671056], [-2.953663072018468, 43.28629571017951], [-2.953524911822878, 43.28633913768084], [-2.95339376169809, 43.28638625902159], [-2.953269215011553, 43.28643716408776], [-2.953136528420214, 43.286499229161976], [-2.953006072146843, 43.286568407214034], [-2.95287733774815, 43.28664496812602], [-2.952750020126035, 43.28672909183351], [-2.952624119169136, 43.28682086836888], [-2.952498821227602, 43.28692092759493], [-2.952373516202693, 43.287029539343294], [-2.952247288575732, 43.287147603511684], [-2.952152486109625, 43.287241733228434], [-2.952055848589726, 43.287342524170896], [-2.951956562495478, 43.28745042613259], [-2.951853101673712, 43.287567329052585], [-2.951644236959476, 43.28781463798815], [-2.95123686477055, 43.28831574111615], [-2.951064109928501, 43.288523361990165], [-2.950878949501897, 43.28873592881005], [-2.950792070175466, 43.28883060094306], [-2.950707533170021, 43.28891933216886], [-2.950669077432361, 43.288962168925934], [-2.950627259184034, 43.289015177383995], [-2.950578313944976, 43.28908285731332], [-2.950430044693997, 43.28929805013079], [-2.950382221702297, 43.289360058694626], [-2.950339288290982, 43.28940883524362], [-2.950313755213666, 43.28943394196974], [-2.950289140357605, 43.289454817772786], [-2.950265240220693, 43.28947173264893], [-2.950241851520024, 43.289484686510235], [-2.950219075831151, 43.28949376942926], [-2.950196608226378, 43.28949898127361], [-2.950174550280675, 43.289500412115736], [-2.95015280042759, 43.28949797188362], [-2.950126786158387, 43.28948985802376], [-2.950099557024693, 43.289475801779595], [-2.950070909968161, 43.289455532977584], [-2.950040438717747, 43.28942869132708], [-2.949984989124749, 43.289370058862794], [-2.949848003556428, 43.28920929888856], [-2.949810427543966, 43.28917021025093], [-2.94977569137501, 43.289138685200605], [-2.949675436040419, 43.28905761592645], [-2.949565323215253, 43.28897456160117], [-2.949443727854164, 43.28888808102972], [-2.949306484983952, 43.288795381461064], [-2.949151155366558, 43.288696371726274], [-2.948954880095807, 43.28857843763013], [-2.948723044744941, 43.2884438320756], [-2.948635062930303, 43.288395717637705], [-2.948553378061855, 43.288353547813614], [-2.948418451016781, 43.28828983723655], [-2.948191365771808, 43.2881898035019], [-2.947867755130282, 43.288050473143706], [-2.94754027956825, 43.28791582155185], [-2.947208938802476, 43.28778611877742], [-2.946873631449439, 43.28766100462795], [-2.946873123400967, 43.28766082433593], [-2.946875159747346, 43.28765677402011]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:district:1", "properties": {"fill": "#630000", "fill-opacity": 0.5, "type": "GtfsShape", "name": "1", "alternateName": "district", "description": "Deusto", "val": 427}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.901937190176804, 43.27076975325475], [-2.90288080708657, 43.270617420148675], [-2.905204056391935, 43.27010881850136], [-2.90650552099933, 43.26983026168579], [-2.906766511656234, 43.26966266192515], [-2.906924008361627, 43.26952963830398], [-2.906998631884044, 43.26943588949145], [-2.907064945857189, 43.26932718917705], [-2.907106582267658, 43.26920928589636], [-2.907127434587049, 43.2690610261808], [-2.907074151981867, 43.26875263589283], [-2.907061981222212, 43.26860434934648], [-2.907086967092205, 43.26847733966737], [-2.907170035652771, 43.26830815383991], [-2.907294610828823, 43.268105511050315], [-2.907443634542638, 43.26786102472283], [-2.907502172461688, 43.26765202625627], [-2.907461165642361, 43.26735552974009], [-2.907386948837431, 43.26718315541214], [-2.907316737160266, 43.26705003663907], [-2.907259064791447, 43.26688964939405], [-2.907246925795568, 43.26672038623666], [-2.907259514585678, 43.26659336642517], [-2.907329028859043, 43.26644901726524], [-2.90736031872429, 43.266385122469835], [-2.907418318200867, 43.26632953189494], [-2.907641704548866, 43.266157218116966], [-2.907881370988165, 43.265968621873256], [-2.908046465372718, 43.2658427149788], [-2.90817239696102, 43.265813917029924], [-2.908298604614307, 43.26573650384059], [-2.908338728761584, 43.26567522667389], [-2.908378954092206, 43.26554642828944], [-2.908347310758824, 43.26530512687931], [-2.908207678315905, 43.26498613437764], [-2.908137834250143, 43.264879304642136], [-2.907904468188024, 43.26432922357091], [-2.907794521543416, 43.264270526514764], [-2.907660340647864, 43.26424701089713], [-2.90759427729836, 43.26426154215166], [-2.906987589072877, 43.2644761283084], [-2.906661281301011, 43.26451682544426], [-2.906386832311975, 43.264662807291444], [-2.906088417449068, 43.264865936831605], [-2.905970253461119, 43.26493165051578], [-2.905868122074503, 43.26494471066417], [-2.905820117915859, 43.26490956008084], [-2.905782190422326, 43.26486280411479], [-2.905820295977885, 43.26479405380324], [-2.906006549652254, 43.264718042974835], [-2.90616086509971, 43.26459834187609], [-2.906805967005699, 43.264114786552526], [-2.906972486858407, 43.26385158901085], [-2.90708891907604, 43.26371997207785], [-2.907187243966755, 43.26353585377007], [-2.9071698029979, 43.26317887695786], [-2.907246085656361, 43.263057670557366], [-2.907314144834598, 43.26299920724938], [-2.907418364684673, 43.26294653499063], [-2.907536487850324, 43.262904227143636], [-2.907846618771613, 43.26287233725343], [-2.907978735805732, 43.262847595763795], [-2.908097085832416, 43.26278917243195], [-2.908165148363235, 43.2627277376795], [-2.908231361502634, 43.26261228434714], [-2.908393801177735, 43.26242083405083], [-2.908610090270018, 43.26229523733385], [-2.909743289740516, 43.261768210298584], [-2.911405272528599, 43.26103793838346], [-2.911545567932559, 43.260974486865216], [-2.912062994725553, 43.26013086899122], [-2.912181467929136, 43.259909670030176], [-2.912272493495593, 43.259770555858076], [-2.912306445248242, 43.25961564288927], [-2.912318063579571, 43.25944855894578], [-2.912333671240006, 43.25912086724498], [-2.912204596687844, 43.258802607593694], [-2.912014662973514, 43.258559474776035], [-2.911915836552875, 43.25847288134237], [-2.912059506857984, 43.25846002777587], [-2.912183606034333, 43.258492623394815], [-2.912368137362733, 43.2586069210295], [-2.912701276995709, 43.25887942189158], [-2.912888056018539, 43.258843822968345], [-2.912964295113861, 43.258741428581516], [-2.913225253796103, 43.25912280743445], [-2.913275853509432, 43.259261669722804], [-2.913355415129862, 43.25939533227373], [-2.913629800594899, 43.259768887852495], [-2.91523902974183, 43.26132875425151], [-2.91575242562176, 43.26182645062308], [-2.91575242562176, 43.26182645062308], [-2.916302897990075, 43.262409608761956], [-2.916951827850431, 43.26321952727373], [-2.917034271081211, 43.26348544100689], [-2.917039413150898, 43.2637390547703], [-2.916999215758099, 43.26401118148551], [-2.916959919208308, 43.26429303189475], [-2.91732404169241, 43.26468302857012], [-2.917657593365592, 43.26484153906822], [-2.917798560792482, 43.26488440393836], [-2.918112951228553, 43.264937656145364], [-2.918431955108478, 43.264960391153416], [-2.919065563288971, 43.26495282866629], [-2.919594718037043, 43.26494915054774], [-2.920289084781974, 43.264941533945425], [-2.920839802219301, 43.26492012949756], [-2.92111497955597, 43.26481372597362], [-2.921520269132819, 43.264501246096415], [-2.921672874820825, 43.264423025983504], [-2.9219318333533, 43.26444336936525], [-2.922058468727907, 43.264572286355076], [-2.922052868077606, 43.264741355865375], [-2.921931308528166, 43.26485407854707], [-2.921628097449909, 43.26495461298594], [-2.920836027594716, 43.26524557950964], [-2.92079381485042, 43.26536033647997], [-2.920835757409609, 43.2654540850605], [-2.920961768571996, 43.265515571552086], [-2.92105971716391, 43.26551392864708], [-2.921477787474808, 43.26537998406615], [-2.922197863473272, 43.26513397835717], [-2.922347214106072, 43.26505926624669], [-2.922520285656948, 43.26494693814185], [-2.922658633760642, 43.264814509969995], [-2.922733072224819, 43.26468275870496], [-2.922747114977676, 43.26442465677493], [-2.922761112765844, 43.264202025991885], [-2.922864080244369, 43.26400574352016], [-2.922994386433548, 43.26380263719658], [-2.923146371958722, 43.26364915093913], [-2.92383136262938, 43.26324493136561], [-2.923877562164898, 43.2633494851103], [-2.923997783641821, 43.26349036948896], [-2.925759618188997, 43.26484942488143], [-2.928487738379802, 43.26695395567046], [-2.93012561439008, 43.2682173453828], [-2.931240614985482, 43.26907725143941], [-2.93152495607848, 43.26922650890604], [-2.931797032531497, 43.269349920221835], [-2.931929364137986, 43.269410047934855], [-2.932319911187614, 43.26954190107311], [-2.932721156158106, 43.26964918143677], [-2.933593739663279, 43.26979103576935], [-2.936220985248524, 43.26990470603399], [-2.936220985248524, 43.26990470603399], [-2.93617900164343, 43.27031098038564], [-2.936155910231383, 43.27062696685159], [-2.936164747513875, 43.27092154438238], [-2.935962708593123, 43.271533443795384], [-2.935804770027457, 43.272045436152425], [-2.935777299648132, 43.27217470134209], [-2.935695809545827, 43.27236263460401], [-2.935598566298967, 43.27255262958408], [-2.935515003746185, 43.27268132293639], [-2.935495019961091, 43.27274478159947], [-2.93546851347704, 43.27282642228905], [-2.935394400517823, 43.27295521090569], [-2.935355612864611, 43.27302298027653], [-2.935323340515162, 43.27307949978435], [-2.935249976725267, 43.27317200733559], [-2.935163482705004, 43.27328467372726], [-2.935087406241269, 43.27334756033596], [-2.935005980310302, 43.273376233115684], [-2.934898264590372, 43.27347286221333], [-2.934824476400656, 43.273581124188475], [-2.934754162092275, 43.2736714724728], [-2.934584835874506, 43.27389014442224], [-2.934448004837252, 43.27403420132087], [-2.934364861332903, 43.274147049067906], [-2.934249770478115, 43.27429588969181], [-2.934175447499099, 43.274426928070504], [-2.934087218096667, 43.27463754334969], [-2.934137376944749, 43.274769913750546], [-2.934167324652771, 43.27498635886733], [-2.934153145493881, 43.2752249255204], [-2.934122888203293, 43.27548382928258], [-2.934084988486175, 43.275667645084106], [-2.934008082048305, 43.275930573175586], [-2.933902263066293, 43.276240839341135], [-2.933815797729184, 43.2765082631635], [-2.933762492889851, 43.276839716167835], [-2.933515426179498, 43.27751244359683], [-2.933322580507499, 43.27822310389527], [-2.933322580507499, 43.27822310389527], [-2.931303548268116, 43.27816933273504], [-2.928250080386202, 43.27750710147786], [-2.923251318829536, 43.275704463076686], [-2.920253263521486, 43.27463602791717], [-2.917789178622194, 43.27381889775874], [-2.916637234342353, 43.27709617176862], [-2.91654977219373, 43.27811117583945], [-2.91550684403856, 43.27844153388866], [-2.915241404899057, 43.27990060404487], [-2.914930081156934, 43.280437570908674], [-2.91539218970301, 43.28153679707215], [-2.916403824909558, 43.28287184757952], [-2.916959203924183, 43.28477364540574], [-2.916735761984016, 43.28562667899936], [-2.912366975390101, 43.28562134485288], [-2.910519813276597, 43.28582868990052], [-2.910260501754977, 43.28536709293832], [-2.909937523177197, 43.28521262102088], [-2.90994561198518, 43.28517229481422], [-2.909961317164821, 43.28513629594939], [-2.909984536936563, 43.28510471437132], [-2.910015271691899, 43.2850772799916], [-2.910028292328288, 43.28506972787568], [-2.910064193669225, 43.28505373111136], [-2.910078539946276, 43.285043209105574], [-2.910085774442402, 43.28503079091855], [-2.910096497325011, 43.28499613853893], [-2.91010780522537, 43.28497832186744], [-2.910124399010134, 43.28495996917961], [-2.91020163655712, 43.284895119598445], [-2.910228815956806, 43.28486624192003], [-2.910240531133719, 43.28484788538618], [-2.910249910787666, 43.28482808656944], [-2.910257056953473, 43.28480657546618], [-2.910262173169885, 43.28478317218032], [-2.910266217169734, 43.28472861833861], [-2.910261209600575, 43.284608967095195], [-2.910262910937971, 43.28455783248109], [-2.910267016198918, 43.28453073724963], [-2.91027345537245, 43.28450616463489], [-2.910282635660713, 43.284483664815475], [-2.910294354187207, 43.2844629675474], [-2.910314922937697, 43.28443687553246], [-2.91037111182388, 43.2843783112917], [-2.910392296139756, 43.284348258509105], [-2.910408306410028, 43.28431180967623], [-2.910418830467568, 43.28427391609527], [-2.910423970089175, 43.2842344878193], [-2.910423522146617, 43.28419343466189], [-2.91036305582276, 43.28418888589119], [-2.909574091156972, 43.284099947372425], [-2.909300832844064, 43.28400556165245], [-2.908213639786919, 43.283534747810656], [-2.9073950683559, 43.28226793278618], [-2.906503091546579, 43.282435649800085], [-2.90582606458202, 43.281943360853404], [-2.905783246596525, 43.281700069609265], [-2.904625417354687, 43.28075435489674], [-2.903151637508606, 43.28052921662479], [-2.900114821142744, 43.2782515035686], [-2.898793439182414, 43.27729964447973], [-2.90072670743145, 43.2753760853786], [-2.901056200729298, 43.27378377136832], [-2.901839326502525, 43.271218820468555], [-2.901937190176804, 43.27076975325475]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:district:2", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "2", "alternateName": "district", "description": "Ur\u00edbarri", "val": 0}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.889728169859608, 43.25333012148903], [-2.889811206100095, 43.25347577769593], [-2.890136959814962, 43.253716737360044], [-2.890386904388447, 43.25386075274147], [-2.890649282318968, 43.25398308257636], [-2.890910765997076, 43.2540947875845], [-2.891113298418257, 43.25416781364524], [-2.891290670838166, 43.254222449614694], [-2.891479422414707, 43.25427637587555], [-2.891834401188556, 43.25436917139769], [-2.892069885143926, 43.254421970489645], [-2.892305496793035, 43.25446018459129], [-2.892530669945906, 43.25448443397598], [-2.892802593724654, 43.25449675293857], [-2.89306611261856, 43.2544938485733], [-2.893249711832444, 43.25447466391108], [-2.893422154092707, 43.25444538536234], [-2.89359330049815, 43.25440179080828], [-2.893782968079078, 43.25433930720005], [-2.894530266169585, 43.254084047445865], [-2.895863855574096, 43.25361955145628], [-2.896959262477548, 43.253245034217066], [-2.897374324259125, 43.2530693114373], [-2.897810918989324, 43.25283301715023], [-2.898842537313126, 43.25219410089308], [-2.899798962946822, 43.25161785935421], [-2.900562412632206, 43.251139213245914], [-2.900948245349249, 43.250869552180994], [-2.902244841692962, 43.25008804874867], [-2.902477985827457, 43.249947352943586], [-2.902772740984082, 43.249771597875764], [-2.903227972444519, 43.24954106044299], [-2.903549311727996, 43.24944554135898], [-2.903934889947833, 43.24938725715943], [-2.904063200552058, 43.2493755710858], [-2.904205110040873, 43.24937181877642], [-2.904416458645886, 43.249393512406336], [-2.904697465160078, 43.24943083865167], [-2.904956981372549, 43.24950532817915], [-2.905184282759439, 43.24958969357022], [-2.905331359683253, 43.24966021776675], [-2.905419665582054, 43.24970341452344], [-2.905614797288644, 43.249834657369554], [-2.90584108640089, 43.250050012264666], [-2.907224891246049, 43.25165563280235], [-2.907727181079408, 43.252280477381326], [-2.90793699615194, 43.252518501954036], [-2.908260290863987, 43.25288535806308], [-2.909115702209074, 43.25385582863579], [-2.909893252620291, 43.25473791333975], [-2.909980817, 43.25480892477588], [-2.910180592305114, 43.25504702725752], [-2.910738497245325, 43.25567973438501], [-2.911124631687293, 43.256099567990454], [-2.911359753694321, 43.25634795906765], [-2.911639912826967, 43.25664508987677], [-2.912458714487796, 43.257502700820694], [-2.912616425806814, 43.25775733198499], [-2.912800581931357, 43.25834715917352], [-2.912964295113861, 43.258741428581516], [-2.912888056018539, 43.258843822968345], [-2.912701276995709, 43.25887942189158], [-2.912368137362733, 43.2586069210295], [-2.912183606034333, 43.258492623394815], [-2.912059506857984, 43.25846002777587], [-2.911915836552875, 43.25847288134237], [-2.912014662973514, 43.258559474776035], [-2.912204596687844, 43.258802607593694], [-2.912333671240006, 43.25912086724498], [-2.912318063579571, 43.25944855894578], [-2.912306445248242, 43.25961564288927], [-2.912272493495593, 43.259770555858076], [-2.912181467929136, 43.259909670030176], [-2.912062994725553, 43.26013086899122], [-2.911545567932559, 43.260974486865216], [-2.911405272528599, 43.26103793838346], [-2.909743289740516, 43.261768210298584], [-2.908610090270018, 43.26229523733385], [-2.908393801177735, 43.26242083405083], [-2.908231361502634, 43.26261228434714], [-2.908165148363235, 43.2627277376795], [-2.908097085832416, 43.26278917243195], [-2.907978735805732, 43.262847595763795], [-2.907846618771613, 43.26287233725343], [-2.907536487850324, 43.262904227143636], [-2.907418364684673, 43.26294653499063], [-2.907314144834598, 43.26299920724938], [-2.907246085656361, 43.263057670557366], [-2.9071698029979, 43.26317887695786], [-2.907187243966755, 43.26353585377007], [-2.90708891907604, 43.26371997207785], [-2.906972486858407, 43.26385158901085], [-2.906805967005699, 43.264114786552526], [-2.90616086509971, 43.26459834187609], [-2.906006549652254, 43.264718042974835], [-2.905820295977885, 43.26479405380324], [-2.905782190422326, 43.26486280411479], [-2.905820117915859, 43.26490956008084], [-2.905868122074503, 43.26494471066417], [-2.905970253461119, 43.26493165051578], [-2.906088417449068, 43.264865936831605], [-2.906386832311975, 43.264662807291444], [-2.906661281301011, 43.26451682544426], [-2.906987589072877, 43.2644761283084], [-2.90759427729836, 43.26426154215166], [-2.907660340647864, 43.26424701089713], [-2.907794521543416, 43.264270526514764], [-2.907904468188024, 43.26432922357091], [-2.908137834250143, 43.264879304642136], [-2.908207678315905, 43.26498613437764], [-2.908347310758824, 43.26530512687931], [-2.908378954092206, 43.26554642828944], [-2.908338728761584, 43.26567522667389], [-2.908298604614307, 43.26573650384059], [-2.90817239696102, 43.265813917029924], [-2.908046465372718, 43.2658427149788], [-2.907881370988165, 43.265968621873256], [-2.907641704548866, 43.266157218116966], [-2.907418318200867, 43.26632953189494], [-2.90736031872429, 43.266385122469835], [-2.907329028859043, 43.26644901726524], [-2.907259514585678, 43.26659336642517], [-2.907246925795568, 43.26672038623666], [-2.907259064791447, 43.26688964939405], [-2.907316737160266, 43.26705003663907], [-2.907386948837431, 43.26718315541214], [-2.907461165642361, 43.26735552974009], [-2.907502172461688, 43.26765202625627], [-2.907443634542638, 43.26786102472283], [-2.907294610828823, 43.268105511050315], [-2.907170035652771, 43.26830815383991], [-2.907086967092205, 43.26847733966737], [-2.907061981222212, 43.26860434934648], [-2.907074151981867, 43.26875263589283], [-2.907127434587049, 43.2690610261808], [-2.907106582267658, 43.26920928589636], [-2.907064945857189, 43.26932718917705], [-2.906998631884044, 43.26943588949145], [-2.906924008361627, 43.26952963830398], [-2.906766511656234, 43.26966266192515], [-2.90650552099933, 43.26983026168579], [-2.905204056391935, 43.27010881850136], [-2.90288080708657, 43.270617420148675], [-2.901937190176804, 43.27076975325475], [-2.899360775059887, 43.27034933415173], [-2.894939960557355, 43.26985929658253], [-2.893722642084319, 43.26969179977723], [-2.892799635885796, 43.26955913707376], [-2.887572424480932, 43.26764848945391], [-2.883063217702781, 43.2657145711108], [-2.880261002576424, 43.26533220265869], [-2.880263989666948, 43.26531149925847], [-2.880274800785853, 43.265238677615834], [-2.880276344952043, 43.265228415996745], [-2.880289421835213, 43.26514002181317], [-2.880345022594279, 43.26476484168217], [-2.88035717180714, 43.26468310861401], [-2.880379825106988, 43.26452954387289], [-2.880391356152154, 43.264452131514076], [-2.880408962581484, 43.26433340247222], [-2.880421421361338, 43.264249148919596], [-2.880431513136799, 43.26418028774601], [-2.880436968329923, 43.264144372117826], [-2.880442425806907, 43.264107286122375], [-2.880451281404491, 43.264047066379526], [-2.880469608319877, 43.26392347653924], [-2.880485154241156, 43.26381914986582], [-2.880500599740573, 43.26371419288465], [-2.880524279062175, 43.2635551374278], [-2.880550326049277, 43.26338023943408], [-2.880581420625562, 43.26316987550433], [-2.880597275535675, 43.263063208385645], [-2.880603453516859, 43.263021261593146], [-2.880610144942091, 43.26297652445503], [-2.880620956284571, 43.26290316257946], [-2.881422141797661, 43.260511040072636], [-2.881427853867685, 43.26049934229444], [-2.881439272760541, 43.26047864758533], [-2.881479776975051, 43.26044303828959], [-2.88152830177679, 43.26041022816817], [-2.881579159558031, 43.26037931103867], [-2.881626461797041, 43.2603482101503], [-2.881679343016369, 43.260321616435654], [-2.881738605702686, 43.26030484239567], [-2.881792392833496, 43.26028257093104], [-2.881852771084256, 43.26026678829758], [-2.881914786658986, 43.260244885387195], [-2.881972234056777, 43.26022108713229], [-2.882030275858976, 43.26020512193734], [-2.882089534861746, 43.26019014828056], [-2.882145974523915, 43.26016202753339], [-2.882194600340108, 43.26012921723168], [-2.882247376058107, 43.26010442371394], [-2.882301477496974, 43.26007702071038], [-2.882346545779941, 43.260045016939394], [-2.882385830386721, 43.26000922600874], [-2.882417407429123, 43.25996631489368], [-2.882440551199863, 43.259923845245574], [-2.88247770547576, 43.25988634155248], [-2.882511307530566, 43.25984694360105], [-2.882540549803686, 43.2598029497112], [-2.882570697906829, 43.259763368138266], [-2.882612420120462, 43.259727759687166], [-2.882657283238171, 43.25969656583742], [-2.882703571913645, 43.25966366289073], [-2.882791274321619, 43.25959695166114], [-2.882837457975552, 43.259565759093], [-2.882888107925328, 43.25953655170486], [-2.882937433999861, 43.25950896345183], [-2.882980269911464, 43.25947515657402], [-2.883009301758559, 43.25943467345656], [-2.883028994344808, 43.25939030955789], [-2.883050110593436, 43.25934522688317], [-2.883080259690677, 43.25930483491743], [-2.883124317947554, 43.259269228664266], [-2.883168272666051, 43.25923461260138], [-2.883206438741457, 43.25919882024132], [-2.88325506150154, 43.25916690976478], [-2.883310976930116, 43.25914653035148], [-2.883369225532728, 43.25912795385911], [-2.883407763269647, 43.25911025753391], [-2.883405735868671, 43.259107914727146], [-2.883411526174938, 43.25910819071409], [-2.883766670540512, 43.25912223644717], [-2.883877907086664, 43.25912667078464], [-2.884327831512865, 43.259144412086854], [-2.884352415247509, 43.25914542725578], [-2.884414687420342, 43.25914792096202], [-2.884564628440754, 43.259153834188204], [-2.88459998040815, 43.259155220283546], [-2.884727877213822, 43.25916030079934], [-2.884766073635745, 43.25916177973807], [-2.884864408806799, 43.25916574997709], [-2.884864293150524, 43.25911929516694], [-2.884863961109964, 43.258972008243084], [-2.884863114235451, 43.25855877665735], [-2.884862745743941, 43.25837691874289], [-2.884862648578878, 43.25832065083961], [-2.884862367754177, 43.25820010240858], [-2.884862195782468, 43.2581835369931], [-2.884862057414457, 43.25809521890307], [-2.884861719951429, 43.25795081285915], [-2.884861470510131, 43.257813609179934], [-2.884861067249364, 43.257650207049196], [-2.884861093541833, 43.257636252658166], [-2.88486094124868, 43.25760924395481], [-2.884860799489439, 43.25752272642251], [-2.884860602261865, 43.25746564815357], [-2.884860290246785, 43.257307737843504], [-2.884859920253366, 43.25707276306761], [-2.884859412540813, 43.25685696421656], [-2.884859086279956, 43.25670661627056], [-2.884858570598221, 43.25649504873797], [-2.884858280300017, 43.25632561477226], [-2.884858288272398, 43.25632138343979], [-2.88485807612164, 43.25627222765368], [-2.88485781971588, 43.25619264218197], [-2.884964625255012, 43.25622759067341], [-2.884998809164936, 43.25620097660087], [-2.885019051707708, 43.25618695249933], [-2.885070916874447, 43.2561577453483], [-2.885129476504277, 43.256134036636055], [-2.885187826484686, 43.25611374876722], [-2.885244046452027, 43.25609165816136], [-2.885297625251506, 43.25606947485102], [-2.885358724247023, 43.256045858595705], [-2.885424079942786, 43.256027558254175], [-2.885486997650958, 43.25600916540623], [-2.885545347225137, 43.2559889673827], [-2.885606655793238, 43.25596184009174], [-2.885665319816267, 43.2559364206667], [-2.885723983958882, 43.25591091118305], [-2.885771074255102, 43.25588151888604], [-2.885903662000588, 43.25581899134847], [-2.885944368570997, 43.255780769816525], [-2.88599602490525, 43.25575417286305], [-2.886051026875767, 43.25573118035996], [-2.88610491318566, 43.25570719640574], [-2.886155453600637, 43.25567969798354], [-2.886211880688407, 43.255655086307485], [-2.886266676130108, 43.25563380403696], [-2.886315997528552, 43.25560621430298], [-2.886365836361798, 43.255573493435215], [-2.886421360357428, 43.255542758817974], [-2.886482356972749, 43.255519051830035], [-2.886542832567145, 43.255502366518385], [-2.886597830931569, 43.255481084289904], [-2.886649591488403, 43.25545277660098], [-2.886697900033746, 43.255423385127095], [-2.886734947537368, 43.25538578988668], [-2.886771994828585, 43.25534828466232], [-2.886810364373532, 43.25530988044866], [-2.886849746239799, 43.255273367822475], [-2.886889023306136, 43.2552385656211], [-2.886932065371825, 43.255200346042905], [-2.886976012008073, 43.25516734899729], [-2.887025645292357, 43.25513552792174], [-2.887068372790883, 43.255102529636254], [-2.887112427189145, 43.25506611155946], [-2.887154249954511, 43.25502789069325], [-2.887191400019602, 43.25498948514661], [-2.887218195528799, 43.25494710812372], [-2.887257474002419, 43.25491131548119], [-2.887296649017406, 43.254876513037004], [-2.88733055162549, 43.25483621364522], [-2.887361813113376, 43.254795821614046], [-2.887398756582915, 43.254759126337404], [-2.887432660550861, 43.25471801665894], [-2.887458342969373, 43.254673117683105], [-2.887485139646143, 43.254629930339505], [-2.887521171816544, 43.25459152358349], [-2.887573139166787, 43.25456060484754], [-2.887630472798226, 43.25453932441397], [-2.887689623517604, 43.25452425770549], [-2.887748670968575, 43.25451009115055], [-2.887809846734141, 43.25449862750891], [-2.887870911476072, 43.25449229535307], [-2.887928844713651, 43.254476327041885], [-2.887987295254538, 43.25445522758045], [-2.888047069666348, 43.25443232881365], [-2.888095376568349, 43.25440302677111], [-2.888143996089691, 43.25436940364319], [-2.888190487204338, 43.25433307755753], [-2.888232204080128, 43.25429656673118], [-2.888278485497871, 43.25426375151801], [-2.888330139534895, 43.25423715350092], [-2.888385350325631, 43.25420983870227], [-2.888494129149878, 43.25416466042175], [-2.889728169859608, 43.25333012148903]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:district:3", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "3", "alternateName": "district", "description": "Otxarkoaga-Txurdinaga", "val": 0}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.889728169859608, 43.25333012148903], [-2.889864153337049, 43.253238153262664], [-2.890469003762411, 43.252886632239864], [-2.890551148669497, 43.2529634152083], [-2.890630961394566, 43.25303794517272], [-2.89064678213287, 43.25305263495466], [-2.890722944042767, 43.25312383030666], [-2.89073622942345, 43.25313617691121], [-2.890923136517336, 43.25331074062242], [-2.890948198628498, 43.25332705968756], [-2.891014155841301, 43.253367635400615], [-2.89114335758732, 43.253432038816975], [-2.891331267829406, 43.2535006391852], [-2.891357154962941, 43.2535101167729], [-2.89149431514338, 43.25355526123622], [-2.891643787809237, 43.25358880351297], [-2.891840800804005, 43.25362311078121], [-2.892019444435323, 43.25364767728727], [-2.892225319327196, 43.25366857800154], [-2.892447038356071, 43.25369129381399], [-2.892672219326078, 43.25370951101659], [-2.892878216749704, 43.2537187069574], [-2.893132471415637, 43.253725336790616], [-2.893411406608073, 43.25373459988591], [-2.89360847592307, 43.25373739416457], [-2.893719330410599, 43.25372264249599], [-2.893853150585463, 43.25370350063231], [-2.894015152171591, 43.2536598069268], [-2.89425817491149, 43.25358224714298], [-2.894524981072995, 43.2534969663162], [-2.894757454377734, 43.25340976268522], [-2.895005689209509, 43.25331284996211], [-2.895204752466646, 43.253218412464264], [-2.895401989688313, 43.25312217237728], [-2.895454057395181, 43.25308890940139], [-2.895465548637531, 43.25308171761671], [-2.8958336740644, 43.25285113011882], [-2.896030751583544, 43.252728060279196], [-2.896196656978197, 43.252596409100555], [-2.89637464034293, 43.25247044042041], [-2.896610747916947, 43.252272681195016], [-2.896738301698449, 43.25217223447237], [-2.896989848401076, 43.251973858189125], [-2.897101151097566, 43.25187150582126], [-2.897219185031369, 43.251752954244076], [-2.897439966216762, 43.2515445561358], [-2.897551298764447, 43.25142347739995], [-2.897644553774757, 43.25129986157891], [-2.897681407423553, 43.25125118907341], [-2.897928061312466, 43.25093720958602], [-2.897933963315575, 43.25093100287805], [-2.898109606911817, 43.250680159689125], [-2.89819617012463, 43.25054771463737], [-2.898265539894741, 43.250431009235776], [-2.898351983919475, 43.25030873718813], [-2.898533710640582, 43.250062760270886], [-2.89853880091678, 43.25005592261041], [-2.898947239435981, 43.249631078936396], [-2.899897492943285, 43.24864285979346], [-2.900204110466439, 43.248356836588904], [-2.900401968865272, 43.248176591606146], [-2.900552193966157, 43.248054733473545], [-2.90071193564955, 43.24795187944749], [-2.900759417156388, 43.24792356162134], [-2.900894541029472, 43.24784292305749], [-2.90092260293191, 43.24782611200587], [-2.901288929583297, 43.2476077490743], [-2.901289844769674, 43.24760711966336], [-2.901539522034119, 43.24741341309043], [-2.901631975635118, 43.24733714831888], [-2.901742330582151, 43.24724559397529], [-2.901786575025595, 43.24720836010067], [-2.902245920662343, 43.246809116269525], [-2.902285285816951, 43.246773858660404], [-2.902313766948599, 43.24674840486955], [-2.903402629392019, 43.24604152399997], [-2.903488343174432, 43.245985328415316], [-2.90360303463709, 43.245910161134255], [-2.903752895307504, 43.24581863811026], [-2.90378390460534, 43.245799578113036], [-2.90382203038856, 43.245776382770885], [-2.903823657228501, 43.24577530379431], [-2.903844598893543, 43.245763887754734], [-2.903908542256957, 43.245728920322726], [-2.904166433574559, 43.24559823493604], [-2.904343816499592, 43.2455079045585], [-2.904521934977814, 43.24546655012908], [-2.90470858024199, 43.24542835352935], [-2.904810374264936, 43.24541547414457], [-2.905006240296547, 43.24539132920777], [-2.905192734454246, 43.245384731764894], [-2.905367444429976, 43.24537938467219], [-2.905545396150203, 43.24537953173986], [-2.905792746546615, 43.2453629003356], [-2.905806561533979, 43.24536201142452], [-2.905810929485403, 43.24536174493486], [-2.905864361575773, 43.245357917681574], [-2.905905908516483, 43.245354980915195], [-2.9060136238469, 43.24532220898745], [-2.90610438923819, 43.24528132046422], [-2.906285095639717, 43.245207014907585], [-2.906374911250658, 43.24518917273816], [-2.906568301108554, 43.24518933084838], [-2.906893876959455, 43.24522803854674], [-2.907269342333036, 43.24525490198126], [-2.907291383113078, 43.24525491984538], [-2.90794009356923, 43.245268587915405], [-2.908038302704765, 43.24527496891462], [-2.908372356044469, 43.245283159490356], [-2.908642799313817, 43.245309394078255], [-2.908936864233648, 43.24536553636037], [-2.909239571891709, 43.245415832878024], [-2.909693903003733, 43.245481283179465], [-2.910111041077433, 43.24555966658929], [-2.910376286141681, 43.24559957735498], [-2.911169671059573, 43.24573046769353], [-2.911365550638937, 43.2457660009035], [-2.911603715624644, 43.2457797795167], [-2.911741940905891, 43.24578906916802], [-2.911969130010747, 43.24580724995785], [-2.912220082558448, 43.24582850950868], [-2.912465872799513, 43.24583743062829], [-2.912667801110753, 43.24583452398505], [-2.912676129964977, 43.24583453034307], [-2.912821986357349, 43.24583473161635], [-2.913026357736524, 43.245828044996884], [-2.91327755590091, 43.245819682975174], [-2.913299496465941, 43.24581888934755], [-2.913558045501506, 43.245783793759266], [-2.913893080818809, 43.2457463244084], [-2.91411862059494, 43.245709762242775], [-2.914270408857219, 43.2456807067969], [-2.914436639097416, 43.24563806761932], [-2.914496895799848, 43.24562019696202], [-2.914695354744691, 43.245555344403996], [-2.914876849436495, 43.24549155922345], [-2.915013546680509, 43.24543089148721], [-2.915030419308664, 43.24542235129439], [-2.915472521540089, 43.24515421322995], [-2.915612654628002, 43.24503169759316], [-2.915723941561058, 43.24490898047748], [-2.916113657921513, 43.24447037695437], [-2.916125559296055, 43.244457421546116], [-2.916257955935333, 43.244345342762095], [-2.916366554460759, 43.24425557354868], [-2.916491322492791, 43.24415087126809], [-2.916625545046846, 43.24403951361512], [-2.91665441760202, 43.24401963830689], [-2.916805383500957, 43.24391918611296], [-2.916924334536926, 43.24383374527017], [-2.917087168450348, 43.24374401473722], [-2.917238309769588, 43.24366300829902], [-2.917561532691029, 43.24348723551656], [-2.917815938655314, 43.24335165524058], [-2.919522937733118, 43.24269052740374], [-2.920881300359133, 43.242364850636136], [-2.92119964899506, 43.24233256998741], [-2.921556140813718, 43.24241465112333], [-2.922182322694155, 43.242631597919065], [-2.922603902777931, 43.242889006000624], [-2.922756244253653, 43.24305647238958], [-2.922972651058955, 43.24332391361953], [-2.923084552716575, 43.24358642266019], [-2.923128506456512, 43.24376795011733], [-2.923100469802153, 43.24425552683026], [-2.922789507030771, 43.24486634224922], [-2.922650505620516, 43.244989137533665], [-2.922405511638461, 43.245154624436516], [-2.92214956723071, 43.24530398822082], [-2.921791109241361, 43.24547470822036], [-2.921366941449535, 43.24571758495692], [-2.921129097596311, 43.245925747618756], [-2.92089869563851, 43.2461901828539], [-2.920812551845709, 43.246433650849184], [-2.920760955775375, 43.246666609348885], [-2.920733955793633, 43.24696575593727], [-2.920738829268873, 43.2472023546659], [-2.920747681357076, 43.24750404686687], [-2.920849000419413, 43.247779604725636], [-2.921401723213012, 43.24994904595396], [-2.921438054523785, 43.25013335950793], [-2.921454017988605, 43.250358351998294], [-2.921525562190839, 43.25064946362361], [-2.921609154118717, 43.25089331842434], [-2.921034986864234, 43.251001047894434], [-2.920508591454611, 43.25139725934235], [-2.919691040769683, 43.251109947210914], [-2.918998624209524, 43.25091427699504], [-2.918842070506737, 43.25100509493328], [-2.918059437597401, 43.251277053618345], [-2.918113922158699, 43.25140079193541], [-2.918139445598747, 43.25160841615997], [-2.918069800884638, 43.25180597907736], [-2.917952528061562, 43.25199297444986], [-2.917802403231979, 43.252134391627685], [-2.917707240780643, 43.252270536469425], [-2.917644990336424, 43.25240688498435], [-2.917582660703962, 43.252601751985694], [-2.917490987534649, 43.252785974413165], [-2.917384700060198, 43.25295965286406], [-2.917267636745758, 43.253063731327956], [-2.917079787469055, 43.25315434412471], [-2.917545541811613, 43.25376174343835], [-2.917737808938986, 43.25401243135556], [-2.917982375524556, 43.25427702084562], [-2.918716030293333, 43.25496140138942], [-2.918759461160549, 43.25530336065621], [-2.917534829437681, 43.255150966361484], [-2.91700902378549, 43.25506983050594], [-2.914793454469351, 43.254604014510576], [-2.914612526158331, 43.254679233503005], [-2.913759465766153, 43.255140259972904], [-2.914048856378668, 43.255450986214555], [-2.914157414419197, 43.25562338235057], [-2.914042922526471, 43.25605849430889], [-2.914086892025771, 43.25636057304955], [-2.914130598421725, 43.25656100935929], [-2.914166791269674, 43.256758739152424], [-2.914173959737726, 43.256935020368275], [-2.914176168536611, 43.25709833375145], [-2.914034609070946, 43.257202030335314], [-2.914062037412942, 43.25734726693178], [-2.914096376622991, 43.25741841524578], [-2.914380598170956, 43.257511897859985], [-2.914731968660563, 43.25768078369676], [-2.914944224805246, 43.25758470123995], [-2.915273474043247, 43.257443420758875], [-2.915530126687627, 43.257345119371664], [-2.915806686998568, 43.25732290615212], [-2.916143414520842, 43.25735592386172], [-2.916362515332042, 43.25745223471033], [-2.916567027389181, 43.25759390886574], [-2.916753155824586, 43.25773304847741], [-2.916913767669554, 43.25788540344254], [-2.917110938790106, 43.25804849806582], [-2.917238672653004, 43.258174180303726], [-2.917366378188031, 43.25832119912911], [-2.917548803809513, 43.258572330197694], [-2.917585121300318, 43.25876204639517], [-2.917588364364931, 43.259069225923746], [-2.917595473665826, 43.259221559236316], [-2.918494169601966, 43.25960419391622], [-2.918808559170809, 43.25956165396067], [-2.919538657223186, 43.2602246893304], [-2.919333794428088, 43.26033681054758], [-2.919081165283802, 43.26046069134558], [-2.918756891314785, 43.26059856516256], [-2.918478093035347, 43.26068875539142], [-2.918181850963942, 43.26075534500876], [-2.917874755350663, 43.26080860185528], [-2.91744706429714, 43.26086177091225], [-2.917159754489712, 43.2608580521035], [-2.916764187557942, 43.260896117085224], [-2.916356864889143, 43.26091229518959], [-2.915925060013121, 43.261664796525245], [-2.91575242562176, 43.26182645062308], [-2.91523902974183, 43.26132875425151], [-2.913629800594899, 43.259768887852495], [-2.913355415129862, 43.25939533227373], [-2.913275853509432, 43.259261669722804], [-2.913225253796103, 43.25912280743445], [-2.912964295113861, 43.258741428581516], [-2.912800581931357, 43.25834715917352], [-2.912616425806814, 43.25775733198499], [-2.912458714487796, 43.257502700820694], [-2.911639912826967, 43.25664508987677], [-2.911359753694321, 43.25634795906765], [-2.911124631687293, 43.256099567990454], [-2.910738497245325, 43.25567973438501], [-2.910180592305114, 43.25504702725752], [-2.909980817, 43.25480892477588], [-2.909893252620291, 43.25473791333975], [-2.909115702209074, 43.25385582863579], [-2.908260290863987, 43.25288535806308], [-2.90793699615194, 43.252518501954036], [-2.907727181079408, 43.252280477381326], [-2.907224891246049, 43.25165563280235], [-2.90584108640089, 43.250050012264666], [-2.905614797288644, 43.249834657369554], [-2.905419665582054, 43.24970341452344], [-2.905331359683253, 43.24966021776675], [-2.905184282759439, 43.24958969357022], [-2.904956981372549, 43.24950532817915], [-2.904697465160078, 43.24943083865167], [-2.904416458645886, 43.249393512406336], [-2.904205110040873, 43.24937181877642], [-2.904063200552058, 43.2493755710858], [-2.903934889947833, 43.24938725715943], [-2.903549311727996, 43.24944554135898], [-2.903227972444519, 43.24954106044299], [-2.902772740984082, 43.249771597875764], [-2.902477985827457, 43.249947352943586], [-2.902244841692962, 43.25008804874867], [-2.900948245349249, 43.250869552180994], [-2.900562412632206, 43.251139213245914], [-2.899798962946822, 43.25161785935421], [-2.898842537313126, 43.25219410089308], [-2.897810918989324, 43.25283301715023], [-2.897374324259125, 43.2530693114373], [-2.896959262477548, 43.253245034217066], [-2.895863855574096, 43.25361955145628], [-2.894530266169585, 43.254084047445865], [-2.893782968079078, 43.25433930720005], [-2.89359330049815, 43.25440179080828], [-2.893422154092707, 43.25444538536234], [-2.893249711832444, 43.25447466391108], [-2.89306611261856, 43.2544938485733], [-2.892802593724654, 43.25449675293857], [-2.892530669945906, 43.25448443397598], [-2.892305496793035, 43.25446018459129], [-2.892069885143926, 43.254421970489645], [-2.891834401188556, 43.25436917139769], [-2.891479422414707, 43.25427637587555], [-2.891290670838166, 43.254222449614694], [-2.891113298418257, 43.25416781364524], [-2.890910765997076, 43.2540947875845], [-2.890649282318968, 43.25398308257636], [-2.890386904388447, 43.25386075274147], [-2.890136959814962, 43.253716737360044], [-2.889811206100095, 43.25347577769593], [-2.889728169859608, 43.25333012148903]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:district:4", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "4", "alternateName": "district", "description": "Bego\u00f1a", "val": 57}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.909728578089982, 43.2195844071653], [-2.909799993266462, 43.21941880993749], [-2.913180839092726, 43.21843443636056], [-2.915141981646603, 43.21765463503313], [-2.919186585257674, 43.21660836391547], [-2.923223106380846, 43.215420598376966], [-2.925273593978408, 43.214700012094674], [-2.929145689788864, 43.21371089419185], [-2.931600308759199, 43.215154475637256], [-2.934832203068227, 43.21564351012044], [-2.937040011590637, 43.21631195259075], [-2.937886126456129, 43.21658601371593], [-2.940035831137167, 43.21683789185959], [-2.943070473428127, 43.217266540482505], [-2.944481803441664, 43.21755397690355], [-2.946248730764399, 43.21756085266776], [-2.946520690670491, 43.218285804697686], [-2.947489891977969, 43.21895336947437], [-2.94749180847281, 43.21896795507145], [-2.947050592034757, 43.219297438342004], [-2.946832945497867, 43.2194985524695], [-2.946602752987204, 43.21964816367052], [-2.946504127752143, 43.219695652964646], [-2.946403791092692, 43.21984226341817], [-2.946246660974756, 43.22003269128249], [-2.946066035314755, 43.22015486579218], [-2.945818596261207, 43.22039908784782], [-2.945801705342229, 43.22055555041573], [-2.945845058372163, 43.22067035804043], [-2.945988440198585, 43.22099065929731], [-2.945998470380595, 43.22112984900033], [-2.945710558484172, 43.22166979719459], [-2.945650100729308, 43.22195083926035], [-2.945607871503578, 43.22251287066319], [-2.94566102231496, 43.22302912254914], [-2.945557622022961, 43.22364352166062], [-2.945510879123092, 43.22436904344135], [-2.945464336317854, 43.22498274915834], [-2.945430513056608, 43.22579245402046], [-2.945290772685615, 43.22581903586689], [-2.9451209152229, 43.22580112876761], [-2.944811440768901, 43.225785494903214], [-2.944353196960737, 43.22578752365032], [-2.94406511270648, 43.22569870458216], [-2.943949729052066, 43.22562761521737], [-2.9438497083628, 43.22552331256992], [-2.943761644609134, 43.22555649001989], [-2.943728374345214, 43.22562975727804], [-2.943743253103024, 43.22579163676101], [-2.943976404822354, 43.226213357021216], [-2.943964179501845, 43.226257735333085], [-2.943918732579895, 43.22632208380129], [-2.943991458853728, 43.226406476605014], [-2.944464451019777, 43.22671739727072], [-2.944737396532323, 43.226934859439474], [-2.945192272431329, 43.22718814976188], [-2.945701859240282, 43.227467842737745], [-2.945686625243764, 43.22758541336009], [-2.945556131735342, 43.227714182806686], [-2.945404643155846, 43.22781539321629], [-2.94522513920455, 43.22790470618813], [-2.944994420324063, 43.22803549762194], [-2.944642213795128, 43.228212954902794], [-2.944041268858658, 43.228343564659504], [-2.943482712860616, 43.228531900774435], [-2.943091065389102, 43.228746965879736], [-2.942830025033082, 43.228826691419066], [-2.942623470760355, 43.22905949293544], [-2.942416882273105, 43.22921910051005], [-2.942377551382595, 43.22925455211553], [-2.942383346887046, 43.22935439714685], [-2.942389432374073, 43.229469817331136], [-2.942398441818012, 43.22960738610711], [-2.942389187833539, 43.22972946070405], [-2.942358668002624, 43.2297893145817], [-2.942334460531667, 43.229831525958836], [-2.942279698530976, 43.2298625583291], [-2.942203817159423, 43.22989141931058], [-2.942143175986225, 43.22991128505546], [-2.942037059313615, 43.229913482062926], [-2.941851227823444, 43.22991770914742], [-2.941630269974542, 43.22991327523447], [-2.941420968710682, 43.2299309039559], [-2.941329924853135, 43.22999288724434], [-2.941263020743549, 43.23008387217618], [-2.94119915215322, 43.230185932187574], [-2.941120131643999, 43.23031022151238], [-2.941092607493873, 43.23042112299613], [-2.941053252626747, 43.23058522547703], [-2.94101044488344, 43.23074941618823], [-2.941013362867484, 43.23088257048342], [-2.94102236725085, 43.23102239005408], [-2.941028178839548, 43.231208752929696], [-2.941028054714642, 43.23133749422832], [-2.941009828589092, 43.23138844120227], [-2.940918668484329, 43.2315680918874], [-2.940799993144053, 43.231847660356365], [-2.940675245364871, 43.23210498839846], [-2.940605255491296, 43.232442200375765], [-2.940510709238695, 43.23275941310727], [-2.940443805121376, 43.23295032959361], [-2.940364539691633, 43.23321641371835], [-2.94023997076783, 43.23349381775936], [-2.940227695787257, 43.23358474052447], [-2.940191121270665, 43.23380889333651], [-2.940209006619581, 43.234004085304456], [-2.940208739757229, 43.234277052727684], [-2.940235541330558, 43.234805086073685], [-2.940195939046923, 43.235009250849274], [-2.940156271856537, 43.23517569347629], [-2.940116773441972, 43.235273264094324], [-2.940040797393067, 43.23539080199114], [-2.939916159115924, 43.23552604997257], [-2.939800800922339, 43.235621509944416], [-2.939515367673754, 43.235789893404565], [-2.939478848035707, 43.23585199399886], [-2.939499980822736, 43.23594518503831], [-2.939669640225982, 43.2362936862789], [-2.939790706405972, 43.23659111532962], [-2.93982400163458, 43.23681296390761], [-2.939835936192371, 43.23696610923488], [-2.939945329319021, 43.23725957067891], [-2.940005442765417, 43.23747522126431], [-2.940044557181865, 43.23766736328362], [-2.940077732770043, 43.23790919808135], [-2.940123117348494, 43.23812889216125], [-2.940122952147561, 43.23829760607443], [-2.940101466123858, 43.238459556660345], [-2.940070851989828, 43.238712521581036], [-2.940034458095272, 43.238852317245964], [-2.939982680656012, 43.23904081040835], [-2.939854819829444, 43.23934702123363], [-2.939760284238675, 43.239535491790875], [-2.939681339341455, 43.23967085349815], [-2.939359158109217, 43.24021202627047], [-2.939170621382171, 43.24055583611773], [-2.939137112269018, 43.24065124879897], [-2.939127832511855, 43.24079096852104], [-2.939170307906689, 43.2408709366656], [-2.939215737609766, 43.240941993514625], [-2.939306667930803, 43.241012984465016], [-2.939382593474702, 43.241057318876614], [-2.939488793721512, 43.24109293646464], [-2.93964345318844, 43.241115165244544], [-2.93978321562806, 43.24110416535895], [-2.939913658144073, 43.24106876261117], [-2.940041187744824, 43.24100013757129], [-2.940156641951447, 43.24092034250447], [-2.940238666442599, 43.240856014810404], [-2.940329786191903, 43.24073398335651], [-2.940402730139388, 43.24060753094986], [-2.940466682138261, 43.24043236824497], [-2.940476114417429, 43.24023710072563], [-2.940543073689713, 43.239893135555], [-2.940613068725402, 43.23976893218258], [-2.940688984590252, 43.23971792524236], [-2.940777066136458, 43.23968916166165], [-2.940883204081859, 43.23968255442808], [-2.940983315569684, 43.239711505360034], [-2.941092632980076, 43.23977809297957], [-2.941150253655269, 43.239846904631214], [-2.941210692564424, 43.23994236622261], [-2.941268342624145, 43.24008662195081], [-2.941295462596851, 43.24029514253469], [-2.941298081971847, 43.240634642407194], [-2.941309799475635, 43.241018531111656], [-2.94129754306358, 43.24119597152792], [-2.941264038332567, 43.24139563813475], [-2.941212337049502, 43.241506617044145], [-2.941090816042396, 43.2416640148366], [-2.940957000635914, 43.24182599761756], [-2.940783909007993, 43.24195680996403], [-2.940586505980828, 43.242125241440895], [-2.940474445979612, 43.24215957417071], [-2.940148816755241, 43.24227410090084], [-2.939999570239888, 43.2423216479295], [-2.938849690228934, 43.24268133410056], [-2.938045122092678, 43.2429427047813], [-2.937796229583167, 43.24299586673132], [-2.93753651295667, 43.243005988492506], [-2.937276013912828, 43.24298666983731], [-2.93707120795628, 43.24293398057581], [-2.936694638174552, 43.24279773938244], [-2.935229263347688, 43.242197867810305], [-2.934834844969201, 43.24204450490773], [-2.93441914665935, 43.24194226477769], [-2.934118770129334, 43.24189320657294], [-2.933806155719383, 43.24189086542337], [-2.933529882380836, 43.241906190177154], [-2.933186822497867, 43.24197477230044], [-2.932861886053617, 43.242094320306244], [-2.932512694779696, 43.24228722651207], [-2.932384991058428, 43.24241139077786], [-2.932239228525424, 43.24260873757317], [-2.93213268927164, 43.242788461818556], [-2.932047550442248, 43.242994757150825], [-2.93196973929315, 43.243187192344806], [-2.931862465393194, 43.243386542146986], [-2.931718805958555, 43.24378888491092], [-2.931785360288635, 43.24403758395238], [-2.931982166616885, 43.24434154806674], [-2.932085230426457, 43.2445502958625], [-2.932078929327849, 43.24473656152814], [-2.931951254434841, 43.24492068439309], [-2.931623026957723, 43.245242161243965], [-2.93173522253832, 43.245368808604994], [-2.931829061561275, 43.245470957109546], [-2.932004834590882, 43.24569514314874], [-2.932174730042877, 43.24590825189534], [-2.932329207479323, 43.246103525581866], [-2.932579259098395, 43.24639662657308], [-2.932892499044276, 43.246682831879276], [-2.93330875741074, 43.24695064053895], [-2.933835768851195, 43.24728090165134], [-2.934328040171801, 43.247523452457735], [-2.934699837455145, 43.24768058525645], [-2.93496036520133, 43.24778642732598], [-2.935232653641828, 43.247913882338146], [-2.935549719534527, 43.248155068131155], [-2.935697238949558, 43.248414343646665], [-2.935744747501765, 43.248635120595715], [-2.935696687671319, 43.24893840010509], [-2.935612337946128, 43.249073845769935], [-2.93547427457265, 43.249285605371696], [-2.935220227175293, 43.24957571412084], [-2.934966132154752, 43.249908315777255], [-2.934926541745773, 43.24998013610967], [-2.934749099847793, 43.25034618145713], [-2.934612668823821, 43.25073574742329], [-2.934563451465274, 43.251069725439194], [-2.934572615671163, 43.251333874620904], [-2.934579133933881, 43.25160261373526], [-2.9345840623577, 43.25202809171587], [-2.934551190058976, 43.252370001512226], [-2.934441821237744, 43.25271582872323], [-2.934299905857046, 43.25309755852434], [-2.933247111273285, 43.25568563021849], [-2.931945478902035, 43.257042223384175], [-2.931723941541543, 43.25728750910684], [-2.929555011048876, 43.25735173478669], [-2.927921364650774, 43.25852973037834], [-2.92645514279221, 43.25965811443433], [-2.925639951940306, 43.260490260740724], [-2.925083616275467, 43.26023898842331], [-2.924789700688523, 43.26056910999169], [-2.924437670476804, 43.26097994793659], [-2.924271163202753, 43.261218053113524], [-2.924111116160827, 43.261488932678226], [-2.923931764211119, 43.26175970914208], [-2.923797346218584, 43.26200719788774], [-2.92370191780319, 43.262191962657944], [-2.923669699568366, 43.26244510111669], [-2.923680124495149, 43.26272095517663], [-2.923731248949343, 43.263030597022876], [-2.92383136262938, 43.26324493136561], [-2.923146371958722, 43.26364915093913], [-2.922994386433548, 43.26380263719658], [-2.922864080244369, 43.26400574352016], [-2.922761112765844, 43.264202025991885], [-2.922747114977676, 43.26442465677493], [-2.922733072224819, 43.26468275870496], [-2.922658633760642, 43.264814509969995], [-2.922520285656948, 43.26494693814185], [-2.922347214106072, 43.26505926624669], [-2.922197863473272, 43.26513397835717], [-2.921477787474808, 43.26537998406615], [-2.92105971716391, 43.26551392864708], [-2.920961768571996, 43.265515571552086], [-2.920835757409609, 43.2654540850605], [-2.92079381485042, 43.26536033647997], [-2.920836027594716, 43.26524557950964], [-2.921628097449909, 43.26495461298594], [-2.921931308528166, 43.26485407854707], [-2.922052868077606, 43.264741355865375], [-2.922058468727907, 43.264572286355076], [-2.9219318333533, 43.26444336936525], [-2.921672874820825, 43.264423025983504], [-2.921520269132819, 43.264501246096415], [-2.92111497955597, 43.26481372597362], [-2.920839802219301, 43.26492012949756], [-2.920289084781974, 43.264941533945425], [-2.919594718037043, 43.26494915054774], [-2.919065563288971, 43.26495282866629], [-2.918431955108478, 43.264960391153416], [-2.918112951228553, 43.264937656145364], [-2.917798560792482, 43.26488440393836], [-2.917657593365592, 43.26484153906822], [-2.91732404169241, 43.26468302857012], [-2.916959919208308, 43.26429303189475], [-2.916999215758099, 43.26401118148551], [-2.917039413150898, 43.2637390547703], [-2.917034271081211, 43.26348544100689], [-2.916951827850431, 43.26321952727373], [-2.916302897990075, 43.262409608761956], [-2.91575242562176, 43.26182645062308], [-2.91575242562176, 43.26182645062308], [-2.915925060013121, 43.261664796525245], [-2.916356864889143, 43.26091229518959], [-2.916764187557942, 43.260896117085224], [-2.917159754489712, 43.2608580521035], [-2.91744706429714, 43.26086177091225], [-2.917874755350663, 43.26080860185528], [-2.918181850963942, 43.26075534500876], [-2.918478093035347, 43.26068875539142], [-2.918756891314785, 43.26059856516256], [-2.919081165283802, 43.26046069134558], [-2.919333794428088, 43.26033681054758], [-2.919538657223186, 43.2602246893304], [-2.918808559170809, 43.25956165396067], [-2.918494169601966, 43.25960419391622], [-2.917595473665826, 43.259221559236316], [-2.917588364364931, 43.259069225923746], [-2.917585121300318, 43.25876204639517], [-2.917548803809513, 43.258572330197694], [-2.917366378188031, 43.25832119912911], [-2.917238672653004, 43.258174180303726], [-2.917110938790106, 43.25804849806582], [-2.916913767669554, 43.25788540344254], [-2.916753155824586, 43.25773304847741], [-2.916567027389181, 43.25759390886574], [-2.916362515332042, 43.25745223471033], [-2.916143414520842, 43.25735592386172], [-2.915806686998568, 43.25732290615212], [-2.915530126687627, 43.257345119371664], [-2.915273474043247, 43.257443420758875], [-2.914944224805246, 43.25758470123995], [-2.914731968660563, 43.25768078369676], [-2.914380598170956, 43.257511897859985], [-2.914096376622991, 43.25741841524578], [-2.914062037412942, 43.25734726693178], [-2.914034609070946, 43.257202030335314], [-2.914176168536611, 43.25709833375145], [-2.914173959737726, 43.256935020368275], [-2.914166791269674, 43.256758739152424], [-2.914130598421725, 43.25656100935929], [-2.914086892025771, 43.25636057304955], [-2.914042922526471, 43.25605849430889], [-2.914157414419197, 43.25562338235057], [-2.914048856378668, 43.255450986214555], [-2.913759465766153, 43.255140259972904], [-2.914612526158331, 43.254679233503005], [-2.914793454469351, 43.254604014510576], [-2.91700902378549, 43.25506983050594], [-2.917534829437681, 43.255150966361484], [-2.918759461160549, 43.25530336065621], [-2.918716030293333, 43.25496140138942], [-2.917982375524556, 43.25427702084562], [-2.917737808938986, 43.25401243135556], [-2.917545541811613, 43.25376174343835], [-2.917079787469055, 43.25315434412471], [-2.917267636745758, 43.253063731327956], [-2.917384700060198, 43.25295965286406], [-2.917490987534649, 43.252785974413165], [-2.917582660703962, 43.252601751985694], [-2.917644990336424, 43.25240688498435], [-2.917707240780643, 43.252270536469425], [-2.917802403231979, 43.252134391627685], [-2.917952528061562, 43.25199297444986], [-2.918069800884638, 43.25180597907736], [-2.918139445598747, 43.25160841615997], [-2.918113922158699, 43.25140079193541], [-2.918059437597401, 43.251277053618345], [-2.918842070506737, 43.25100509493328], [-2.918998624209524, 43.25091427699504], [-2.919691040769683, 43.251109947210914], [-2.920508591454611, 43.25139725934235], [-2.921034986864234, 43.251001047894434], [-2.921609154118717, 43.25089331842434], [-2.921525562190839, 43.25064946362361], [-2.921454017988605, 43.250358351998294], [-2.921438054523785, 43.25013335950793], [-2.921401723213012, 43.24994904595396], [-2.920849000419413, 43.247779604725636], [-2.920747681357076, 43.24750404686687], [-2.920738829268873, 43.2472023546659], [-2.920733955793633, 43.24696575593727], [-2.920760955775375, 43.246666609348885], [-2.920812551845709, 43.246433650849184], [-2.92089869563851, 43.2461901828539], [-2.921129097596311, 43.245925747618756], [-2.921366941449535, 43.24571758495692], [-2.921791109241361, 43.24547470822036], [-2.92214956723071, 43.24530398822082], [-2.922405511638461, 43.245154624436516], [-2.922650505620516, 43.244989137533665], [-2.922789507030771, 43.24486634224922], [-2.923100469802153, 43.24425552683026], [-2.923128506456512, 43.24376795011733], [-2.923084552716575, 43.24358642266019], [-2.922972651058955, 43.24332391361953], [-2.922756244253653, 43.24305647238958], [-2.922603902777931, 43.242889006000624], [-2.922182322694155, 43.242631597919065], [-2.921556140813718, 43.24241465112333], [-2.92119964899506, 43.24233256998741], [-2.920881300359133, 43.242364850636136], [-2.920881300359133, 43.242364850636136], [-2.919922071226255, 43.240768603495845], [-2.920468254519605, 43.24023970533695], [-2.920477336889402, 43.240050201064065], [-2.920250526384032, 43.239834064119], [-2.919577672675408, 43.23906834834083], [-2.919496863255399, 43.23842647615811], [-2.918915446467968, 43.23780648723706], [-2.91846139206394, 43.2368072046466], [-2.917576637408686, 43.23597416394884], [-2.917108718131565, 43.23571490289126], [-2.915856615276886, 43.23514986798489], [-2.91517439066617, 43.234261499470804], [-2.913808548788446, 43.233659265717336], [-2.913600296912545, 43.23342251271543], [-2.91305736339312, 43.23252370304416], [-2.913148986842402, 43.23236244084587], [-2.913310551099318, 43.232291080438195], [-2.913103049788921, 43.23188804364634], [-2.913022899891182, 43.23176509327204], [-2.912923017995316, 43.231664635050336], [-2.91285100124014, 43.23160687167674], [-2.912741736920044, 43.231534855284146], [-2.912566405958072, 43.23143442920307], [-2.912263261430318, 43.231239464561604], [-2.91211082648149, 43.23117749768458], [-2.911915962591756, 43.23110343406734], [-2.911781275006274, 43.231058135764215], [-2.911627096883485, 43.2310085008593], [-2.911491494237909, 43.23096428185455], [-2.911452524419173, 43.230947596346844], [-2.911318573669392, 43.23088483245626], [-2.911228066131987, 43.230835156321675], [-2.911094152630121, 43.23074709406697], [-2.910990980102873, 43.23067823173832], [-2.910896177080502, 43.23058020646103], [-2.910760599936309, 43.23044991894636], [-2.910666731270569, 43.230338389863576], [-2.910566134168062, 43.2301757190051], [-2.910471391506473, 43.23003745047827], [-2.910379229446346, 43.22987082477428], [-2.910237223809957, 43.22962520450739], [-2.910018275470761, 43.22922341335801], [-2.909718998568338, 43.2286912864918], [-2.908707909611872, 43.227823505149004], [-2.906795817224218, 43.22679932411101], [-2.905947304093128, 43.22610261550294], [-2.906604094805239, 43.22501344243666], [-2.908279711491915, 43.222945390690256], [-2.909728578089982, 43.2195844071653]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:district:5", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "5", "alternateName": "district", "description": "Ibaiondo", "val": 39}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.936220985248524, 43.26990470603399], [-2.936220985248524, 43.26990470603399], [-2.933593739663279, 43.26979103576935], [-2.932721156158106, 43.26964918143677], [-2.932319911187614, 43.26954190107311], [-2.931929364137986, 43.269410047934855], [-2.931797032531497, 43.269349920221835], [-2.93152495607848, 43.26922650890604], [-2.931240614985482, 43.26907725143941], [-2.93012561439008, 43.2682173453828], [-2.928487738379802, 43.26695395567046], [-2.925759618188997, 43.26484942488143], [-2.923997783641821, 43.26349036948896], [-2.923877562164898, 43.2633494851103], [-2.92383136262938, 43.26324493136561], [-2.923731248949343, 43.263030597022876], [-2.923680124495149, 43.26272095517663], [-2.923669699568366, 43.26244510111669], [-2.92370191780319, 43.262191962657944], [-2.923797346218584, 43.26200719788774], [-2.923931764211119, 43.26175970914208], [-2.924111116160827, 43.261488932678226], [-2.924271163202753, 43.261218053113524], [-2.924437670476804, 43.26097994793659], [-2.924789700688523, 43.26056910999169], [-2.925083616275467, 43.26023898842331], [-2.925639951940306, 43.260490260740724], [-2.92645514279221, 43.25965811443433], [-2.927921364650774, 43.25852973037834], [-2.929555011048876, 43.25735173478669], [-2.931723941541543, 43.25728750910684], [-2.931945478902035, 43.257042223384175], [-2.933247111273285, 43.25568563021849], [-2.933305052158222, 43.2562113406256], [-2.933375844071683, 43.25641187541006], [-2.933489224924811, 43.25659172835284], [-2.933654627856012, 43.256764679164384], [-2.933824712267632, 43.25693079027244], [-2.93394288445629, 43.25700342155742], [-2.93426422342882, 43.257183393609544], [-2.934387038181874, 43.25719084645595], [-2.935749458889147, 43.25729497251404], [-2.937083474186009, 43.25736476586202], [-2.937669809384443, 43.25741001106773], [-2.938880813208522, 43.25746945311353], [-2.940006483054347, 43.25752883761806], [-2.941506003401681, 43.25759524498537], [-2.943596856850549, 43.25769667678909], [-2.943975163409129, 43.25771756924686], [-2.944590158976952, 43.257759371929374], [-2.94583887610939, 43.257808405296075], [-2.946084822770301, 43.257815363643495], [-2.946244968306993, 43.258927651065406], [-2.946286903323427, 43.25918497217786], [-2.946329008765827, 43.25936432867871], [-2.946419263493165, 43.25966713676415], [-2.946565814295026, 43.25995673688699], [-2.946706345041622, 43.26016116707186], [-2.946838985637106, 43.2603272412838], [-2.94707806749325, 43.26053018627093], [-2.94683384159344, 43.261101663709375], [-2.946396523312826, 43.262311351892], [-2.946033747703507, 43.26319300977819], [-2.945646803497101, 43.264162882734254], [-2.945203244549726, 43.26525633608869], [-2.947327185588687, 43.2658277536262], [-2.947647899717732, 43.26576992257421], [-2.948167268393774, 43.265690573995826], [-2.948537565691643, 43.265630692251165], [-2.94880258665179, 43.26558696734753], [-2.94916669008797, 43.265520778805985], [-2.949518289779776, 43.265461425744824], [-2.949733112843145, 43.26542262808187], [-2.949909931394495, 43.26538912505505], [-2.950122118428008, 43.26534276312223], [-2.950351583057753, 43.26528992625149], [-2.950810828453814, 43.266052034849864], [-2.950119316287103, 43.26628589921041], [-2.946047072250705, 43.267663015449216], [-2.945129055864785, 43.267991182255564], [-2.944694239611807, 43.26814114013764], [-2.94458761892668, 43.26817782010341], [-2.944008877482006, 43.26837614081313], [-2.943430136617255, 43.26856977711453], [-2.942754930342045, 43.26879991375084], [-2.942004709845796, 43.26905206532597], [-2.941535124382266, 43.26920541461459], [-2.941099479526594, 43.269353557809566], [-2.940830644867825, 43.26943057334333], [-2.940626034390812, 43.26950059938804], [-2.939857790823712, 43.2696703515841], [-2.939316234715834, 43.26974118794736], [-2.938821033034044, 43.26979115997708], [-2.938637707562993, 43.26980969764579], [-2.938005839277664, 43.26985779218709], [-2.937536685039381, 43.26987167141488], [-2.936220985248524, 43.26990470603399]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:district:6", "properties": {"fill": "#630000", "fill-opacity": 0.5, "type": "GtfsShape", "name": "6", "alternateName": "district", "description": "Abando", "val": 381}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.94749180847281, 43.21896795507145], [-2.947817805010692, 43.221475504698056], [-2.947763079706943, 43.22361619079329], [-2.948061428146491, 43.22392818724039], [-2.948827266632787, 43.22434140553613], [-2.949894809454216, 43.225091099653305], [-2.950244118441655, 43.22543921427289], [-2.950894551163612, 43.225840394513106], [-2.953155190931001, 43.22625007422207], [-2.958410854636319, 43.22922873380035], [-2.961407665108747, 43.23092628944888], [-2.96639477787115, 43.23157400072244], [-2.968880457390989, 43.23218879113157], [-2.968880457390989, 43.23218879113157], [-2.965246520347306, 43.23953608005754], [-2.961772391214944, 43.246569727654375], [-2.961212401221812, 43.24772109594799], [-2.960437200951942, 43.248792801715474], [-2.959365133327944, 43.25006038929222], [-2.95546919034658, 43.25006037953015], [-2.95531773834697, 43.24991924561063], [-2.955193223241603, 43.24975354422383], [-2.953712382138758, 43.24993616289255], [-2.952711028585314, 43.25006026293398], [-2.952511216284601, 43.25020044476415], [-2.950175194936792, 43.25183824203204], [-2.950199503156211, 43.25217513963143], [-2.950766355305766, 43.253405985737615], [-2.95045169310051, 43.25560551765748], [-2.950482774966257, 43.25611194163877], [-2.950495427444298, 43.25616884514766], [-2.950389839711301, 43.25608939423958], [-2.950026823246922, 43.25589054325564], [-2.949444625235885, 43.25576280703341], [-2.94893729194044, 43.25564455428414], [-2.948575543561945, 43.255516911823385], [-2.948352625135129, 43.25543839653591], [-2.947938056607411, 43.25530748716764], [-2.947723663221994, 43.255240498185216], [-2.947433484477598, 43.25517572471447], [-2.947133234060987, 43.25512850141988], [-2.946870768150167, 43.2550884971755], [-2.946547046385629, 43.25504774349396], [-2.946372743382971, 43.25502497472094], [-2.94617354161908, 43.25501371762382], [-2.945955249670058, 43.25499335827884], [-2.945629052418113, 43.2549959045624], [-2.945043320972536, 43.25497626853258], [-2.944702802501165, 43.25497610443746], [-2.944214686183847, 43.254967584820754], [-2.943915572165654, 43.25523563361263], [-2.94419557204916, 43.25531868683586], [-2.944592652725809, 43.25545716369488], [-2.944935636286123, 43.25565584223905], [-2.945398096213452, 43.25596099056741], [-2.945657326882101, 43.25610083829202], [-2.945735324230361, 43.25624077965636], [-2.945840463769509, 43.256475533857575], [-2.945938574526411, 43.25673279176192], [-2.945972371011158, 43.25688486590231], [-2.946025022163008, 43.257313696585264], [-2.946088992298969, 43.257695357608654], [-2.946084822770301, 43.257815363643495], [-2.94583887610939, 43.257808405296075], [-2.944590158976952, 43.257759371929374], [-2.943975163409129, 43.25771756924686], [-2.943596856850549, 43.25769667678909], [-2.941506003401681, 43.25759524498537], [-2.940006483054347, 43.25752883761806], [-2.938880813208522, 43.25746945311353], [-2.937669809384443, 43.25741001106773], [-2.937083474186009, 43.25736476586202], [-2.935749458889147, 43.25729497251404], [-2.934387038181874, 43.25719084645595], [-2.93426422342882, 43.257183393609544], [-2.93394288445629, 43.25700342155742], [-2.933824712267632, 43.25693079027244], [-2.933654627856012, 43.256764679164384], [-2.933489224924811, 43.25659172835284], [-2.933375844071683, 43.25641187541006], [-2.933305052158222, 43.2562113406256], [-2.933247111273285, 43.25568563021849], [-2.934299905857046, 43.25309755852434], [-2.934441821237744, 43.25271582872323], [-2.934551190058976, 43.252370001512226], [-2.9345840623577, 43.25202809171587], [-2.934579133933881, 43.25160261373526], [-2.934572615671163, 43.251333874620904], [-2.934563451465274, 43.251069725439194], [-2.934612668823821, 43.25073574742329], [-2.934749099847793, 43.25034618145713], [-2.934926541745773, 43.24998013610967], [-2.934966132154752, 43.249908315777255], [-2.935220227175293, 43.24957571412084], [-2.93547427457265, 43.249285605371696], [-2.935612337946128, 43.249073845769935], [-2.935696687671319, 43.24893840010509], [-2.935744747501765, 43.248635120595715], [-2.935697238949558, 43.248414343646665], [-2.935549719534527, 43.248155068131155], [-2.935232653641828, 43.247913882338146], [-2.93496036520133, 43.24778642732598], [-2.934699837455145, 43.24768058525645], [-2.934328040171801, 43.247523452457735], [-2.933835768851195, 43.24728090165134], [-2.93330875741074, 43.24695064053895], [-2.932892499044276, 43.246682831879276], [-2.932579259098395, 43.24639662657308], [-2.932329207479323, 43.246103525581866], [-2.932174730042877, 43.24590825189534], [-2.932004834590882, 43.24569514314874], [-2.931829061561275, 43.245470957109546], [-2.93173522253832, 43.245368808604994], [-2.931623026957723, 43.245242161243965], [-2.931951254434841, 43.24492068439309], [-2.932078929327849, 43.24473656152814], [-2.932085230426457, 43.2445502958625], [-2.931982166616885, 43.24434154806674], [-2.931785360288635, 43.24403758395238], [-2.931718805958555, 43.24378888491092], [-2.931862465393194, 43.243386542146986], [-2.93196973929315, 43.243187192344806], [-2.932047550442248, 43.242994757150825], [-2.93213268927164, 43.242788461818556], [-2.932239228525424, 43.24260873757317], [-2.932384991058428, 43.24241139077786], [-2.932512694779696, 43.24228722651207], [-2.932861886053617, 43.242094320306244], [-2.933186822497867, 43.24197477230044], [-2.933529882380836, 43.241906190177154], [-2.933806155719383, 43.24189086542337], [-2.934118770129334, 43.24189320657294], [-2.93441914665935, 43.24194226477769], [-2.934834844969201, 43.24204450490773], [-2.935229263347688, 43.242197867810305], [-2.936694638174552, 43.24279773938244], [-2.93707120795628, 43.24293398057581], [-2.937276013912828, 43.24298666983731], [-2.93753651295667, 43.243005988492506], [-2.937796229583167, 43.24299586673132], [-2.938045122092678, 43.2429427047813], [-2.938849690228934, 43.24268133410056], [-2.939999570239888, 43.2423216479295], [-2.940148816755241, 43.24227410090084], [-2.940474445979612, 43.24215957417071], [-2.940586505980828, 43.242125241440895], [-2.940783909007993, 43.24195680996403], [-2.940957000635914, 43.24182599761756], [-2.941090816042396, 43.2416640148366], [-2.941212337049502, 43.241506617044145], [-2.941264038332567, 43.24139563813475], [-2.94129754306358, 43.24119597152792], [-2.941309799475635, 43.241018531111656], [-2.941298081971847, 43.240634642407194], [-2.941295462596851, 43.24029514253469], [-2.941268342624145, 43.24008662195081], [-2.941210692564424, 43.23994236622261], [-2.941150253655269, 43.239846904631214], [-2.941092632980076, 43.23977809297957], [-2.940983315569684, 43.239711505360034], [-2.940883204081859, 43.23968255442808], [-2.940777066136458, 43.23968916166165], [-2.940688984590252, 43.23971792524236], [-2.940613068725402, 43.23976893218258], [-2.940543073689713, 43.239893135555], [-2.940476114417429, 43.24023710072563], [-2.940466682138261, 43.24043236824497], [-2.940402730139388, 43.24060753094986], [-2.940329786191903, 43.24073398335651], [-2.940238666442599, 43.240856014810404], [-2.940156641951447, 43.24092034250447], [-2.940041187744824, 43.24100013757129], [-2.939913658144073, 43.24106876261117], [-2.93978321562806, 43.24110416535895], [-2.93964345318844, 43.241115165244544], [-2.939488793721512, 43.24109293646464], [-2.939382593474702, 43.241057318876614], [-2.939306667930803, 43.241012984465016], [-2.939215737609766, 43.240941993514625], [-2.939170307906689, 43.2408709366656], [-2.939127832511855, 43.24079096852104], [-2.939137112269018, 43.24065124879897], [-2.939170621382171, 43.24055583611773], [-2.939359158109217, 43.24021202627047], [-2.939681339341455, 43.23967085349815], [-2.939760284238675, 43.239535491790875], [-2.939854819829444, 43.23934702123363], [-2.939982680656012, 43.23904081040835], [-2.940034458095272, 43.238852317245964], [-2.940070851989828, 43.238712521581036], [-2.940101466123858, 43.238459556660345], [-2.940122952147561, 43.23829760607443], [-2.940123117348494, 43.23812889216125], [-2.940077732770043, 43.23790919808135], [-2.940044557181865, 43.23766736328362], [-2.940005442765417, 43.23747522126431], [-2.939945329319021, 43.23725957067891], [-2.939835936192371, 43.23696610923488], [-2.93982400163458, 43.23681296390761], [-2.939790706405972, 43.23659111532962], [-2.939669640225982, 43.2362936862789], [-2.939499980822736, 43.23594518503831], [-2.939478848035707, 43.23585199399886], [-2.939515367673754, 43.235789893404565], [-2.939800800922339, 43.235621509944416], [-2.939916159115924, 43.23552604997257], [-2.940040797393067, 43.23539080199114], [-2.940116773441972, 43.235273264094324], [-2.940156271856537, 43.23517569347629], [-2.940195939046923, 43.235009250849274], [-2.940235541330558, 43.234805086073685], [-2.940208739757229, 43.234277052727684], [-2.940209006619581, 43.234004085304456], [-2.940191121270665, 43.23380889333651], [-2.940227695787257, 43.23358474052447], [-2.94023997076783, 43.23349381775936], [-2.940364539691633, 43.23321641371835], [-2.940443805121376, 43.23295032959361], [-2.940510709238695, 43.23275941310727], [-2.940605255491296, 43.232442200375765], [-2.940675245364871, 43.23210498839846], [-2.940799993144053, 43.231847660356365], [-2.940918668484329, 43.2315680918874], [-2.941009828589092, 43.23138844120227], [-2.941028054714642, 43.23133749422832], [-2.941028178839548, 43.231208752929696], [-2.94102236725085, 43.23102239005408], [-2.941013362867484, 43.23088257048342], [-2.94101044488344, 43.23074941618823], [-2.941053252626747, 43.23058522547703], [-2.941092607493873, 43.23042112299613], [-2.941120131643999, 43.23031022151238], [-2.94119915215322, 43.230185932187574], [-2.941263020743549, 43.23008387217618], [-2.941329924853135, 43.22999288724434], [-2.941420968710682, 43.2299309039559], [-2.941630269974542, 43.22991327523447], [-2.941851227823444, 43.22991770914742], [-2.942037059313615, 43.229913482062926], [-2.942143175986225, 43.22991128505546], [-2.942203817159423, 43.22989141931058], [-2.942279698530976, 43.2298625583291], [-2.942334460531667, 43.229831525958836], [-2.942358668002624, 43.2297893145817], [-2.942389187833539, 43.22972946070405], [-2.942398441818012, 43.22960738610711], [-2.942389432374073, 43.229469817331136], [-2.942383346887046, 43.22935439714685], [-2.942377551382595, 43.22925455211553], [-2.942416882273105, 43.22921910051005], [-2.942623470760355, 43.22905949293544], [-2.942830025033082, 43.228826691419066], [-2.943091065389102, 43.228746965879736], [-2.943482712860616, 43.228531900774435], [-2.944041268858658, 43.228343564659504], [-2.944642213795128, 43.228212954902794], [-2.944994420324063, 43.22803549762194], [-2.94522513920455, 43.22790470618813], [-2.945404643155846, 43.22781539321629], [-2.945556131735342, 43.227714182806686], [-2.945686625243764, 43.22758541336009], [-2.945701859240282, 43.227467842737745], [-2.945192272431329, 43.22718814976188], [-2.944737396532323, 43.226934859439474], [-2.944464451019777, 43.22671739727072], [-2.943991458853728, 43.226406476605014], [-2.943918732579895, 43.22632208380129], [-2.943964179501845, 43.226257735333085], [-2.943976404822354, 43.226213357021216], [-2.943743253103024, 43.22579163676101], [-2.943728374345214, 43.22562975727804], [-2.943761644609134, 43.22555649001989], [-2.9438497083628, 43.22552331256992], [-2.943949729052066, 43.22562761521737], [-2.94406511270648, 43.22569870458216], [-2.944353196960737, 43.22578752365032], [-2.944811440768901, 43.225785494903214], [-2.9451209152229, 43.22580112876761], [-2.945290772685615, 43.22581903586689], [-2.945430513056608, 43.22579245402046], [-2.945464336317854, 43.22498274915834], [-2.945510879123092, 43.22436904344135], [-2.945557622022961, 43.22364352166062], [-2.94566102231496, 43.22302912254914], [-2.945607871503578, 43.22251287066319], [-2.945650100729308, 43.22195083926035], [-2.945710558484172, 43.22166979719459], [-2.945998470380595, 43.22112984900033], [-2.945988440198585, 43.22099065929731], [-2.945845058372163, 43.22067035804043], [-2.945801705342229, 43.22055555041573], [-2.945818596261207, 43.22039908784782], [-2.946066035314755, 43.22015486579218], [-2.946246660974756, 43.22003269128249], [-2.946403791092692, 43.21984226341817], [-2.946504127752143, 43.219695652964646], [-2.946602752987204, 43.21964816367052], [-2.946832945497867, 43.2194985524695], [-2.947050592034757, 43.219297438342004], [-2.94749180847281, 43.21896795507145]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:district:7", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "7", "alternateName": "district", "description": "Recalde", "val": 0}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.977744627121204, 43.249289934733525], [-2.977725507864271, 43.249352320861526], [-2.977663501795843, 43.24947240697838], [-2.977576921330699, 43.24957160160077], [-2.977442197521188, 43.2496576424917], [-2.97722854648956, 43.249745648168876], [-2.976976695423205, 43.2498496708608], [-2.976766495310326, 43.24994136754044], [-2.976493509338081, 43.25005834899347], [-2.976479793189232, 43.250066268693715], [-2.976097466455081, 43.25028792996032], [-2.975665958782432, 43.25054424050936], [-2.97531421083161, 43.2507430383706], [-2.975079408487288, 43.2508699278138], [-2.974826819458964, 43.251019139956284], [-2.974623407437679, 43.25113622224164], [-2.974506354889287, 43.25121299062281], [-2.974402915350816, 43.251286160785554], [-2.974304650010305, 43.25137400667955], [-2.974224867394667, 43.25147302020114], [-2.974157077287222, 43.251557361712266], [-2.974114683614776, 43.25163855793023], [-2.974083258317481, 43.25172515833301], [-2.974045936161704, 43.25182364116371], [-2.974021313692266, 43.25191717529216], [-2.974034789816238, 43.25199775394923], [-2.974066145455502, 43.25207581585754], [-2.974110291087745, 43.25217611771501], [-2.974206734147939, 43.25231802456829], [-2.974527611308697, 43.25285655746814], [-2.97454374987119, 43.2528881610943], [-2.974566560240645, 43.252998361156024], [-2.97458683780325, 43.25309244553217], [-2.974594520319498, 43.25318346613495], [-2.974580056490169, 43.25327709264556], [-2.974574838073529, 43.253367570207786], [-2.974562104248889, 43.253453634697145], [-2.974534938439875, 43.2535564412871], [-2.97448399451125, 43.25367661808219], [-2.974440675712992, 43.25378131164167], [-2.974383851712664, 43.25387231781678], [-2.974310155538426, 43.253984476888114], [-2.974258416178242, 43.25406179979719], [-2.974258414054769, 43.25406684139647], [-2.974198233742704, 43.25416603931899], [-2.974065084924329, 43.254335713053784], [-2.973932035109168, 43.254509708022], [-2.973814858792955, 43.25462113661687], [-2.973697067145859, 43.254745078917416], [-2.973579280158459, 43.25485713732582], [-2.97343436400787, 43.25498089302572], [-2.972972183538513, 43.25535197247262], [-2.972608477039931, 43.25563187473668], [-2.972498309090924, 43.25573583126993], [-2.972405821491445, 43.255830068879135], [-2.972313434705516, 43.25592538677883], [-2.972245639267814, 43.256004775520324], [-2.972192070349985, 43.256074714683464], [-2.972159030662518, 43.2561261129407], [-2.972113285554887, 43.25619236279944], [-2.972056450452957, 43.25629516151474], [-2.971991967304125, 43.256460528155955], [-2.971814594675764, 43.256896582770686], [-2.971700862846751, 43.257229840272466], [-2.971628737169731, 43.25744102930459], [-2.971591402666681, 43.257550044568326], [-2.971542293267419, 43.2576379902177], [-2.971487088209037, 43.25772602435397], [-2.971412385022252, 43.25779784845981], [-2.971334426339694, 43.25787903466494], [-2.971217348006803, 43.25797434545502], [-2.971045192713984, 43.25809881143142], [-2.97078574161317, 43.258280783097725], [-2.97068735516386, 43.25837501776864], [-2.970611018615809, 43.25845962497106], [-2.970586523474253, 43.258483206141754], [-2.970544936028072, 43.25855809915039], [-2.970502503925882, 43.25869889278305], [-2.970476137563589, 43.258810251227146], [-2.970476086931854, 43.25891504437797], [-2.970479501914587, 43.25899616092863], [-2.970490351145058, 43.25904018765892], [-2.970517426424783, 43.259144177543426], [-2.970549704775041, 43.25920315451648], [-2.970708887936382, 43.259444741809304], [-2.97080208982057, 43.259573506364006], [-2.970985082739019, 43.2597421762653], [-2.971219679961931, 43.25992553350497], [-2.97140796187108, 43.26008601145902], [-2.971705224005346, 43.26031709842592], [-2.971983188830604, 43.26054016735312], [-2.972261049307131, 43.260773768900904], [-2.972495848516091, 43.260977109857194], [-2.972766919740027, 43.26117973873751], [-2.9729932066387, 43.261340943316256], [-2.973182931075407, 43.26147603062698], [-2.973505005430233, 43.261686682217615], [-2.973921046007204, 43.261930934963644], [-2.974521850949441, 43.26228776303454], [-2.974700710605259, 43.2624228453854], [-2.974954028059007, 43.262595215551045], [-2.975087082804475, 43.26269436590876], [-2.975184482816327, 43.26277793346263], [-2.975295494920122, 43.26286780586282], [-2.975400512227674, 43.26295947743342], [-2.97552503260123, 43.26306231660532], [-2.975628517928264, 43.263175684485816], [-2.975753031980402, 43.26329652908861], [-2.975852142215276, 43.26342781149024], [-2.975930941869135, 43.26353577217116], [-2.975974898322188, 43.26362923090826], [-2.976026676968448, 43.26372584226101], [-2.97606219539169, 43.263833073539985], [-2.976087562518438, 43.263917975638336], [-2.976112207380325, 43.26403132655658], [-2.976123956170392, 43.264126038895824], [-2.976123914301967, 43.264233172692094], [-2.976106093163908, 43.26433742186513], [-2.976090002447815, 43.264433388782074], [-2.976054301183821, 43.26453241255743], [-2.976005089007656, 43.26462540158388], [-2.976005087098257, 43.264630263117105], [-2.975945821220946, 43.2647101958893], [-2.975860131753375, 43.26480695836706], [-2.975801584867487, 43.264866364739326], [-2.975685505533374, 43.264988328601596], [-2.975429399831329, 43.26515059507261], [-2.974937620297752, 43.26544218036904], [-2.974076796304342, 43.266001244848255], [-2.973948843330186, 43.2660768396182], [-2.973646181169595, 43.26626691022148], [-2.973523106593796, 43.26633692387629], [-2.973418821543173, 43.266423597014295], [-2.973360261507907, 43.266504158784244], [-2.973317849947181, 43.266600119141984], [-2.973276363775426, 43.2666707817272], [-2.973249192872219, 43.266766835644454], [-2.973249153330553, 43.266857134086166], [-2.973271156354094, 43.266961302047], [-2.973298246560719, 43.267049986311], [-2.973321975010818, 43.26715883613602], [-2.973324410589807, 43.2671656788594], [-2.973393915330858, 43.267386174496366], [-2.973477736430875, 43.267631611256604], [-2.973591088225906, 43.26796483240584], [-2.973746873475339, 43.26839178267334], [-2.974124672223493, 43.2690725729997], [-2.974463498376817, 43.269663144926966], [-2.974732073792167, 43.27011280598426], [-2.975047266979487, 43.27062702684954], [-2.97531958016729, 43.27090059191219], [-2.975640748145635, 43.27123385548801], [-2.97613448610363, 43.271762155550775], [-2.976508178567584, 43.272146203538284], [-2.976650393279353, 43.27226822097601], [-2.976929236929597, 43.27250856302747], [-2.977067187074488, 43.27262625772198], [-2.977190910770947, 43.272745840005605], [-2.977251855370017, 43.27281337334525], [-2.977319595101541, 43.2729167392505], [-2.977373004772506, 43.273026404258864], [-2.977388942798155, 43.27306908080916], [-2.977438176819755, 43.27320476312738], [-2.977471042017481, 43.27336393957515], [-2.977470984465859, 43.27351995854065], [-2.977473460020116, 43.27369587424562], [-2.977410707078172, 43.2738438683238], [-2.97726924455834, 43.27414417455172], [-2.976912801816825, 43.274857396948875], [-2.976788937147429, 43.27509891764244], [-2.976591540718892, 43.275494641526095], [-2.976523707512501, 43.27563021013587], [-2.976460038568292, 43.27577073111158], [-2.976425137255012, 43.27588785064287], [-2.976400403054027, 43.27599182813889], [-2.976369049659585, 43.27613118535051], [-2.976363213620763, 43.27624380944532], [-2.976363170690831, 43.27635472419869], [-2.976375729430178, 43.27646438115814], [-2.976393473404026, 43.27656773720946], [-2.976420653756293, 43.27670890704984], [-2.976474057738951, 43.27683774841209], [-2.976484923051031, 43.27685944744416], [-2.976557829229529, 43.27701368072509], [-2.976653601327946, 43.27716728842705], [-2.976778832845044, 43.27735241189865], [-2.977078668786748, 43.2777729940765], [-2.977124368328562, 43.27785717958425], [-2.977167722275757, 43.2779636915955], [-2.97718627587944, 43.27808082197109], [-2.977204824042624, 43.27821271696267], [-2.977198064528807, 43.27835261941463], [-2.977167511315268, 43.27852789819122], [-2.97710789773844, 43.278690117056414], [-2.976982480180313, 43.27898862532034], [-2.976723526822665, 43.27954458689398], [-2.976686404852536, 43.279617682203614], [-2.976609218919213, 43.27974955770472], [-2.976545568903585, 43.27983011987573], [-2.976488633597429, 43.27989141736443], [-2.976381164531104, 43.280015814139944], [-2.97628518866849, 43.280115455452254], [-2.975860331081313, 43.28049996685213], [-2.975521291362615, 43.28076556786572], [-2.97514738054205, 43.28105339724191], [-2.974836200034828, 43.28127380812353], [-2.9745715809483, 43.28145398593394], [-2.974245258261459, 43.281662598140116], [-2.973918939690174, 43.28185635476747], [-2.973626274977218, 43.28201347677446], [-2.973301687593411, 43.28219057682537], [-2.973031081756247, 43.28232987687878], [-2.972738627612471, 43.282460438356246], [-2.972426754247157, 43.282604588649264], [-2.972116511744106, 43.2827351442406], [-2.971913103087828, 43.28282485250606], [-2.97177138624707, 43.28291223491827], [-2.97166605464342, 43.28299764555345], [-2.971672762441406, 43.282997647214756], [-2.971598230386216, 43.28307253212049], [-2.971537110293489, 43.28315489264764], [-2.971493868319733, 43.28325706378096], [-2.971462524353399, 43.283344293199654], [-2.971437768482828, 43.28347005628166], [-2.971431914214811, 43.283600685595104], [-2.971441190705499, 43.28375859719765], [-2.971441110732989, 43.283929560533295], [-2.971435632331622, 43.28477735367612], [-2.971445450459723, 43.28551603649189], [-2.971417017916689, 43.286111835128715], [-2.971401603571143, 43.2864716734239], [-2.971385429982808, 43.286716185571755], [-2.971360715514002, 43.28696708756015], [-2.971343801450252, 43.28705621109032], [-2.971331767504505, 43.28714227488624], [-2.971307203537785, 43.287288384241805], [-2.971268093139682, 43.28745933767447], [-2.971259543068739, 43.28748535362992], [-2.970564154992386, 43.288460090349474], [-2.971240542253577, 43.28984570349587], [-2.971240339091424, 43.28984543336079], [-2.968968130305675, 43.287130494608206], [-2.96869153096219, 43.286805057873785], [-2.968495779400437, 43.28659568890887], [-2.968343527099929, 43.286393173780105], [-2.968197564365291, 43.2862156879908], [-2.968107494030323, 43.286056493303214], [-2.968011330736226, 43.285888023945965], [-2.967930742348857, 43.28567427475262], [-2.967850152202267, 43.285464936869495], [-2.96778210710601, 43.28517385696398], [-2.967748176497547, 43.284950937883025], [-2.96775796286381, 43.284703093334954], [-2.967764504032199, 43.28444156359158], [-2.967783811928459, 43.28406183054717], [-2.96786211654124, 43.283782135281854], [-2.967880754511643, 43.283708317476325], [-2.967938807243482, 43.28347777179688], [-2.968118516367531, 43.28305018852298], [-2.968262208268835, 43.28269326701758], [-2.968409275921709, 43.282290792012496], [-2.968528175614457, 43.28191567759417], [-2.968671996736524, 43.28149510564818], [-2.96877204978027, 43.281201911367205], [-2.968862779786198, 43.28085406736317], [-2.96893804729477, 43.28053340756923], [-2.968930887621846, 43.28022361875616], [-2.969006022893717, 43.27976080438148], [-2.96906360860174, 43.27943329751044], [-2.969098255779985, 43.2790469960009], [-2.969121499136981, 43.27870273453608], [-2.969156018486443, 43.27836675867958], [-2.969190723671732, 43.27806454341344], [-2.969202440242924, 43.277804185043216], [-2.969232189153122, 43.277454613568445], [-2.969201530095921, 43.27719082269306], [-2.969149127395473, 43.27692018379145], [-2.969059347606293, 43.27661082261873], [-2.968939173123815, 43.27632224962744], [-2.968888728491617, 43.276201328024385], [-2.968649836148682, 43.27576453590362], [-2.968395192544307, 43.27533449101712], [-2.968078596521088, 43.27484302900159], [-2.967758716572454, 43.27442205725866], [-2.967677783717536, 43.27431337032581], [-2.96738606790055, 43.27406327907941], [-2.966976066457811, 43.27363381670447], [-2.966743114990824, 43.27334070722932], [-2.966398221558182, 43.272979503067035], [-2.966137217974174, 43.27270682049885], [-2.965922850649475, 43.27244792555092], [-2.965755274168445, 43.2721070284425], [-2.965540972126659, 43.2717390184878], [-2.965373286366977, 43.271418827251985], [-2.965224264443628, 43.27115977064168], [-2.965121630311642, 43.2709894958826], [-2.964982037067444, 43.270771314661395], [-2.964777053505444, 43.27047127741456], [-2.964543037381935, 43.27012567646323], [-2.964437826498028, 43.27002427192228], [-2.964165762535094, 43.26976202456136], [-2.963813580627311, 43.26941422431782], [-2.963427184593344, 43.26902553917351], [-2.962875524612914, 43.26855514348119], [-2.962308427250646, 43.26808699071317], [-2.961869083125849, 43.26774374707502], [-2.961242782728698, 43.26724612993536], [-2.960737949445678, 43.26684839253547], [-2.960276860082474, 43.26653484460484], [-2.95989988987082, 43.266243921439234], [-2.959441769540955, 43.26590984468], [-2.959105569859155, 43.265741822055936], [-2.958744254304258, 43.26560556940332], [-2.958383046626828, 43.2654624734882], [-2.957937774940435, 43.265376423547686], [-2.957448997505514, 43.26531988500962], [-2.957000935324305, 43.26530423258286], [-2.956630401946253, 43.26528176566307], [-2.956014161301182, 43.26530034630263], [-2.955428996158128, 43.26533937217871], [-2.954666597343961, 43.265426310091875], [-2.953063904745591, 43.26567765317404], [-2.950810828453814, 43.266052034849864], [-2.950351583057753, 43.26528992625149], [-2.950122118428008, 43.26534276312223], [-2.949909931394495, 43.26538912505505], [-2.949733112843145, 43.26542262808187], [-2.949518289779776, 43.265461425744824], [-2.94916669008797, 43.265520778805985], [-2.94880258665179, 43.26558696734753], [-2.948537565691643, 43.265630692251165], [-2.948167268393774, 43.265690573995826], [-2.947647899717732, 43.26576992257421], [-2.947327185588687, 43.2658277536262], [-2.945203244549726, 43.26525633608869], [-2.945646803497101, 43.264162882734254], [-2.946033747703507, 43.26319300977819], [-2.946396523312826, 43.262311351892], [-2.94683384159344, 43.261101663709375], [-2.94707806749325, 43.26053018627093], [-2.946838985637106, 43.2603272412838], [-2.946706345041622, 43.26016116707186], [-2.946565814295026, 43.25995673688699], [-2.946419263493165, 43.25966713676415], [-2.946329008765827, 43.25936432867871], [-2.946286903323427, 43.25918497217786], [-2.946244968306993, 43.258927651065406], [-2.946084822770301, 43.257815363643495], [-2.946088992298969, 43.257695357608654], [-2.946025022163008, 43.257313696585264], [-2.945972371011158, 43.25688486590231], [-2.945938574526411, 43.25673279176192], [-2.945840463769509, 43.256475533857575], [-2.945735324230361, 43.25624077965636], [-2.945657326882101, 43.25610083829202], [-2.945398096213452, 43.25596099056741], [-2.944935636286123, 43.25565584223905], [-2.944592652725809, 43.25545716369488], [-2.94419557204916, 43.25531868683586], [-2.943915572165654, 43.25523563361263], [-2.944214686183847, 43.254967584820754], [-2.944702802501165, 43.25497610443746], [-2.945043320972536, 43.25497626853258], [-2.945629052418113, 43.2549959045624], [-2.945955249670058, 43.25499335827884], [-2.94617354161908, 43.25501371762382], [-2.946372743382971, 43.25502497472094], [-2.946547046385629, 43.25504774349396], [-2.946870768150167, 43.2550884971755], [-2.947133234060987, 43.25512850141988], [-2.947433484477598, 43.25517572471447], [-2.947723663221994, 43.255240498185216], [-2.947938056607411, 43.25530748716764], [-2.948352625135129, 43.25543839653591], [-2.948575543561945, 43.255516911823385], [-2.94893729194044, 43.25564455428414], [-2.949444625235885, 43.25576280703341], [-2.950026823246922, 43.25589054325564], [-2.950389839711301, 43.25608939423958], [-2.950495427444298, 43.25616884514766], [-2.950482774966257, 43.25611194163877], [-2.95045169310051, 43.25560551765748], [-2.950766355305766, 43.253405985737615], [-2.950199503156211, 43.25217513963143], [-2.950175194936792, 43.25183824203204], [-2.952511216284601, 43.25020044476415], [-2.952711028585314, 43.25006026293398], [-2.953712382138758, 43.24993616289255], [-2.955193223241603, 43.24975354422383], [-2.95531773834697, 43.24991924561063], [-2.95546919034658, 43.25006037953015], [-2.959365133327944, 43.25006038929222], [-2.960437200951942, 43.248792801715474], [-2.961212401221812, 43.24772109594799], [-2.961772391214944, 43.246569727654375], [-2.965246520347306, 43.23953608005754], [-2.968880457390989, 43.23218879113157], [-2.968880457390989, 43.23218879113157], [-2.969089317268466, 43.23224043432212], [-2.973270581649336, 43.23459358254361], [-2.977973250966111, 43.23865083417884], [-2.979203905451934, 43.23967748289476], [-2.980568019656876, 43.24081541650475], [-2.982668558480485, 43.24257419582088], [-2.984585514081751, 43.24419696806694], [-2.985961863479136, 43.24600672229948], [-2.985978088534881, 43.2461219610178], [-2.984968923166469, 43.245902703028065], [-2.984896909643447, 43.2458996325676], [-2.984715599672561, 43.24591815439837], [-2.984671617434056, 43.245924990694476], [-2.984537637062496, 43.245954051932515], [-2.984403751176076, 43.24601039172099], [-2.984185139527861, 43.24612298760417], [-2.984021480632295, 43.24622406708359], [-2.983836684202743, 43.24636277533476], [-2.983658789901631, 43.24651633900353], [-2.983404477404819, 43.24679692180345], [-2.983195982994666, 43.24703843831725], [-2.982947558872922, 43.247314069363334], [-2.982807649188846, 43.24746457636376], [-2.982600073104237, 43.247675212067875], [-2.982383063599473, 43.247835609939784], [-2.982196535763501, 43.24796072090717], [-2.98204405869851, 43.24800472109229], [-2.981940648292625, 43.24802820229518], [-2.981806753809158, 43.24809012079929], [-2.981697343351782, 43.24813655813617], [-2.981557564288696, 43.24817434772479], [-2.981209136529031, 43.24825288604285], [-2.981013391266747, 43.248282563179785], [-2.980844775222985, 43.24828442567196], [-2.980833703287591, 43.24828505401809], [-2.980537913028776, 43.24829184625651], [-2.98034217886794, 43.24828560081184], [-2.980071086389333, 43.24824648146843], [-2.979799077579792, 43.24821492372798], [-2.979466020386748, 43.24818884614712], [-2.979204269390066, 43.24816278058116], [-2.978879550031078, 43.24811320532743], [-2.978670309487996, 43.248100112349306], [-2.978456473241703, 43.24815769062223], [-2.978252268837378, 43.248264245917085], [-2.978082700169482, 43.248373238260264], [-2.977953857444138, 43.24849718296261], [-2.977843498833631, 43.24862725304707], [-2.97780454656153, 43.24876111810208], [-2.977779796809086, 43.24894459168568], [-2.977771348397524, 43.24899284539967], [-2.977755265886038, 43.24908458146464], [-2.977744627121204, 43.249289934733525]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:district:8", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "8", "alternateName": "district", "description": "Basurto-Zorroza", "val": 7}}, {"type": "Feature", "geometry": {"coordinates": [], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:district:9", "properties": {"fill": "#f7a586", "fill-opacity": 0.5, "type": "GtfsShape", "name": "9", "alternateName": "district", "description": "Externo", "val": 150}}]}}]
\ No newline at end of file
diff --git a/src/assets/map/map-component-maps/bilbao_sound_request.json b/src/assets/map/map-component-maps/bilbao_sound_request.json
new file mode 100644
index 0000000000000000000000000000000000000000..a312e69ca0b9436f4f0c4a41cb13968cb6dde392
--- /dev/null
+++ b/src/assets/map/map-component-maps/bilbao_sound_request.json
@@ -0,0 +1 @@
+[{"id": "urn:ngsi-ld:MapLayer:Bilbao:sound", "alternateName": "bilbao_sound.geojson", "name": "bilbao_sound", "description": "test", "type": "MapLayer", "@context": ["https://smartdatamodels.org/context.jsonld", "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld", "https://git.code.tecnalia.com/urbanite/public/-/raw/main/datamodels/maplayer-ngsi.jsonld"], "map": {"@context": ["https://smartdatamodels.org/context.jsonld"], "type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"coordinates": [-2.93359, 43.2627], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93358, 43.26265], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93267, 43.26139], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93244, 43.26134], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.94452, 43.25936], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94422, 43.25869], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94037, 43.25916], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 56.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.94002, 43.25869], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93084, 43.26083], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93089, 43.26059], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.94526, 43.26202], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.94604, 43.26135], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94022, 43.26101], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 62.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93974, 43.26091], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93667, 43.2652], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93701, 43.26519], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69}}, {"type": "Feature", "geometry": {"coordinates": [-2.94573, 43.26643], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94512, 43.26665], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94604, 43.26002], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94604, 43.25936], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94513, 43.25914], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94574, 43.25892], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94604, 43.25869], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94574, 43.25936], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94519, 43.26283], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.94604, 43.26267], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.94513, 43.25869], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93922, 43.2655], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93908, 43.26521], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.94019, 43.25959], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.9396, 43.25978], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 60.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.94574, 43.26035], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94543, 43.2598], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94208, 43.26371], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 48.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.94112, 43.2637], "type": "Point"}, "properties": {"marker-color": "#f46f48", "type": "GtfsShape", "values": 44.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.94331, 43.25869], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93944, 43.26095], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93963, 43.26092], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.9424, 43.25869], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93724, 43.26495], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93766, 43.26504], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.94149, 43.25869], "type": "Point"}, "properties": {"marker-color": "#f46f48", "type": "GtfsShape", "values": 46.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93443, 43.26062], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93443, 43.26058], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.94058, 43.25869], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.94604, 43.26068], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94172, 43.26486], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 52.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.94155, 43.26427], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 49.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.94505, 43.26153], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94604, 43.26201], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 51.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.94526, 43.26246], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.94588, 43.26314], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.94604, 43.2631], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93966, 43.26083], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93969, 43.26083], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.9398, 43.26083], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93979, 43.26085], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93802, 43.25936], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.938, 43.25935], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.94604, 43.26308], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.94369, 43.26271], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.9437, 43.26269], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93894, 43.26473], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.939, 43.26465], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.94582, 43.26314], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.94604, 43.264], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 51.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.94604, 43.26334], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 60.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93729, 43.26467], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93722, 43.26461], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.94589, 43.26316], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.94581, 43.26316], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.94529, 43.26303], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.9412, 43.26271], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.94203, 43.26234], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.94213, 43.26058], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94271, 43.25993], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94525, 43.26379], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.94144, 43.26518], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 56.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.94088, 43.26528], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.94604, 43.26466], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94055, 43.26487], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93104, 43.26437], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93109, 43.26436], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.94013, 43.26255], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.94008, 43.2631], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93969, 43.26505], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.94053, 43.26489], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.94423, 43.2628], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.9376, 43.25891], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93821, 43.25891], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93125, 43.26207], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93125, 43.26175], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93206, 43.26124], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93211, 43.2612], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.92845, 43.25971], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.92926, 43.2592], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 48.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93383, 43.26279], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93398, 43.26277], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93601, 43.26381], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93606, 43.26364], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93927, 43.26019], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93259, 43.26069], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93202, 43.2604], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 60.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93816, 43.26042], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93813, 43.26046], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93246, 43.26106], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93253, 43.26096], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93108, 43.26039], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93161, 43.26048], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93278, 43.26063], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93303, 43.26063], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93748, 43.26043], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93761, 43.26036], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93785, 43.25869], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.94002, 43.25869], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93999, 43.25869], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93734, 43.26072], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93694, 43.26068], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93967, 43.25869], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93377, 43.25903], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.9336, 43.25972], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93876, 43.25869], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93988, 43.25879], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.9382, 43.26048], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93612, 43.25962], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93648, 43.26013], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93854, 43.25919], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93846, 43.26054], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93839, 43.26047], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93896, 43.26059], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93909, 43.26036], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93893, 43.26118], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93874, 43.26132], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93901, 43.26004], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93924, 43.26042], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93969, 43.2604], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93973, 43.26128], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93915, 43.26063], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93453, 43.26284], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93439, 43.2629], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93316, 43.25982], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93313, 43.25993], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93924, 43.26429], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93995, 43.26412], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93731, 43.26469], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93731, 43.26462], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93894, 43.26059], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93825, 43.26024], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93837, 43.26025], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93891, 43.26058], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93696, 43.2606], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93694, 43.2605], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93846, 43.26024], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 60.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93859, 43.26014], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93874, 43.26022], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93764, 43.26049], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93765, 43.26046], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93788, 43.26036], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.9378, 43.26039], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.9388, 43.26056], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.9388, 43.26061], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93878, 43.26025], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93871, 43.26021], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93875, 43.26023], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 56.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.9384, 43.26022], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93875, 43.26023], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 56.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93871, 43.26021], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93861, 43.26051], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93819, 43.26025], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93818, 43.26023], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 62.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.939, 43.26066], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.9383, 43.25993], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.938, 43.26043], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93811, 43.26041], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93815, 43.26003], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93835, 43.26024], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93822, 43.26023], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93969, 43.26091], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93885, 43.26057], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93819, 43.26023], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 62.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93819, 43.26025], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93812, 43.26017], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.9376, 43.26048], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93813, 43.26041], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93816, 43.26042], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93882, 43.26056], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93769, 43.26038], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93761, 43.26042], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93863, 43.26052], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93761, 43.26034], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.9372, 43.26038], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93738, 43.26063], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93786, 43.2605], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93859, 43.26051], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93925, 43.26183], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93932, 43.2618], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93293, 43.26004], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 60.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93321, 43.26008], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93811, 43.26041], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93796, 43.26022], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93809, 43.26019], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93824, 43.26262], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93818, 43.26255], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93118, 43.2596], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93089, 43.2591], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93818, 43.26264], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93786, 43.26029], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93866, 43.26158], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93858, 43.26157], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93769, 43.26035], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93764, 43.26034], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93781, 43.25985], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93758, 43.2593], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93469, 43.25903], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 49.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93475, 43.25973], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93805, 43.26016], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93779, 43.26029], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93771, 43.26033], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93772, 43.26034], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93953, 43.26077], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93828, 43.25992], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93783, 43.25985], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93766, 43.26036], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93763, 43.26037], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93823, 43.26265], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93798, 43.26144], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93794, 43.26139], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93934, 43.2609], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93934, 43.26082], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93907, 43.26117], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93872, 43.26125], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.9386, 43.26123], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93758, 43.26042], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93967, 43.2608], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93937, 43.26084], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93941, 43.26077], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93737, 43.2613], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93747, 43.26129], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.9371, 43.26025], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93696, 43.2603], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93709, 43.26033], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93745, 43.26044], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93735, 43.26031], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78}}, {"type": "Feature", "geometry": {"coordinates": [-2.94172, 43.26322], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93771, 43.2601], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93436, 43.26066], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93446, 43.26064], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.937, 43.25905], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93694, 43.25869], "type": "Point"}, "properties": {"marker-color": "#f46f48", "type": "GtfsShape", "values": 44.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93447, 43.26022], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93348, 43.26022], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93603, 43.25869], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93423, 43.25927], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93378, 43.25972], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93512, 43.25869], "type": "Point"}, "properties": {"marker-color": "#f46f48", "type": "GtfsShape", "values": 47.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.94216, 43.25936], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94176, 43.25895], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93421, 43.25869], "type": "Point"}, "properties": {"marker-color": "#f46f48", "type": "GtfsShape", "values": 47.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93554, 43.25949], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.9348, 43.25981], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.9366, 43.26013], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93886, 43.26262], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93875, 43.26262], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93767, 43.26028], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.9369, 43.26028], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93695, 43.26032], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93305, 43.25979], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93696, 43.2603], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93708, 43.26035], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93694, 43.26035], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93711, 43.26024], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93712, 43.25956], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93659, 43.26015], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93736, 43.26029], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93684, 43.2602], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93669, 43.26023], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93694, 43.2604], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93693, 43.26044], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93643, 43.26024], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93648, 43.26015], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93638, 43.26027], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93695, 43.26055], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93694, 43.26233], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.9368, 43.26249], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93759, 43.2607], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93778, 43.26074], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93757, 43.26055], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93632, 43.26029], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.9342, 43.26152], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93427, 43.26165], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93611, 43.26025], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93602, 43.26042], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93599, 43.26026], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.9353, 43.25904], "type": "Point"}, "properties": {"marker-color": "#f46f48", "type": "GtfsShape", "values": 48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93584, 43.26004], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 62.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93648, 43.26018], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93722, 43.26037], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93626, 43.2603], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93613, 43.26046], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93618, 43.26031], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93608, 43.26033], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93686, 43.2608], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93723, 43.261], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93584, 43.2601], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 62.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93916, 43.25931], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93609, 43.26024], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93588, 43.26018], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.9369, 43.26075], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93727, 43.26091], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93591, 43.26021], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93591, 43.26047], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93518, 43.26039], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93257, 43.25927], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93239, 43.25869], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93473, 43.25972], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93885, 43.25951], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93445, 43.25976], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 56.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.9347, 43.25984], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93424, 43.25974], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 56.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93459, 43.25978], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93472, 43.25986], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93531, 43.26083], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93468, 43.25984], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93464, 43.25984], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.9345, 43.2604], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93743, 43.26049], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.9373, 43.26081], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93402, 43.25973], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93607, 43.2606], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.937, 43.26228], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93692, 43.26226], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93733, 43.26082], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93425, 43.26065], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93434, 43.26065], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93544, 43.26088], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93535, 43.26086], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.9331, 43.25967], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.9333, 43.25869], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93299, 43.25976], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.92966, 43.25869], "type": "Point"}, "properties": {"marker-color": "#f46f48", "type": "GtfsShape", "values": 47.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93148, 43.25869], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.9346, 43.25994], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93893, 43.26064], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93329, 43.25988], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93327, 43.25973], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93313, 43.25974], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93322, 43.25977], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93273, 43.2598], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93293, 43.25902], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 60.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93308, 43.25969], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93262, 43.25975], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93275, 43.25974], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.933, 43.2597], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93204, 43.25992], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93226, 43.25985], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93292, 43.2597], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93225, 43.25983], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93275, 43.25972], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93292, 43.25972], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93289, 43.26006], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 62.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93304, 43.26022], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 53.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93873, 43.2606], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93338, 43.26036], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93339, 43.26038], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93794, 43.26019], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93801, 43.26014], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93177, 43.26007], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93185, 43.26022], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93288, 43.25996], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93278, 43.25998], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93208, 43.26014], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93942, 43.2591], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93338, 43.26036], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93317, 43.26045], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93451, 43.26031], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93458, 43.26022], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93318, 43.26046], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93316, 43.26043], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.9333, 43.26022], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.9334, 43.2604], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93316, 43.26043], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93344, 43.26046], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.9334, 43.2604], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93439, 43.2606], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93529, 43.26083], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93343, 43.26046], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93349, 43.26055], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93351, 43.2607], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93441, 43.26054], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93438, 43.26054], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93299, 43.26024], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 60.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93096, 43.26047], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93084, 43.26054], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93323, 43.26054], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93318, 43.26046], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93321, 43.26058], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93509, 43.26078], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.25979], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93194, 43.25995], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93182, 43.25997], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93147, 43.25923], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93162, 43.26013], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93174, 43.26002], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93165, 43.26005], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93204, 43.2599], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93105, 43.26034], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93112, 43.2603], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93183, 43.25998], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93198, 43.25999], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93196, 43.26029], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93148, 43.26024], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.9314, 43.26022], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93189, 43.2603], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.9311, 43.26038], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93213, 43.26059], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.932, 43.26041], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93176, 43.26049], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93206, 43.2606], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93203, 43.26047], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93262, 43.26075], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93282, 43.26069], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93199, 43.26048], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93322, 43.26116], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93331, 43.26087], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93923, 43.26179], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93925, 43.26173], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93129, 43.26021], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93124, 43.2603], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93168, 43.26034], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93148, 43.26012], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.9315, 43.26019], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93159, 43.26018], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93145, 43.26011], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93153, 43.26025], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93189, 43.26088], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93183, 43.26088], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93169, 43.2605], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93166, 43.26043], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93164, 43.26003], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93147, 43.2601], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93162, 43.2605], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93174, 43.26063], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93152, 43.26018], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93091, 43.26043], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93082, 43.26045], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93087, 43.25911], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93057, 43.25869], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 53.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93146, 43.26013], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93138, 43.26017], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93932, 43.26175], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93902, 43.26271], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93899, 43.26272], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93154, 43.26036], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93065, 43.26061], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93128, 43.2602], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93111, 43.26029], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93074, 43.26054], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.9316, 43.26047], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93323, 43.25995], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93205, 43.26076], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93185, 43.26064], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93915, 43.26276], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93917, 43.26275], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93112, 43.26037], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93108, 43.26039], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93112, 43.26037], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.94252, 43.26313], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.94286, 43.26252], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93098, 43.26062], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93116, 43.25961], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.92919, 43.26027], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.92945, 43.2606], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.92982, 43.25929], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 52.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93035, 43.25992], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.9336, 43.26044], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93347, 43.26033], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.92936, 43.25978], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93085, 43.26249], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93057, 43.26206], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.92875, 43.25868], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93083, 43.26047], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93098, 43.26038], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93096, 43.26037], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93069, 43.26054], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.94147, 43.26222], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93343, 43.26366], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93344, 43.26371], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93843, 43.26194], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93842, 43.26207], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.94422, 43.26282], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93923, 43.26173], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93937, 43.26087], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93871, 43.26478], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93873, 43.26474], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93938, 43.26312], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 56.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93917, 43.26282], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93835, 43.26265], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.9383, 43.26296], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93418, 43.26303], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93418, 43.26302], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93722, 43.26468], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93739, 43.26477], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93728, 43.26475], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93429, 43.26075], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93425, 43.26068], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.94025, 43.26106], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 51.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.9394, 43.26075], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93955, 43.26176], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93995, 43.26179], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93648, 43.25917], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.94057, 43.26055], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.94402, 43.25891], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93988, 43.26196], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93985, 43.26191], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.94097, 43.26083], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 56.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93882, 43.26164], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93865, 43.26165], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.9426, 43.26355], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 53.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.9415, 43.26128], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.94148, 43.26067], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94539, 43.26066], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94571, 43.26119], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93953, 43.2608], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93953, 43.26088], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93866, 43.26156], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93963, 43.26086], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93931, 43.2608], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93801, 43.26045], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93823, 43.2614], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93818, 43.26142], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.94114, 43.26213], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.94107, 43.26168], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 60.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.9392, 43.26179], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93914, 43.26171], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93908, 43.26174], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93858, 43.2615], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93902, 43.26104], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93918, 43.26097], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93856, 43.26118], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93889, 43.26072], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.9394, 43.26102], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93867, 43.26133], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93868, 43.2613], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.9405, 43.26199], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93932, 43.26278], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93928, 43.26268], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.9399, 43.26182], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93993, 43.26181], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93263, 43.25976], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.94146, 43.2622], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.94175, 43.26228], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93864, 43.26153], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93867, 43.26144], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93941, 43.26094], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.94092, 43.2621], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.94078, 43.26278], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.94064, 43.26204], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93901, 43.26232], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93909, 43.26222], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93871, 43.26118], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93922, 43.26171], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93882, 43.26162], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93873, 43.26162], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93959, 43.26185], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93981, 43.26185], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93793, 43.26104], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93848, 43.26063], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93835, 43.26145], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93845, 43.2614], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93828, 43.26146], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93826, 43.2615], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93842, 43.26132], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93763, 43.26075], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93855, 43.26133], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93788, 43.26088], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93749, 43.26077], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93857, 43.26158], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93865, 43.2616], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93672, 43.26017], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93766, 43.26083], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93887, 43.25952], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93787, 43.26111], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.9379, 43.26112], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93782, 43.26101], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93753, 43.26116], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.9376, 43.261], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.9376, 43.26137], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93748, 43.26138], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93784, 43.26119], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93811, 43.26143], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93765, 43.26119], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93767, 43.26115], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93816, 43.26148], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93744, 43.26088], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93733, 43.26126], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93732, 43.26115], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93726, 43.26139], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93734, 43.26135], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93801, 43.26276], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93806, 43.26263], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93865, 43.26136], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93871, 43.26134], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93865, 43.26131], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93866, 43.26128], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.94018, 43.26192], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.94085, 43.26126], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93877, 43.26063], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.9389, 43.26065], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93891, 43.26117], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93855, 43.26164], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93831, 43.26153], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93827, 43.26157], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93823, 43.26149], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93855, 43.26156], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93894, 43.2627], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93889, 43.26262], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93167, 43.26051], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93816, 43.26152], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93816, 43.26154], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.9379, 43.26138], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93886, 43.2616], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93897, 43.26378], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93913, 43.26378], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93808, 43.26416], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93802, 43.26415], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93872, 43.26157], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.9421, 43.26234], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.94203, 43.26179], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.9386, 43.26144], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93863, 43.26137], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93708, 43.2652], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93702, 43.26516], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93855, 43.26158], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.9396, 43.26085], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93848, 43.26155], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93828, 43.26157], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93353, 43.26048], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93839, 43.26154], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93844, 43.2616], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93846, 43.26161], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93847, 43.26156], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93965, 43.26253], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93966, 43.26251], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93912, 43.26181], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93887, 43.2617], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93859, 43.26169], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93683, 43.26226], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93691, 43.26228], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93832, 43.26157], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93813, 43.26153], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93847, 43.26162], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93852, 43.26164], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93345, 43.26035], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93847, 43.26164], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93847, 43.26165], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.9381, 43.26155], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93813, 43.26155], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93821, 43.26158], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93823, 43.26151], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93349, 43.26041], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.9382, 43.2615], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93796, 43.26145], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93795, 43.26149], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93819, 43.26152], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93819, 43.26155], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93823, 43.26158], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93839, 43.26183], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.9384, 43.26193], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93818, 43.26157], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93797, 43.26161], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93798, 43.26155], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93794, 43.26139], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93758, 43.26181], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93772, 43.26175], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93806, 43.26159], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93776, 43.26135], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.9379, 43.26138], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93922, 43.26271], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93804, 43.26158], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93192, 43.26095], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93184, 43.26089], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70}}, {"type": "Feature", "geometry": {"coordinates": [-2.93792, 43.26139], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93908, 43.26208], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93897, 43.26219], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93798, 43.26151], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93792, 43.26147], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93821, 43.26241], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93818, 43.26247], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93903, 43.2622], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93827, 43.26255], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93818, 43.26253], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93417, 43.26104], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93416, 43.26108], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93743, 43.26186], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93753, 43.26176], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93804, 43.26153], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93882, 43.26257], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93794, 43.26157], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93834, 43.26226], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93798, 43.26244], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93816, 43.26237], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93993, 43.26343], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93986, 43.26182], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93983, 43.26182], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93809, 43.26244], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93813, 43.2626], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93804, 43.26256], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93439, 43.26041], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93876, 43.26266], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93807, 43.26252], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93808, 43.26251], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93804, 43.26245], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93917, 43.26202], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93963, 43.26254], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.94518, 43.26329], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 62.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93866, 43.26265], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93867, 43.26264], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.9387, 43.26272], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.9369, 43.26202], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93688, 43.26208], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93905, 43.262], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93901, 43.26241], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93893, 43.2626], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93931, 43.26279], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93884, 43.26267], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93886, 43.26268], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.9385, 43.26262], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93898, 43.26266], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93948, 43.26281], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93182, 43.26086], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93883, 43.26333], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93947, 43.26283], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93815, 43.26261], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93686, 43.26213], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93689, 43.26211], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93852, 43.26257], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93808, 43.26292], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93813, 43.26278], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.9336, 43.26061], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93364, 43.26067], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93791, 43.26172], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93814, 43.26241], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93829, 43.26252], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93821, 43.26247], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93826, 43.26245], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93889, 43.26256], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93891, 43.26256], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93816, 43.26252], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93815, 43.26254], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93835, 43.26257], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93927, 43.26072], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.9392, 43.2607], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.9396, 43.26081], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93744, 43.26082], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93746, 43.26076], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93804, 43.26145], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93886, 43.26063], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93344, 43.26027], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93778, 43.26141], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93784, 43.26142], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93799, 43.2615], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93814, 43.26149], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93808, 43.26152], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.9378, 43.2614], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.9381, 43.26146], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93792, 43.26142], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93844, 43.26138], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93833, 43.26144], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93852, 43.2617], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.9385, 43.2617], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93652, 43.26298], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93656, 43.26294], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93731, 43.26461], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93734, 43.26461], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93747, 43.26442], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.9374, 43.26445], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93626, 43.26106], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93617, 43.26104], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93803, 43.26298], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93916, 43.26406], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93901, 43.26403], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93703, 43.26284], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93676, 43.26278], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93788, 43.26293], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93796, 43.26289], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93761, 43.26287], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93737, 43.26453], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93734, 43.26454], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93734, 43.26459], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93531, 43.26083], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.9371, 43.2612], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93713, 43.26125], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93577, 43.26082], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93582, 43.26071], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93695, 43.26064], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.94097, 43.26535], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.9396, 43.26469], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93646, 43.26346], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93701, 43.26358], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93682, 43.26084], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93679, 43.26087], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93675, 43.2609], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93727, 43.26122], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93738, 43.26451], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93613, 43.26157], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93655, 43.26118], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.9373, 43.26121], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.9369, 43.26113], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93799, 43.26249], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93703, 43.26116], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93709, 43.26117], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93468, 43.26229], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93499, 43.26247], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93673, 43.26094], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93678, 43.2611], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93583, 43.2607], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93583, 43.26068], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93719, 43.2611], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.9367, 43.26098], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93665, 43.26108], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93666, 43.26107], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93667, 43.26103], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93814, 43.26417], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93803, 43.26412], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.9373, 43.26131], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93721, 43.26136], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93648, 43.26106], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93759, 43.26466], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93772, 43.26468], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93664, 43.26109], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93672, 43.26108], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93631, 43.26102], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70}}, {"type": "Feature", "geometry": {"coordinates": [-2.93628, 43.26112], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93594, 43.2606], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93526, 43.26082], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93583, 43.26068], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93582, 43.26071], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93563, 43.2609], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93573, 43.26092], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93615, 43.26099], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93656, 43.26108], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.9367, 43.26116], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93678, 43.26112], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.9376, 43.26464], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93773, 43.26467], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93598, 43.26095], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93595, 43.2609], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93508, 43.26091], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93521, 43.26087], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93597, 43.26105], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93602, 43.26106], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93737, 43.26432], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93747, 43.26423], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93586, 43.26112], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.9359, 43.261], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93579, 43.26104], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93582, 43.26096], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93584, 43.26087], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93575, 43.26095], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93579, 43.26097], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.9358, 43.26096], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93591, 43.26069], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93582, 43.26098], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93591, 43.26098], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76}}, {"type": "Feature", "geometry": {"coordinates": [-2.9359, 43.26107], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93783, 43.2635], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93779, 43.2635], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93564, 43.26096], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93552, 43.26092], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93526, 43.26082], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93714, 43.26135], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93721, 43.26129], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93713, 43.26127], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93682, 43.26124], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93669, 43.26117], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93724, 43.26129], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93722, 43.26127], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93724, 43.26128], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93849, 43.26425], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93862, 43.26425], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93717, 43.26121], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93715, 43.26119], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93719, 43.26116], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93724, 43.26121], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93719, 43.26134], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93708, 43.2613], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93707, 43.26193], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93703, 43.26199], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93715, 43.26165], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93569, 43.26275], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93581, 43.2627], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93736, 43.26072], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93758, 43.26048], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93759, 43.26052], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93758, 43.26476], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93765, 43.26478], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93763, 43.26141], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.9357, 43.26104], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93569, 43.26101], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93442, 43.26263], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93438, 43.26267], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93517, 43.26087], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93521, 43.26085], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93587, 43.26078], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93578, 43.26131], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.936, 43.26051], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93541, 43.26194], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93536, 43.26202], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93542, 43.26186], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93531, 43.2619], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93517, 43.26083], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93479, 43.26076], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93471, 43.26077], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93507, 43.26078], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93521, 43.26246], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93529, 43.26256], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93479, 43.26072], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93526, 43.26084], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93508, 43.26081], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93569, 43.26399], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93575, 43.26408], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93506, 43.2608], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93508, 43.26082], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93553, 43.2609], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93511, 43.26088], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93517, 43.26084], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93505, 43.26082], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93421, 43.26159], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93497, 43.26078], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93496, 43.26083], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93479, 43.26176], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93476, 43.2617], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93497, 43.2608], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93503, 43.26088], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.935, 43.26089], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93431, 43.26089], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93492, 43.26109], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93397, 43.26268], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93422, 43.26273], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93543, 43.26092], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93577, 43.26103], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93575, 43.26096], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93598, 43.26051], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93567, 43.26098], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.9357, 43.26095], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93504, 43.26101], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93488, 43.2614], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93546, 43.26164], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93447, 43.26072], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.9348, 43.2616], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93452, 43.26066], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93435, 43.26067], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93489, 43.26077], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93444, 43.26069], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93437, 43.26076], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93425, 43.26103], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93443, 43.26265], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.9345, 43.26265], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93431, 43.2606], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93433, 43.26067], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93449, 43.26068], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93436, 43.26186], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93433, 43.26182], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93403, 43.26067], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93424, 43.26077], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93382, 43.26081], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93379, 43.26074], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.9343, 43.26272], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93418, 43.26072], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93421, 43.26276], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93414, 43.26282], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93441, 43.26183], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93448, 43.26178], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93473, 43.26171], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.935, 43.2611], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93562, 43.26124], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93529, 43.26186], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93496, 43.26099], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93634, 43.26318], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93647, 43.26297], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.9342, 43.26116], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93481, 43.26138], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.9346, 43.26172], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93469, 43.26168], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93652, 43.26217], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93658, 43.2622], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93475, 43.26178], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93496, 43.26183], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93504, 43.26181], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93445, 43.26178], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93468, 43.26176], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.9347, 43.26177], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.9347, 43.26171], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93407, 43.26135], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93409, 43.26131], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93463, 43.26175], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93501, 43.26184], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93489, 43.26123], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93485, 43.26129], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93562, 43.26169], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93554, 43.26188], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93808, 43.26465], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93785, 43.26461], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93401, 43.26159], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93415, 43.26155], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93479, 43.2615], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93477, 43.26153], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93425, 43.26167], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93308, 43.26079], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93422, 43.26167], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93436, 43.2617], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93402, 43.26074], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93444, 43.26168], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93473, 43.26158], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93426, 43.2617], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93419, 43.26168], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93423, 43.26169], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93431, 43.26178], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93441, 43.26173], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93657, 43.26285], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93435, 43.26266], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93441, 43.2618], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93418, 43.26174], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93977, 43.26469], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.9343, 43.26271], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93668, 43.26223], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.9368, 43.26226], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93749, 43.26244], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93766, 43.26244], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.9371, 43.26178], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93705, 43.26192], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93704, 43.26191], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93699, 43.26209], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93702, 43.26213], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93774, 43.26167], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93722, 43.26191], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93599, 43.26102], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93683, 43.2621], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93642, 43.26211], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93706, 43.26153], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.9369, 43.26191], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.937, 43.26206], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93703, 43.26205], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93799, 43.26162], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93712, 43.26196], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93688, 43.26214], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93694, 43.26211], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93699, 43.2623], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93705, 43.26199], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93704, 43.26202], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93702, 43.26207], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93697, 43.26192], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93717, 43.26145], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93698, 43.26223], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93698, 43.26215], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93699, 43.26215], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93762, 43.26186], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93824, 43.26219], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93683, 43.26224], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93557, 43.26157], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.9378, 43.26296], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93789, 43.26298], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93773, 43.26239], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93755, 43.26357], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.9374, 43.26352], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93685, 43.26236], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93683, 43.2622], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93665, 43.26222], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93668, 43.26221], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93645, 43.26225], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.9365, 43.26219], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93695, 43.26209], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.936, 43.261], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93651, 43.26229], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93686, 43.26219], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93685, 43.26215], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93678, 43.26219], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93671, 43.26222], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93733, 43.26235], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93748, 43.26234], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.9367, 43.26217], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93677, 43.26217], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93684, 43.26218], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93681, 43.26224], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.9369, 43.26342], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.9371, 43.26337], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93681, 43.26232], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93715, 43.26281], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93734, 43.26281], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93678, 43.26232], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93496, 43.26274], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93509, 43.26275], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93673, 43.26237], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93668, 43.26247], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93665, 43.26231], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93656, 43.26165], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93558, 43.26193], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93505, 43.26088], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93557, 43.26198], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93555, 43.26204], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93642, 43.26221], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93644, 43.26228], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93672, 43.26219], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93641, 43.2623], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93551, 43.26278], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93549, 43.26268], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93614, 43.26205], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93611, 43.2621], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93619, 43.26212], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93675, 43.26263], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93574, 43.26109], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93577, 43.2611], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93679, 43.26269], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93668, 43.26265], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93706, 43.26275], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.9366, 43.26299], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93659, 43.26287], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93674, 43.26274], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93662, 43.26279], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93798, 43.2631], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93793, 43.26323], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93674, 43.26272], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.9354, 43.26192], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93455, 43.26176], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93447, 43.26172], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93666, 43.26282], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93666, 43.26272], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93666, 43.2627], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93535, 43.2627], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93572, 43.26286], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93567, 43.26281], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93769, 43.26367], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93756, 43.2637], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93412, 43.26281], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93431, 43.26169], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93456, 43.26241], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93559, 43.26204], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93554, 43.26144], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93522, 43.26083], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93526, 43.26086], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93542, 43.26193], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93752, 43.2607], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.9358, 43.26208], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93601, 43.26212], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93519, 43.26245], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93512, 43.26262], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93539, 43.26194], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93537, 43.26183], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93547, 43.26208], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93551, 43.26205], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93538, 43.26203], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.936, 43.26249], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93539, 43.2623], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93701, 43.26203], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93631, 43.26235], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93528, 43.26197], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93414, 43.26118], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93409, 43.26125], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93453, 43.26179], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93471, 43.26183], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93564, 43.26133], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93532, 43.26192], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93525, 43.26195], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.9353, 43.26201], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93759, 43.26457], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93497, 43.26185], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93507, 43.26191], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93537, 43.2626], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93546, 43.26265], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93455, 43.26259], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93461, 43.26257], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93799, 43.26301], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93463, 43.26236], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93816, 43.26271], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.9381, 43.26274], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.9353, 43.26252], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.9358, 43.26258], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93553, 43.26268], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93539, 43.26261], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93549, 43.26265], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.9352, 43.26223], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93531, 43.2627], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93534, 43.26262], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93492, 43.26182], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93478, 43.26262], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93487, 43.26263], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93486, 43.26246], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93499, 43.2625], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93514, 43.26263], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.9353, 43.26258], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93448, 43.26174], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93505, 43.26248], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93511, 43.26245], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93797, 43.26298], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93789, 43.26296], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93462, 43.26177], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93499, 43.26261], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93513, 43.26264], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93474, 43.26265], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93482, 43.26272], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.935, 43.26263], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93489, 43.26272], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93535, 43.26284], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93537, 43.26283], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93621, 43.2621], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93613, 43.26209], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93443, 43.26204], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93446, 43.2621], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93593, 43.26264], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93511, 43.26188], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93518, 43.26189], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93556, 43.26268], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93559, 43.26267], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93658, 43.26226], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93788, 43.26308], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93788, 43.26322], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93552, 43.26169], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93554, 43.26163], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93567, 43.26278], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.9356, 43.26275], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93543, 43.26274], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 84}}, {"type": "Feature", "geometry": {"coordinates": [-2.9355, 43.26279], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93594, 43.26257], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93558, 43.26274], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93721, 43.26238], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93558, 43.26285], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93553, 43.26279], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93759, 43.26379], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.9376, 43.26375], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93564, 43.26291], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93695, 43.26197], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93562, 43.26293], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93511, 43.26295], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93504, 43.26293], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93547, 43.26291], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93448, 43.26297], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93523, 43.26278], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93541, 43.26275], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93556, 43.26286], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93495, 43.26291], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93537, 43.26285], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93544, 43.26291], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93482, 43.26364], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93494, 43.26348], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93522, 43.26267], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93522, 43.2628], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.9351, 43.26273], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93499, 43.26272], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93525, 43.26291], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93548, 43.26298], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93513, 43.26296], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93505, 43.26291], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93523, 43.2629], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93492, 43.26292], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93494, 43.26293], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93489, 43.26294], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93488, 43.26307], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93494, 43.26309], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93455, 43.26282], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93489, 43.26261], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93474, 43.26255], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93486, 43.2625], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93781, 43.26295], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.9348, 43.26247], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93477, 43.26244], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93532, 43.26211], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93475, 43.26262], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93482, 43.2629], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93469, 43.26251], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93809, 43.26271], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93462, 43.26251], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93797, 43.263], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93777, 43.26348], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93447, 43.26262], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93458, 43.26252], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93788, 43.26334], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93783, 43.2634], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93383, 43.26227], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93451, 43.26232], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93469, 43.26264], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93457, 43.2626], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93446, 43.26274], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93444, 43.26269], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93453, 43.26263], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93452, 43.26261], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93449, 43.2626], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93443, 43.26279], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93445, 43.26278], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93441, 43.26278], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93778, 43.26353], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93784, 43.26352], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93923, 43.26278], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93474, 43.26288], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93472, 43.26276], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93494, 43.26118], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93492, 43.2613], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93525, 43.26266], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93475, 43.26273], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93481, 43.26274], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93469, 43.26275], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93464, 43.26279], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93483, 43.26274], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93489, 43.26282], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.9347, 43.26249], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93468, 43.26266], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93429, 43.26193], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93462, 43.26277], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93462, 43.26267], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93472, 43.26289], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93481, 43.26291], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93457, 43.26283], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93491, 43.26292], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93455, 43.26285], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93439, 43.26283], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93425, 43.26285], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93451, 43.2627], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93463, 43.26266], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93425, 43.26278], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93431, 43.26275], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93449, 43.26274], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93457, 43.26269], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.9344, 43.26212], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.9343, 43.26181], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93457, 43.26268], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93453, 43.26271], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.9344, 43.26284], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93437, 43.26287], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93459, 43.26228], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93453, 43.26221], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93472, 43.26256], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.9332, 43.26221], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93318, 43.26215], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93387, 43.26165], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93426, 43.26287], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93415, 43.26284], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93436, 43.26289], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93419, 43.26306], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93789, 43.26354], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93783, 43.26348], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93893, 43.26443], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.9389, 43.26436], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93896, 43.26436], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93899, 43.26436], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93924, 43.26349], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93914, 43.2648], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93903, 43.26484], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93902, 43.26337], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93827, 43.26304], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93907, 43.26381], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93924, 43.26349], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93923, 43.26351], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93933, 43.26402], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93936, 43.26395], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93938, 43.26396], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.94086, 43.26427], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 53.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93923, 43.26353], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93923, 43.26353], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93918, 43.26391], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93886, 43.26398], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93877, 43.26374], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93886, 43.26336], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93811, 43.26368], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93814, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93917, 43.26393], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93916, 43.26408], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93903, 43.26405], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.94, 43.26473], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93809, 43.26382], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93792, 43.26365], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.9393, 43.26409], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93891, 43.26433], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93893, 43.26429], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93933, 43.26407], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.9342, 43.26086], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93423, 43.26092], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93531, 43.2622], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.9389, 43.26404], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93783, 43.26346], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93807, 43.26281], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93819, 43.26361], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93829, 43.26372], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93775, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93787, 43.26354], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93816, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93793, 43.26364], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93846, 43.26377], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93864, 43.26381], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93794, 43.26307], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.938, 43.26293], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93774, 43.26361], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93899, 43.26389], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93804, 43.26282], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93864, 43.26379], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93846, 43.26375], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93783, 43.26302], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93706, 43.26347], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93723, 43.2635], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93845, 43.26367], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.939, 43.26387], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93819, 43.26361], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93772, 43.26361], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93814, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.9378, 43.26327], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93756, 43.2642], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93754, 43.26412], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93763, 43.26349], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93773, 43.26346], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93757, 43.26296], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93736, 43.26343], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.9373, 43.2629], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93781, 43.26376], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93885, 43.26433], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93881, 43.26425], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93874, 43.26428], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93836, 43.26388], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93831, 43.2647], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93826, 43.26422], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93896, 43.26438], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93893, 43.26435], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93881, 43.26385], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93773, 43.26359], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93882, 43.26383], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93776, 43.26352], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.9377, 43.26373], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93772, 43.26367], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93767, 43.26373], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93759, 43.26373], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93647, 43.26233], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93654, 43.2623], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93664, 43.26395], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93745, 43.26413], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.9378, 43.26377], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93769, 43.2639], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93773, 43.26379], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93641, 43.26242], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93625, 43.26244], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93691, 43.26207], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93758, 43.26371], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93759, 43.26374], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93486, 43.26283], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93742, 43.2644], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93739, 43.26442], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93683, 43.26331], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93653, 43.26317], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93764, 43.26402], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93744, 43.26452], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93753, 43.26394], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93772, 43.26458], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93769, 43.26459], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93756, 43.2642], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93824, 43.26417], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93929, 43.26411], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93923, 43.26425], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.939, 43.26412], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93909, 43.26438], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93919, 43.26441], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.9392, 43.26431], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93999, 43.26474], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93897, 43.26434], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93897, 43.26419], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93888, 43.26434], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93896, 43.26436], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93895, 43.26418], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93907, 43.26436], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93893, 43.26435], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93896, 43.26444], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93908, 43.26447], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93917, 43.26438], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93926, 43.26418], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93886, 43.26442], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93402, 43.26071], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.9341, 43.2607], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93898, 43.26464], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93877, 43.26469], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93905, 43.26448], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93937, 43.26472], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.9388, 43.2648], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93892, 43.26483], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93976, 43.26471], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.94034, 43.26443], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.9396, 43.2647], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93937, 43.26473], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93915, 43.26482], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93908, 43.26519], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93896, 43.26446], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93783, 43.2646], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.9341, 43.26112], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93397, 43.26118], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93891, 43.26481], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93783, 43.2646], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93892, 43.26488], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93805, 43.2649], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93799, 43.26484], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93893, 43.2649], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93904, 43.26486], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.94543, 43.26555], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94573, 43.26599], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93894, 43.26519], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93886, 43.26524], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93895, 43.2652], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93882, 43.26507], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70}}, {"type": "Feature", "geometry": {"coordinates": [-2.93386, 43.26071], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93886, 43.26521], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.9389, 43.2643], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93849, 43.26422], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93803, 43.26417], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93773, 43.26458], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93874, 43.26477], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93876, 43.26473], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93887, 43.26444], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.9348, 43.26075], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93471, 43.26073], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93838, 43.26423], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93569, 43.26306], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93583, 43.26307], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93573, 43.26352], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93581, 43.26351], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93732, 43.26111], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93756, 43.26422], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93631, 43.26366], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93578, 43.26295], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93755, 43.26423], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93755, 43.26423], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93747, 43.26428], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93751, 43.26433], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93744, 43.26451], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93877, 43.26482], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93779, 43.26499], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93766, 43.26502], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93886, 43.26515], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93777, 43.26459], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93748, 43.26289], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93656, 43.26277], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93673, 43.2634], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93672, 43.26254], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93671, 43.26249], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93667, 43.26259], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93679, 43.26237], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93459, 43.26214], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93631, 43.26483], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.9364, 43.26483], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93795, 43.26482], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93789, 43.26482], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.9388, 43.26479], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93878, 43.2646], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93872, 43.265], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93877, 43.26497], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93877, 43.2648], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93874, 43.26479], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93873, 43.26497], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93768, 43.26477], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93763, 43.26475], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93874, 43.26493], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93876, 43.26489], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93801, 43.26466], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93805, 43.26484], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93862, 43.26516], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93856, 43.26531], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93816, 43.26486], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93825, 43.26471], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93844, 43.26493], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93829, 43.26491], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93823, 43.2647], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.9387, 43.26498], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93875, 43.26486], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93772, 43.26479], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93884, 43.26515], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93864, 43.26518], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.9388, 43.26508], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93775, 43.26508], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93775, 43.26514], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93812, 43.26468], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93818, 43.26487], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93677, 43.26243], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93878, 43.26495], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.9387, 43.26505], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93869, 43.265], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93873, 43.2649], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93785, 43.26471], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93831, 43.2649], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93758, 43.26551], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93757, 43.26557], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.9387, 43.26503], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93849, 43.26496], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93809, 43.26487], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93867, 43.26511], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93884, 43.26522], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93914, 43.26545], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.94086, 43.2653], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.9334, 43.26379], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93344, 43.26377], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93416, 43.26332], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93427, 43.26327], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93902, 43.26555], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93909, 43.26551], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93756, 43.26481], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93774, 43.26484], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93725, 43.26477], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93785, 43.26469], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93791, 43.26487], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93766, 43.26502], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93787, 43.26485], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93794, 43.26483], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93746, 43.26463], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93752, 43.26473], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93596, 43.26505], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93608, 43.2651], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93713, 43.26523], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.9371, 43.26521], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93786, 43.26482], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93709, 43.26525], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93784, 43.26486], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.9359, 43.2651], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93597, 43.26507], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93712, 43.26524], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93723, 43.26487], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.9373, 43.26479], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93695, 43.26448], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93718, 43.26509], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93765, 43.26505], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93701, 43.26517], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93785, 43.265], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93806, 43.26525], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93877, 43.26527], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93765, 43.26505], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.9376, 43.26518], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93753, 43.26534], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.94062, 43.26628], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.94076, 43.26621], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93591, 43.26464], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93592, 43.26464], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70}}, {"type": "Feature", "geometry": {"coordinates": [-2.93442, 43.26398], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93456, 43.26401], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93345, 43.26376], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93341, 43.26377], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93467, 43.26404], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93456, 43.26409], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93595, 43.26433], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93599, 43.26434], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93527, 43.26314], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93517, 43.26311], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93605, 43.26395], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70}}, {"type": "Feature", "geometry": {"coordinates": [-2.93615, 43.26388], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.9346, 43.26367], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93466, 43.26377], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93698, 43.26455], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93694, 43.26458], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93638, 43.26317], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93641, 43.26324], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93657, 43.26325], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93725, 43.26459], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93556, 43.26369], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93552, 43.2637], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93565, 43.26365], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93571, 43.26365], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93638, 43.26333], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93638, 43.26331], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93574, 43.2633], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93602, 43.26336], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93567, 43.26297], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93554, 43.26307], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93567, 43.26306], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93579, 43.263], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93553, 43.2633], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.9356, 43.26325], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.9358, 43.26304], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93641, 43.26332], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93638, 43.26348], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93653, 43.26302], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93655, 43.26298], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93608, 43.26364], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93627, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.9364, 43.26333], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93756, 43.26356], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93478, 43.26354], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93487, 43.26351], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 82.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93636, 43.26342], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93605, 43.26357], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93616, 43.26402], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93643, 43.26436], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93604, 43.26419], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.9361, 43.26407], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93619, 43.26379], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93585, 43.26321], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93513, 43.26298], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93532, 43.26302], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93597, 43.26351], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93578, 43.26352], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93568, 43.26315], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 85.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93567, 43.26308], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93551, 43.26329], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93557, 43.26325], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93603, 43.2635], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93553, 43.26372], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93562, 43.26368], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93718, 43.26463], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93706, 43.26457], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93582, 43.2635], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93584, 43.26363], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93593, 43.26356], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93592, 43.2635], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.9358, 43.26355], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93583, 43.26357], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93582, 43.26351], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93602, 43.26352], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93608, 43.26357], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93591, 43.26352], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93579, 43.26357], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.9357, 43.26351], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93696, 43.26458], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93717, 43.26479], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93718, 43.26478], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93644, 43.26324], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93587, 43.26418], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93582, 43.26413], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93581, 43.26359], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93584, 43.26359], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93849, 43.26427], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93602, 43.26325], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93607, 43.26513], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 53.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93615, 43.26508], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93634, 43.26342], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93588, 43.26355], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93593, 43.26354], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93574, 43.26357], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93512, 43.26385], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93513, 43.26384], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93513, 43.26372], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93538, 43.26369], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93554, 43.26305], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93573, 43.26356], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93575, 43.26365], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93457, 43.264], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93458, 43.26402], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93581, 43.26366], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93569, 43.26363], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93569, 43.26359], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93582, 43.26362], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.9358, 43.26364], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93575, 43.26366], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93559, 43.26381], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93609, 43.26385], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93765, 43.26533], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.9346, 43.26392], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93459, 43.264], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93598, 43.26381], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93601, 43.26404], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93608, 43.26406], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93591, 43.26381], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93551, 43.26374], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93609, 43.2642], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93586, 43.26461], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93494, 43.26414], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.9351, 43.26456], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93617, 43.26506], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93514, 43.26385], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93617, 43.2643], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93571, 43.26414], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93558, 43.26396], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93613, 43.26457], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93614, 43.26463], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93577, 43.26407], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.936, 43.26383], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93578, 43.26399], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93542, 43.26304], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93551, 43.26304], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93485, 43.26303], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93488, 43.26298], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.9344, 43.26307], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93437, 43.26308], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93535, 43.26347], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93544, 43.26344], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93562, 43.26354], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93545, 43.2632], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93547, 43.26319], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93481, 43.26346], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93516, 43.26368], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93518, 43.26349], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93504, 43.2631], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93504, 43.26309], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93565, 43.26299], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93456, 43.26324], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93464, 43.26332], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.9355, 43.26298], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93558, 43.26324], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93553, 43.26314], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93552, 43.26306], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93532, 43.263], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.9355, 43.26313], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93565, 43.26315], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 85.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93549, 43.2632], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93567, 43.26317], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 85.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93508, 43.26311], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93517, 43.26313], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93511, 43.26332], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.9352, 43.26332], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93547, 43.26321], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93508, 43.26309], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93512, 43.26305], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.9351, 43.26304], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.9351, 43.26297], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93481, 43.26365], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93475, 43.26362], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93508, 43.26315], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93511, 43.26316], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93489, 43.26328], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93502, 43.2633], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93498, 43.26311], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93456, 43.2631], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93458, 43.26315], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93498, 43.26338], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93484, 43.26337], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 85.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93566, 43.26332], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.9356, 43.26336], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93547, 43.26335], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93543, 43.26359], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93541, 43.26355], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93538, 43.26325], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93499, 43.2634], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93513, 43.2634], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93529, 43.26339], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93538, 43.26337], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93557, 43.26338], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93545, 43.26333], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93542, 43.2635], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93551, 43.26341], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93552, 43.26364], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93549, 43.26359], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93451, 43.26299], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.9346, 43.26301], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93527, 43.26338], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.9353, 43.2633], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93534, 43.26327], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93527, 43.2634], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.9351, 43.2633], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93502, 43.26332], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93485, 43.26339], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 85.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93532, 43.26326], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93539, 43.26323], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93518, 43.26325], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93521, 43.26329], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93518, 43.2633], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93536, 43.26335], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93465, 43.2632], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93466, 43.26331], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93475, 43.26311], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93525, 43.26351], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.9347, 43.26394], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93465, 43.26385], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93506, 43.26349], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93513, 43.26341], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93488, 43.26305], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93486, 43.26297], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93451, 43.26297], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93464, 43.26287], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93448, 43.26299], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93486, 43.26306], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93463, 43.26317], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93465, 43.26318], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93474, 43.26323], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93477, 43.26313], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93435, 43.26296], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93468, 43.263], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93459, 43.26299], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93469, 43.26302], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93477, 43.26302], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93462, 43.26317], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93488, 43.2633], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93447, 43.26318], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93444, 43.26319], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93414, 43.26504], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93414, 43.26511], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93438, 43.26296], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93451, 43.26306], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93453, 43.26305], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93439, 43.26303], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93438, 43.26298], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93419, 43.26306], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93437, 43.26324], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.9343, 43.26329], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93454, 43.26311], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93412, 43.26295], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93415, 43.26298], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93423, 43.26298], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93419, 43.26291], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93418, 43.26303], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93749, 43.26423], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93752, 43.26417], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93419, 43.26307], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93432, 43.26311], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93419, 43.26307], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93615, 43.26437], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.9362, 43.26448], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93423, 43.26306], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93786, 43.26488], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93416, 43.26345], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93418, 43.26344], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.9344, 43.26334], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93456, 43.26338], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.9342, 43.26309], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93606, 43.26512], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 53.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93602, 43.2651], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93446, 43.2632], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93436, 43.26302], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93464, 43.26341], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93433, 43.26319], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93421, 43.2631], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93427, 43.26313], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93421, 43.2631], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93422, 43.26314], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93392, 43.26386], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93406, 43.26384], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.9342, 43.26336], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93466, 43.26351], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93429, 43.26321], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93431, 43.26331], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93438, 43.26325], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93482, 43.26338], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 85.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93475, 43.26334], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93473, 43.26325], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.9359, 43.26446], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93582, 43.26446], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93453, 43.26416], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93479, 43.26346], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93455, 43.26326], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93574, 43.26402], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93473, 43.26335], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93411, 43.26385], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93413, 43.2639], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93505, 43.26372], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93448, 43.26334], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93468, 43.26347], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93406, 43.26337], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93398, 43.26291], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93412, 43.26284], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.9343, 43.26508], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93426, 43.26501], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93556, 43.26368], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93571, 43.26389], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93572, 43.26363], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93572, 43.26359], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.9357, 43.26363], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93565, 43.26359], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93567, 43.26364], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93625, 43.26478], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93616, 43.26475], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93592, 43.26461], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93589, 43.26455], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93539, 43.26413], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93549, 43.26385], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93531, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93519, 43.26409], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93511, 43.2637], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93511, 43.2637], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93512, 43.2637], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93513, 43.26372], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93517, 43.26408], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93508, 43.26373], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93498, 43.26375], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93563, 43.26391], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93508, 43.26373], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.9351, 43.26383], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93503, 43.26374], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93647, 43.26509], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93642, 43.2651], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93607, 43.26452], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93547, 43.26382], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93548, 43.26383], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93652, 43.26524], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93662, 43.2653], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93643, 43.26512], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93521, 43.26409], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93644, 43.26513], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93512, 43.26382], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93509, 43.26384], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93474, 43.26399], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93475, 43.2638], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93498, 43.26404], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93582, 43.2645], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93473, 43.26361], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93428, 43.26393], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93423, 43.26388], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.9348, 43.26367], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93428, 43.26305], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93442, 43.26397], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.9345, 43.26389], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93416, 43.26291], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93418, 43.26295], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93468, 43.26402], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93568, 43.265], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93558, 43.2651], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93463, 43.26412], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93493, 43.26408], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93441, 43.26403], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93453, 43.26408], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93443, 43.26392], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93297, 43.263], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93342, 43.26279], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93414, 43.26346], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93445, 43.26409], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93722, 43.26453], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.9357, 43.26501], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93573, 43.26508], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93729, 43.26451], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93712, 43.2651], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93708, 43.26501], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93585, 43.26465], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93719, 43.26476], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93691, 43.26457], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93609, 43.26465], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93618, 43.26468], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93675, 43.26454], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.9364, 43.26499], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93607, 43.26463], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93607, 43.26465], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93612, 43.26507], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93629, 43.26483], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93629, 43.26492], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93586, 43.2641], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93655, 43.26449], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93605, 43.26433], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93602, 43.26418], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93591, 43.26424], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93602, 43.26439], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.936, 43.26436], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93625, 43.26437], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93612, 43.26434], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.9363, 43.26351], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93623, 43.26369], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93557, 43.26382], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93594, 43.26512], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93603, 43.26514], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 53.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93598, 43.26432], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93596, 43.2643], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93594, 43.26431], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93601, 43.26425], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.9363, 43.26444], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93616, 43.26451], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93603, 43.26323], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93597, 43.26435], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93623, 43.2646], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93643, 43.26446], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93606, 43.26445], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93627, 43.26478], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.9358, 43.26413], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93642, 43.26486], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93653, 43.26501], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93634, 43.265], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.936, 43.26441], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93604, 43.26446], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93715, 43.26485], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93719, 43.26491], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93586, 43.26431], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93592, 43.26464], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93578, 43.26429], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93571, 43.26432], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.9351, 43.26414], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93578, 43.26541], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93597, 43.26545], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93592, 43.2644], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93568, 43.26425], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93657, 43.26519], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93605, 43.26462], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.9361, 43.26458], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93605, 43.2646], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93606, 43.26462], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93606, 43.26463], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93591, 43.26466], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93592, 43.26464], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93542, 43.26361], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93589, 43.26467], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93635, 43.26488], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.9373, 43.26471], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93737, 43.26472], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93719, 43.26476], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93717, 43.26479], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.9371, 43.26498], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93638, 43.2644], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93727, 43.26472], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93709, 43.265], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93704, 43.26529], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93692, 43.2654], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93565, 43.26365], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93563, 43.26366], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93533, 43.26348], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93619, 43.26538], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 60.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93621, 43.26504], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93476, 43.26354], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93567, 43.2643], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93584, 43.26481], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93574, 43.2647], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.9358, 43.26498], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93623, 43.26497], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93622, 43.26483], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93641, 43.26484], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93649, 43.26305], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93646, 43.26311], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93618, 43.26499], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 60.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93629, 43.26361], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93578, 43.26495], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93631, 43.26501], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93546, 43.26363], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93624, 43.26498], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93626, 43.26496], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93631, 43.26501], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93619, 43.26503], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93613, 43.26504], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93618, 43.26503], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93614, 43.26506], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.9364, 43.26443], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93681, 43.26452], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93777, 43.26503], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93603, 43.26434], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93607, 43.26435], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93645, 43.26441], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93693, 43.26454], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.9387, 43.26481], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93875, 43.2648], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93838, 43.26474], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93669, 43.26442], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93591, 43.26504], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93293, 43.26419], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.9329, 43.26411], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93592, 43.26506], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93602, 43.26515], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93577, 43.26497], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93588, 43.26509], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.9359, 43.26505], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93564, 43.26419], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.9356, 43.26423], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93593, 43.26513], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93575, 43.26503], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93568, 43.26519], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93568, 43.2652], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93912, 43.26613], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93908, 43.26597], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93604, 43.26514], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.9359, 43.26511], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93342, 43.26268], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93355, 43.26271], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93356, 43.26269], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93342, 43.26266], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93255, 43.26199], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.9325, 43.2621], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93405, 43.26165], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93272, 43.26241], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93298, 43.26247], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93413, 43.26133], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93425, 43.26504], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.9347, 43.26409], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93397, 43.26281], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93567, 43.26522], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70}}, {"type": "Feature", "geometry": {"coordinates": [-2.93552, 43.26421], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.9343, 43.26509], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93385, 43.26359], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93427, 43.26507], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93416, 43.26504], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93581, 43.26475], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93583, 43.26468], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93542, 43.26533], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93444, 43.26512], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93435, 43.26479], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93423, 43.26097], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93539, 43.2658], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93546, 43.26561], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93518, 43.26414], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93431, 43.26515], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93458, 43.26515], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93499, 43.26489], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93416, 43.26524], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93424, 43.26521], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93418, 43.26067], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93386, 43.26073], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93562, 43.26535], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93566, 43.26539], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93263, 43.26493], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93266, 43.26489], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93353, 43.26343], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93376, 43.26287], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93273, 43.26147], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93274, 43.26153], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93235, 43.26231], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93239, 43.26232], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93237, 43.26111], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93242, 43.26109], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93276, 43.26103], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93263, 43.26128], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93272, 43.26332], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93269, 43.26331], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93323, 43.26075], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93343, 43.26146], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93342, 43.26144], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93387, 43.26075], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.9332, 43.26086], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93331, 43.26087], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93595, 43.26438], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93373, 43.26079], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.9339, 43.26097], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93417, 43.26095], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93399, 43.26112], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93395, 43.26105], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93368, 43.26074], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.9337, 43.26073], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93373, 43.26067], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93381, 43.26069], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93378, 43.26072], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.9336, 43.26075], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93216, 43.26073], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93371, 43.26075], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.9338, 43.26089], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93369, 43.26075], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93292, 43.26091], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93304, 43.26089], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93352, 43.26079], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93359, 43.26081], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93337, 43.26073], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93347, 43.26109], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93355, 43.26065], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93366, 43.26084], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93361, 43.26077], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93338, 43.26376], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93345, 43.26109], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93388, 43.26124], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93388, 43.26123], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93477, 43.26148], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93413, 43.26137], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93374, 43.26099], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.9338, 43.2611], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93388, 43.26126], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.9339, 43.26124], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93281, 43.26096], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93293, 43.26093], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93336, 43.26082], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93319, 43.26084], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93351, 43.26116], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93348, 43.26117], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93335, 43.26086], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93336, 43.26119], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93324, 43.26076], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.9334, 43.2612], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93346, 43.26145], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93342, 43.26145], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93339, 43.26148], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93335, 43.26086], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93333, 43.26086], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93379, 43.26154], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93373, 43.26151], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93193, 43.26079], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93386, 43.26156], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.9334, 43.26144], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93307, 43.26093], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93226, 43.26108], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93224, 43.26114], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93303, 43.26087], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93285, 43.26132], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.9324, 43.26083], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.9327, 43.2609], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93288, 43.26085], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93288, 43.26085], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93263, 43.26093], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93271, 43.26091], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93305, 43.26094], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93307, 43.26093], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93332, 43.26118], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.9328, 43.26101], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.9328, 43.26101], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93303, 43.26095], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93303, 43.26094], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93334, 43.26118], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93352, 43.26077], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93095, 43.26091], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93085, 43.26087], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93276, 43.26103], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.9327, 43.261], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93278, 43.26102], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.9326, 43.26171], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.26164], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93306, 43.26137], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93185, 43.26151], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93192, 43.26147], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93328, 43.26084], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.9326, 43.26108], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93222, 43.26129], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93188, 43.26183], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93181, 43.26178], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93335, 43.26081], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.9328, 43.26095], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93258, 43.26103], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93268, 43.26141], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93273, 43.2614], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93333, 43.26192], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93333, 43.262], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93326, 43.26145], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93326, 43.26141], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93304, 43.26136], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93306, 43.2614], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93405, 43.26133], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93319, 43.26143], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93323, 43.2614], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93268, 43.26131], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93514, 43.26527], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93424, 43.26165], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93414, 43.26129], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93393, 43.26156], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.934, 43.26157], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93294, 43.26137], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93332, 43.26146], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93327, 43.26141], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93334, 43.26143], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93385, 43.2613], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93366, 43.26138], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93409, 43.26164], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93419, 43.26161], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93413, 43.2614], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93409, 43.26139], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93369, 43.26156], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93377, 43.26156], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93258, 43.26176], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.9334, 43.2616], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.9334, 43.26156], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93329, 43.26187], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93317, 43.26193], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93165, 43.262], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93167, 43.26208], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93064, 43.26082], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93046, 43.26074], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93404, 43.26152], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93407, 43.26152], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93396, 43.26139], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93362, 43.26159], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93267, 43.26183], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93259, 43.26181], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.9329, 43.26257], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93303, 43.2626], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93415, 43.26171], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93374, 43.26273], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93368, 43.26274], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.9331, 43.26147], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93412, 43.2617], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.9329, 43.2629], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93288, 43.26285], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93349, 43.26158], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.9336, 43.26154], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93243, 43.26224], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93242, 43.26225], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93379, 43.26274], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93385, 43.26273], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93241, 43.26218], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93244, 43.26222], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93244, 43.26221], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93349, 43.26152], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.9334, 43.2615], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93351, 43.26152], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93244, 43.2622], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93337, 43.26153], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93353, 43.26163], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93244, 43.26222], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93245, 43.26234], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93188, 43.26161], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93184, 43.26165], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93309, 43.26137], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93242, 43.26226], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93242, 43.26227], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93293, 43.26187], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93271, 43.26161], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93284, 43.26142], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93278, 43.26135], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93275, 43.26141], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93282, 43.26142], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.9326, 43.26131], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93244, 43.26221], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93236, 43.2623], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93241, 43.2623], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93335, 43.26174], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.9324, 43.26233], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93242, 43.26233], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93243, 43.26231], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93275, 43.26135], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93045, 43.26076], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93244, 43.26232], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.9328, 43.26144], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93278, 43.26145], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93272, 43.26142], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93275, 43.26143], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93188, 43.2613], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.932, 43.26128], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93266, 43.26138], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93238, 43.26224], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93242, 43.26227], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93248, 43.26107], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.9323, 43.26171], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.9327, 43.26143], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93238, 43.26235], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93267, 43.26149], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.9318, 43.26122], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93171, 43.26124], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93205, 43.26168], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93197, 43.26168], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93244, 43.26128], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93252, 43.2613], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93265, 43.26177], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93268, 43.26169], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93211, 43.26111], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93203, 43.26096], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93218, 43.26074], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93212, 43.26065], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93237, 43.26103], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93216, 43.26064], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93226, 43.26089], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93252, 43.26125], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93241, 43.26116], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93209, 43.26077], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93562, 43.26521], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93195, 43.26081], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93181, 43.2612], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93175, 43.26114], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93104, 43.26094], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93097, 43.26087], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93156, 43.26107], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93152, 43.2611], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93112, 43.26093], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93114, 43.26097], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93158, 43.26108], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93162, 43.26114], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93191, 43.2612], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93204, 43.26123], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93203, 43.26114], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93151, 43.26117], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93149, 43.26116], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93255, 43.26128], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93257, 43.26102], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93237, 43.26103], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93384, 43.26158], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93269, 43.26098], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.932, 43.26149], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93192, 43.26151], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93191, 43.26102], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93198, 43.26115], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93213, 43.26119], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93205, 43.26113], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93215, 43.26112], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93213, 43.26121], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93232, 43.26113], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93229, 43.26122], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93216, 43.26119], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93241, 43.26178], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93161, 43.26115], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93151, 43.26117], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93194, 43.26162], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93197, 43.26155], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93121, 43.26096], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93173, 43.26069], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93147, 43.26115], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93347, 43.26157], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93243, 43.2623], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93271, 43.26189], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93265, 43.26188], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93153, 43.26107], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93171, 43.26124], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93192, 43.26135], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.9324, 43.26231], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93125, 43.26097], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93213, 43.26167], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93147, 43.26115], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93162, 43.2622], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93162, 43.26227], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93123, 43.26096], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93131, 43.2611], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93141, 43.26109], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93198, 43.261], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93327, 43.26225], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93347, 43.26257], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93426, 43.26066], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93108, 43.26103], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93114, 43.26104], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93132, 43.26139], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93018, 43.26099], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93031, 43.26088], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93248, 43.262], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93241, 43.26205], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93239, 43.26235], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93242, 43.26123], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93236, 43.26124], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93246, 43.26217], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.932, 43.26133], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93202, 43.26128], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.9326, 43.26166], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93207, 43.26135], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93752, 43.26564], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93702, 43.26565], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93201, 43.26127], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93191, 43.26123], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93253, 43.26199], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93242, 43.26227], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93197, 43.26134], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93265, 43.26154], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93247, 43.26175], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93199, 43.26163], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93245, 43.2622], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93151, 43.26112], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93185, 43.26167], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93195, 43.26167], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93198, 43.26163], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93198, 43.26165], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93196, 43.26101], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93196, 43.26163], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93227, 43.26174], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93222, 43.2618], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93209, 43.26177], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93212, 43.2617], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93248, 43.26181], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93249, 43.26179], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93315, 43.26194], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93314, 43.26195], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93197, 43.26167], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93194, 43.26169], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93197, 43.26169], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93344, 43.2628], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93186, 43.26165], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93193, 43.26174], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93195, 43.26174], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93192, 43.26174], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93248, 43.26245], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93239, 43.26244], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93184, 43.26171], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.9315, 43.26145], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93137, 43.26141], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93135, 43.2614], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93145, 43.26159], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93119, 43.26135], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 56.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93114, 43.26133], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 56.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93194, 43.26147], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93191, 43.2615], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93066, 43.26081], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93056, 43.26067], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93118, 43.26134], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 56.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93174, 43.26178], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93178, 43.26167], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93176, 43.26213], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93189, 43.26219], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93246, 43.26235], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93095, 43.26126], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93197, 43.26165], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93305, 43.2619], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93327, 43.26206], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93322, 43.26204], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93328, 43.26192], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93326, 43.26192], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93323, 43.26193], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93325, 43.26196], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.9333, 43.26199], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93243, 43.26224], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93354, 43.26262], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93345, 43.26184], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93342, 43.26176], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93338, 43.2618], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93246, 43.26217], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93323, 43.26205], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93331, 43.26197], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.9332, 43.26202], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93324, 43.26198], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93322, 43.26197], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93317, 43.262], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93322, 43.26194], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93319, 43.26195], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93323, 43.26195], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93108, 43.26215], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93306, 43.26244], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.94108, 43.26562], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.94104, 43.26548], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93314, 43.26225], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93291, 43.26194], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93304, 43.26197], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.9327, 43.26182], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93311, 43.26247], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.9331, 43.26243], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93299, 43.2619], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93204, 43.26171], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93258, 43.26183], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93256, 43.26181], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93264, 43.2619], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93259, 43.26189], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93256, 43.26189], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93298, 43.26192], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93375, 43.26087], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93278, 43.26191], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93398, 43.26138], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93402, 43.26132], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93361, 43.26264], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93353, 43.26264], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93379, 43.26277], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93374, 43.26265], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93337, 43.26261], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.9339, 43.26129], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93261, 43.26176], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.9334, 43.26279], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93338, 43.26259], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.9334, 43.26279], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93348, 43.26276], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93377, 43.26265], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93371, 43.26272], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93159, 43.26031], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93085, 43.26165], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93358, 43.26272], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93336, 43.26186], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93315, 43.26262], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93325, 43.26265], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93332, 43.26272], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93414, 43.26167], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93354, 43.26275], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93355, 43.26277], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93349, 43.26274], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93329, 43.26207], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93344, 43.2628], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93317, 43.26267], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93324, 43.26268], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93314, 43.26273], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.9332, 43.2627], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93405, 43.26351], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.9339, 43.26344], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93316, 43.26269], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93301, 43.26268], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.9333, 43.26259], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93385, 43.26104], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93305, 43.2626], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93303, 43.26258], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.934, 43.26145], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93382, 43.26098], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93279, 43.26248], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93287, 43.26248], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93257, 43.26247], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93322, 43.26252], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93309, 43.26251], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93318, 43.26246], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93271, 43.26152], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93269, 43.26149], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.9333, 43.26257], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93322, 43.26255], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93321, 43.26257], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93328, 43.26259], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93328, 43.26265], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93335, 43.26265], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93329, 43.26263], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93326, 43.26263], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93307, 43.26251], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93286, 43.26249], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93316, 43.26261], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93306, 43.26258], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93418, 43.26335], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93277, 43.26248], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93279, 43.26246], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.9329, 43.26255], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93204, 43.26169], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93271, 43.2625], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93271, 43.26244], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93392, 43.26127], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.9327, 43.26246], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93278, 43.26252], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93275, 43.26251], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93275, 43.26257], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93281, 43.26261], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93273, 43.26259], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93282, 43.26259], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93289, 43.26267], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93233, 43.26244], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93243, 43.26247], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93277, 43.26254], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93266, 43.26256], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93273, 43.26257], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93241, 43.26236], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93274, 43.26253], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93265, 43.26262], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93239, 43.26257], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93266, 43.26258], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93269, 43.26252], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93333, 43.2627], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93326, 43.26269], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93335, 43.26267], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93299, 43.26295], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93306, 43.26276], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.933, 43.26266], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93296, 43.26302], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93293, 43.26273], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93231, 43.26242], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93237, 43.26238], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93326, 43.26214], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93211, 43.26173], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93226, 43.26176], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93319, 43.26225], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93317, 43.26228], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93237, 43.26215], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93216, 43.26222], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93235, 43.2611], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93256, 43.26183], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93249, 43.26185], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93249, 43.26208], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93255, 43.26192], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.9327, 43.26147], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93184, 43.26193], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93243, 43.26212], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93233, 43.26225], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.9323, 43.26229], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93191, 43.26087], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93241, 43.26228], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93266, 43.26185], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93281, 43.26134], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93287, 43.26137], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93296, 43.26139], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93428, 43.26469], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93426, 43.26455], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93304, 43.26142], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.933, 43.26139], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93371, 43.26155], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93365, 43.26155], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93372, 43.26081], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.9334, 43.26182], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93499, 43.26531], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93482, 43.26533], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93423, 43.26163], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93403, 43.26129], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93399, 43.26127], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93392, 43.26115], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93518, 43.26415], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93527, 43.26417], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.9351, 43.26412], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93476, 43.26404], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93372, 43.26263], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.9324, 43.26231], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.9324, 43.2623], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93227, 43.2623], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.9324, 43.2623], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93209, 43.26315], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93204, 43.26315], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93254, 43.26249], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93234, 43.26241], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93234, 43.26243], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93237, 43.26242], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93152, 43.26339], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93154, 43.26342], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93229, 43.26225], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93231, 43.26225], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93215, 43.26225], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93179, 43.2623], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93164, 43.26219], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93155, 43.26339], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93234, 43.26243], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93153, 43.26213], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93164, 43.26214], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.9319, 43.26216], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93083, 43.26089], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93125, 43.26231], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93144, 43.26235], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93128, 43.26207], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93104, 43.26253], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.92996, 43.26123], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93123, 43.26231], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93125, 43.26231], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93158, 43.26228], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93159, 43.26226], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.9313, 43.26208], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93161, 43.2621], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93215, 43.26275], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93187, 43.26245], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.9328, 43.264], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93281, 43.26405], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93219, 43.26266], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93219, 43.26252], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93161, 43.26228], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93108, 43.26217], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.9312, 43.2623], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93134, 43.26221], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93148, 43.26241], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93142, 43.26256], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93214, 43.26238], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93122, 43.26102], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93171, 43.26199], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93169, 43.26202], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93103, 43.26096], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93274, 43.26411], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.9328, 43.26415], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93278, 43.26422], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.9328, 43.26426], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.9312, 43.2623], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.9316, 43.26292], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93165, 43.26293], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93167, 43.26292], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93096, 43.26225], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93285, 43.26414], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93286, 43.26417], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93271, 43.26364], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93267, 43.26361], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93231, 43.26244], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93234, 43.26242], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.9324, 43.26257], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.9323, 43.26255], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93232, 43.2626], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93229, 43.26257], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93127, 43.26303], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93128, 43.26308], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93142, 43.26267], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93146, 43.26265], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93133, 43.26222], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93227, 43.26255], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93229, 43.26268], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93136, 43.26303], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93221, 43.26255], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93227, 43.26256], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93119, 43.26365], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93128, 43.26371], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93236, 43.26258], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93131, 43.26302], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93223, 43.26257], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93219, 43.26253], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93224, 43.26278], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93283, 43.26297], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.9312, 43.26361], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93124, 43.26352], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93137, 43.26301], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93185, 43.26244], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93132, 43.26299], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93137, 43.2628], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93136, 43.26281], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93183, 43.26244], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93151, 43.26253], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93161, 43.26244], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93169, 43.26241], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93147, 43.26277], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93142, 43.2629], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93164, 43.26283], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93211, 43.26285], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93297, 43.26375], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93297, 43.26399], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93225, 43.26277], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93276, 43.26394], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93304, 43.26396], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93224, 43.2628], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93221, 43.26276], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93252, 43.26357], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93249, 43.26357], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93285, 43.26422], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93285, 43.2642], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93219, 43.26291], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93218, 43.26293], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93277, 43.26399], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93217, 43.26295], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93153, 43.26264], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93156, 43.26241], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93007, 43.26193], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.92956, 43.26184], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93016, 43.26216], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93006, 43.26195], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93153, 43.26241], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.9314, 43.26259], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93141, 43.26258], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.92975, 43.26225], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93288, 43.26415], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93288, 43.26418], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93047, 43.26072], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93138, 43.263], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93158, 43.26297], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93126, 43.26329], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93129, 43.26328], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.9315, 43.26247], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.9312, 43.26274], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93135, 43.26273], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93127, 43.26276], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93112, 43.26273], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93125, 43.26281], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93117, 43.26277], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93146, 43.26257], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93193, 43.26342], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93195, 43.26337], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93129, 43.26287], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.9313, 43.2628], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93114, 43.26279], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93131, 43.26363], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93134, 43.26355], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93134, 43.26287], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93156, 43.26334], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93156, 43.26336], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93131, 43.26278], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93138, 43.26276], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93151, 43.26335], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93147, 43.26332], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93145, 43.2626], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93003, 43.26352], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 62.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93011, 43.26304], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93274, 43.26407], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93036, 43.26081], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93026, 43.26089], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.92861, 43.26056], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.92931, 43.26096], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93016, 43.26098], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.92911, 43.26146], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93072, 43.26195], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93114, 43.26342], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93112, 43.26345], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.92994, 43.26122], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74}}, {"type": "Feature", "geometry": {"coordinates": [-2.92875, 43.25913], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93081, 43.26419], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93105, 43.26424], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93003, 43.2617], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93097, 43.26269], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93196, 43.26234], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.9329, 43.26415], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.92956, 43.26182], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.92815, 43.25891], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.92784, 43.25935], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93284, 43.26434], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93287, 43.26426], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93196, 43.26236], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93129, 43.2633], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93138, 43.2633], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93086, 43.26268], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.9319, 43.26449], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93206, 43.26462], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93098, 43.26275], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93141, 43.26333], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93035, 43.26257], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.92934, 43.26235], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.92891, 43.26206], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.92933, 43.26237], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93148, 43.26254], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.92916, 43.26284], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.92917, 43.26282], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.92883, 43.26276], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.929, 43.2628], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93409, 43.26342], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.92896, 43.26277], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93121, 43.26348], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93119, 43.26351], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.92959, 43.26048], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 62.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93118, 43.26434], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93124, 43.26419], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93035, 43.26259], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93018, 43.26304], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93294, 43.26285], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.9328, 43.26377], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93268, 43.26382], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93411, 43.26385], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.9331, 43.26387], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93311, 43.26393], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93356, 43.26347], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93386, 43.26346], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93279, 43.26454], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93272, 43.26471], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93388, 43.26345], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93317, 43.26392], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93316, 43.26392], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93337, 43.2638], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93338, 43.2638], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93283, 43.26418], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93351, 43.26346], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93295, 43.26303], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93357, 43.26359], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93333, 43.26368], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.9334, 43.26367], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93286, 43.26328], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93245, 43.26195], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93142, 43.26358], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93139, 43.26366], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93284, 43.26332], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93279, 43.26308], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93284, 43.26332], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93215, 43.263], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93274, 43.2632], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93279, 43.26333], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93278, 43.26329], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93283, 43.26334], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93276, 43.26333], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93275, 43.26329], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93282, 43.26335], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93288, 43.26412], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93285, 43.26407], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93269, 43.26343], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93271, 43.2634], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93282, 43.26335], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93305, 43.26362], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93275, 43.26343], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93277, 43.26338], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93277, 43.26326], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93139, 43.26349], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93142, 43.26342], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93178, 43.26232], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.9327, 43.26329], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93136, 43.26289], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93132, 43.26292], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93154, 43.26336], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93349, 43.26369], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93345, 43.26365], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93148, 43.26259], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93269, 43.26332], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93209, 43.26315], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93276, 43.26351], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93265, 43.2634], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93151, 43.26333], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93297, 43.26374], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93286, 43.26365], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93287, 43.26301], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93246, 43.26356], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.9324, 43.26358], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93407, 43.26341], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93369, 43.26376], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93367, 43.26374], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93347, 43.26364], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93366, 43.26355], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93366, 43.26368], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.9329, 43.26402], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93283, 43.26405], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93366, 43.26371], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93363, 43.2642], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93326, 43.26382], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93308, 43.26379], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93298, 43.264], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93297, 43.26402], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93384, 43.26352], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93295, 43.26402], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93289, 43.26297], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93417, 43.26398], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93395, 43.26346], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93339, 43.26377], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93196, 43.2633], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93196, 43.26335], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93227, 43.26262], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93347, 43.26378], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93338, 43.26374], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93074, 43.26374], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93103, 43.26379], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93341, 43.26375], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93303, 43.26398], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93304, 43.26398], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93301, 43.26402], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93102, 43.26381], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93337, 43.26378], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93298, 43.26404], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93303, 43.26376], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93342, 43.26382], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93346, 43.26382], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93387, 43.2638], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.9337, 43.26387], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93399, 43.26387], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93298, 43.26277], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.933, 43.26272], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93408, 43.26385], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93406, 43.26384], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93078, 43.26364], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93272, 43.26354], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93274, 43.26348], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93344, 43.26379], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93342, 43.26382], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93291, 43.26405], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93341, 43.26381], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93303, 43.26399], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93339, 43.26382], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93208, 43.26317], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93258, 43.26361], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93262, 43.26362], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93281, 43.26375], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93294, 43.26403], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.9328, 43.26356], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93287, 43.26415], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93333, 43.26373], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93322, 43.26389], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93304, 43.26375], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93262, 43.26477], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93266, 43.26474], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93168, 43.26454], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93172, 43.26453], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93266, 43.2635], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93269, 43.26353], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93303, 43.26368], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93282, 43.26407], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93286, 43.26299], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93273, 43.26359], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93264, 43.26357], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93261, 43.26356], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93275, 43.26373], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93273, 43.26368], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93273, 43.26405], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93264, 43.2635], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93255, 43.26351], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93233, 43.26346], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93273, 43.26362], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93275, 43.26367], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93261, 43.26371], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93277, 43.26372], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93284, 43.26427], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93283, 43.26429], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93315, 43.26387], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.9285, 43.26232], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93328, 43.26387], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93306, 43.26397], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93214, 43.26291], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93321, 43.26386], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93312, 43.26386], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93315, 43.26389], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93308, 43.26396], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93206, 43.26311], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93207, 43.26318], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93217, 43.26286], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93225, 43.26267], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93299, 43.26401], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93301, 43.26399], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93311, 43.26395], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93302, 43.26399], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93333, 43.26382], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93334, 43.26384], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93292, 43.26403], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93298, 43.26367], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93309, 43.2637], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93362, 43.26496], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93416, 43.26478], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93188, 43.26346], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93205, 43.26347], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93182, 43.26342], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93167, 43.26342], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93187, 43.26336], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93173, 43.26337], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93274, 43.26397], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93273, 43.26393], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93194, 43.26325], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93198, 43.26317], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93138, 43.263], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93123, 43.2632], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93137, 43.26375], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93138, 43.26374], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93231, 43.26345], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93205, 43.263], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93206, 43.26298], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93199, 43.26338], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93321, 43.26372], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93164, 43.26338], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93167, 43.26342], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93204, 43.26302], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93207, 43.26318], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93199, 43.26313], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93208, 43.26306], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93202, 43.26343], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93193, 43.26344], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93305, 43.26367], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.9326, 43.26359], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93319, 43.2637], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93199, 43.26315], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93253, 43.26355], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.9316, 43.26296], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93202, 43.2632], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93217, 43.2643], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93203, 43.26436], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93198, 43.2633], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.932, 43.26336], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93191, 43.26341], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93188, 43.26343], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93262, 43.26348], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93218, 43.26342], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93228, 43.26345], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93193, 43.26334], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93126, 43.26381], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93129, 43.26374], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93199, 43.26337], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93204, 43.26327], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93191, 43.26334], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93193, 43.26336], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93189, 43.26335], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93167, 43.26331], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93209, 43.2634], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93141, 43.26376], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93209, 43.26351], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93117, 43.26327], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.9312, 43.26326], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93219, 43.26423], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93133, 43.2634], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93139, 43.26342], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93159, 43.26296], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93139, 43.26339], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93122, 43.2635], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93125, 43.26344], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93123, 43.26384], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93153, 43.26328], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93202, 43.26315], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93136, 43.26303], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93133, 43.26296], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93111, 43.26276], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.92985, 43.26246], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93124, 43.26299], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.92992, 43.26298], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93103, 43.26299], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93122, 43.26335], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93117, 43.26316], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93122, 43.26303], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93123, 43.26301], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93119, 43.26335], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93096, 43.26316], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93109, 43.26319], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.9313, 43.26319], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93043, 43.26309], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93086, 43.2627], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93099, 43.26271], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93111, 43.26333], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.9316, 43.26342], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93165, 43.26341], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93157, 43.26329], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93218, 43.26276], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93155, 43.26329], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93274, 43.26333], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93273, 43.26329], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93225, 43.26261], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93212, 43.26291], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93148, 43.26343], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93147, 43.26351], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93159, 43.26337], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93156, 43.26343], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93157, 43.26341], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93204, 43.2631], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93139, 43.26332], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93162, 43.26341], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.9316, 43.26342], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93142, 43.26375], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93153, 43.26344], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93151, 43.26342], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93155, 43.26345], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93162, 43.26341], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93149, 43.26341], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93141, 43.26366], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93144, 43.26359], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93153, 43.2635], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.9315, 43.26344], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93137, 43.26353], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93129, 43.26337], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93129, 43.26351], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93112, 43.26338], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93118, 43.26336], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93118, 43.26326], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93113, 43.26326], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.9312, 43.26337], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93133, 43.26324], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93275, 43.26338], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.9312, 43.2632], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93124, 43.26381], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93213, 43.2624], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93164, 43.26449], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93192, 43.26436], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93112, 43.26324], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93131, 43.26391], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.9313, 43.26298], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93109, 43.26334], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93112, 43.26335], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93106, 43.26325], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93109, 43.26325], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.9311, 43.26329], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93109, 43.26332], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93135, 43.26353], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.931, 43.26333], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93101, 43.26331], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.931, 43.26323], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93107, 43.26329], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93111, 43.26343], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93108, 43.26349], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93106, 43.26359], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93136, 43.26338], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93125, 43.26338], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93127, 43.26338], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93117, 43.26342], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93122, 43.26345], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93137, 43.26347], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.9311, 43.26338], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93116, 43.26365], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93113, 43.26381], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93113, 43.26348], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93291, 43.26419], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93263, 43.26359], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93261, 43.26359], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93121, 43.26387], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93122, 43.26385], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93119, 43.26359], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93116, 43.26376], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93147, 43.26362], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.9311, 43.26353], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93104, 43.26363], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93112, 43.26437], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93113, 43.26433], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93121, 43.26352], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93135, 43.26375], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.9313, 43.26372], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93089, 43.2633], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93094, 43.26329], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93103, 43.26365], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93114, 43.2638], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93118, 43.26383], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93117, 43.26369], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93133, 43.26364], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93134, 43.26383], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93136, 43.26373], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93145, 43.26351], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93114, 43.2637], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93115, 43.26367], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93117, 43.26371], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.9312, 43.26381], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93119, 43.2639], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93083, 43.26354], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93122, 43.26385], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93125, 43.26309], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93106, 43.26323], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93109, 43.26417], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93112, 43.26416], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.9321, 43.26345], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93282, 43.26361], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93219, 43.26347], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93227, 43.26349], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93206, 43.26305], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93244, 43.26353], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93214, 43.26286], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93271, 43.26348], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93273, 43.26343], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.9328, 43.26318], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93268, 43.26341], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93269, 43.26338], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93355, 43.26378], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93363, 43.26379], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93368, 43.26382], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93358, 43.26367], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93352, 43.26369], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93347, 43.26372], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93364, 43.26364], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93414, 43.26339], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93265, 43.26455], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.9327, 43.26442], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93264, 43.26416], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93275, 43.26428], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93352, 43.26455], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.9332, 43.26487], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93435, 43.26432], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93279, 43.2643], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93281, 43.26432], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93279, 43.2644], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93279, 43.26435], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93402, 43.26508], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93282, 43.26437], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93188, 43.26452], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93367, 43.26508], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93371, 43.26509], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93926, 43.26559], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93355, 43.26535], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93393, 43.26513], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93395, 43.26514], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93288, 43.26489], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.933, 43.26528], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93271, 43.26559], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93273, 43.2656], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.26511], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93253, 43.26505], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93255, 43.26493], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93255, 43.26499], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93398, 43.26504], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93407, 43.26501], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93395, 43.26514], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93396, 43.26512], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93059, 43.26503], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93045, 43.2651], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93387, 43.26501], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.9331, 43.26525], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93334, 43.26499], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93413, 43.26513], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93411, 43.2651], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93144, 43.26453], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93152, 43.26455], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93411, 43.26512], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.934, 43.26519], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93401, 43.2651], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93048, 43.2643], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93039, 43.2643], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93273, 43.26486], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93451, 43.26601], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93469, 43.26605], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93239, 43.26533], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93233, 43.26538], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93385, 43.26512], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93395, 43.26533], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93359, 43.26506], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.9336, 43.26506], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93249, 43.26495], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93248, 43.26496], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93358, 43.26542], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93385, 43.2651], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93392, 43.26508], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93264, 43.26491], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93347, 43.26496], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93337, 43.26491], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.9331, 43.26485], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93249, 43.26554], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.9325, 43.26555], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93261, 43.26479], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93273, 43.2648], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93274, 43.26476], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93272, 43.26474], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93264, 43.26478], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.9329, 43.26481], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93277, 43.26478], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93162, 43.26455], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.9383, 43.26623], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93817, 43.26641], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93283, 43.26482], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93301, 43.26486], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93267, 43.2641], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93274, 43.26449], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93393, 43.26506], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93264, 43.26472], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.9325, 43.26472], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93247, 43.26479], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93245, 43.26481], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93261, 43.26486], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93264, 43.26479], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93268, 43.26487], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93259, 43.26485], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93145, 43.26463], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93148, 43.26464], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93207, 43.26465], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93201, 43.26464], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93273, 43.26481], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93187, 43.26462], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93169, 43.26464], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93265, 43.2649], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93262, 43.26496], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93201, 43.26471], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93258, 43.26492], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93263, 43.26495], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93056, 43.26507], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93063, 43.26504], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93258, 43.26494], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.9323, 43.26539], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93261, 43.26499], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93308, 43.2653], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93353, 43.2654], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93191, 43.26458], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93769, 43.26539], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93774, 43.26526], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93236, 43.26473], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93183, 43.26537], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93521, 43.26608], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93523, 43.26606], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93717, 43.26504], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.9372, 43.26496], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93201, 43.26445], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93211, 43.2644], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93183, 43.2646], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93187, 43.26456], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93111, 43.26433], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93105, 43.26435], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93188, 43.26457], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93102, 43.26436], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.9325, 43.26485], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.9325, 43.26482], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93187, 43.26453], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93177, 43.26458], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93239, 43.26515], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93155, 43.2646], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93164, 43.26464], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93111, 43.26439], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93115, 43.26438], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93057, 43.26414], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93066, 43.26429], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93091, 43.26334], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93115, 43.2644], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.9312, 43.26388], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93113, 43.26405], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93069, 43.26379], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93113, 43.26408], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93112, 43.26411], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93156, 43.26451], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.9316, 43.26451], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.9309, 43.26434], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93229, 43.26486], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93233, 43.26477], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93101, 43.26439], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93147, 43.26529], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93854, 43.26541], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93852, 43.26552], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93159, 43.26456], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93162, 43.26457], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93118, 43.26445], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93118, 43.26442], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93113, 43.26444], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.9312, 43.26484], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93105, 43.26484], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93159, 43.26465], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93119, 43.26413], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93117, 43.26417], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93176, 43.26449], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93153, 43.26451], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93147, 43.26449], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93121, 43.26443], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93127, 43.26467], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70}}, {"type": "Feature", "geometry": {"coordinates": [-2.93112, 43.26475], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93146, 43.26452], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93133, 43.26446], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93144, 43.26451], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93074, 43.26504], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93098, 43.26494], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.9315, 43.26452], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93145, 43.26449], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93165, 43.26456], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93168, 43.26458], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93236, 43.26468], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93226, 43.26469], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93185, 43.26446], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93158, 43.26454], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93242, 43.26515], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93245, 43.2651], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.94075, 43.26618], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93253, 43.26491], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93155, 43.26467], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93121, 43.26443], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93109, 43.26438], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93109, 43.26444], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93107, 43.26443], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93052, 43.26424], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.9313, 43.26466], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93134, 43.26464], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93134, 43.26461], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.92977, 43.26516], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93018, 43.26464], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 60.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93096, 43.26449], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93085, 43.26446], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70}}, {"type": "Feature", "geometry": {"coordinates": [-2.93133, 43.26459], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93236, 43.26541], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93231, 43.26543], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.9313, 43.26456], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93243, 43.26541], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93244, 43.26528], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93256, 43.26556], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.9325, 43.2649], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.2649], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93249, 43.26476], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93268, 43.2647], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93259, 43.26468], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93679, 43.2655], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93675, 43.26544], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93522, 43.26615], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93513, 43.26613], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93723, 43.26481], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93721, 43.26486], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93154, 43.26453], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93253, 43.26485], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93256, 43.26491], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.9327, 43.26559], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93268, 43.26559], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93252, 43.26493], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93248, 43.2651], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93246, 43.26516], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93234, 43.26546], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93231, 43.26551], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93248, 43.26494], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93243, 43.26506], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93078, 43.26449], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93076, 43.26438], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93199, 43.26465], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93205, 43.26466], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93129, 43.2645], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93234, 43.26551], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.9324, 43.26549], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93086, 43.26438], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93082, 43.26438], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93076, 43.2645], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.9324, 43.26548], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93083, 43.26447], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93084, 43.26447], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93233, 43.26553], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93139, 43.2645], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93089, 43.26296], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.94167, 43.26602], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.94228, 43.26584], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 50.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93077, 43.26497], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93987, 43.26609], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93911, 43.26597], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93091, 43.26332], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93134, 43.2647], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93058, 43.26493], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93089, 43.26334], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.92828, 43.26338], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 56.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.9285, 43.26268], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93077, 43.2645], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93081, 43.2649], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93079, 43.26356], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93058, 43.26314], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.94184, 43.26555], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 53.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.94215, 43.26519], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 50.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.9306, 43.26401], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.9305, 43.26424], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.92975, 43.26424], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93055, 43.26413], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93054, 43.26426], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.9306, 43.2643], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93054, 43.26428], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.9304, 43.26428], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.92812, 43.26432], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.92784, 43.26465], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.92827, 43.2639], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 51.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.92869, 43.26432], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93082, 43.2632], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.92924, 43.26618], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.92874, 43.26664], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93123, 43.26473], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93089, 43.26436], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93107, 43.26451], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93083, 43.26435], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93069, 43.26437], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93136, 43.26451], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.92967, 43.26293], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93054, 43.26433], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.9355, 43.26552], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93546, 43.26556], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.94028, 43.26633], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93071, 43.2651], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93072, 43.26507], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93074, 43.26513], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93066, 43.26497], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93232, 43.2654], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93114, 43.26446], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93126, 43.26447], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93131, 43.26448], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93587, 43.26608], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93524, 43.26617], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93065, 43.26514], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93093, 43.26517], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.92898, 43.26468], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 51.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.92841, 43.26467], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93044, 43.26511], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.92874, 43.26272], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.9307, 43.26515], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93049, 43.2651], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93235, 43.26524], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93131, 43.26531], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93153, 43.26535], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93784, 43.26665], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93819, 43.26642], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.92784, 43.25868], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.92841, 43.26172], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.92784, 43.26001], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.92854, 43.26108], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.92784, 43.26067], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.92784, 43.26134], "type": "Point"}, "properties": {"marker-color": "#f46f48", "type": "GtfsShape", "values": 47.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.92784, 43.262], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.92808, 43.26257], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.92832, 43.26262], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.92784, 43.26251], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.928, 43.26257], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.92784, 43.26253], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.92964, 43.26294], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.92784, 43.26266], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.92888, 43.26326], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.92784, 43.26333], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.92918, 43.26425], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 51.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.92956, 43.26468], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 56.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.92784, 43.26399], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94604, 43.26533], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94603, 43.26599], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94603, 43.26665], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94424, 43.26456], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94502, 43.26483], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94421, 43.26665], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94014, 43.26573], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.9409, 43.2661], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.94064, 43.26629], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.94148, 43.26665], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 51.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.94095, 43.26536], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.94497, 43.26536], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94447, 43.26571], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94088, 43.26609], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.94106, 43.26547], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.94111, 43.26562], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.94057, 43.26665], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.94107, 43.26584], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.94103, 43.26594], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.94105, 43.26583], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.94101, 43.26593], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.94047, 43.26635], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.94039, 43.26637], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93917, 43.26571], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.9433, 43.26665], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93922, 43.26567], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93919, 43.26565], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93914, 43.26571], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.9457, 43.26494], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94046, 43.26634], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.92875, 43.26381], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93669, 43.2654], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93672, 43.26543], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.94239, 43.26665], "type": "Point"}, "properties": {"marker-color": "#f46f48", "type": "GtfsShape", "values": 46.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.94301, 43.26619], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94227, 43.26631], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 48.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.94165, 43.26638], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 52.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93915, 43.26548], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93915, 43.26612], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93917, 43.26623], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93966, 43.26665], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 53.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.94022, 43.26526], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.9392, 43.26551], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93911, 43.26552], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93923, 43.26559], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93879, 43.26528], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93903, 43.26557], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.94039, 43.26635], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.94029, 43.26631], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93832, 43.26623], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93842, 43.26604], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93891, 43.26558], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93874, 43.26543], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93857, 43.26536], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93871, 43.26543], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93883, 43.26558], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93891, 43.2656], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93843, 43.26553], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93534, 43.26579], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93511, 43.26539], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93854, 43.26552], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.94376, 43.26608], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94452, 43.26599], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93856, 43.26584], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93919, 43.26622], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93654, 43.26558], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93659, 43.26553], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93757, 43.26552], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93752, 43.26549], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93711, 43.26526], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93716, 43.26542], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.9382, 43.26609], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 62.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93858, 43.26531], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93873, 43.26534], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93876, 43.26554], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93851, 43.26535], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93572, 43.26545], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93576, 43.26541], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93788, 43.26494], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93762, 43.26547], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93808, 43.26548], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93859, 43.26574], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93665, 43.26568], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93684, 43.26573], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93856, 43.26574], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93874, 43.26555], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93854, 43.26583], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93578, 43.26541], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93819, 43.26493], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93663, 43.26566], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93685, 43.2656], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93683, 43.26555], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.9368, 43.26554], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93661, 43.26551], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93761, 43.26542], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93747, 43.26548], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93751, 43.26584], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.9375, 43.26576], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93748, 43.26576], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93744, 43.26588], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93741, 43.26601], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93744, 43.26593], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93875, 43.26665], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93794, 43.26583], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 56.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93753, 43.26568], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93755, 43.26574], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.9374, 43.26644], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93783, 43.26601], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93747, 43.26593], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93844, 43.26605], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93681, 43.2657], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93856, 43.26542], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93835, 43.26572], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 62.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93232, 43.2643], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.9375, 43.26551], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93739, 43.266], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93683, 43.26541], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93664, 43.26529], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93855, 43.26536], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93693, 43.26665], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93399, 43.26539], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93389, 43.26547], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93511, 43.2661], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93508, 43.2661], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93517, 43.26609], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93654, 43.26633], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93772, 43.26516], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93565, 43.26514], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.937, 43.26539], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93564, 43.26529], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.9373, 43.26546], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93709, 43.26532], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93703, 43.26539], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93704, 43.26537], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93706, 43.26538], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93705, 43.26533], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93663, 43.26549], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93668, 43.26546], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.9366, 43.26534], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70}}, {"type": "Feature", "geometry": {"coordinates": [-2.93442, 43.26443], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93444, 43.26457], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93671, 43.26539], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.937, 43.26554], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93699, 43.26546], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93702, 43.26547], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93698, 43.26554], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93631, 43.26548], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93631, 43.26548], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93703, 43.26577], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93705, 43.26576], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93545, 43.26552], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93539, 43.26545], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93695, 43.26571], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93694, 43.26567], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93687, 43.2656], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93701, 43.26573], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.937, 43.26568], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93699, 43.26574], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93672, 43.26568], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93457, 43.2652], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93448, 43.26518], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93409, 43.26522], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93281, 43.26441], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.9369, 43.26567], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93338, 43.26494], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.9363, 43.26546], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93514, 43.2661], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93625, 43.26539], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 62.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93615, 43.26549], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93628, 43.26545], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93628, 43.26545], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 64.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93635, 43.26553], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93555, 43.26534], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93543, 43.26539], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93552, 43.2654], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93554, 43.26543], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93574, 43.2654], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93581, 43.26547], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93574, 43.2654], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93551, 43.26542], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93548, 43.26551], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93554, 43.26541], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93627, 43.26557], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93564, 43.26535], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93549, 43.2653], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93394, 43.26579], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.9339, 43.26566], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93383, 43.26584], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93384, 43.26575], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93405, 43.2653], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93618, 43.26555], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.9335, 43.2656], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93321, 43.26554], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93415, 43.26593], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93418, 43.26592], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93365, 43.265], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93356, 43.26498], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93602, 43.26665], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.26614], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93306, 43.26569], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93563, 43.26543], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93453, 43.26527], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93242, 43.26555], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93542, 43.26559], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93481, 43.26603], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93399, 43.26564], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93425, 43.26591], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93249, 43.26493], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.9342, 43.26665], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93511, 43.26665], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.9343, 43.26516], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93525, 43.26608], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93533, 43.26588], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93524, 43.26611], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93208, 43.26609], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93185, 43.26665], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93236, 43.26546], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93292, 43.26548], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93219, 43.2655], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93219, 43.26548], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93219, 43.26554], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93221, 43.2655], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93243, 43.26553], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93242, 43.26551], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93405, 43.26549], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.9335, 43.26502], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93361, 43.26505], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93304, 43.26492], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93384, 43.26562], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93272, 43.26454], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93373, 43.2658], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93378, 43.26576], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93365, 43.2658], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.9337, 43.2658], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93371, 43.2658], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93397, 43.26585], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93381, 43.26584], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 81.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93371, 43.26582], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93382, 43.2664], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 65.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93291, 43.26633], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93358, 43.26578], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93232, 43.26534], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93235, 43.26533], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93229, 43.2654], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.9325, 43.26491], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93252, 43.2652], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.9331, 43.26568], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93273, 43.2656], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93275, 43.2656], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.9322, 43.26545], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93201, 43.26541], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93301, 43.26566], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93306, 43.26567], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93231, 43.26553], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93275, 43.2656], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93275, 43.2656], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93272, 43.2656], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.9323, 43.26545], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93263, 43.26558], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93266, 43.26558], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93223, 43.26547], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.9327, 43.26559], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93097, 43.26482], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93109, 43.2648], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93242, 43.26542], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93494, 43.26607], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93145, 43.26532], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93134, 43.26529], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93138, 43.26466], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93376, 43.26583], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93229, 43.2654], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93392, 43.26586], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93222, 43.26549], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93228, 43.26542], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93228, 43.26544], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93239, 43.2654], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93266, 43.26408], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93179, 43.2645], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93238, 43.26541], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93224, 43.26544], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.9324, 43.26548], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93244, 43.26553], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93396, 43.26548], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93221, 43.26545], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93224, 43.26544], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93435, 43.26596], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93453, 43.26597], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93237, 43.26539], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93509, 43.26612], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93316, 43.2657], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.9332, 43.2657], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93365, 43.26502], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93374, 43.26504], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93307, 43.26568], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93252, 43.26555], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93344, 43.26576], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93339, 43.26575], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93486, 43.26521], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.935, 43.26529], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.9369, 43.26572], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93563, 43.26545], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93608, 43.26553], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.94401, 43.26331], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.94475, 43.26293], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.9322, 43.26546], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93238, 43.26665], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 60.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93329, 43.26665], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 62.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93217, 43.26554], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.94178, 43.26227], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.26555], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93227, 43.26567], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93209, 43.26546], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93198, 43.26543], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93208, 43.26547], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93219, 43.26581], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93162, 43.26601], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 62.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93147, 43.26665], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93188, 43.26665], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.94528, 43.26304], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93063, 43.26566], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93088, 43.26521], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93112, 43.2662], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93056, 43.26665], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 51.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93066, 43.26516], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93013, 43.26549], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93022, 43.26613], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93005, 43.26583], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.92931, 43.26569], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 50.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.92965, 43.26665], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.92872, 43.26557], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.92814, 43.26598], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.92784, 43.26532], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.92823, 43.26544], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.92784, 43.26598], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.92783, 43.26664], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94512, 43.26621], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94075, 43.26003], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.94095, 43.25895], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 51.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.94137, 43.25947], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 48.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.94392, 43.25955], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94463, 43.25992], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94185, 43.26002], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94409, 43.26016], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94077, 43.25947], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 52.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.94353, 43.26037], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94294, 43.26055], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94333, 43.26163], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.94324, 43.26208], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.94427, 43.2622], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.94373, 43.26232], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.94424, 43.2626], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 63.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.94476, 43.26291], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.94476, 43.26252], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 60.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93487, 43.26609], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.94453, 43.26169], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 53.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.94381, 43.26147], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 51.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.94384, 43.26188], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 56.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.94427, 43.26133], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.9434, 43.26078], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.9422, 43.26112], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 51.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.94468, 43.26379], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.94568, 43.2643], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 48.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.94156, 43.26173], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.94441, 43.2641], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 51.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.9436, 43.26428], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94364, 43.2637], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.94111, 43.26489], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 56.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.94223, 43.26411], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94209, 43.26331], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.9432, 43.26397], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 48.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.94308, 43.26309], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.92815, 43.25935], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93023, 43.25893], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.94002, 43.26188], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.94002, 43.25996], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93204, 43.25907], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93465, 43.26004], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93017, 43.26035], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.92861, 43.26011], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.92977, 43.26006], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 61.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93045, 43.25942], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 62.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.94063, 43.26331], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 53.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.94217, 43.2614], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.94278, 43.26138], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 53.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.94047, 43.26368], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.94218, 43.26292], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.94253, 43.26447], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94191, 43.26451], "type": "Point"}, "properties": {"marker-color": "#f46f48", "type": "GtfsShape", "values": 47.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93566, 43.2649], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93588, 43.26205], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93361, 43.26381], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93757, 43.26384], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93609, 43.26102], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93333, 43.26384], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.92817, 43.26261], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.92929, 43.26374], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.92919, 43.26513], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 50.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.92813, 43.265], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.9431, 43.2644], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94401, 43.26643], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94354, 43.26518], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94299, 43.2648], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94292, 43.26587], "type": "Point"}, "properties": {"marker-color": "#f46f48", "type": "GtfsShape", "values": 44.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.9321, 43.26609], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93222, 43.26581], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.92814, 43.26642], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93175, 43.2654], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93197, 43.26545], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93119, 43.26566], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 62.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.92874, 43.2662], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94135, 43.26314], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 54.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93591, 43.26551], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.94281, 43.25911], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94301, 43.25945], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94352, 43.25933], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94332, 43.25974], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94513, 43.26036], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94456, 43.26029], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.945, 43.26094], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94469, 43.26063], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.9444, 43.26096], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93977, 43.25933], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 60.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94372, 43.25996], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94263, 43.26554], "type": "Point"}, "properties": {"marker-color": "#f46f48", "type": "GtfsShape", "values": 47.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93057, 43.26063], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.9307, 43.26317], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.92871, 43.26503], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.92973, 43.26616], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 48.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.94496, 43.26425], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 51.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.94534, 43.26458], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94347, 43.2656], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94416, 43.26514], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94455, 43.26523], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94358, 43.26474], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94287, 43.26519], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94235, 43.26483], "type": "Point"}, "properties": {"marker-color": "#f46f48", "type": "GtfsShape", "values": 47.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.9412, 43.25987], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94384, 43.26104], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94332, 43.2612], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94392, 43.2606], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94282, 43.26096], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94451, 43.2635], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 58.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.94034, 43.26195], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.94404, 43.2637], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.9433, 43.26351], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 55.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.9427, 43.26411], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.94282, 43.2618], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 57.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93973, 43.2589], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.94338, 43.26262], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.94312, 43.26015], "type": "Point"}, "properties": {"marker-color": "#fff5f0", "type": "GtfsShape", "values": -99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93765, 43.26384], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93928, 43.2617], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93247, 43.26554], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.94502, 43.26299], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.94502, 43.26297], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.94226, 43.26237], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.94008, 43.26191], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93994, 43.26187], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.94082, 43.26206], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.94066, 43.26202], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.9397, 43.26181], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93967, 43.26182], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93986, 43.26185], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93926, 43.26172], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93938, 43.26174], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93982, 43.26184], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93939, 43.26176], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93898, 43.26167], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.9389, 43.26166], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93906, 43.26167], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93906, 43.26169], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.939, 43.26163], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93898, 43.26166], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.9389, 43.26164], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93902, 43.26166], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93886, 43.26165], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93886, 43.26163], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93874, 43.2616], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93954, 43.26178], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93946, 43.26176], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.9393, 43.26173], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.94022, 43.26194], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.94133, 43.26219], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.94119, 43.26216], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.94036, 43.26197], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.9399, 43.26186], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93988, 43.26187], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93994, 43.26188], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.94001, 43.2619], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93962, 43.2618], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93978, 43.26183], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93946, 43.26178], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93953, 43.26179], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.9396, 43.26181], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93958, 43.26179], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.9405, 43.26201], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.94258, 43.26246], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.94355, 43.26268], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.94258, 43.26244], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.94242, 43.26241], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.94244, 43.26243], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.94354, 43.26265], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.94274, 43.26248], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.94306, 43.26255], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.9429, 43.26251], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.94328, 43.26262], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.94314, 43.26258], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.94322, 43.26258], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.94341, 43.26265], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.9423, 43.2624], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.94194, 43.2623], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.9413, 43.26216], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.94098, 43.26209], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93764, 43.26028], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93813, 43.26002], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93774, 43.2601], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93785, 43.26023], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93769, 43.26022], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93766, 43.26022], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93778, 43.26028], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93342, 43.26028], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93735, 43.2604], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93733, 43.26041], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93723, 43.26028], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93586, 43.26087], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93605, 43.26033], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93593, 43.26069], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93597, 43.2606], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.9359, 43.26078], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93604, 43.26042], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.9397, 43.2589], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93786, 43.26024], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93945, 43.2591], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93792, 43.26017], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93799, 43.26012], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93913, 43.2593], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93984, 43.25879], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93766, 43.26242], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.9375, 43.26238], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93783, 43.26245], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93782, 43.26247], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93799, 43.26251], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93732, 43.26237], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93749, 43.2624], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93716, 43.26233], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93724, 43.26235], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93725, 43.26233], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93776, 43.2625], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93774, 43.26245], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93775, 43.26244], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93723, 43.26228], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93732, 43.262], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.9373, 43.26194], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93717, 43.26206], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93709, 43.26204], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93737, 43.26191], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.9373, 43.26192], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93716, 43.26201], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93723, 43.26198], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93723, 43.26195], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93744, 43.26188], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.9377, 43.26173], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93757, 43.2618], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.9379, 43.26164], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93792, 43.26165], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93783, 43.26167], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93785, 43.26168], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93778, 43.26172], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93732, 43.26186], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93777, 43.2617], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93778, 43.26144], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93737, 43.26189], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.9371, 43.26202], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93716, 43.26199], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93706, 43.26203], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93831, 43.26201], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93717, 43.26231], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93549, 43.26089], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93571, 43.26094], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93566, 43.26095], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93561, 43.26094], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93535, 43.26088], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93543, 43.2609], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93531, 43.26085], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93548, 43.26091], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93552, 43.26088], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93567, 43.26093], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93562, 43.26092], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93453, 43.26025], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93454, 43.26022], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93463, 43.25996], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93465, 43.25996], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93463, 43.26002], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93468, 43.2599], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93436, 43.2606], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93461, 43.26001], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93456, 43.26019], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93453, 43.26019], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93458, 43.26007], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93465, 43.2599], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.9346, 43.26008], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93456, 43.26003], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93448, 43.2603], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93446, 43.26036], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93445, 43.26039], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93446, 43.26042], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93451, 43.26025], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93452, 43.26022], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93443, 43.26042], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.9344, 43.26057], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93448, 43.26037], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93447, 43.26039], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93906, 43.26221], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93913, 43.26196], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93915, 43.26197], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.9391, 43.26209], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93913, 43.26203], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93918, 43.26184], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.9392, 43.26185], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93896, 43.26238], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93898, 43.26232], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93893, 43.26244], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93898, 43.26238], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.9389, 43.26238], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.9385, 43.26188], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93911, 43.26202], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93896, 43.26244], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93194, 43.26094], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93184, 43.26075], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93178, 43.2607], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93177, 43.26062], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93182, 43.26076], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93185, 43.26082], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.9318, 43.26069], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93187, 43.26081], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.9316, 43.26038], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93164, 43.26044], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93155, 43.26025], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93162, 43.26037], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93157, 43.26032], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93121, 43.26026], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.9386, 43.2615], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93864, 43.2614], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.9384, 43.26153], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93863, 43.26143], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93864, 43.26134], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.9325, 43.25978], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93157, 43.26009], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93881, 43.26124], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93919, 43.26106], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93931, 43.26101], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93956, 43.26089], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93879, 43.26122], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93916, 43.26105], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93935, 43.26097], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93929, 43.261], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93922, 43.26102], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93938, 43.26098], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93904, 43.26111], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93906, 43.26112], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.939, 43.26115], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93874, 43.26127], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93697, 43.26023], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93685, 43.26018], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93839, 43.26054], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93845, 43.26055], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93795, 43.26044], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93866, 43.26058], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93865, 43.2606], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.9386, 43.26057], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.9384, 43.26052], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93853, 43.26055], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93858, 43.26058], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93786, 43.2604], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93793, 43.26042], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93928, 43.26074], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93915, 43.26071], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.9391, 43.26076], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93934, 43.26075], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93906, 43.26067], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93909, 43.2607], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93913, 43.26069], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93903, 43.26068], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93896, 43.26067], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93807, 43.26054], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93807, 43.26047], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93814, 43.26048], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93826, 43.26051], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93833, 43.26051], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93852, 43.26057], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93806, 43.26045], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93788, 43.26042], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93776, 43.2604], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93773, 43.26037], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93782, 43.26041], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.9377, 43.26036], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93892, 43.26435], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93873, 43.26431], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93861, 43.2643], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93884, 43.26435], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93872, 43.26432], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93861, 43.26428], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93889, 43.26434], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.9389, 43.26435], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.9389, 43.26434], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93887, 43.26434], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93892, 43.26435], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93894, 43.26435], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93894, 43.26435], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93896, 43.26436], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93895, 43.26436], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93895, 43.26436], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93896, 43.26436], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93881, 43.26461], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93826, 43.2642], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93821, 43.26156], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93821, 43.26157], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93925, 43.26276], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93838, 43.26199], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93835, 43.26205], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93828, 43.26229], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93826, 43.26229], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93828, 43.26223], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93823, 43.26241], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93847, 43.26182], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93833, 43.26218], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93838, 43.26206], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.9383, 43.26223], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.9383, 43.26217], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93845, 43.26188], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.9384, 43.262], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93845, 43.26182], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93843, 43.26187], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93851, 43.2626], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93834, 43.26258], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93826, 43.26256], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93421, 43.26096], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93419, 43.261], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93432, 43.26076], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93413, 43.26103], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93428, 43.26084], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93418, 43.2611], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93421, 43.26101], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93419, 43.26106], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93412, 43.26116], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93416, 43.26114], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93414, 43.26112], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93411, 43.26127], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93407, 43.26129], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93425, 43.26093], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93427, 43.26089], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93424, 43.26088], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93426, 43.26084], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93708, 43.2616], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93704, 43.26171], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93712, 43.2615], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93713, 43.26154], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93717, 43.26139], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93719, 43.2614], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93701, 43.26183], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93705, 43.26173], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93699, 43.26188], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93701, 43.26176], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.9372, 43.26152], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93707, 43.26169], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93709, 43.26164], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93711, 43.26159], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.9371, 43.26155], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93715, 43.2615], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93698, 43.26172], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93697, 43.26187], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93695, 43.26192], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93699, 43.26181], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93702, 43.26174], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93703, 43.26178], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93693, 43.26202], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93692, 43.26197], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93687, 43.2621], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93319, 43.25989], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93321, 43.25992], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93355, 43.26047], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93338, 43.26021], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93356, 43.26054], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93362, 43.2606], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93366, 43.26067], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93329, 43.26], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93332, 43.26007], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93325, 43.25994], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93335, 43.26], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.9334, 43.2602], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93321, 43.25987], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93323, 43.2599], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.9333, 43.26008], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93336, 43.26014], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93334, 43.26015], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93312, 43.25976], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93317, 43.2598], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93327, 43.26002], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93351, 43.2604], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93359, 43.26053], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93833, 43.26151], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93829, 43.2615], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93787, 43.2633], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93788, 43.26327], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93796, 43.26307], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93794, 43.26314], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93784, 43.26337], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93786, 43.26333], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93795, 43.2631], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93782, 43.26337], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93785, 43.2633], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93779, 43.26344], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93791, 43.2632], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.9379, 43.26324], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93786, 43.26326], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93791, 43.26315], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93792, 43.26311], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.9378, 43.26346], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93782, 43.26343], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93804, 43.26287], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93801, 43.2629], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93802, 43.26294], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.938, 43.26297], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93802, 43.26287], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93806, 43.26276], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93811, 43.26265], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93811, 43.26271], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93812, 43.26268], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93814, 43.26265], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93808, 43.26278], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93803, 43.26291], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93734, 43.26105], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93729, 43.2611], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93732, 43.26104], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93749, 43.26065], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93742, 43.26057], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93741, 43.26082], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93744, 43.26076], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93751, 43.26059], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93744, 43.26053], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93749, 43.26071], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93751, 43.26065], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93753, 43.26059], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93752, 43.26062], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93746, 43.2607], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93754, 43.26063], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93753, 43.26066], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93757, 43.26051], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93756, 43.26047], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93753, 43.26053], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93755, 43.26057], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93756, 43.26054], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93746, 43.26048], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93725, 43.26102], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93727, 43.26097], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93721, 43.26112], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93723, 43.26107], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93729, 43.26092], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93739, 43.26087], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93739, 43.26094], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93741, 43.26088], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93742, 43.26093], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93739, 43.26099], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93735, 43.2611], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93736, 43.26099], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93737, 43.26093], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93734, 43.26099], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93746, 43.26083], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.9373, 43.26113], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93727, 43.26116], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93729, 43.26116], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93717, 43.26114], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93728, 43.26119], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93738, 43.26067], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.9374, 43.26062], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93741, 43.26053], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93766, 43.26138], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93772, 43.2614], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93736, 43.26132], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93731, 43.26129], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93786, 43.26141], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93773, 43.26138], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.9379, 43.26144], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93808, 43.26148], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93804, 43.26151], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93802, 43.26146], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93817, 43.26149], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93761, 43.26132], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93767, 43.26137], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93761, 43.26136], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93755, 43.26134], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93749, 43.26133], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93743, 43.26132], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93742, 43.26133], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93748, 43.26135], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93754, 43.26136], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93861, 43.26131], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93855, 43.26136], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.9386, 43.26133], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93831, 43.26147], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93678, 43.26117], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93687, 43.26119], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93686, 43.26121], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93661, 43.26114], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93705, 43.26123], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93704, 43.26125], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93671, 43.2611], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93691, 43.26115], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93704, 43.26118], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93684, 43.26113], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93617, 43.26106], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93652, 43.26112], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93651, 43.26113], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93643, 43.26111], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93634, 43.26109], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93635, 43.26108], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93643, 43.2611], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93625, 43.26108], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93608, 43.26104], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93678, 43.26119], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.9366, 43.26115], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93744, 43.26473], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93751, 43.26475], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93545, 43.26365], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93548, 43.2637], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93565, 43.26389], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93571, 43.26398], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93549, 43.26366], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93536, 43.26353], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93538, 43.26351], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93539, 43.26357], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93453, 43.26071], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.9347, 43.26075], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93454, 43.26069], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93449, 43.2607], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93445, 43.26067], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93488, 43.26078], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93484, 43.2608], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93449, 43.26211], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93445, 43.26203], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93438, 43.2619], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93433, 43.26186], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.9344, 43.26194], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.9345, 43.26199], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93443, 43.26199], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93427, 43.26175], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93449, 43.26216], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93466, 43.26245], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93436, 43.26192], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.9344, 43.26198], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93429, 43.26174], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93462, 43.26239], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93459, 43.26233], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93456, 43.26227], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93467, 43.26242], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93489, 43.26187], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93461, 43.26232], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93454, 43.26219], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93452, 43.26215], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93522, 43.26188], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93514, 43.26186], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93527, 43.26189], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93525, 43.26191], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93492, 43.26179], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93505, 43.26185], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93854, 43.26475], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93875, 43.26469], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93864, 43.26479], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93851, 43.26476], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93857, 43.26496], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93882, 43.26493], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93882, 43.26495], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93866, 43.26478], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93869, 43.26478], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.9387, 43.26479], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93872, 43.26479], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93873, 43.26479], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93859, 43.26498], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93487, 43.26129], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93501, 43.26094], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93503, 43.26094], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93482, 43.26141], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93501, 43.261], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93498, 43.26106], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93487, 43.26136], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93489, 43.2613], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93486, 43.26139], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93475, 43.26165], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93473, 43.26165], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93475, 43.26159], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.9348, 43.26153], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93472, 43.26168], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93477, 43.26159], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93474, 43.26168], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93484, 43.2615], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93482, 43.26147], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93484, 43.26142], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.9348, 43.26147], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93481, 43.2615], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93496, 43.26112], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93494, 43.26111], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93504, 43.26091], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93502, 43.26091], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93491, 43.26124], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93489, 43.26119], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93484, 43.26135], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93483, 43.26138], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93498, 43.261], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93496, 43.26106], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93497, 43.26109], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93491, 43.26117], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93495, 43.26108], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.9349, 43.2612], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93396, 43.26163], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93403, 43.26162], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93378, 43.26159], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93387, 43.26161], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.9341, 43.26166], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93416, 43.26165], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93419, 43.26166], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93715, 43.26282], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93731, 43.26286], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93698, 43.26279], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93699, 43.26277], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93682, 43.26275], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93683, 43.26274], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93748, 43.26288], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93732, 43.26284], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93756, 43.26289], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93756, 43.26291], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93765, 43.26291], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93707, 43.26279], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93707, 43.26281], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93764, 43.26293], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.9349, 43.26274], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93681, 43.26215], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93681, 43.26217], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.9358, 43.26203], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93558, 43.26196], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93622, 43.26217], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93581, 43.26202], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93589, 43.26203], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93573, 43.262], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93586, 43.26199], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93603, 43.26208], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93605, 43.26207], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93566, 43.26198], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93644, 43.26216], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93636, 43.26214], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93629, 43.26212], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93634, 43.26215], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93642, 43.26217], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93627, 43.26214], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.9366, 43.26219], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93564, 43.262], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93572, 43.26201], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93559, 43.26145], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93549, 43.26168], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93554, 43.26157], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93552, 43.26163], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93547, 43.26181], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93545, 43.2618], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93544, 43.26187], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93569, 43.26127], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93567, 43.26133], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.9357, 43.2615], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93562, 43.26145], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93572, 43.26122], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93569, 43.26121], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93567, 43.26127], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93425, 43.26274], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93437, 43.26272], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93434, 43.26269], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93441, 43.26171], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93433, 43.26171], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93529, 43.2622], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93525, 43.26228], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93535, 43.26212], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93528, 43.26229], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93476, 43.2618], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93483, 43.26182], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93469, 43.26179], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93457, 43.26174], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.9343, 43.2617], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93479, 43.26179], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93488, 43.26181], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93504, 43.26186], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.9349, 43.26183], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93542, 43.26302], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93874, 43.26267], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93882, 43.26269], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93898, 43.2627], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93847, 43.26267], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.9353, 43.26268], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93465, 43.26285], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93484, 43.26278], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93486, 43.26278], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93478, 43.26304], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93896, 43.26474], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.9381, 43.26369], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93828, 43.26373], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93657, 43.26337], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93657, 43.26335], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93674, 43.26338], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93723, 43.26349], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93707, 43.26345], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93739, 43.26354], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.9369, 43.26344], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93762, 43.26386], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93756, 43.26406], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93758, 43.264], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93764, 43.2638], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93761, 43.26395], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93767, 43.26378], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93743, 43.26433], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93744, 43.26429], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93759, 43.26392], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93752, 43.26411], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93754, 43.26405], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93757, 43.26398], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93763, 43.26383], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93763, 43.26389], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93766, 43.26376], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93758, 43.26395], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93749, 43.26417], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93741, 43.26436], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93745, 43.26434], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93735, 43.26451], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93736, 43.26448], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93741, 43.26442], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93647, 43.26231], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93596, 43.26258], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93572, 43.26267], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.9358, 43.26264], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.9363, 43.2624], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93621, 43.26239], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93611, 43.26251], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93608, 43.2625], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93615, 43.26246], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93622, 43.26243], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93637, 43.26236], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93639, 43.26237], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93633, 43.26238], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93661, 43.26226], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93587, 43.2626], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93603, 43.26254], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93574, 43.26268], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93582, 43.26265], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93567, 43.26272], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93565, 43.26271], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93601, 43.26253], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93589, 43.26261], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93617, 43.26253], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93632, 43.2624], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93653, 43.26236], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93644, 43.26233], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93664, 43.26257], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93618, 43.26247], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93774, 43.26458], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93752, 43.26454], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93753, 43.26456], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93749, 43.26452], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.9376, 43.26455], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93755, 43.26454], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93746, 43.26453], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93743, 43.26454], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93749, 43.26453], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93753, 43.26453], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93763, 43.26455], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93894, 43.26426], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93928, 43.26418], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93402, 43.26069], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.9341, 43.26068], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93417, 43.26069], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93898, 43.2641], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93892, 43.26426], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93673, 43.26245], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93675, 43.26248], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93784, 43.2648], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93779, 43.26479], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93779, 43.2648], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93773, 43.26478], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93741, 43.26471], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93757, 43.26474], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93747, 43.26462], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93866, 43.26508], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.9378, 43.26461], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93791, 43.26464], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93785, 43.26463], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93766, 43.26457], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93775, 43.2646], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93764, 43.26458], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93763, 43.26456], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93748, 43.26455], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93375, 43.26384], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93388, 43.26387], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93429, 43.26396], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93422, 43.26394], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93436, 43.26397], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.9337, 43.26381], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93402, 43.2639], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93421, 43.26392], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93406, 43.26389], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93415, 43.26393], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93435, 43.26395], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93395, 43.26388], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93348, 43.26376], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93354, 43.26379], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93393, 43.26392], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93377, 43.26383], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93384, 43.26384], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93537, 43.26316], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93536, 43.26318], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93526, 43.26316], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93514, 43.2632], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93515, 43.26325], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93511, 43.2632], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93562, 43.26366], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93561, 43.26367], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93558, 43.26368], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93559, 43.26367], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93562, 43.26366], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93569, 43.26364], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93567, 43.26364], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93647, 43.26317], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93649, 43.26313], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.9365, 43.26309], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93599, 43.26424], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93589, 43.26425], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93584, 43.26419], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93585, 43.26319], "type": "Point"}, "properties": {"marker-color": null, "type": "GtfsShape", "values": 84.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93618, 43.26504], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93618, 43.26504], "type": "Point"}, "properties": {"marker-color": "#e2311d", "type": "GtfsShape", "values": 59.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93421, 43.26302], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 79.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.9342, 43.26298], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93764, 43.26541], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93763, 43.26538], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93768, 43.26531], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.9377, 43.26521], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93771, 43.26525], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93768, 43.26525], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93766, 43.26536], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93759, 43.26546], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93765, 43.26539], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.9378, 43.26513], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 66.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93773, 43.2652], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.9378, 43.26504], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93777, 43.26509], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93782, 43.26498], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93784, 43.26493], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93783, 43.2649], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.9345, 43.26415], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.9343, 43.2647], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93417, 43.26497], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93423, 43.26483], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93439, 43.26442], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93436, 43.26456], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93434, 43.26456], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93445, 43.26429], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93442, 43.26435], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93425, 43.26476], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93425, 43.26484], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93419, 43.26497], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93453, 43.26434], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93428, 43.26477], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93444, 43.26436], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93447, 43.26429], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93392, 43.2635], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93386, 43.26353], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93355, 43.26366], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.9339, 43.26349], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93397, 43.26347], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93412, 43.26338], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93372, 43.26357], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93367, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93369, 43.26361], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.9338, 43.26356], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93375, 43.26358], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93361, 43.26363], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93344, 43.26373], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93598, 43.26352], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93624, 43.26384], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93618, 43.26388], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.9362, 43.26384], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93625, 43.2637], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93614, 43.26397], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93612, 43.26397], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93612, 43.26402], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.9361, 43.26401], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93621, 43.26379], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93617, 43.26383], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93633, 43.26352], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93635, 43.26347], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93627, 43.26365], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93625, 43.26365], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93609, 43.26451], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93618, 43.26435], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93577, 43.26427], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93493, 43.2641], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93526, 43.26415], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93476, 43.26406], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93544, 43.26421], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93535, 43.26419], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93543, 43.26425], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93569, 43.26427], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93561, 43.26425], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93543, 43.26419], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93535, 43.26417], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93585, 43.26429], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93552, 43.26423], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93519, 43.2642], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93501, 43.2641], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93501, 43.26412], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93819, 43.26489], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93804, 43.26486], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93691, 43.26452], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93678, 43.26449], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93705, 43.26455], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93718, 43.26458], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93714, 43.26459], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93689, 43.26453], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93665, 43.26448], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93671, 43.26447], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93677, 43.26451], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93673, 43.2645], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93718, 43.2646], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93632, 43.26441], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93623, 43.26439], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93698, 43.26453], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93665, 43.26446], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93652, 43.26443], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93656, 43.26446], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93648, 43.26444], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93644, 43.26443], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93462, 43.26393], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93472, 43.26369], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93463, 43.26384], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93469, 43.26369], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93469, 43.26377], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93662, 43.26272], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93659, 43.26278], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93665, 43.26265], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.9367, 43.26259], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93669, 43.26255], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.9367, 43.26252], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93675, 43.26239], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93676, 43.26235], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93661, 43.26283], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.9366, 43.26267], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93663, 43.26268], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93654, 43.26292], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93644, 43.26318], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 78.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93257, 43.26194], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93252, 43.26202], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93253, 43.26188], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93254, 43.26195], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93568, 43.26508], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93563, 43.26514], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93575, 43.26488], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.9356, 43.26528], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93557, 43.26527], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93573, 43.26495], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93557, 43.26534], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.9356, 43.2652], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93576, 43.2648], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93573, 43.26487], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93579, 43.26473], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.9358, 43.2647], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93584, 43.2646], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93594, 43.26441], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93591, 43.26448], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93587, 43.26458], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93587, 43.26453], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93588, 43.2645], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93598, 43.26438], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93578, 43.26481], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93581, 43.26466], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93565, 43.26507], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93571, 43.26493], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93531, 43.26599], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93535, 43.26589], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93529, 43.26597], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93527, 43.26608], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93527, 43.26601], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93528, 43.26599], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.9354, 43.2657], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93537, 43.26579], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93544, 43.2656], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93547, 43.26554], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93529, 43.26592], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.9354, 43.26565], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93542, 43.26565], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93531, 43.26592], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93526, 43.26599], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93526, 43.26606], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93535, 43.26583], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93536, 43.26581], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93222, 43.26117], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93227, 43.26115], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.9323, 43.26112], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93241, 43.26108], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93219, 43.26117], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93401, 43.26125], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93379, 43.26092], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93384, 43.26097], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93393, 43.26111], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93395, 43.26121], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93389, 43.2611], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93388, 43.26104], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.9339, 43.26107], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93375, 43.26082], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93403, 43.26145], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93392, 43.26132], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93394, 43.26131], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93412, 43.2615], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93409, 43.26144], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93405, 43.26138], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93412, 43.26143], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93416, 43.26151], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93418, 43.26155], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93421, 43.26164], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93395, 43.26115], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93377, 43.26086], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93248, 43.26356], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93254, 43.26358], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.26357], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93228, 43.26352], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93217, 43.26349], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.9323, 43.26355], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93236, 43.26351], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93234, 43.26353], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.9324, 43.26354], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93211, 43.26348], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93182, 43.26339], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.9317, 43.26339], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93262, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93258, 43.26359], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93255, 43.26358], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93253, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93253, 43.26357], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.43}}, {"type": "Feature", "geometry": {"coordinates": [-2.93253, 43.26358], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.9328, 43.26363], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93277, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93269, 43.26361], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93272, 43.26361], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93274, 43.26362], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93266, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.9327, 43.26362], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93257, 43.26358], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93259, 43.26359], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93264, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93271, 43.26362], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93291, 43.26363], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93301, 43.26366], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93329, 43.26372], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93332, 43.26375], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93327, 43.26373], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.9331, 43.26368], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93331, 43.2638], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93335, 43.26381], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93327, 43.26082], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93172, 43.26117], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93123, 43.26101], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93171, 43.26119], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93112, 43.26099], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93075, 43.26084], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93143, 43.26107], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93132, 43.26105], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93133, 43.26104], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.9319, 43.26125], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93266, 43.26157], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93264, 43.26161], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93263, 43.26172], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93262, 43.26166], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93274, 43.26145], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93267, 43.26162], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93265, 43.26167], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93269, 43.26157], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93262, 43.2616], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93268, 43.26152], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93271, 43.26145], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93295, 43.26189], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93291, 43.26188], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93274, 43.26187], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93275, 43.26185], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93281, 43.26185], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93279, 43.26186], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.9327, 43.26186], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93271, 43.26184], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93306, 43.26194], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93278, 43.26187], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.9329, 43.2619], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93282, 43.26188], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93302, 43.26193], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93307, 43.26192], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93318, 43.26196], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93294, 43.26191], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93283, 43.26187], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93303, 43.26191], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93228, 43.26124], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93236, 43.26126], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93242, 43.26125], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93221, 43.26123], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93223, 43.26121], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93649, 43.26508], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93655, 43.26519], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93642, 43.26498], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.9366, 43.26524], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93658, 43.26525], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93666, 43.26535], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93632, 43.26489], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93616, 43.26462], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.9362, 43.26467], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93621, 43.26473], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93651, 43.26514], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93196, 43.26142], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93198, 43.26138], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93266, 43.26249], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93264, 43.26251], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93197, 43.26167], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93345, 43.26163], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.9334, 43.26175], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93347, 43.26164], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93319, 43.26229], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93308, 43.26247], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93312, 43.26244], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93324, 43.26214], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93323, 43.26222], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93321, 43.26225], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93212, 43.26171], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93241, 43.26179], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93235, 43.26183], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93345, 43.26149], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93358, 43.26152], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93357, 43.2615], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93348, 43.2615], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93361, 43.26153], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93351, 43.26151], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93346, 43.26147], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93361, 43.2615], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93366, 43.26149], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93372, 43.26153], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.9335, 43.26148], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.9336, 43.26148], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93364, 43.26153], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93386, 43.26154], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93364, 43.26151], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93397, 43.26158], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.9339, 43.26157], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.9339, 43.26159], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93396, 43.26161], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93387, 43.26159], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93393, 43.26158], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93261, 43.2613], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93313, 43.26142], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93287, 43.26136], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93268, 43.26133], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93248, 43.26127], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93252, 43.26128], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93331, 43.26148], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93322, 43.26146], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93313, 43.26144], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93336, 43.26149], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93342, 43.26148], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93336, 43.26205], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93337, 43.26188], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93241, 43.26229], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93241, 43.26229], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93241, 43.26229], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93241, 43.26229], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93241, 43.2623], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.9324, 43.26231], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.9324, 43.2623], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93241, 43.26228], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93241, 43.26228], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93182, 43.26171], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93179, 43.26177], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93182, 43.26174], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93195, 43.26141], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93187, 43.26159], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93188, 43.26156], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93183, 43.26168], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.9319, 43.26156], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.9319, 43.26153], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93196, 43.26138], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93176, 43.26189], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93173, 43.26197], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.9317, 43.26204], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93176, 43.26186], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93178, 43.2618], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93178, 43.26186], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93179, 43.26182], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93177, 43.26183], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.9317, 43.26189], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93172, 43.26196], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93174, 43.26189], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93169, 43.26208], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93167, 43.26212], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93165, 43.26211], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93283, 43.26427], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93284, 43.26425], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93287, 43.26421], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93282, 43.26422], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93286, 43.26423], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93285, 43.26425], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93289, 43.26422], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93282, 43.26431], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93282, 43.2643], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93264, 43.26379], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93265, 43.26381], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93257, 43.26369], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93259, 43.26374], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93261, 43.26375], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93256, 43.26367], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93254, 43.26364], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93255, 43.26362], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93257, 43.26369], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93252, 43.26362], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93253, 43.26363], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93252, 43.26362], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.26361], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93252, 43.26361], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.26361], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.2636], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93265, 43.26377], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93257, 43.26365], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93268, 43.26388], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93265, 43.26383], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93247, 43.2641], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93262, 43.26378], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93271, 43.26392], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93267, 43.26384], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93245, 43.26418], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.9326, 43.26403], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93259, 43.26412], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93252, 43.26415], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93192, 43.26443], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93219, 43.26431], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93213, 43.26434], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93199, 43.2644], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93189, 43.26443], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93169, 43.26452], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93253, 43.26421], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93221, 43.26465], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93206, 43.26437], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93196, 43.26439], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93281, 43.26435], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93233, 43.26425], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93247, 43.26419], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93231, 43.26424], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93226, 43.26428], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93224, 43.26427], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93253, 43.26416], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.9326, 43.26413], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93269, 43.26387], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.9327, 43.26389], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93272, 43.26392], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93271, 43.2639], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93266, 43.26382], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93272, 43.26388], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93275, 43.26396], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.9326, 43.26373], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93263, 43.26378], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93253, 43.26363], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93254, 43.26364], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93255, 43.26367], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93252, 43.26362], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93253, 43.26363], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.26361], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93258, 43.2637], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93259, 43.26372], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.93254, 43.26365], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93255, 43.26366], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93253, 43.26363], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93255, 43.26366], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93082, 43.26211], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93058, 43.26204], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93083, 43.26209], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93038, 43.26082], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93116, 43.26339], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.5}}, {"type": "Feature", "geometry": {"coordinates": [-2.9311, 43.26348], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93276, 43.26444], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93271, 43.26463], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93268, 43.26463], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.9327, 43.26458], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93276, 43.26452], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93277, 43.26448], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93274, 43.26456], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93266, 43.26468], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93269, 43.26467], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.92853, 43.26267], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93286, 43.26437], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93281, 43.26434], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93283, 43.26431], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93281, 43.26434], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93282, 43.26432], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93282, 43.26433], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93281, 43.26434], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93281, 43.26434], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93246, 43.26206], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93235, 43.2622], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.26194], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93268, 43.26347], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93272, 43.26336], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93265, 43.26353], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93136, 43.26357], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.47}}, {"type": "Feature", "geometry": {"coordinates": [-2.93138, 43.26283], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93141, 43.26277], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93126, 43.26314], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93128, 43.26301], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93123, 43.26315], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93133, 43.2629], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93143, 43.26271], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.9314, 43.26273], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93142, 43.26274], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93153, 43.26247], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93147, 43.26262], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93144, 43.26263], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93164, 43.26336], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93326, 43.26385], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93324, 43.26386], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93314, 43.26391], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93338, 43.26382], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93313, 43.26394], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93305, 43.26397], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93304, 43.26398], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93307, 43.26396], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.9331, 43.26395], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93308, 43.26396], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93317, 43.26392], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93324, 43.26388], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93317, 43.26389], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93321, 43.26388], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93318, 43.26388], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.56}}, {"type": "Feature", "geometry": {"coordinates": [-2.93327, 43.26387], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93323, 43.26389], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93318, 43.26391], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93321, 43.2639], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93324, 43.26385], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93327, 43.26384], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93322, 43.26387], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93334, 43.26381], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93333, 43.26382], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.9333, 43.26386], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93328, 43.26385], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93329, 43.26384], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93331, 43.26383], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93328, 43.26387], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93329, 43.26383], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93332, 43.26382], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93336, 43.26381], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93335, 43.26381], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93337, 43.26383], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93334, 43.26381], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93337, 43.2638], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93336, 43.2638], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93337, 43.2638], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93337, 43.2638], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93333, 43.26384], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93329, 43.26386], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93335, 43.26384], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93335, 43.26383], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93336, 43.26383], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93336, 43.26383], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93334, 43.26384], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93337, 43.26383], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.49}}, {"type": "Feature", "geometry": {"coordinates": [-2.93337, 43.26382], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93338, 43.26382], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93337, 43.26382], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93311, 43.26394], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.97}}, {"type": "Feature", "geometry": {"coordinates": [-2.93294, 43.26402], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93212, 43.26296], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93222, 43.26266], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93208, 43.263], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.9321, 43.26295], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.932, 43.2632], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.9321, 43.26301], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.932, 43.26325], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93198, 43.26325], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93216, 43.26281], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93219, 43.26281], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93278, 43.26322], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93291, 43.26287], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.93291, 43.26293], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93293, 43.26289], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93243, 43.26223], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93244, 43.26221], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93243, 43.26224], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93111, 43.2642], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93122, 43.26393], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93118, 43.26395], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93123, 43.26389], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93129, 43.2639], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.9312, 43.26397], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93125, 43.26385], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93132, 43.26383], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93111, 43.26414], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93115, 43.26408], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93109, 43.26415], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.9312, 43.26392], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93117, 43.26398], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93119, 43.26401], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93116, 43.26401], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93114, 43.26404], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93117, 43.26405], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93115, 43.264], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93117, 43.26395], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93116, 43.264], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.9312, 43.2639], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93121, 43.26389], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93106, 43.26427], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93107, 43.26424], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93108, 43.26428], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93104, 43.2643], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93122, 43.26406], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93121, 43.26414], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93125, 43.26406], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.37}}, {"type": "Feature", "geometry": {"coordinates": [-2.93115, 43.26429], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93113, 43.26429], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93118, 43.26422], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93116, 43.26421], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93109, 43.26424], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93106, 43.26432], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93114, 43.26412], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.9311, 43.26416], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.9313, 43.26405], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93128, 43.26399], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93125, 43.26398], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93118, 43.26397], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.9312, 43.26418], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.92984, 43.26248], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93098, 43.26273], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93092, 43.26272], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93124, 43.26277], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93124, 43.26279], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93127, 43.26279], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93096, 43.26271], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93112, 43.26274], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 67.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93118, 43.26275], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.39}}, {"type": "Feature", "geometry": {"coordinates": [-2.93128, 43.26277], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93093, 43.2627], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93095, 43.26332], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93287, 43.26296], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93279, 43.26314], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93284, 43.26309], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93274, 43.26326], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93281, 43.26311], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93275, 43.26323], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93277, 43.2632], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.9327, 43.26335], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93266, 43.26344], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93265, 43.26347], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93282, 43.26308], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93284, 43.26302], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93278, 43.26317], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93295, 43.26278], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.06}}, {"type": "Feature", "geometry": {"coordinates": [-2.93292, 43.26284], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93296, 43.26275], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93297, 43.26272], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93246, 43.26522], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93248, 43.26517], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.26495], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93238, 43.26527], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.74}}, {"type": "Feature", "geometry": {"coordinates": [-2.93228, 43.26542], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93242, 43.2651], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93239, 43.26517], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93244, 43.26505], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93245, 43.26503], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93245, 43.26502], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.96}}, {"type": "Feature", "geometry": {"coordinates": [-2.93244, 43.26507], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.9324, 43.26515], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93241, 43.26513], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93246, 43.26498], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93246, 43.265], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.9325, 43.26498], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93246, 43.26507], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.26505], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93247, 43.26504], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93253, 43.26499], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93249, 43.26501], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93246, 43.26502], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93247, 43.26498], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.41}}, {"type": "Feature", "geometry": {"coordinates": [-2.93231, 43.26533], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93236, 43.26524], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93236, 43.26525], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93239, 43.26524], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93233, 43.2653], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.9324, 43.26521], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93241, 43.26528], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93244, 43.26522], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.93241, 43.26534], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93235, 43.26527], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93229, 43.26538], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93231, 43.26537], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93233, 43.26532], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93116, 43.26476], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93074, 43.26496], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93074, 43.26494], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93081, 43.26493], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93077, 43.26495], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93066, 43.265], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.9307, 43.26498], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93141, 43.26467], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93102, 43.26483], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93084, 43.26494], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93088, 43.2649], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93098, 43.26487], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93091, 43.2649], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93095, 43.26486], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.9307, 43.265], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93112, 43.2648], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93152, 43.2646], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93098, 43.26485], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93084, 43.26491], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93134, 43.26468], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93131, 43.2647], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93155, 43.26458], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93127, 43.26474], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.9312, 43.26477], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93113, 43.26478], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93099, 43.26443], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93091, 43.26442], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93106, 43.26445], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93135, 43.26449], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93155, 43.26455], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93056, 43.26432], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93065, 43.26434], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.9309, 43.26439], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93084, 43.2644], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.9}}, {"type": "Feature", "geometry": {"coordinates": [-2.93066, 43.26431], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.09}}, {"type": "Feature", "geometry": {"coordinates": [-2.93078, 43.26431], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93073, 43.26436], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93077, 43.26433], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93071, 43.26432], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93069, 43.26435], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93098, 43.26441], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93077, 43.26437], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93052, 43.26431], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93251, 43.26557], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93378, 43.26585], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 80.22}}, {"type": "Feature", "geometry": {"coordinates": [-2.93396, 43.26589], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93433, 43.26597], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.934, 43.26588], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93409, 43.2659], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.9347, 43.26604], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93452, 43.266], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93504, 43.26611], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93478, 43.26605], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.54}}, {"type": "Feature", "geometry": {"coordinates": [-2.93505, 43.26613], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93487, 43.26607], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.61}}, {"type": "Feature", "geometry": {"coordinates": [-2.93491, 43.26608], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93496, 43.26609], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93426, 43.26594], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93411, 43.26588], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93444, 43.26598], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.52}}, {"type": "Feature", "geometry": {"coordinates": [-2.93396, 43.26587], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93413, 43.26591], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93284, 43.26563], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93286, 43.26563], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93279, 43.26561], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93324, 43.26573], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93335, 43.26574], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93362, 43.2658], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.9336, 43.26579], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93353, 43.26578], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.9336, 43.26581], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93367, 43.26581], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.68}}, {"type": "Feature", "geometry": {"coordinates": [-2.93331, 43.26572], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93337, 43.26574], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93344, 43.26575], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93351, 43.26577], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93348, 43.26577], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93288, 43.26563], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93292, 43.26564], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93298, 43.26566], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93297, 43.26565], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93303, 43.26567], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93309, 43.26568], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93324, 43.26571], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93325, 43.26572], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.93323, 43.26571], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93312, 43.26569], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93317, 43.26569], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93342, 43.26577], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93365, 43.2658], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93358, 43.26579], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.9333, 43.26573], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93321, 43.26571], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.9327, 43.26559], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.9328, 43.26561], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.93287, 43.26565], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93293, 43.26565], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93289, 43.26564], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93305, 43.26567], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93283, 43.26562], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93271, 43.26559], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93269, 43.26561], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.08}}, {"type": "Feature", "geometry": {"coordinates": [-2.93291, 43.26564], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93288, 43.26563], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.19}}, {"type": "Feature", "geometry": {"coordinates": [-2.93261, 43.26557], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93257, 43.26556], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93269, 43.26559], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93219, 43.26468], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93213, 43.26466], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.9325, 43.26474], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93224, 43.26471], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93218, 43.26469], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93217, 43.26474], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.93212, 43.26468], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.9323, 43.26472], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93174, 43.2646], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93195, 43.26462], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93189, 43.26461], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.55}}, {"type": "Feature", "geometry": {"coordinates": [-2.93171, 43.26457], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93168, 43.26456], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93238, 43.26472], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93232, 43.2647], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93713, 43.26512], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93707, 43.26529], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93706, 43.26524], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.88}}, {"type": "Feature", "geometry": {"coordinates": [-2.93714, 43.26505], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93716, 43.265], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.9371, 43.26515], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93715, 43.26508], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93727, 43.26479], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93725, 43.26483], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93717, 43.26496], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93722, 43.26491], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93368, 43.26508], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.9337, 43.26509], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93381, 43.26509], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.64}}, {"type": "Feature", "geometry": {"coordinates": [-2.93381, 43.26511], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.15}}, {"type": "Feature", "geometry": {"coordinates": [-2.93363, 43.26507], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93363, 43.26507], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.92}}, {"type": "Feature", "geometry": {"coordinates": [-2.93377, 43.2651], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.42}}, {"type": "Feature", "geometry": {"coordinates": [-2.93388, 43.26513], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93381, 43.26511], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93379, 43.2651], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93378, 43.2651], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93374, 43.2651], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.32}}, {"type": "Feature", "geometry": {"coordinates": [-2.93384, 43.26511], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.44}}, {"type": "Feature", "geometry": {"coordinates": [-2.93389, 43.26511], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.29}}, {"type": "Feature", "geometry": {"coordinates": [-2.9339, 43.26513], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.33}}, {"type": "Feature", "geometry": {"coordinates": [-2.93378, 43.2651], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93386, 43.26512], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93392, 43.26513], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93388, 43.26512], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93392, 43.26511], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 77.51}}, {"type": "Feature", "geometry": {"coordinates": [-2.93391, 43.26513], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 76.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93675, 43.26547], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93282, 43.26483], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.1}}, {"type": "Feature", "geometry": {"coordinates": [-2.93291, 43.26485], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.933, 43.26488], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.73}}, {"type": "Feature", "geometry": {"coordinates": [-2.93337, 43.26496], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.63}}, {"type": "Feature", "geometry": {"coordinates": [-2.93319, 43.2649], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93329, 43.26492], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.35}}, {"type": "Feature", "geometry": {"coordinates": [-2.93292, 43.26484], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.46}}, {"type": "Feature", "geometry": {"coordinates": [-2.9331, 43.26488], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93319, 43.26492], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93328, 43.26494], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93309, 43.2649], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93319, 43.26496], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.85}}, {"type": "Feature", "geometry": {"coordinates": [-2.93287, 43.26483], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.62}}, {"type": "Feature", "geometry": {"coordinates": [-2.93287, 43.26484], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.93375, 43.26502], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.98}}, {"type": "Feature", "geometry": {"coordinates": [-2.93346, 43.26498], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93369, 43.26506], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93365, 43.26506], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.45}}, {"type": "Feature", "geometry": {"coordinates": [-2.93367, 43.26508], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.13}}, {"type": "Feature", "geometry": {"coordinates": [-2.93372, 43.26509], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.27}}, {"type": "Feature", "geometry": {"coordinates": [-2.93373, 43.26507], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93371, 43.26509], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93374, 43.26509], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.28}}, {"type": "Feature", "geometry": {"coordinates": [-2.93375, 43.2651], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93385, 43.26512], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93366, 43.26508], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.05}}, {"type": "Feature", "geometry": {"coordinates": [-2.93365, 43.26507], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93363, 43.26507], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.89}}, {"type": "Feature", "geometry": {"coordinates": [-2.93365, 43.26507], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93365, 43.26508], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93367, 43.26508], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.9336, 43.26506], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93361, 43.26507], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.93362, 43.26507], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93361, 43.26507], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93361, 43.26507], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.82}}, {"type": "Feature", "geometry": {"coordinates": [-2.9336, 43.26506], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.07}}, {"type": "Feature", "geometry": {"coordinates": [-2.9336, 43.26506], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93355, 43.265], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.24}}, {"type": "Feature", "geometry": {"coordinates": [-2.93358, 43.26504], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.57}}, {"type": "Feature", "geometry": {"coordinates": [-2.93383, 43.26506], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93384, 43.26504], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.4}}, {"type": "Feature", "geometry": {"coordinates": [-2.93074, 43.26368], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93068, 43.26315], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.25}}, {"type": "Feature", "geometry": {"coordinates": [-2.93093, 43.2632], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.9308, 43.26317], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.93099, 43.26322], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93035, 43.26309], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93094, 43.26322], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.95}}, {"type": "Feature", "geometry": {"coordinates": [-2.93055, 43.26312], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.92987, 43.26299], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.93}}, {"type": "Feature", "geometry": {"coordinates": [-2.9311, 43.26526], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93091, 43.2652], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.76}}, {"type": "Feature", "geometry": {"coordinates": [-2.93081, 43.26517], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.83}}, {"type": "Feature", "geometry": {"coordinates": [-2.93059, 43.26513], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93107, 43.26523], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.79}}, {"type": "Feature", "geometry": {"coordinates": [-2.93113, 43.26525], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93102, 43.26522], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93086, 43.26519], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93111, 43.26521], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.21}}, {"type": "Feature", "geometry": {"coordinates": [-2.93129, 43.26525], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 70.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93123, 43.26527], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93129, 43.26528], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.78}}, {"type": "Feature", "geometry": {"coordinates": [-2.93187, 43.26541], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.01}}, {"type": "Feature", "geometry": {"coordinates": [-2.93177, 43.26539], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.94}}, {"type": "Feature", "geometry": {"coordinates": [-2.93155, 43.26534], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.9315, 43.26533], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.84}}, {"type": "Feature", "geometry": {"coordinates": [-2.93572, 43.26547], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.34}}, {"type": "Feature", "geometry": {"coordinates": [-2.93628, 43.2656], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.91}}, {"type": "Feature", "geometry": {"coordinates": [-2.93647, 43.26564], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.04}}, {"type": "Feature", "geometry": {"coordinates": [-2.93654, 43.26564], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93645, 43.26562], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.12}}, {"type": "Feature", "geometry": {"coordinates": [-2.93636, 43.2656], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.99}}, {"type": "Feature", "geometry": {"coordinates": [-2.93685, 43.26571], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.67}}, {"type": "Feature", "geometry": {"coordinates": [-2.93697, 43.2657], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 74.8}}, {"type": "Feature", "geometry": {"coordinates": [-2.9359, 43.26549], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.03}}, {"type": "Feature", "geometry": {"coordinates": [-2.93609, 43.26556], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.86}}, {"type": "Feature", "geometry": {"coordinates": [-2.93599, 43.26551], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 72}}, {"type": "Feature", "geometry": {"coordinates": [-2.93755, 43.26558], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.16}}, {"type": "Feature", "geometry": {"coordinates": [-2.93746, 43.26589], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.26}}, {"type": "Feature", "geometry": {"coordinates": [-2.93747, 43.26584], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93749, 43.2658], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 68.48}}, {"type": "Feature", "geometry": {"coordinates": [-2.9371, 43.26541], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.02}}, {"type": "Feature", "geometry": {"coordinates": [-2.93743, 43.26549], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 69.18}}, {"type": "Feature", "geometry": {"coordinates": [-2.93699, 43.26563], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.87}}, {"type": "Feature", "geometry": {"coordinates": [-2.93483, 43.26526], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.6}}, {"type": "Feature", "geometry": {"coordinates": [-2.93535, 43.26537], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.93534, 43.26538], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.23}}, {"type": "Feature", "geometry": {"coordinates": [-2.93466, 43.26522], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.17}}, {"type": "Feature", "geometry": {"coordinates": [-2.93517, 43.26535], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.77}}, {"type": "Feature", "geometry": {"coordinates": [-2.93465, 43.26524], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.11}}, {"type": "Feature", "geometry": {"coordinates": [-2.93482, 43.26527], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.53}}, {"type": "Feature", "geometry": {"coordinates": [-2.93439, 43.26518], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.31}}, {"type": "Feature", "geometry": {"coordinates": [-2.9344, 43.26516], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 75.36}}, {"type": "Feature", "geometry": {"coordinates": [-2.93448, 43.2652], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.59}}, {"type": "Feature", "geometry": {"coordinates": [-2.93456, 43.26522], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.3}}, {"type": "Feature", "geometry": {"coordinates": [-2.93508, 43.26533], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.7}}, {"type": "Feature", "geometry": {"coordinates": [-2.93509, 43.26531], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93543, 43.2654], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 73.14}}, {"type": "Feature", "geometry": {"coordinates": [-2.93517, 43.26533], "type": "Point"}, "properties": {"marker-color": "#b40000", "type": "GtfsShape", "values": 71.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93387, 43.26575], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.38}}, {"type": "Feature", "geometry": {"coordinates": [-2.93403, 43.2653], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.75}}, {"type": "Feature", "geometry": {"coordinates": [-2.93398, 43.26548], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.69}}, {"type": "Feature", "geometry": {"coordinates": [-2.93402, 43.26539], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.71}}, {"type": "Feature", "geometry": {"coordinates": [-2.93407, 43.26521], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.81}}, {"type": "Feature", "geometry": {"coordinates": [-2.93388, 43.26566], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.58}}, {"type": "Feature", "geometry": {"coordinates": [-2.93392, 43.26557], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.66}}, {"type": "Feature", "geometry": {"coordinates": [-2.93394, 43.26557], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 83.65}}, {"type": "Feature", "geometry": {"coordinates": [-2.93225, 43.26567], "type": "Point"}, "properties": {"marker-color": "#630000", "type": "GtfsShape", "values": 72.89}}]}}]
\ No newline at end of file
diff --git a/src/assets/map/map-component-maps/bilbao_wifi_request.json b/src/assets/map/map-component-maps/bilbao_wifi_request.json
new file mode 100644
index 0000000000000000000000000000000000000000..483dc49538143cabbf5044f112366fdbd388d17c
--- /dev/null
+++ b/src/assets/map/map-component-maps/bilbao_wifi_request.json
@@ -0,0 +1 @@
+[{"id": "urn:ngsi-ld:MapLayer:Bilbao:wifi", "alternateName": "bilbao_wifi.geojson", "name": "bilbao_wifi", "description": "test", "type": "MapLayer", "@context": ["https://smartdatamodels.org/context.jsonld", "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld", "https://git.code.tecnalia.com/urbanite/public/-/raw/main/datamodels/maplayer-ngsi.jsonld"], "map": {"type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"coordinates": [[[-2.946572772738531, 43.244796539908236], [-2.947037592387786, 43.244107896174214], [-2.9475093301039332, 43.24341925364218], [-2.947723014103128, 43.24335631854827], [-2.9481631021605517, 43.243207941159895], [-2.948418752139256, 43.24313151671273], [-2.9488139868182834, 43.24322174130086], [-2.948879339101599, 43.242861582263764], [-2.94905996580127, 43.24274009929429], [-2.949179704254756, 43.24270413372158], [-2.9493911480310104, 43.24208740499339], [-2.9494356473412937, 43.2418037763618], [-2.949360480297, 43.241006826359886], [-2.9493470869857767, 43.240912270977766], [-2.9491054587337167, 43.24034036463125], [-2.9489662978888314, 43.24013319428466], [-2.948535905116392, 43.239309070352256], [-2.948708495904122, 43.239120048901356], [-2.948597813523364, 43.23892189554034], [-2.9485798031627426, 43.238827337959236], [-2.9486041344988494, 43.23872829704767], [-2.9486665886608483, 43.2386067614584], [-2.948770233139819, 43.23847623957182], [-2.9489116074038475, 43.23833222737299], [-2.94901717157177, 43.2382062084707], [-2.949190938598397, 43.23798567027868], [-2.94925760961616, 43.237882145652925], [-2.9494443975938256, 43.23773815291496], [-2.9496303592990225, 43.23766169486737], [-2.9499840924382794, 43.237630333565185], [-2.9504047765101857, 43.23762151200134], [-2.9503847041658644, 43.237693541017734], [-2.950315384972751, 43.23774303686486], [-2.9502464615406865, 43.23777902576947], [-2.950153290345516, 43.23781500406952], [-2.950053579689016, 43.2378464770812], [-2.9499403979816807, 43.237877944111816], [-2.9498518524539565, 43.23790491947518], [-2.949807953458839, 43.23793191436696], [-2.9498548724566267, 43.23797695851542], [-2.949726998147167, 43.23808946132243], [-2.9496696761376966, 43.238057919617624], [-2.949517934664778, 43.23817491404348], [-2.9494693943704418, 43.23822892089819], [-2.9494300949964654, 43.23827842946008], [-2.949393093702955, 43.23834144609555], [-2.9493587828173355, 43.23840896626626], [-2.9493175438718904, 43.23847648335673], [-2.949279395146179, 43.23853049473125], [-2.949241253827644, 43.23857550138231], [-2.9491984937860796, 43.23862050596933], [-2.9491711217641488, 43.23867452209149], [-2.9491595376534843, 43.23871954051071], [-2.949164081467752, 43.238809589662424], [-2.9491794321689615, 43.23886362476164], [-2.949187881052206, 43.23888614029732], [-2.9492494112302405, 43.23894920060136], [-2.949700876959809, 43.23943115211594], [-2.9499789196117825, 43.23971942481129], [-2.9501018915500206, 43.239958103371066], [-2.950144963341633, 43.24000314570653], [-2.950233834382139, 43.240052710313925], [-2.9503804183809184, 43.24012931403229], [-2.9505505034261663, 43.240178913589666], [-2.9507705784984357, 43.2402870650378], [-2.951071425723307, 43.24046728832049], [-2.951206802929336, 43.240602416798446], [-2.9512758519757214, 43.240895099307515], [-2.9510438698627848, 43.24123267687878], [-2.950870111131478, 43.241439710699524], [-2.950775358848108, 43.24152071234851], [-2.950689430141841, 43.24163773655648], [-2.9504375560830436, 43.24229046905566], [-2.9503890511803945, 43.24277219987176], [-2.9499387168425133, 43.243222239017875], [-2.9498045547246043, 43.243478814350325], [-2.9494563492899992, 43.24376681161368], [-2.9491727221786936, 43.24369464830604], [-2.948942389113284, 43.24387463984304], [-2.9488833191257013, 43.24408622403151], [-2.9489349039525976, 43.244540984645724], [-2.9490383252437287, 43.244689608380334], [-2.9490430478432144, 43.24502728686973], [-2.949187388823096, 43.24503635577673], [-2.94919805834483, 43.24516692871227], [-2.949421542573218, 43.24536062885328], [-2.949503854659222, 43.24543720518969], [-2.9495862003665922, 43.24547326031889], [-2.949717946920244, 43.24581999934383], [-2.949433439558503, 43.24586939979969], [-2.949144316264775, 43.24591429514462], [-2.949136610076395, 43.24592329642052], [-2.949121197692824, 43.24594129897067], [-2.9491007811437995, 43.24595929929229], [-2.949077670036218, 43.24597729841079], [-2.9490480187668817, 43.2459907922609], [-2.949005664616642, 43.24600428044151], [-2.94895902128121, 43.24654454172285], [-2.9490494631346134, 43.24656709379209], [-2.949137587928394, 43.24659864946044], [-2.9495481173331015, 43.246841958168275], [-2.949749337675059, 43.24696811253958], [-2.9497931840242617, 43.24701315529258], [-2.9498566144714453, 43.247116737165], [-2.9498827536428496, 43.247161772119604], [-2.949932378061189, 43.24720231499901], [-2.950027425842173, 43.24724287770806], [-2.9501294247695578, 43.24725642926892], [-2.950213734681483, 43.24724746129224], [-2.950326563289594, 43.24719798449075], [-2.951074529614853, 43.24668954125724], [-2.9510941687441274, 43.24668054495409], [-2.9511315258867485, 43.24665804916653], [-2.9511711854457086, 43.24664455905027], [-2.9512127696839143, 43.2466310697411], [-2.951255890070861, 43.24662208342176], [-2.9513001616761376, 43.24661759992663], [-2.9513452031534078, 43.24661311674183], [-2.951390237463933, 43.2466176382371], [-2.951434886841841, 43.246622159551244], [-2.9514783814084047, 43.24662668035812], [-2.951527642931755, 43.24664020829303], [-2.9515807467397486, 43.24666274253381], [-2.951631156009063, 43.24668527561058], [-2.9516777123582965, 43.246712309388], [-2.9517200308525493, 43.2467438437082], [-2.951757730107342, 43.24677537606471], [-2.9517792583503155, 43.246811403943646], [-2.9517976999927438, 43.24685643521828], [-2.951809597664395, 43.24690146373309], [-2.951815336292143, 43.24694648965226], [-2.9518145309207555, 43.24699151281457], [-2.9518071815357727, 43.24703653321985], [-2.951793673064929, 43.24708155102908], [-2.951773624104053, 43.24712206372926], [-2.951614443311744, 43.24737412810897], [-2.952141065102479, 43.24784259400076], [-2.9524967422048523, 43.2483560100641], [-2.952637078099499, 43.248576683352084], [-2.9528427389219662, 43.2489504632608], [-2.95308450521679, 43.24943231394652], [-2.95335784891439, 43.24990517226429], [-2.9529400739433003, 43.25052632513278], [-2.949686346259612, 43.2524114235779], [-2.9507665566394596, 43.25340691192135], [-2.950658583254652, 43.25410472884295], [-2.9506732127383968, 43.25410473515203], [-2.950681678806301, 43.25410924114675], [-2.9506882163103665, 43.254118248654024], [-2.9506916739239064, 43.25412725483342], [-2.9506932066053992, 43.25413626018302], [-2.950691270774804, 43.25414976638207], [-2.950687406376635, 43.254167774094185], [-2.950680069827176, 43.25419478499807], [-2.9506796703067053, 43.25421279420357], [-2.9506831206580793, 43.25423080506876], [-2.950691957201518, 43.25425332059996], [-2.9507031036764144, 43.254275837125796], [-2.9507115588771136, 43.254293850146574], [-2.9507165528239874, 43.254307359331236], [-2.9507211654156205, 43.25431636600702], [-2.9507234644516234, 43.25432987403038], [-2.9507242235369673, 43.25434338139033], [-2.9507234426706312, 43.254356888086924], [-2.950717653328207, 43.254374894970205], [-2.950704923299618, 43.25440640589532], [-2.950696820384327, 43.254428914124674], [-2.9506910310272163, 43.25444692100636], [-2.9506871702429613, 43.25446042637486], [-2.9506860043781775, 43.25447393290494], [-2.9506859934793526, 43.25448743993289], [-2.950689051593642, 43.25451445531635], [-2.9506959596022813, 43.25454147235892], [-2.9507005649447606, 43.25455948372036], [-2.950705173921491, 43.25457299273898], [-2.9507140105224177, 43.25459550826713], [-2.950866599282762, 43.25538798641714], [-2.950765320847039, 43.25589670766524], [-2.9506836249005803, 43.2564684700193], [-2.9502665473019434, 43.256144120775105], [-2.9494861074709773, 43.25573406559765], [-2.9492901889968435, 43.255679950798694], [-2.949119288112108, 43.25563485148035], [-2.9489422275476755, 43.25558974915728], [-2.948770945951089, 43.25554014680455], [-2.94859966463275, 43.25549054419509], [-2.9484857288448367, 43.255463478884], [-2.9483510110494744, 43.25542739939134], [-2.9480180710287938, 43.25533269937264], [-2.947905675769069, 43.25530563418314], [-2.9477890495237484, 43.25527406460852], [-2.947625461901297, 43.25523346873661], [-2.9474791953233423, 43.255197382927804], [-2.947331003953031, 43.25516129604557], [-2.9471250677300214, 43.255120679951666], [-2.9469995796027346, 43.25509811016226], [-2.9468902573409053, 43.25508005008519], [-2.946760911615714, 43.25506648293025], [-2.9466319548721365, 43.25504841346679], [-2.9465083841552535, 43.25503484872029], [-2.9463886594653776, 43.255025787986554], [-2.946267783793231, 43.255012224243096], [-2.946144209263131, 43.25500316144513], [-2.9459882954427834, 43.25499408324928], [-2.9458639470190007, 43.254989522126934], [-2.9457195750347114, 43.25498945371383], [-2.9451571098694163, 43.2549801807549], [-2.9446050396571466, 43.254970910064536], [-2.944136127837839, 43.25496167734967], [-2.9442552093916476, 43.254831167468126], [-2.944156721646325, 43.25475457958583], [-2.9440213122249093, 43.254637452459924], [-2.9438801408905935, 43.25450681531237], [-2.943850132438704, 43.254484288866124], [-2.9438239697566844, 43.25446626664471], [-2.9437816417131786, 43.254443734129914], [-2.9437289148695838, 43.2544256988289], [-2.9436657975236975, 43.254403156042976], [-2.9422797950330626, 43.25404227755842], [-2.941943017851675, 43.253952060245204], [-2.9412548024517404, 43.253807633870146], [-2.9411296998423326, 43.253789560179435], [-2.94110590890621, 43.25370850572824], [-2.9411811714119986, 43.253510441276916], [-2.941234048232108, 43.25337089575761], [-2.9412660925772136, 43.25327636296776], [-2.9413031415700828, 43.25318183273536], [-2.9413081809059536, 43.253145816559275], [-2.9413239910334643, 43.25311881059829], [-2.9413348136938366, 43.253073792696306], [-2.9413452340752415, 43.253046783967896], [-2.9413560394269447, 43.25301977543579], [-2.941403517088093, 43.25288923174899], [-2.9414564014869145, 43.2527406814244], [-2.941503870098089, 43.25261914237618], [-2.9415779836491973, 43.25241207234662], [-2.9416123282065882, 43.252326545310275], [-2.9416521138899028, 43.25218699288613], [-2.9415593480039792, 43.25217343849519], [-2.9409157930270164, 43.25204704222796], [-2.9407837820506297, 43.25201095520092], [-2.940657939539868, 43.25196586652902], [-2.9405621163204123, 43.251929798012036], [-2.940499007103985, 43.25190275112725], [-2.9404108835224054, 43.25186668648778], [-2.9403093036119667, 43.25181260537456], [-2.9402119585685935, 43.25175852638402], [-2.9401188527920104, 43.251699947182956], [-2.9400272870772355, 43.2516413687129], [-2.939941504942964, 43.251573788512594], [-2.9398603382080966, 43.25151071302015], [-2.9397830302081975, 43.25143863480758], [-2.9396815093259003, 43.2513260226578], [-2.939618065080103, 43.25124944929393], [-2.9395573157683303, 43.25117287731776], [-2.9395035004779935, 43.251091806628644], [-2.9394570041601753, 43.25100623743988], [-2.9394454774578382, 43.25098371960435], [-2.9395633084257566, 43.250952265487676], [-2.9395422733225893, 43.250812681615585], [-2.939533919881558, 43.2506956161758], [-2.9395309604242454, 43.250574051237116], [-2.9396452743453776, 43.250204919119085], [-2.9397161916808483, 43.25011941190861], [-2.9396740014670395, 43.24996180749935], [-2.939491508024821, 43.24998422285617], [-2.9394728886229404, 43.24934938194328], [-2.9394857972172677, 43.249142280750824], [-2.9394432487101883, 43.248570459962686], [-2.939439935804078, 43.24841737834666], [-2.9393403304695194, 43.24754386981042], [-2.9386850501850517, 43.24764707450884], [-2.937851459735522, 43.247826718660534], [-2.9376304635293797, 43.24786261718159], [-2.9374240996681094, 43.24789402093104], [-2.9372223688353345, 43.24791191980259], [-2.936858575015863, 43.24792972898254], [-2.9363962625230133, 43.247920468176574], [-2.9358762836424246, 43.24783913560293], [-2.935370587243501, 43.24772178993889], [-2.934884568165114, 43.247563932092994], [-2.9346121426084686, 43.24745572031129], [-2.934016155280282, 43.24718523711345], [-2.9334621808041965, 43.246869751740945], [-2.9329563738291298, 43.24651377075431], [-2.9325037337139084, 43.24612180008536], [-2.9324372094457782, 43.246058727905194], [-2.9319401142536097, 43.24549563936809], [-2.931303714011343, 43.24456327219973], [-2.931362774524263, 43.24441473003421], [-2.9314179552028987, 43.24429319962144], [-2.9314515092594697, 43.244234689153885], [-2.9314634671435393, 43.24421218455746], [-2.9314846732823208, 43.244180680794535], [-2.931543692654442, 43.24406815731979], [-2.9315814806167215, 43.2440096493453], [-2.9316362705377017, 43.2438926209373], [-2.9316740784293978, 43.24381610353217], [-2.931750063770951, 43.243676575959775], [-2.9317751388769047, 43.24362706503742], [-2.9317847870018134, 43.243604559027474], [-2.932104310880668, 43.24287536792631], [-2.932161848136989, 43.242708814986244], [-2.9322848552752276, 43.24251078430934], [-2.9323442265794872, 43.24242527471862], [-2.9323843122746553, 43.24237577252817], [-2.9324186092933995, 43.24233977396486], [-2.932455975619892, 43.24231278191073], [-2.9325611459940135, 43.24223180159013], [-2.9326562836079404, 43.24217332703532], [-2.9327325455510542, 43.24212834836489], [-2.9328334416597492, 43.24208338410935], [-2.932947419632995, 43.24204292978683], [-2.9330814127798255, 43.24200248706032], [-2.933176515094697, 43.24197552852791], [-2.9332881684448244, 43.2419485795693], [-2.933420601911049, 43.241926144951435], [-2.933540323480119, 43.241912707504056], [-2.933630786992228, 43.241903755314844], [-2.933870595329323, 43.24189488948209], [-2.9340184005437213, 43.24189497482715], [-2.934148490227436, 43.24190405449315], [-2.9342939666543315, 43.241922147557865], [-2.934420962672808, 43.24194473219918], [-2.934553347523486, 43.24196731978246], [-2.9346580141393863, 43.24199439373774], [-2.934775373279229, 43.24203047954247], [-2.9349061900451656, 43.24208007994672], [-2.9353113341704806, 43.2422378921457], [-2.935822664275139, 43.242445288415475], [-2.9369430523582936, 43.24290965387288], [-2.9370673338259414, 43.24295474584271], [-2.93719740309728, 43.24298633379504], [-2.937330945981654, 43.24300891879586], [-2.9374671971957906, 43.243017998061575], [-2.9376042228785475, 43.24302257523422], [-2.9377408774197478, 43.24301364498111], [-2.9378756210636006, 43.242991206467394], [-2.938006904928063, 43.24296426356678], [-2.9403744922175914, 43.24220912667829], [-2.940796013841116, 43.242164322063836], [-2.9408052081191043, 43.242209350360504], [-2.940806336699999, 43.2422363650676], [-2.9408074609230477, 43.24226788212611], [-2.940806660587192, 43.24229939818864], [-2.94081239068259, 43.24234442469114], [-2.9408216024308063, 43.242371443579216], [-2.9408281285133757, 43.2423894563699], [-2.940835428781958, 43.24240296720682], [-2.9408469587380295, 43.242420982584115], [-2.940860413265335, 43.24243899895513], [-2.9408996308592683, 43.24248404275904], [-2.940917704375388, 43.24250206150928], [-2.940938472295954, 43.242520081647726], [-2.940973092768557, 43.24254261128437], [-2.940995019805248, 43.242556129656876], [-2.9410184778198087, 43.24257865352169], [-2.9410365513989105, 43.242596672252894], [-2.9410853790625726, 43.242655228005276], [-2.941131910337018, 43.24270027549416], [-2.941158828356355, 43.2427273034635], [-2.941184569999181, 43.24277684258869], [-2.941202224131916, 43.24283087990456], [-2.9412064192350065, 43.24287140324086], [-2.9412086897642875, 43.242911925587684], [-2.9412186629476698, 43.242947949539], [-2.9412332508110612, 43.242988478213135], [-2.941247073187128, 43.2430245041388], [-2.941248608526977, 43.24302900728052], [-2.941247064533981, 43.24303350884078], [-2.9412451312973764, 43.24304251255431], [-2.9412424325536253, 43.2430470135214], [-2.94124049931591, 43.243056017234835], [-2.941240871251583, 43.243069524485456], [-2.9412466017383343, 43.24311455096037], [-2.9412508012164156, 43.24315057194216], [-2.9412523019500263, 43.24319109389079], [-2.9412503254455733, 43.24324512111259], [-2.9412468265708736, 43.24328113813992], [-2.9412402526717907, 43.243312651234504], [-2.9412302101707457, 43.24334866489965], [-2.9412201806436657, 43.24337117151151], [-2.9412147744650166, 43.24338917814535], [-2.9412151420679695, 43.24340718774594], [-2.9412178191857326, 43.24342519853324], [-2.941224345497198, 43.24344321129811], [-2.9412324158175283, 43.24345672250284], [-2.9412581708039442, 43.24349275455348], [-2.941278156348777, 43.243524281283904], [-2.941298518188399, 43.24356481290935], [-2.941315030852649, 43.24360534255635], [-2.9413299908951234, 43.243659378462596], [-2.941364923671588, 43.2437584481318], [-2.941410262394358, 43.243844016060855], [-2.94145639695624, 43.243902570262826], [-2.941505623909277, 43.243947618969415], [-2.9415248614163096, 43.24395663350937], [-2.9415644998217636, 43.24396565846884], [-2.941602217926687, 43.24397018008184], [-2.9416268400725905, 43.24398369970567], [-2.9416553157530823, 43.24399271893716], [-2.9416853182495717, 43.24401524599718], [-2.9417122456769604, 43.244033269130064], [-2.941744938385775, 43.244060299897406], [-2.9417857059380816, 43.24409633946936], [-2.941816863303874, 43.24411886708218], [-2.9418534096232114, 43.244141397425636], [-2.9419084237536652, 43.24417294184147], [-2.9419780522345675, 43.24421800070081], [-2.942060357721466, 43.24429008005209], [-2.942104205011127, 43.2443261210689], [-2.942163812981377, 43.2443846817987], [-2.9422103208306942, 43.24445674293617], [-2.942270652116197, 43.244564829846674], [-2.942295244902099, 43.24460986577437], [-2.942347476033268, 43.244735957962824], [-2.942346689195144, 43.24475396697375], [-2.9423389779064135, 43.24476747014278], [-2.9425891681361325, 43.244781103030455], [-2.942808568471198, 43.244790217630324], [-2.9431846261039096, 43.24480841442373], [-2.943417879863689, 43.24482203708623], [-2.943413294067275, 43.244786016003346], [-2.943410678755949, 43.24470047002408], [-2.943420385269941, 43.24461042778635], [-2.9434427901484344, 43.24452489417706], [-2.9434775125801194, 43.2444393666487], [-2.943524548354269, 43.24435834754015], [-2.943582746813602, 43.2442773339167], [-2.9436155235272174, 43.24421431714465], [-2.9436641401267627, 43.24408827523089], [-2.943694284392214, 43.24395772185074], [-2.94370633721122, 43.24382715955852], [-2.943700977330032, 43.243795640452596], [-2.943703721529464, 43.24374161357134], [-2.943727268021602, 43.24366958751323], [-2.9437654331434486, 43.243606573341914], [-2.9437900887369595, 43.243584073695274], [-2.9438151292322945, 43.24356157423227], [-2.9438513323843956, 43.24353908024307], [-2.9438729044282486, 43.24352108141764], [-2.9438875396420596, 43.24351208389148], [-2.943985342236979, 43.243476112999105], [-2.9440777393751665, 43.24345814879218], [-2.9441046878442236, 43.24345365960958], [-2.944131632195115, 43.24345367277151], [-2.9441712788828887, 43.24345369212679], [-2.9442109214623255, 43.24345821381924], [-2.9442536434024915, 43.24346273699857], [-2.9442963612469084, 43.24347176251282], [-2.9450967550889304, 43.24373778826089], [-2.9454946069599495, 43.24391357026244], [-2.9458699521977794, 43.24429644843447], [-2.9460951408968254, 43.24472427821276], [-2.946318783665112, 43.24472438337577], [-2.946572772738531, 43.244796539908236]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:11", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "11", "alternateName": "wifi_zone", "description": "D7 SUR", "val": 0}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.951964811066247, 43.275203232137976], [-2.9519266452605883, 43.275252741711064], [-2.9519050430997176, 43.27529775590852], [-2.9518950087011486, 43.275324765655746], [-2.951863789126513, 43.275356268816836], [-2.9518225563850553, 43.275387767752456], [-2.951775550344934, 43.27541476191163], [-2.9517023489206187, 43.27545074964955], [-2.951633387308848, 43.27548223680553], [-2.95157983048017, 43.27551373044144], [-2.9515551684273498, 43.27553172931], [-2.951523962866945, 43.27554522307285], [-2.9514888953471057, 43.2755722221721], [-2.9514438074675344, 43.27560822166255], [-2.9514083475892168, 43.275644225225264], [-2.951383681848962, 43.275666726382376], [-2.9513671108330284, 43.275680226320866], [-2.95141790401021, 43.27573427583352], [-2.951565997728654, 43.27595945500037], [-2.951615247248769, 43.27601800609636], [-2.9517091108278875, 43.27615311557458], [-2.9516104901885094, 43.276189092515246], [-2.9515349805565156, 43.276220576837645], [-2.9514409812181697, 43.2762565555896], [-2.951363552955766, 43.27627903432998], [-2.951283443118807, 43.27628350256795], [-2.9511844764804898, 43.27626995339632], [-2.9510864885611627, 43.276477018576884], [-2.951007828653947, 43.27659404541136], [-2.9508069774048082, 43.27684158717825], [-2.9507222307000163, 43.27686406233468], [-2.950621700883672, 43.2768775259633], [-2.950136118193394, 43.276796273446024], [-2.9494340458801465, 43.27677345361878], [-2.9491748501239288, 43.27677784107508], [-2.9486957114365717, 43.276822650449965], [-2.9484446335502783, 43.276791021279706], [-2.948139325355736, 43.27667382277882], [-2.9479408023942186, 43.276435109284755], [-2.9476671899002405, 43.27573712373099], [-2.9465118098651604, 43.275750096301635], [-2.945555682175252, 43.276033291846524], [-2.9451295676981477, 43.27578996257148], [-2.944978254901283, 43.275744866616655], [-2.944841564783024, 43.27571328449546], [-2.944681001297582, 43.27567718834075], [-2.9445600851437175, 43.275663622819856], [-2.944679045390736, 43.27528548489406], [-2.94461896669056, 43.275285455823415], [-2.9445716092053114, 43.27527192590275], [-2.9445354243014226, 43.275253899052466], [-2.9445084822883225, 43.27523587667482], [-2.944489250864865, 43.27520885337715], [-2.944461948332526, 43.27516381684645], [-2.9444127104598463, 43.27510076034013], [-2.944373071939825, 43.27506922477591], [-2.944314579084697, 43.27501967070924], [-2.944252603824241, 43.27498812422714], [-2.9441952418132726, 43.274965584617924], [-2.9441405715505575, 43.27494754862235], [-2.9440789609576696, 43.274938513864], [-2.9439584191236166, 43.27493845487254], [-2.9436514678713444, 43.2749518110654], [-2.94347084764124, 43.27495172194996], [-2.943366489078571, 43.27494266567491], [-2.9431962754297243, 43.2749335766216], [-2.9429313355274864, 43.274910933112], [-2.9428389115417004, 43.27490638463706], [-2.9426910517829614, 43.274879296687764], [-2.9425967107405824, 43.27486574240055], [-2.942515455246708, 43.27486119926826], [-2.9408569851479465, 43.27541864247267], [-2.940522915250427, 43.275197855204155], [-2.9402508737744317, 43.27495458772748], [-2.9392083202985173, 43.274220158917], [-2.938742473422279, 43.274080338212904], [-2.93872247469044, 43.27405331352955], [-2.938703282350349, 43.273990270644845], [-2.9386671406326257, 43.27393172099854], [-2.9386028813604104, 43.273877658581], [-2.9385536279264786, 43.27383711117499], [-2.9385023628680003, 43.27388210691443], [-2.9384403146185645, 43.27392709682805], [-2.938374882047485, 43.27389104296629], [-2.9383441004360153, 43.27386401240641], [-2.9382365998665665, 43.2739179823598], [-2.938158372143571, 43.273967465712], [-2.938068714209078, 43.273895379945785], [-2.938151948352001, 43.27384589936122], [-2.938172372895464, 43.27383240341579], [-2.93808696504737, 43.27374681297249], [-2.9380242423538068, 43.273697253388804], [-2.937905348705748, 43.2735936353446], [-2.9378383901195484, 43.27354407335827], [-2.9387446628544085, 43.27304930602596], [-2.9387905581194427, 43.272981795650466], [-2.9383776444831207, 43.27267991787299], [-2.9389043667859096, 43.272009353227524], [-2.9388112043590717, 43.27197778712002], [-2.938620652759232, 43.27190564774825], [-2.938403158367022, 43.271819986562], [-2.9381821895946127, 43.27174332774453], [-2.937955825445626, 43.271671167903555], [-2.937727517987702, 43.27161701587836], [-2.9374834035514397, 43.271580864081976], [-2.9373509442223895, 43.27156728462253], [-2.93710488618308, 43.27154914027631], [-2.9369793540931566, 43.271540066525745], [-2.936548412735828, 43.271557837622524], [-2.936542251194841, 43.27155783420463], [-2.9364852616226584, 43.27155330024535], [-2.936326611341748, 43.27154420738515], [-2.9362546077457017, 43.27153516262209], [-2.936040902947143, 43.2715125316809], [-2.9360648778708183, 43.27141799613811], [-2.936070292769084, 43.2713954875106], [-2.9360210665978514, 43.27133242735788], [-2.9360170993863877, 43.2710757922759], [-2.936076949047882, 43.27092274647888], [-2.9360899444599253, 43.27064811153309], [-2.936107020314509, 43.27052205579223], [-2.936111425835923, 43.2703599743176], [-2.936103513235759, 43.27019338362653], [-2.936096694704444, 43.270085323855135], [-2.936083884419248, 43.26981517678286], [-2.9382380472204828, 43.26982086246176], [-2.9390167482885494, 43.26976274992658], [-2.9394411700030654, 43.269704445084066], [-2.9401094154778824, 43.269578731598095], [-2.9405881929559383, 43.269457418290784], [-2.9498827500159135, 43.266413788168315], [-2.95099230935553, 43.26665739497527], [-2.95154478194939, 43.26677919336197], [-2.952098797016659, 43.26690098972387], [-2.95312290265061, 43.26712653069317], [-2.9543144909608494, 43.267392650502906], [-2.9551414464581565, 43.26763160147738], [-2.9568410639789113, 43.26830310305249], [-2.958500603250501, 43.26907361608578], [-2.959672648133339, 43.26987094811315], [-2.960898147482996, 43.27083037023667], [-2.9597757585089934, 43.271181162904305], [-2.9596929365419733, 43.2712216547305], [-2.9596058873573807, 43.27124863801082], [-2.958043065640031, 43.27140565705302], [-2.958039984876149, 43.271405655923026], [-2.958012254906162, 43.27141014807891], [-2.9579852920261493, 43.27141914284068], [-2.9579594844250785, 43.27142813802066], [-2.9579352171991427, 43.271437133761246], [-2.957912487246614, 43.27145063239311], [-2.9578916827633086, 43.27146413172924], [-2.9578728037504973, 43.27147763177066], [-2.9573806215440097, 43.27207175709139], [-2.9573174274401413, 43.27212576149331], [-2.9571806853682436, 43.27217073369222], [-2.956957266906761, 43.27225619411788], [-2.9568559472207103, 43.272310183910996], [-2.9567218777748088, 43.27238667287869], [-2.956400965960046, 43.27255763955776], [-2.956120902465138, 43.27268810003903], [-2.95586897316643, 43.27278705438059], [-2.955777285771141, 43.27283204226934], [-2.9556555371877096, 43.272908534742605], [-2.955533762075928, 43.27302104571172], [-2.9551967549931306, 43.27307494216859], [-2.9550822526858886, 43.27324598578459], [-2.9549947338493188, 43.273381021265884], [-2.9548937225177165, 43.27353406067423], [-2.9548331904997553, 43.27362858570144], [-2.954711412436993, 43.2737410957796], [-2.9546412722246447, 43.27380860292371], [-2.9545460828851313, 43.27389861171783], [-2.9544508899071293, 43.273993122758675], [-2.9542843935520526, 43.27416414483306], [-2.9541363952576454, 43.27431716476381], [-2.953830373222831, 43.2746367069774], [-2.953657411798738, 43.27469516730488], [-2.953521046397572, 43.274740135261005], [-2.9534274390574256, 43.27477161348594], [-2.9533669619864167, 43.27478959816037], [-2.9533130318673035, 43.27480758547499], [-2.9532209647851118, 43.27483906415921], [-2.953063812783169, 43.274870516082416], [-2.953047634394862, 43.274875011771165], [-2.9520568157230103, 43.27525279634182], [-2.951964811066247, 43.275203232137976]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:12", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "12", "alternateName": "wifi_zone", "description": "D1 SUR", "val": 10}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.960898147482996, 43.27083037023667], [-2.9613941467362355, 43.27143835340373], [-2.961898504470573, 43.27224443967324], [-2.962651345544126, 43.27355486589642], [-2.9633926707862894, 43.27485627852397], [-2.963698908340245, 43.275387650814544], [-2.964022434055653, 43.27600006956592], [-2.9650734585757323, 43.277985921277676], [-2.966989701230231, 43.28191701929049], [-2.9680472588119855, 43.283574174064995], [-2.967983948898399, 43.28384429563373], [-2.9678956249406454, 43.284803265186966], [-2.968021166093257, 43.28559120635351], [-2.9682847067307185, 43.28619008821418], [-2.968698844358151, 43.28682502926324], [-2.9692143495779995, 43.28735644274878], [-2.9698307704641085, 43.28791939674747], [-2.9705639301594533, 43.28845986588262], [-2.971367463419252, 43.29010341546529], [-2.9712264689170214, 43.29011688703421], [-2.9708824667575984, 43.2901303069335], [-2.970681389556505, 43.29012125094], [-2.9704806976288074, 43.29011219469244], [-2.970458803648048, 43.289981621871064], [-2.9703144452247385, 43.289783482581], [-2.970205500706065, 43.28963938012993], [-2.9701712477693345, 43.289576338771575], [-2.970122365747669, 43.28949528431572], [-2.9700661648822946, 43.289414227922805], [-2.9700018725725035, 43.28933767169618], [-2.9699271753672374, 43.289270117330986], [-2.969845159379209, 43.28920256098709], [-2.969756590586034, 43.289144007485035], [-2.969661473442863, 43.28908545217722], [-2.9695655838240262, 43.28903139890116], [-2.9694654571049477, 43.28897734441323], [-2.969365328303664, 43.28892779215369], [-2.9691824008872327, 43.28883769667494], [-2.9689197526393887, 43.288716063048604], [-2.9686482434351533, 43.288598928705674], [-2.9682735171852457, 43.28845024891237], [-2.9679900667717214, 43.288337612006714], [-2.967753600109936, 43.28824749923908], [-2.967642685868947, 43.28820244474204], [-2.967532539799431, 43.28816189267279], [-2.967428944694977, 43.288116840045035], [-2.967078894172441, 43.287936647124624], [-2.966839378165262, 43.28779250376801], [-2.966555195124647, 43.28762133294681], [-2.966274482935801, 43.28744566011966], [-2.966087342374217, 43.28732854451612], [-2.9659945427538874, 43.287269986827766], [-2.9659075237542707, 43.28720692846813], [-2.965820507455294, 43.28713936772396], [-2.965738111153978, 43.28707631061519], [-2.965662268385293, 43.28700425077671], [-2.965553319483242, 43.286896162373175], [-2.965412810687566, 43.28674304113793], [-2.965210327851964, 43.286517863791424], [-2.965084072812114, 43.28636474647646], [-2.9650013215206052, 43.28625216320954], [-2.9649505230807836, 43.28617110591028], [-2.9649082015028174, 43.286085548868826], [-2.9648705022942043, 43.28599999323009], [-2.9647843553324127, 43.28576584612968], [-2.964742432454693, 43.28565777754547], [-2.964705891899726, 43.28556771988349], [-2.9646639536606907, 43.285486665180706], [-2.9646177811204018, 43.285401106831884], [-2.964595078776741, 43.28536057892879], [-2.9645673690806356, 43.28532004946992], [-2.964540041989197, 43.2852840224426], [-2.9645088683366545, 43.28523898957521], [-2.9644442022097612, 43.285162430053234], [-2.964374526254344, 43.28509037125358], [-2.9642948357477596, 43.28501830928508], [-2.964207056630074, 43.2849462447295], [-2.9641231242325237, 43.284883185952665], [-2.964029559852662, 43.28482462640542], [-2.963932914214093, 43.28476606580954], [-2.9638324142996146, 43.28471200623323], [-2.963727674918127, 43.28466244754427], [-2.963624088560535, 43.284617391446126], [-2.963512413606268, 43.284572332673996], [-2.963406128613965, 43.28453177783745], [-2.9633102408642498, 43.28449572855776], [-2.9633541889992436, 43.28443271015752], [-2.961782274251544, 43.28382438246312], [-2.9614680406069933, 43.28371622133825], [-2.9612651000651224, 43.28364411565869], [-2.961007479923443, 43.28354947938589], [-2.9606416738311543, 43.283382768216285], [-2.960461472101491, 43.283292659642505], [-2.9602281467872986, 43.283157509109536], [-2.960081473702085, 43.283040397656215], [-2.9598870906176358, 43.28284672982119], [-2.9597716293189746, 43.282711619617295], [-2.9591995752837197, 43.281680385188885], [-2.958374915019671, 43.280032237709996], [-2.9580152920971154, 43.27931623671243], [-2.957642589059706, 43.27859122500165], [-2.9575283243719914, 43.278415591948416], [-2.9572416285991032, 43.278082313058334], [-2.956616237439941, 43.27743824498549], [-2.955380614218481, 43.278122123214175], [-2.9547006758170857, 43.276793669781895], [-2.954364624468403, 43.27605515459961], [-2.9540617489854823, 43.27525361907369], [-2.9539045578537557, 43.27482583468074], [-2.953887646699356, 43.274780804583195], [-2.9538688099875636, 43.27473577370627], [-2.953854206179533, 43.2746952468618], [-2.9538461323493554, 43.27467723429145], [-2.953837676811112, 43.27465471923816], [-2.953830373222831, 43.2746367069774], [-2.9541363952576454, 43.27431716476381], [-2.9542843935520526, 43.27416414483306], [-2.9544508899071293, 43.273993122758675], [-2.9545460828851313, 43.27389861171783], [-2.9546412722246447, 43.27380860292371], [-2.954711412436993, 43.2737410957796], [-2.9548331904997553, 43.27362858570144], [-2.9548937225177165, 43.27353406067423], [-2.9549947338493188, 43.273381021265884], [-2.9550822526858886, 43.27324598578459], [-2.9551967549931306, 43.27307494216859], [-2.955533762075928, 43.27302104571172], [-2.9556555371877096, 43.272908534742605], [-2.955777285771141, 43.27283204226934], [-2.95586897316643, 43.27278705438059], [-2.956120902465138, 43.27268810003903], [-2.956400965960046, 43.27255763955776], [-2.9567218777748088, 43.27238667287869], [-2.9568559472207103, 43.272310183910996], [-2.956957266906761, 43.27225619411788], [-2.9571806853682436, 43.27217073369222], [-2.9573174274401413, 43.27212576149331], [-2.9573806215440097, 43.27207175709139], [-2.9578728037504973, 43.27147763177066], [-2.9578916827633086, 43.27146413172924], [-2.957912487246614, 43.27145063239311], [-2.9579352171991427, 43.271437133761246], [-2.9579594844250785, 43.27142813802066], [-2.9579852920261493, 43.27141914284068], [-2.958012254906162, 43.27141014807891], [-2.958039984876149, 43.271405655923026], [-2.958043065640031, 43.27140565705302], [-2.9596058873573807, 43.27124863801082], [-2.9596929365419733, 43.2712216547305], [-2.9597757585089934, 43.271181162904305], [-2.960898147482996, 43.27083037023667]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:13", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "13", "alternateName": "wifi_zone", "description": "D1 NORTE", "val": 9}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.9221778237492413, 43.26516465545014], [-2.9223292365761835, 43.265097223322115], [-2.9224359655354233, 43.26504326771091], [-2.9225388665928125, 43.26497130006456], [-2.9226009345481256, 43.26491281171158], [-2.922654151844065, 43.264849815004496], [-2.9226981334427067, 43.26478230969532], [-2.9227321035645004, 43.26471479760652], [-2.9227409882532434, 43.264692291927496], [-2.9227666237248724, 43.26451671813181], [-2.922767230752576, 43.26434112742971], [-2.92276570762508, 43.26432761939254], [-2.922772712522551, 43.26426909374981], [-2.9227801138377796, 43.264201563700865], [-2.922781274677859, 43.26419706214809], [-2.9227855045353452, 43.26420156733966], [-2.9227905101830842, 43.26420157071833], [-2.9227959008806508, 43.26420157435665], [-2.9227978261297816, 43.264201575655974], [-2.9227997513789137, 43.26420157695528], [-2.9228213027938885, 43.26421059617033], [-2.9228594113626722, 43.26421962654776], [-2.9229256172326523, 43.26423768051966], [-2.922948329507607, 43.264242198156516], [-2.922964495934017, 43.26424671138091], [-2.922984127814087, 43.26425122693622], [-2.923024546733538, 43.26426025881397], [-2.9230511038557663, 43.26426928135392], [-2.9230522590065324, 43.26426928213094], [-2.9230584198106175, 43.26426928627489], [-2.9230668852466692, 43.264273794304806], [-2.9231173041704857, 43.26429183754728], [-2.923126160329642, 43.26429184349911], [-2.9231365510259555, 43.264296352817624], [-2.923142321118343, 43.264300859030826], [-2.9231473267742603, 43.264300862393874], [-2.9231550221202864, 43.26430536989988], [-2.9231584875746393, 43.26430537222779], [-2.9231638782814118, 43.264305375848764], [-2.9231688782756433, 43.26430988154337], [-2.9231742689828146, 43.26430988516386], [-2.9231811942308856, 43.26431439215089], [-2.9231850447362935, 43.26431439473656], [-2.923193510187948, 43.26431890275709], [-2.9232019813004735, 43.26431890844449], [-2.9232054410962327, 43.264323413103476], [-2.9232077513998203, 43.264323414654406], [-2.9232100617034065, 43.26432341620528], [-2.9232139122093868, 43.26432341878999], [-2.9232162168544016, 43.26432792267324], [-2.9232189122087857, 43.264327924482394], [-2.923221992613797, 43.26432792654993], [-2.923224302917555, 43.26432792810053], [-2.923226228170688, 43.26432792939266], [-2.9232277683731938, 43.264327930426326], [-2.9232312281713653, 43.26433243508452], [-2.923233538475295, 43.26433243663494], [-2.9232358487792243, 43.26433243818529], [-2.9232400843364292, 43.2643324410275], [-2.9232481647439665, 43.264336948785584], [-2.9232539348484243, 43.26434145499316], [-2.9232593255583925, 43.264341458609636], [-2.923262020913377, 43.26434146041778], [-2.9232639461669367, 43.26434146170926], [-2.9232808770906518, 43.26435047773797], [-2.9232931930623596, 43.26435498833343], [-2.9233028193323016, 43.26435499478795], [-2.9233166755098483, 43.26435950641353], [-2.9233193652146543, 43.26436401055278], [-2.9233305260392877, 43.26436852036985], [-2.9233336064463535, 43.26436852243438], [-2.92338171522126, 43.26438656401177], [-2.9234213585436195, 43.2644000975659], [-2.92344330081351, 43.264404614588905], [-2.9234613869347252, 43.26441363136389], [-2.923487174085798, 43.26442265328716], [-2.9235048808048716, 43.264427167465264], [-2.92352258189055, 43.264436183973096], [-2.923537593256788, 43.26444069634413], [-2.9235710814585, 43.2644497233957], [-2.9236153398524714, 43.264467762301976], [-2.9236761498677812, 43.264490314571766], [-2.923739655290598, 43.26451286860609], [-2.9238054710719767, 43.26453542414397], [-2.9239147529301817, 43.26459402725105], [-2.923960925584918, 43.26462107196851], [-2.9239893970618893, 43.264639100234646], [-2.9240497999444424, 43.264679661378715], [-2.92410399171845, 43.26476073939363], [-2.9241123230767894, 43.264873303318524], [-2.9240590736835332, 43.26496331469733], [-2.923816068174029, 43.26530082829194], [-2.923953421350186, 43.265390966394186], [-2.924069619130703, 43.26546308094827], [-2.9242071123290683, 43.26575132158717], [-2.9242758594141627, 43.26589544183956], [-2.92432079436741, 43.265990020611476], [-2.924732090922818, 43.266886256565606], [-2.925365421245032, 43.26697221588053], [-2.9252867625010097, 43.26737287226387], [-2.9252501147552055, 43.26742687632874], [-2.925206557725245, 43.26746286652878], [-2.9252207832843857, 43.267480885164275], [-2.925157939564848, 43.26754387673861], [-2.9254630371074235, 43.26776018796008], [-2.925547632285917, 43.267859294388245], [-2.9256660977733655, 43.267971929766844], [-2.9257611835982793, 43.26799450318256], [-2.9258018154798497, 43.26814760887851], [-2.925927538373378, 43.26830977435284], [-2.9257256437191153, 43.26840419243743], [-2.925402014644934, 43.268539051839824], [-2.9261078105152176, 43.26889969655563], [-2.926117728444929, 43.269295908224926], [-2.9263244197136755, 43.26937708351581], [-2.9266842556768733, 43.26955740799624], [-2.9273469412662045, 43.26991801736562], [-2.9277529725803793, 43.270116377125106], [-2.9279369592522695, 43.2701885304858], [-2.9279583011299692, 43.27037764185614], [-2.9281877928838638, 43.27039579548128], [-2.9282979230296666, 43.270400366896546], [-2.928417685692927, 43.27040044190237], [-2.9285093368631916, 43.27040049921762], [-2.928597142407346, 43.270396051727566], [-2.9288975379744673, 43.270373727180825], [-2.9291771541972134, 43.27033788198732], [-2.929603519883575, 43.27027511252369], [-2.9300634027973786, 43.27019885497163], [-2.9304743733640573, 43.270127068183704], [-2.93067196911208, 43.27008666712267], [-2.9310388858527117, 43.27014992155117], [-2.9314604757174, 43.27022221223672], [-2.9305093096624404, 43.270559313243716], [-2.9303220686255127, 43.27063573897889], [-2.9302920110174506, 43.270653729991714], [-2.93029583623319, 43.27067624397928], [-2.9302518844806813, 43.27072124050201], [-2.9301825423712375, 43.270743709857406], [-2.930164463678882, 43.270725689496814], [-2.9298651032086136, 43.270851571621634], [-2.9296051143510886, 43.270896435235684], [-2.9296012063487478, 43.270945958472986], [-2.9296011544563756, 43.27099098175186], [-2.9295903407209996, 43.27101798908268], [-2.9293134845312427, 43.271328479172276], [-2.928297550104926, 43.27203021044035], [-2.9284193467159967, 43.27292625036573], [-2.9283904057830283, 43.27297575787678], [-2.928339133966805, 43.273020749063555], [-2.9282659163351275, 43.273061224137585], [-2.928181145427047, 43.27310169191149], [-2.928126417991285, 43.273137676173604], [-2.928069000048598, 43.273169156388136], [-2.9280019543816933, 43.27320063051436], [-2.9278809777444366, 43.273245577600434], [-2.9277395636149572, 43.27331302329586], [-2.9276200896425992, 43.27338948735846], [-2.9275221867772276, 43.27346146263554], [-2.9274770863426984, 43.27349745268386], [-2.927416527999659, 43.2735784561971], [-2.927374866630095, 43.27363696003132], [-2.9273378532801564, 43.27367295515771], [-2.9272912121415513, 43.273708944152716], [-2.927248438137795, 43.27373142860135], [-2.9271964268275643, 43.27374940482641], [-2.927136713283378, 43.273767376121924], [-2.927077010455738, 43.273776342735374], [-2.9269733942717746, 43.27379428594973], [-2.926792734350266, 43.273830189105425], [-2.9266702529745907, 43.27384361764146], [-2.9266203779230624, 43.27368600414864], [-2.9265521370312153, 43.273429327599224], [-2.9264638007061468, 43.273231168361896], [-2.9264265483981173, 43.27314560015143], [-2.9263884934242315, 43.27308704538744], [-2.926282009298218, 43.27292939528398], [-2.926198588431275, 43.27280777859605], [-2.9260843051409657, 43.27273116520346], [-2.925918076901748, 43.27261849942911], [-2.9257399056334505, 43.27251032798838], [-2.925678322148906, 43.27248327401424], [-2.925521662474719, 43.27242013950468], [-2.925402721052168, 43.27237503870287], [-2.925322262389725, 43.272352474555895], [-2.9251655648044177, 43.27232085584249], [-2.9250469757881783, 43.27230276888063], [-2.9248975953869683, 43.27227115459414], [-2.924773637319893, 43.27223505450347], [-2.924654680148757, 43.27220345990234], [-2.924579618950954, 43.272176396457276], [-2.9244937805872704, 43.27214482351954], [-2.9244106435824664, 43.27210874997216], [-2.924278258599862, 43.27203662513344], [-2.924185511160621, 43.271987038069035], [-2.9241089436076315, 43.27193295933411], [-2.9239908191988513, 43.2718518389599], [-2.923831925295495, 43.27173017034952], [-2.923698782872376, 43.271649039670145], [-2.923562520591536, 43.27159942306391], [-2.9234231495392886, 43.271572315866734], [-2.9232629607941307, 43.27156320385881], [-2.9231339535553245, 43.2715631172445], [-2.923034966803164, 43.271576557678706], [-2.9229513838636447, 43.271590008403535], [-2.9228419709848277, 43.27162595330031], [-2.9226901859258936, 43.27167087412442], [-2.922486401095455, 43.27172476418361], [-2.9223111188539797, 43.27177417090984], [-2.92218168592078, 43.27180559924511], [-2.9220541840900403, 43.27183252641929], [-2.9219995059347457, 43.271827986818465], [-2.9218951559205193, 43.27181891095674], [-2.9218258555977723, 43.27180535662747], [-2.921741565340706, 43.27176928035017], [-2.921628421771679, 43.27171067259414], [-2.921465647247711, 43.27161601201873], [-2.921416780534148, 43.27158446214569], [-2.9213394515457534, 43.271525878699805], [-2.921172494208673, 43.27139069385184], [-2.9210363160494617, 43.271278041661795], [-2.92086131393028, 43.271111334484075], [-2.9207532195241224, 43.27102121303204], [-2.920653953314374, 43.27095360925555], [-2.9205504805948403, 43.270863490815145], [-2.9203919694747933, 43.270750822334556], [-2.9203634962147857, 43.270732793190966], [-2.9202807897986585, 43.270665200614616], [-2.920225022233085, 43.270611133761456], [-2.920183491324488, 43.27056608147775], [-2.9199889484019748, 43.27032732200491], [-2.919880157361892, 43.27018317124905], [-2.919796741167929, 43.2700705545021], [-2.919754470343703, 43.270002989880794], [-2.919689124054765, 43.26991289738567], [-2.9195526439254706, 43.26974171287321], [-2.9194914985339477, 43.26967863720763], [-2.9194276517423385, 43.26962006193808], [-2.919380719039093, 43.26958401021453], [-2.9193233891368964, 43.26954795113922], [-2.9192691221169356, 43.26952540119306], [-2.919121706730405, 43.269471269075325], [-2.9189215412562617, 43.26941259705903], [-2.9186928621005443, 43.2693674114255], [-2.918347882482587, 43.26932664471166], [-2.9178512113612003, 43.269263256461386], [-2.9174966119424512, 43.2692179779386], [-2.9173345292333477, 43.269190846930044], [-2.917166315898985, 43.269141199590415], [-2.917024673399428, 43.2690915712795], [-2.9169061420717, 43.26903745725039], [-2.916799939643656, 43.26897884973317], [-2.916643720090391, 43.26888868935244], [-2.916529462276748, 43.26880756404901], [-2.9164336823650427, 43.26873095446314], [-2.9161964102404503, 43.268496659575774], [-2.9158676098189806, 43.268176752576885], [-2.9156341989682195, 43.267937957007426], [-2.9151727237070544, 43.26749638704492], [-2.914607810353702, 43.26695568666877], [-2.9145470516251186, 43.26689711095302], [-2.9143578639305856, 43.266982513819784], [-2.914225331249594, 43.26703194019522], [-2.9141991087117844, 43.26705893453432], [-2.9139517239829056, 43.267180311732886], [-2.9135748218283677, 43.2668513572102], [-2.9134956192763184, 43.26676575299332], [-2.9137341848787943, 43.26661735611548], [-2.9136603987611718, 43.26651374675573], [-2.913605815138334, 43.26644617052717], [-2.9135201116054086, 43.266329045068844], [-2.9133590000233545, 43.266166839107356], [-2.9133134476951, 43.266247846622186], [-2.9125979820097725, 43.26626080921113], [-2.912597519648413, 43.266314836873825], [-2.912597108818987, 43.266332845898454], [-2.912472989466526, 43.26642279768843], [-2.9124098067383546, 43.26644526099979], [-2.9122029886183936, 43.26647211646002], [-2.91198572169017, 43.26653498218316], [-2.9119883782221176, 43.26656199823378], [-2.9119741308319655, 43.26656198727123], [-2.9119587217593255, 43.26656647774726], [-2.9119394555477545, 43.266575467586456], [-2.911931741272709, 43.26658446631654], [-2.9119228782923474, 43.266588961827225], [-2.9119167107642574, 43.26659345941276], [-2.911904773755571, 43.26659345022054], [-2.9118866757101554, 43.2665934362816], [-2.9118778192198502, 43.266593429459355], [-2.9118647335124277, 43.26658891704366], [-2.911854343260112, 43.266584406703466], [-2.9118416361237385, 43.266584396911256], [-2.911830084181586, 43.266584388008006], [-2.9118181471747007, 43.266584378806755], [-2.911779249134246, 43.266588851149265], [-2.91174882251358, 43.26659333001435], [-2.911727252379369, 43.26659781570589], [-2.9117118432795945, 43.26660230614865], [-2.9116956705558974, 43.26660229366541], [-2.911652151716605, 43.26660676239762], [-2.911618259493605, 43.266611238551356], [-2.911601701702679, 43.26661122575733], [-2.911584373781955, 43.26661121236567], [-2.91156935625067, 43.26661120075743], [-2.9115570276554097, 43.26661569356063], [-2.9115235400478423, 43.266606662995926], [-2.9114688999844183, 43.26657960671535], [-2.9114077073430433, 43.26655704766846], [-2.911373834725252, 43.266548016761675], [-2.9113322673634126, 43.266534477546315], [-2.911277216229458, 43.266525430193106], [-2.9112614220505817, 43.26652992027655], [-2.911209059837661, 43.26652537731086], [-2.911165932629388, 43.26652534382767], [-2.9110892917164777, 43.26653428895384], [-2.91098415601041, 43.2665432118587], [-2.9109825698280547, 43.266574726965445], [-2.91096287903318, 43.266610730316174], [-2.9109285819989865, 43.26662871295362], [-2.9108576906183785, 43.26665567173863], [-2.910800296184701, 43.266669134001795], [-2.9107536835554604, 43.266682604648324], [-2.910710171171378, 43.2666825706928], [-2.9106670372687913, 43.266687039350614], [-2.9105496807291837, 43.2668895526843], [-2.9101563147792486, 43.266772183722566], [-2.9097660242136896, 43.26665931816621], [-2.9097752857271497, 43.26664581846833], [-2.9100791802482355, 43.2660697589273], [-2.910488851945545, 43.26530468325373], [-2.910347296453361, 43.26520552102058], [-2.910403281447407, 43.26510201116623], [-2.9105013559402577, 43.264917492177666], [-2.9106438360598146, 43.26464746341197], [-2.9105072083687826, 43.26460233324653], [-2.9104502536356627, 43.26457977699527], [-2.9104229281402265, 43.26457075092896], [-2.9104959074516303, 43.26443123563522], [-2.910512902460486, 43.26439523024226], [-2.9105279590085, 43.264368228002716], [-2.9105603955495254, 43.26430522066152], [-2.9105928320235535, 43.264242213310375], [-2.9106577047706215, 43.264116198578236], [-2.910175099154626, 43.26421036970337], [-2.9087191754764867, 43.26475850220454], [-2.9087217632193396, 43.26483054164244], [-2.908547003668258, 43.26505101651141], [-2.9084345203606343, 43.265082442879105], [-2.9082345955402875, 43.265136310702154], [-2.9081525448589756, 43.26515875652984], [-2.908095529521082, 43.26517672007947], [-2.9080778711482016, 43.26514068720705], [-2.908020241602317, 43.265055096507716], [-2.907950661960241, 43.264978500834104], [-2.907874131150866, 43.26491540652645], [-2.907765269576893, 43.26484328143179], [-2.907646768316227, 43.26478015312227], [-2.907520160743025, 43.2647305251437], [-2.907456661097168, 43.26470796211123], [-2.9073758272997683, 43.26468988734515], [-2.907293061455001, 43.26467631329204], [-2.907208363545876, 43.264667239947684], [-2.9071236519728307, 43.26466717120137], [-2.907038933549247, 43.26467160472263], [-2.9068463797743567, 43.264689457426265], [-2.9067277354138206, 43.26472087710034], [-2.9066244861754376, 43.2647568115546], [-2.90650694849989, 43.26481974825315], [-2.9063373730777466, 43.264918660920365], [-2.906174735007705, 43.265013076689016], [-2.906055278023724, 43.26507150901075], [-2.9059246472685643, 43.265134434354046], [-2.9057320083450624, 43.26520631313602], [-2.9057115864801917, 43.26521530097605], [-2.9056850106624723, 43.26521978140334], [-2.905657657775901, 43.265228763519], [-2.905629541723768, 43.26523324266311], [-2.905601047568282, 43.265233219152826], [-2.90557255341283, 43.26523319563546], [-2.9055440662185514, 43.26522866978128], [-2.905516734196797, 43.26522414487415], [-2.9054897942003057, 43.265215117948905], [-2.9054643944357137, 43.26520609229019], [-2.905440149846411, 43.26519706758071], [-2.9054178375140496, 43.265183542128256], [-2.905402071139395, 43.265170022084796], [-2.905386311744464, 43.26515199970942], [-2.905373247747515, 43.26513397956149], [-2.9053628791461588, 43.26511596164193], [-2.9053552059380077, 43.26509794595149], [-2.905350228120675, 43.2650799324907], [-2.9053479526673285, 43.2650574189301], [-2.9053483656244454, 43.26503940992945], [-2.9053518659950988, 43.26501690114768], [-2.9053584398255734, 43.264998897244176], [-2.9053673239795357, 43.26498089525147], [-2.905378903509397, 43.264962895487564], [-2.9053931784127744, 43.26494489795162], [-2.9054097566621047, 43.26493140465415], [-2.905453701620779, 43.26489992463341], [-2.9054814464096044, 43.264886440554065], [-2.9055111094921244, 43.26487746038823], [-2.9055423127813573, 43.26486848148647], [-2.9057195209329416, 43.26481459964601], [-2.905848576309113, 43.26477418491587], [-2.905920237816248, 43.264747229859616], [-2.905979584495485, 43.2647157623015], [-2.906031236984714, 43.26467978605636], [-2.9061553760961423, 43.264580836573295], [-2.906298024895481, 43.264463892772746], [-2.9067255348506746, 43.26414457628743], [-2.906792615856343, 43.26409060292853], [-2.9068281021573945, 43.26405011080984], [-2.906944681746408, 43.263856605235084], [-2.906993293686669, 43.26379361205708], [-2.9070634886882565, 43.263717129384524], [-2.9071067029022117, 43.26365863410807], [-2.907135271602972, 43.26360913159985], [-2.907156524390521, 43.26355962314659], [-2.9071704612826292, 43.26351010875239], [-2.9071767040924725, 43.26345608577616], [-2.907175631043198, 43.26340205686289], [-2.9071538477086416, 43.263293983098144], [-2.9071500725346073, 43.26324445432694], [-2.907153228146489, 43.26319493118072], [-2.9071636927291653, 43.263149916302936], [-2.9072022996098714, 43.263082412571], [-2.9072643871450627, 43.26301943019997], [-2.907343794606347, 43.262960964161806], [-2.9074366510832266, 43.26292051830034], [-2.907539883113095, 43.262893587761795], [-2.9075934106815873, 43.262889128676306], [-2.9078090678366753, 43.2628667909932], [-2.907894189105876, 43.26284885021225], [-2.9079496621650813, 43.2628308855144], [-2.908052150839258, 43.262785944565394], [-2.908098011323544, 43.2627589673937], [-2.908176276061594, 43.262691495181905], [-2.908233762005412, 43.26261500157389], [-2.9082658081782258, 43.26255649688853], [-2.908309398701272, 43.262502503784994], [-2.908360298128347, 43.26245301885732], [-2.908418121414615, 43.26240804178761], [-2.908482098481367, 43.26236757194938], [-2.9086138960026187, 43.26229113757293], [-2.908892134877522, 43.262129275349324], [-2.909096716601393, 43.26204389368245], [-2.9096014469565055, 43.26181917674996], [-2.9098018045697285, 43.26172478580262], [-2.9098052632302465, 43.261729290867926], [-2.910003681803295, 43.261643902713224], [-2.9105161061661198, 43.26141918778138], [-2.9111021331435394, 43.26114950437969], [-2.9113267496618995, 43.26105062726061], [-2.9113652722411785, 43.26103715009876], [-2.9114916402692477, 43.26098321987547], [-2.9115452049859676, 43.26095174493474], [-2.911559855647405, 43.26093824924574], [-2.9115968705586566, 43.260902259145496], [-2.9117593643640958, 43.26062774192426], [-2.912044573488209, 43.260159718282814], [-2.9122031807320763, 43.25990770910515], [-2.9122487297912283, 43.25982670193949], [-2.9122684305646094, 43.25978169365233], [-2.9122850511362186, 43.25973668299963], [-2.9122974364489482, 43.259691669097194], [-2.912306375938739, 43.259633145531836], [-2.9123137882509558, 43.25956561611464], [-2.912325141188862, 43.259435056955745], [-2.9123365263738825, 43.2592819861165], [-2.912343560049935, 43.2592099540628], [-2.912345242211069, 43.25911090386535], [-2.9123264797050212, 43.259038852041314], [-2.9123011654968165, 43.25897129753113], [-2.912232088818185, 43.25881366263612], [-2.912168325044622, 43.25871005986244], [-2.9120864593297493, 43.25861094548192], [-2.9120026363927414, 43.25853434123954], [-2.911875698644027, 43.258453201388356], [-2.9118999609854934, 43.25844871773552], [-2.9119450140491887, 43.258444250083016], [-2.911990452119737, 43.25843978270898], [-2.912035877221324, 43.258444319988634], [-2.9120809173162137, 43.25844885695434], [-2.9121247959026935, 43.25845789535092], [-2.9121671279763266, 43.25847143488409], [-2.9122075350002397, 43.25848497292421], [-2.912245625493628, 43.25850301151377], [-2.9123198620968758, 43.25855259418675], [-2.9124036983651735, 43.25862019352525], [-2.912488676968145, 43.25869679835675], [-2.9125525185895733, 43.25874637292452], [-2.9126098279262354, 43.258786937785], [-2.9126429070857847, 43.2588094747535], [-2.9127883273745026, 43.258890627840586], [-2.912944547762319, 43.25895828193985], [-2.912958016933112, 43.25896279452969], [-2.913033448171029, 43.258985363602136], [-2.9131115809858072, 43.259003432336364], [-2.913191645328469, 43.25901700014251], [-2.913281041215033, 43.2592376826216], [-2.9133755004483874, 43.25941784779593], [-2.9134535063784655, 43.259525963000165], [-2.9135192237745744, 43.25961155716017], [-2.913524607694193, 43.25961606357016], [-2.9135984107356507, 43.259701663795326], [-2.913611867387954, 43.25971518097789], [-2.913698370038446, 43.25980529306667], [-2.913934828828653, 43.260039592876524], [-2.914390065862381, 43.2604901684142], [-2.914806093127745, 43.26090019186066], [-2.915076014242202, 43.261166030554485], [-2.9157200524623694, 43.261810341265715], [-2.9158457851724857, 43.26193649929935], [-2.916174899922153, 43.26228342096547], [-2.916350212044771, 43.26247714982021], [-2.9166324128468077, 43.262783514785475], [-2.916868087564506, 43.26304482186411], [-2.91690958642943, 43.26310788473582], [-2.9169364782199056, 43.26315292763753], [-2.916971810413242, 43.26322048834467], [-2.9170048201883345, 43.26329705202929], [-2.917033178941237, 43.263396124015145], [-2.9170400669510737, 43.26342764536941], [-2.917044608018204, 43.26348617904268], [-2.917045231392661, 43.26359423557952], [-2.9170451580343206, 43.26364826356793], [-2.9170404824569487, 43.26368878120814], [-2.917031155740519, 43.26375180715803], [-2.917016426111351, 43.26382383386049], [-2.9170024481938035, 43.2639093681153], [-2.916997790918134, 43.26393637875551], [-2.917008993752301, 43.264193020061306], [-2.917032359499738, 43.2642830837368], [-2.917068817044893, 43.264373156897925], [-2.9171176024509022, 43.26445873664258], [-2.917178715758861, 43.26453982295521], [-2.9172510018472613, 43.26461641498066], [-2.9172640753366466, 43.264629931444965], [-2.9173225362900412, 43.264679499408295], [-2.9173875493291854, 43.26472456973737], [-2.917459114454254, 43.264765142421105], [-2.917535691448303, 43.26480121633702], [-2.9176169013208857, 43.26482828886633], [-2.9176661699949946, 43.26484183134532], [-2.917880187293038, 43.2648960132127], [-2.9181003899860936, 43.26493218976471], [-2.9181223380861687, 43.26493220547631], [-2.91832485261804, 43.264950359591246], [-2.918550873610197, 43.2649550230796], [-2.9185978562626054, 43.26495055418632], [-2.9199224556036505, 43.26494248443033], [-2.9207022084468885, 43.26492952060827], [-2.9207730584556493, 43.264929569699824], [-2.9208439142981115, 43.26492511641573], [-2.920913241569764, 43.26491165735938], [-2.920980258485727, 43.26489819666506], [-2.9210449766849065, 43.26487572967319], [-2.9211062351654387, 43.264848757922756], [-2.921163263810955, 43.26481728088849], [-2.9212156775618907, 43.26478129831141], [-2.9212403442007973, 43.264763305953366], [-2.9214962857563203, 43.26455637442609], [-2.9215383026880235, 43.26452038456413], [-2.9215857102925824, 43.26448439838182], [-2.9216373418564676, 43.26445741974558], [-2.9216666230834067, 43.26444393279178], [-2.9216951284242167, 43.264434947635515], [-2.921724783141838, 43.26443046559484], [-2.921754437855118, 43.26442598354644], [-2.9217844718511565, 43.26442600408589], [-2.9218145000853353, 43.26443052694973], [-2.9218441432726805, 43.264435049542605], [-2.9218726313104733, 43.26443957133886], [-2.9218787863744002, 43.264444077878636], [-2.9219003434942286, 43.264448594934514], [-2.9219265097268057, 43.26446211980451], [-2.9219511357647883, 43.264475643617644], [-2.9219734515038898, 43.26448916584964], [-2.921993841994288, 43.26450268676441], [-2.922011916435538, 43.264520708432705], [-2.922026910471895, 43.264538727998435], [-2.9220395884594135, 43.26456124831985], [-2.92204112292254, 43.264565751701696], [-2.92204956534607, 43.264588269135295], [-2.9220549273566245, 43.26461078446929], [-2.9220568238982545, 43.264633297441776], [-2.922055249222933, 43.26466031038499], [-2.9220502148148464, 43.2646828186346], [-2.9220417149260904, 43.264705324522225], [-2.9220301346059725, 43.26472782830959], [-2.922015473851091, 43.26475032999571], [-2.921998123459895, 43.26476832750998], [-2.921977692630438, 43.26478632292057], [-2.9219545664136204, 43.26480431648854], [-2.9219291356143207, 43.26481780614309], [-2.921902164588646, 43.264831294740425], [-2.9218728832278362, 43.26484478175352], [-2.921859400583662, 43.26484927488034], [-2.920911363296029, 43.265172791531754], [-2.92088786322363, 43.26518177995316], [-2.9208662767606812, 43.265199774364675], [-2.920846621399461, 43.26521326777274], [-2.920829655588811, 43.26523126537437], [-2.9208150001066286, 43.26524926457274], [-2.9208030400114793, 43.26526726563524], [-2.920794154525116, 43.265289771160866], [-2.920787970267576, 43.26530777622073], [-2.920784860623574, 43.265330285744824], [-2.9207848314337777, 43.26535279740195], [-2.9207878827015903, 43.26537531119212], [-2.920793635210395, 43.265393324517085], [-2.920797474109506, 43.26540233184594], [-2.9208082323710376, 43.26542034863581], [-2.920821300984526, 43.26543836702376], [-2.9208366857861825, 43.26545188467769], [-2.9208543751084277, 43.26546990625935], [-2.9208739955621055, 43.265483426838635], [-2.920895162086221, 43.265492446148336], [-2.920917868848599, 43.26550146651891], [-2.920942115849922, 43.26551048794945], [-2.920967138799205, 43.265515007575594], [-2.920992931868431, 43.26551952772816], [-2.9210194950577715, 43.26552404840662], [-2.921045679011653, 43.26552406648184], [-2.921072253840518, 43.265519582485425], [-2.9210980527344006, 43.26551960028298], [-2.9211234781962663, 43.26551061314655], [-2.9214582267859295, 43.26540728975955], [-2.9217467558985537, 43.26531293845382], [-2.9221778237492413, 43.26516465545014]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:14", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "14", "alternateName": "wifi_zone", "description": "D2 ALTO", "val": 4}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.9503934887119314, 43.265288426983126], [-2.950295896721124, 43.26502724914573], [-2.950404119172671, 43.2650002821021], [-2.950927154149143, 43.26483842357658], [-2.9510550389852575, 43.26477994799691], [-2.951174078145253, 43.264707961490046], [-2.9512938835408726, 43.264640477520814], [-2.9513354835891104, 43.26462248588084], [-2.951340496446072, 43.26461348334084], [-2.951361296457202, 43.264604487514234], [-2.9513871093100845, 43.26458648914174], [-2.9514129185671076, 43.264572993098085], [-2.951449131380623, 43.26455049679202], [-2.951500749825468, 43.26452350467067], [-2.9515265626030582, 43.264505506266424], [-2.9515778030608852, 43.264469509277276], [-2.9518419662917026, 43.26444710910973], [-2.9520834571997203, 43.264366168464406], [-2.9522228808998308, 43.26432120341631], [-2.9524501239454457, 43.2642402560435], [-2.9526157339809536, 43.264190799060884], [-2.9528618434454654, 43.26410985868159], [-2.953211915477301, 43.26402896034065], [-2.9535350126461157, 43.26397506399398], [-2.9537818424374596, 43.26395715463951], [-2.9538557955553664, 43.26392566813748], [-2.954045702264359, 43.26382219083815], [-2.9542120765970905, 43.26377723418462], [-2.954341479434444, 43.26374126721192], [-2.954459327355694, 43.26370979783004], [-2.9545544540479134, 43.26368282163925], [-2.954758190474162, 43.26361986967917], [-2.954874889459147, 43.26357939474001], [-2.955099430916071, 43.263498441027735], [-2.9552770061611646, 43.26340396150986], [-2.955378335482037, 43.2633184566733], [-2.955424991562457, 43.26322842811725], [-2.955428479949767, 43.263196913115145], [-2.9554373917819063, 43.26312037685173], [-2.9553567694320653, 43.26226940358302], [-2.955341864843088, 43.262116318268646], [-2.9553195985511023, 43.26202626280924], [-2.955257311682529, 43.261904675329426], [-2.9551369443102624, 43.26170202295691], [-2.9549608076858895, 43.261418306409794], [-2.954799655588139, 43.261179618888775], [-2.9547132104842966, 43.26092745371311], [-2.954713320605206, 43.26077887656324], [-2.9549934986391992, 43.260945573687785], [-2.9553370930622895, 43.26126987676118], [-2.9558688132320268, 43.261814866102426], [-2.9563305334640186, 43.262265277120655], [-2.956868062665902, 43.26278775225205], [-2.957130881504867, 43.263021972599844], [-2.957353723767643, 43.263161628353686], [-2.957593562128141, 43.26322475023771], [-2.9580890765863397, 43.26327896090261], [-2.9587502036619773, 43.263270196537796], [-2.959070855002131, 43.26340538183125], [-2.9596178106034254, 43.263698228130494], [-2.9605770250275194, 43.26419832210395], [-2.9606774825244613, 43.26426138939185], [-2.9607883163741433, 43.26435597650333], [-2.9609041418326183, 43.264473076893786], [-2.9610826710696916, 43.264684747574826], [-2.9613919977158503, 43.265090062634414], [-2.961493187902687, 43.265216162144675], [-2.9617294405374577, 43.265490883903205], [-2.9621869236270695, 43.266058330292864], [-2.962487061711789, 43.266400606569185], [-2.9626629038546084, 43.26661677616634], [-2.9630300027686807, 43.26703561250512], [-2.96314966927796, 43.26718422814824], [-2.9633647121826305, 43.26753547927843], [-2.9636828849392884, 43.268008325778574], [-2.9637759874340674, 43.268152429971245], [-2.9639210596607266, 43.268323564487375], [-2.964255896704404, 43.26862982826164], [-2.9646230681756274, 43.268963115040776], [-2.9650502288929186, 43.269449498271065], [-2.9647370756906626, 43.269588974469926], [-2.9642066619189253, 43.269849945002015], [-2.964265158070371, 43.269912995939855], [-2.9643444385009983, 43.26999406265545], [-2.9647973611001257, 43.270556994406256], [-2.965249409149714, 43.2713180266087], [-2.9654890027797562, 43.271885392816195], [-2.965673318220585, 43.272146583438136], [-2.9668102044627185, 43.273434585270174], [-2.967682323868029, 43.27444785898678], [-2.9677908597304663, 43.274573954795336], [-2.968356545621935, 43.27541154569795], [-2.968707736416973, 43.27624007055107], [-2.968760803197531, 43.276397666501296], [-2.9689592266495253, 43.27699202764496], [-2.9690693464145603, 43.27780697851053], [-2.969006045953699, 43.278837993902634], [-2.968854390379066, 43.280170640764844], [-2.9686149697250888, 43.2813907049934], [-2.968299731877072, 43.28247567781033], [-2.9680472588119855, 43.283574174064995], [-2.966989701230231, 43.28191701929049], [-2.9650734585757323, 43.277985921277676], [-2.964022434055653, 43.27600006956592], [-2.963698908340245, 43.275387650814544], [-2.9633926707862894, 43.27485627852397], [-2.962651345544126, 43.27355486589642], [-2.961898504470573, 43.27224443967324], [-2.9613941467362355, 43.27143835340373], [-2.960898147482996, 43.27083037023667], [-2.959672648133339, 43.26987094811315], [-2.958500603250501, 43.26907361608578], [-2.9568410639789113, 43.26830310305249], [-2.9551414464581565, 43.26763160147738], [-2.9543144909608494, 43.267392650502906], [-2.95312290265061, 43.26712653069317], [-2.952098797016659, 43.26690098972387], [-2.95154478194939, 43.26677919336197], [-2.95099230935553, 43.26665739497527], [-2.9498827500159135, 43.266413788168315], [-2.950559126408883, 43.266161951745865], [-2.9503934887119314, 43.265288426983126]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:15", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "15", "alternateName": "wifi_zone", "description": "RIA OESTE", "val": 0}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.953067481788738, 43.2630789080559], [-2.9520672213703403, 43.262484184732436], [-2.951837088588885, 43.26233100858123], [-2.9517100935770126, 43.26224541061941], [-2.95152460184797, 43.2621237690365], [-2.9513475780682965, 43.26200663309031], [-2.951120860179565, 43.26192099201336], [-2.950679296963235, 43.26183075571904], [-2.9509485358025236, 43.26122755810534], [-2.9508804323168607, 43.26116899847694], [-2.9524481112715346, 43.25990000115766], [-2.9525224206982017, 43.25990003202276], [-2.954220349212756, 43.260958773909415], [-2.954571630195247, 43.26129658937339], [-2.9546937464566323, 43.2617333646545], [-2.9546709459155447, 43.26184591408336], [-2.953067481788738, 43.2630789080559]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:16", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "16", "alternateName": "wifi_zone", "description": "HOSPITAL", "val": 0}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.950385562716927, 43.261772098299446], [-2.9490308734387045, 43.26147434838296], [-2.9489385107091635, 43.26142027912834], [-2.9488700314395584, 43.261352713459814], [-2.9488015674120214, 43.26126713840101], [-2.948788242253951, 43.261087038879786], [-2.9488018616769205, 43.26091595609204], [-2.9488979674379223, 43.26063685403227], [-2.948952686488526, 43.26058285039083], [-2.9490520347733153, 43.26056938766275], [-2.9498180982653404, 43.26074081517546], [-2.950293908905915, 43.26084457671448], [-2.9504171254533746, 43.260835625509316], [-2.9505707155303105, 43.260880715369865], [-2.950601452338955, 43.26096177075125], [-2.950656420675368, 43.26107435295113], [-2.950385562716927, 43.261772098299446]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:17", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "17", "alternateName": "wifi_zone", "description": "INTERMODAL", "val": 0}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.951585889147161, 43.2644695126998], [-2.9515501507469666, 43.26437945084158], [-2.951680301600017, 43.26437500355489], [-2.952063614709536, 43.26413654098964], [-2.9519266291520263, 43.26401942275147], [-2.952111554964548, 43.26388893255098], [-2.9509214709896323, 43.263285114995774], [-2.950962325431742, 43.26323560680626], [-2.9502371813416537, 43.26289311601207], [-2.949830547092369, 43.26246071397529], [-2.948367061614655, 43.2614920600452], [-2.9470717973676357, 43.26061801431413], [-2.946815600316319, 43.26035225746159], [-2.9466844518907482, 43.260185609846566], [-2.946670229554183, 43.26015858917891], [-2.946558722075644, 43.259987448229055], [-2.9464603138720036, 43.259807308617006], [-2.9464038340656606, 43.25967221196777], [-2.946341995849485, 43.259501094052446], [-2.9462767798909826, 43.25923092302349], [-2.9462338994544366, 43.25895626010392], [-2.9461910392254786, 43.25865908546015], [-2.946145516063311, 43.258325890802105], [-2.9461076181697314, 43.2580782441854], [-2.946103025830154, 43.258046725632276], [-2.9460723997581875, 43.257848608174726], [-2.9460582616960687, 43.25772703828627], [-2.946029199818828, 43.25750190749287], [-2.9460027973944096, 43.25731729901627], [-2.9459710329171136, 43.25710117160047], [-2.945952672124611, 43.25696609266187], [-2.9459392527318733, 43.25690305352937], [-2.9459262223542955, 43.25683551223615], [-2.9459162560921706, 43.25678598175887], [-2.9459035908398357, 43.256740952346384], [-2.9458920766278456, 43.25670042581902], [-2.9458728902962275, 43.25662837926297], [-2.9458521600131133, 43.25656083431453], [-2.9458256667281137, 43.25647977960467], [-2.945801848554028, 43.256421237868295], [-2.9457834044565403, 43.25638070804429], [-2.9457442143281285, 43.25629064260923], [-2.9457023173170183, 43.25621408290301], [-2.945653502437135, 43.256124012865456], [-2.945630819534646, 43.25608798334384], [-2.945604290679913, 43.25604744964583], [-2.9455423861435683, 43.25595737333328], [-2.945488558704761, 43.255876305521184], [-2.9454278014621056, 43.255795234376954], [-2.945335510911434, 43.25567362704619], [-2.945258207321627, 43.25558354321443], [-2.9451928266953447, 43.255506972072126], [-2.9451108995469713, 43.25542138826641], [-2.945037434400586, 43.25534481315375], [-2.944959730452554, 43.25527273829707], [-2.944879716728073, 43.255200662273815], [-2.9448039299806767, 43.255137592920605], [-2.9446465861517077, 43.25500694892577], [-2.944604654665312, 43.2549709098781], [-2.9451567248775206, 43.25498018057031], [-2.945719190042754, 43.254989453531145], [-2.9458635620270424, 43.254989521944744], [-2.9459879104507958, 43.254994083067494], [-2.9461438242710845, 43.255003161263865], [-2.9462673988011265, 43.255012224062256], [-2.9463882744731866, 43.255025787806126], [-2.946507999163005, 43.25503484854026], [-2.9466315698798016, 43.25504841328718], [-2.9467605266232644, 43.2550664827511], [-2.9468898723483696, 43.25508004990645], [-2.946999194610084, 43.25509810998388], [-2.947124682737228, 43.255120679773725], [-2.9473306189599806, 43.25516129586832], [-2.9474788103300638, 43.255197382751035], [-2.9476250769077907, 43.25523346856034], [-2.9477886645299853, 43.25527406443281], [-2.9479052907751053, 43.255305634007804], [-2.9480176860346603, 43.25533269919768], [-2.948350626054743, 43.255427399217524], [-2.9484853438498746, 43.25546347871064], [-2.9485992796376186, 43.255490544022095], [-2.948770560955644, 43.255540146632136], [-2.9489418425519163, 43.255589748985436], [-2.9491189031160627, 43.25563485130912], [-2.949289804000515, 43.25567995062804], [-2.9494857224743054, 43.25573406542764], [-2.9502661623026842, 43.25614412060773], [-2.950683239899275, 43.25646846985331], [-2.950764939476641, 43.25589220515799], [-2.951187580617826, 43.256000442512914], [-2.951376183244612, 43.25605905329303], [-2.951527837033181, 43.25610414108263], [-2.9518053432085605, 43.25620330987618], [-2.9519939258338, 43.256288933684175], [-2.952154022459265, 43.25637004292654], [-2.952310273011275, 43.25644664799776], [-2.9523106580124523, 43.25644664815826], [-2.9523106580124523, 43.25644664815826], [-2.9523106580124523, 43.25644664815826], [-2.952491692569647, 43.256338667260096], [-2.95272048039777, 43.25621269644833], [-2.953094474075898, 43.2560057426334], [-2.953106065486074, 43.255951719269156], [-2.953120733403752, 43.255902199507105], [-2.953150426552432, 43.25583917886777], [-2.953188974569849, 43.2557761618438], [-2.953235988986832, 43.25571765061072], [-2.9537334252061616, 43.25518207400582], [-2.953734580185816, 43.255182074472934], [-2.9537384369343047, 43.25517307134532], [-2.953741138702342, 43.25516406775051], [-2.953742685490438, 43.25515506368861], [-2.953743077299102, 43.25514605915964], [-2.9537419291359113, 43.25513705400797], [-2.9537400109873024, 43.255128048544876], [-2.953736552867972, 43.25511904245898], [-2.9537319363627437, 43.255114538248165], [-2.9537265532816868, 43.25510553138336], [-2.9537200152241785, 43.25509652405103], [-2.953712318780662, 43.255092018593345], [-2.953703852353037, 43.255087512823515], [-2.9536942309488787, 43.25508300658557], [-2.953684224553574, 43.25507850019091], [-2.9536738331672074, 43.25507399363948], [-2.953662671797359, 43.25506948677522], [-2.953651122022103, 43.25506948209626], [-2.953639575662274, 43.25506497507374], [-2.9536276408953945, 43.25506497023637], [-2.9536160877038458, 43.25506946789626], [-2.9536045379286016, 43.2550694632126], [-2.9535933731458677, 43.25506945868394], [-2.9534778514022353, 43.255100928168325], [-2.9532660468845022, 43.25517738167894], [-2.953202880421152, 43.25521337460539], [-2.952918606135445, 43.255406858734105], [-2.952865067574266, 43.2554383530912], [-2.9528338725687395, 43.2554518472639], [-2.952764934120065, 43.25548333522336], [-2.952759925703347, 43.25548783549865], [-2.9527526107957054, 43.25548783247769], [-2.952744907411541, 43.255492331639225], [-2.952736822513029, 43.25549232829919], [-2.9527287341319406, 43.25549682730054], [-2.95272026423764, 43.25549682380025], [-2.9527117943433416, 43.2554968202993], [-2.9527033244490437, 43.25549681679775], [-2.952695243034988, 43.25549231111281], [-2.952687158136485, 43.25549230776925], [-2.9526794617193564, 43.25548780224239], [-2.952672146811728, 43.2554877992163], [-2.9526652203864945, 43.25548329400703], [-2.952659063952445, 43.255478789116026], [-2.9526536775094105, 43.255474284543354], [-2.9526486760621937, 43.2554697801298], [-2.9526444446057067, 43.25546527603477], [-2.952640986628817, 43.25545626991633], [-2.952638295153477, 43.255451766458584], [-2.9526367586631808, 43.25544726347899], [-2.952635995652223, 43.255438258476154], [-2.9526359991416258, 43.25543375613413], [-2.9526367726205662, 43.255429254110915], [-2.9526387045728164, 43.25542025022383], [-2.9526414030248067, 43.255415748997514], [-2.9526448714657114, 43.255411248089885], [-2.952649113383794, 43.2554022451588], [-2.9526541218016473, 43.255397744888306], [-2.9526595152133055, 43.25539324477691], [-2.9526660636077118, 43.25538874514313], [-2.9527669669680283, 43.255343763414665], [-2.9527808337178048, 43.255334764452215], [-2.9527935454811427, 43.255325765011456], [-2.952805102258553, 43.255316765092786], [-2.9528151190565395, 43.25530776453775], [-2.952823599351346, 43.25529426100459], [-2.952830536192011, 43.25528525917794], [-2.9528359365300596, 43.255271754373794], [-2.952872954955478, 43.255195229788434], [-2.9529944841024642, 43.25486210634928], [-2.952995642538897, 43.254857604481366], [-2.9530052984772706, 43.25481708735302], [-2.953009183004751, 43.254772065508995], [-2.953006522690568, 43.25472704097608], [-2.9529976990765876, 43.254686516254615], [-2.9529746724225707, 43.25459195756515], [-2.952962390876464, 43.254542426730104], [-2.952919740318293, 43.254434352923745], [-2.952916663878869, 43.25442984931332], [-2.952914360885564, 43.25442084367688], [-2.9529132128580224, 43.2544118385158], [-2.9529132197957315, 43.25440283383009], [-2.952914378229415, 43.25439833196262], [-2.9529166950962686, 43.25438932822764], [-2.952920166926928, 43.25438032496794], [-2.9529247937208827, 43.25437132218341], [-2.9529305720100516, 43.254366822216774], [-2.952937123741557, 43.254357820223746], [-2.9529444419805144, 43.254353320889955], [-2.952952530194323, 43.25434882187235], [-2.9529617733707507, 43.254344323329086], [-2.9530072157949765, 43.25432633262813], [-2.9530788373567747, 43.254308352649836], [-2.953146605548841, 43.25429487339285], [-2.9531789548572362, 43.25428137960456], [-2.9532066843018754, 43.254267883917436], [-2.9532305638605556, 43.254254386649635], [-2.953260225104531, 43.25423188705039], [-2.95332148277795, 43.25417338158486], [-2.9534012334172295, 43.254096874242414], [-2.953445159590507, 43.25404736633715], [-2.9534887041332514, 43.253993355914815], [-2.9535199222183635, 43.25394834515699], [-2.9535607990973824, 43.253858314864715], [-2.953576229272019, 43.25381780002499], [-2.9536055188634305, 43.25377729080458], [-2.953648286274585, 43.25373228469337], [-2.953702606547406, 43.25368278089715], [-2.9537569267322166, 43.25363327707467], [-2.9537973840319873, 43.25358826997274], [-2.9538409245357267, 43.25353876175527], [-2.9538806185408304, 43.25348474962513], [-2.953931105551987, 43.25341273244747], [-2.9539719577314076, 43.25335421840572], [-2.9540016352081784, 43.25330920689146], [-2.9540567281653196, 43.25325520088888], [-2.9541430348682023, 43.2531606862686], [-2.9541449631486034, 43.253156184696294], [-2.954148812953192, 43.25315618623939], [-2.9541522811547467, 43.25315168528416], [-2.954155364375389, 43.25314718417453], [-2.9541576776348295, 43.25314268275628], [-2.9541596059135835, 43.25313818118371], [-2.95416076085462, 43.253138181646506], [-2.9541615341920533, 43.25313367961109], [-2.9541619225490834, 43.253129177421414], [-2.954161540945535, 43.25312467492319], [-2.9541603893815793, 43.25312017211646], [-2.9541588528375895, 43.25311566915543], [-2.9541565463334742, 43.25311116588583], [-2.954153854849552, 43.2531066624619], [-2.9541507750083764, 43.25310666122755], [-2.954146928584723, 43.25310215734056], [-2.954143082161636, 43.25309765345342], [-2.9541384624005547, 43.25309765160144], [-2.954133846018251, 43.253093147405295], [-2.9541288412774502, 43.25309314539859], [-2.9541234515565877, 43.25309314323726], [-2.954118065215665, 43.253088638731704], [-2.9541122905151687, 43.253088636415434], [-2.954106900794704, 43.25308863425334], [-2.954095732992162, 43.25309313211782], [-2.9540533716466095, 43.25311112449269], [-2.9540113918686104, 43.2531336193505], [-2.9539659472355995, 43.25315611279857], [-2.953932433574085, 43.253183113379016], [-2.9538919834353954, 43.25321911584438], [-2.9538376671289233, 43.253264117391], [-2.953785285862996, 43.25329561265775], [-2.9537232765957095, 43.25333160635105], [-2.9536635805595757, 43.25336309860239], [-2.953565771248151, 43.25339457535829], [-2.9534078908907135, 43.253444036960104], [-2.9533204861610205, 43.253462010707935], [-2.9532361681298225, 43.25347098096072], [-2.9531614746362465, 43.253479955092445], [-2.9530555975343202, 43.25348891638288], [-2.9528788697171375, 43.253515857792884], [-2.9529215022227135, 43.25364644334892], [-2.952366264725394, 43.25376327446446], [-2.951246650076035, 43.25289835252051], [-2.951609938194865, 43.252578840232836], [-2.9523626896477926, 43.25291683209281], [-2.9524715791677427, 43.25299341725752], [-2.95257394177059, 43.25304748788512], [-2.952646678528045, 43.25307903443445], [-2.9527359660259007, 43.253115090121995], [-2.952802161757729, 43.253142131524164], [-2.952872599277419, 43.253160169944906], [-2.9529538232266965, 43.253169208068236], [-2.953030434353087, 43.25316923954947], [-2.9530839501036006, 43.253164759164605], [-2.953152105457814, 43.253146777715095], [-2.9532013932907057, 43.253133290853164], [-2.953250687989538, 43.25311079928219], [-2.953282651667943, 43.253097305304145], [-2.9533230917692057, 43.25307481008541], [-2.9533635352762224, 43.25304781250834], [-2.9533935980314503, 43.253002801306465], [-2.9534171126643307, 43.252962289775546], [-2.9534410156747906, 43.2529172760521], [-2.953444140090694, 43.25285874683243], [-2.9534310988461403, 43.252795708686826], [-2.9533984237612922, 43.25273266254247], [-2.953373465465298, 43.25264710780532], [-2.953361586140377, 43.2525750654316], [-2.953364332508927, 43.25250753136488], [-2.953374788694058, 43.252426493402375], [-2.953386771017874, 43.25236346544324], [-2.9533899366587293, 43.25225090808454], [-2.9536313329076385, 43.252228494455416], [-2.9542157682174994, 43.25217019935575], [-2.95438400868493, 43.252161261874015], [-2.954502199113936, 43.252156806595856], [-2.95464731432961, 43.25218387829558], [-2.9547454627839747, 43.25221093124093], [-2.954854002315991, 43.252242490549214], [-2.954917114921193, 43.25227403186087], [-2.954980211009859, 43.25232808486073], [-2.955043698809042, 43.25237313328744], [-2.9551110563002334, 43.25239116912184], [-2.9551888015747374, 43.25241821367784], [-2.955305011592481, 43.25249029667391], [-2.955436212997214, 43.252593901812155], [-2.95546275672002, 43.252620926223656], [-2.9555000667173768, 43.252665964200126], [-2.9555308321494485, 43.252710999620206], [-2.9555546647497417, 43.252760534683915], [-2.955571179528338, 43.252814569245935], [-2.9555853681050475, 43.25289111462941], [-2.9556272229252585, 43.25303970827123], [-2.955697540409447, 43.25322433168219], [-2.9557778873978027, 43.25338194485099], [-2.955785965503273, 43.25339095266367], [-2.9558028884296133, 43.25341347092855], [-2.955822894480651, 43.253431488036476], [-2.955845210437374, 43.25344950603247], [-2.9558702212842576, 43.25346752506363], [-2.9558975452900422, 43.253481042636075], [-2.9559264092383137, 43.25349456079527], [-2.9559568163746306, 43.25350357719628], [-2.956477999534623, 43.25362083763715], [-2.956808261200066, 43.25369750267188], [-2.9571828000512324, 43.25376968098843], [-2.9574279974415574, 43.25382380063793], [-2.957689364637491, 43.25387792574317], [-2.9578849153120044, 43.25390951431572], [-2.95790223964706, 43.253909520692396], [-2.9579742256919856, 43.25391855185008], [-2.958046606015446, 43.25391407607298], [-2.9581186013431156, 43.25390960010914], [-2.95818906287975, 43.25389611884998], [-2.958502492754713, 43.25381969311675], [-2.9587904977114134, 43.25376576909164], [-2.95880127727244, 43.25376577297432], [-2.958850943281413, 43.253761288505565], [-2.9589009942673803, 43.25375680415351], [-2.9589514241823482, 43.2537613246052], [-2.959001084136145, 43.25376584475867], [-2.95904958612752, 43.25377486682089], [-2.9591762189224027, 43.253815433184826], [-2.9592789948214375, 43.25383798153954], [-2.9594645365823538, 43.25386956384883], [-2.9595607738900562, 43.25388310494365], [-2.959650836615815, 43.25391915550327], [-2.9597124075514594, 43.25395969830582], [-2.959782060307892, 43.254004746261174], [-2.9598359287362364, 43.254049788633], [-2.9598936323350786, 43.2541173440465], [-2.9599540191696674, 43.25420290974733], [-2.960029029813623, 43.25429748521445], [-2.9600732681001496, 43.25435152879566], [-2.96014367392854, 43.254423590856454], [-2.960231398565166, 43.2545046635835], [-2.960289870083787, 43.254576721402906], [-2.9603064070842917, 43.25460374120718], [-2.9603214012171777, 43.25463526281793], [-2.960331772563093, 43.25467128516772], [-2.9603367540575705, 43.254707305647706], [-2.960326116728813, 43.25508099650474], [-2.9603225874874664, 43.255180046842945], [-2.960306717961067, 43.25531060930335], [-2.9603024713280517, 43.25532861720409], [-2.960288582281655, 43.25537363581911], [-2.960268148304166, 43.25541865215905], [-2.960241557305239, 43.25545916401183], [-2.960208806347015, 43.25549967371559], [-2.960170665408265, 43.25554018153319], [-2.9601275253490424, 43.25557168290867], [-2.9600797652945077, 43.25560318265558], [-2.959963840233868, 43.255666174949525], [-2.9598937502242713, 43.255697666801], [-2.9598386690959932, 43.25573816856612], [-2.959789359887381, 43.255783174676644], [-2.9596310071416414, 43.255963212631045], [-2.959628309180137, 43.25596771402199], [-2.9596152043649915, 43.25599022111171], [-2.9596055615505166, 43.25601723176538], [-2.959599768714304, 43.25604424377786], [-2.959597825861458, 43.2560712571497], [-2.9595997329970856, 43.25609827188113], [-2.9596051051271, 43.256125287836], [-2.959614715230161, 43.2561478029438], [-2.9596274023616793, 43.256174821479576], [-2.959643942474328, 43.25619733903028], [-2.959663947597235, 43.25621985780029], [-2.959686647734379, 43.2562423775165], [-2.959771291406116, 43.256327951827615], [-2.959864402380049, 43.25641803138861], [-2.959934037386179, 43.256494595624595], [-2.960001744609882, 43.25657566148573], [-2.9600767494133136, 43.25668374390782], [-2.9601948396698488, 43.25684586938776], [-2.9604480147690717, 43.25708908368643], [-2.960595781309267, 43.25720619557692], [-2.960866701558951, 43.257399889283626], [-2.961561679104912, 43.25794941060822], [-2.9594567921587243, 43.25915981370745], [-2.959628495451229, 43.25918238613563], [-2.960018889432722, 43.259205034947854], [-2.9602248421440738, 43.25925463248881], [-2.961161754965524, 43.259606136964884], [-2.9614796972698416, 43.25974131467274], [-2.9617864725034013, 43.259880990103916], [-2.961992783147223, 43.25998011031501], [-2.9622071883211043, 43.260065725807316], [-2.9625289745356285, 43.26021891121692], [-2.9626240564314745, 43.260250458700455], [-2.962833469058906, 43.26031806202508], [-2.9630066815238347, 43.26039916028349], [-2.9636236505855753, 43.26078205698982], [-2.963780306496508, 43.26086765114349], [-2.9639423532612144, 43.260953246780744], [-2.9642841306158854, 43.26117396861431], [-2.9644195959903414, 43.261286569302094], [-2.964609341006973, 43.26141719598805], [-2.9647702300995062, 43.261511794763685], [-2.9649311196902866, 43.26160639331164], [-2.9650431207210404, 43.2616829673484], [-2.9651231641511915, 43.261759531535596], [-2.965165469198749, 43.26184508885705], [-2.9652354841330886, 43.26195316627786], [-2.9653128022304096, 43.262083757559886], [-2.9653608603544033, 43.26220983759214], [-2.9653712129881122, 43.26228638047472], [-2.9653449614512004, 43.262407935652355], [-2.963419290340495, 43.263204249841735], [-2.96266398831367, 43.26358220214453], [-2.962586269639945, 43.2634831253358], [-2.9625223852179077, 43.263429076377825], [-2.9623965169958133, 43.26336150001342], [-2.9622614052062195, 43.26329842279793], [-2.9621008891701033, 43.26322182999641], [-2.9619761825759, 43.26314524887713], [-2.96184262593024, 43.26305965999422], [-2.9617060006077183, 43.26295606057669], [-2.9617021530075336, 43.26295155695106], [-2.9616975325009873, 43.262951555404065], [-2.9616925297751577, 43.26294705139132], [-2.961687139184585, 43.26294704958603], [-2.9616813635518286, 43.26294704765151], [-2.9616759757854063, 43.26294254350906], [-2.961669815110921, 43.26294254144496], [-2.961664039478593, 43.26294253950955], [-2.9616582638462643, 43.26294253757385], [-2.961652488213936, 43.26294253563787], [-2.961646709755303, 43.26294703603821], [-2.961641319164734, 43.26294703423077], [-2.961635928574166, 43.262947032423064], [-2.9616309201983113, 43.262951533080866], [-2.9616266819061985, 43.26295603399675], [-2.9616224464415577, 43.26295603257589], [-2.961618593190778, 43.262960533620685], [-2.961615510024024, 43.26296503492374], [-2.9616131969414647, 43.26296953648511], [-2.9616108838585657, 43.26297403804643], [-2.9616097259024703, 43.26297853999537], [-2.9616089529886147, 43.26298304207352], [-2.9616085679462048, 43.262983041944295], [-2.9616089501595217, 43.262987544410095], [-2.96161010245783, 43.26299204713435], [-2.961611639798803, 43.26299654998779], [-2.96161394722505, 43.26300105309962], [-2.9616166396941885, 43.26300555634059], [-2.9616201022488853, 43.26301005983989], [-2.961942122066189, 43.26342888480034], [-2.961885472669717, 43.26350540567114], [-2.9617714653355485, 43.26355939567374], [-2.961600892768362, 43.263554836206794], [-2.961421903230836, 43.263464729241946], [-2.9611131655608403, 43.26335656861384], [-2.96098350898393, 43.26319444032208], [-2.960802705087106, 43.2623344320098], [-2.959883917937084, 43.26246468129738], [-2.959883532897948, 43.26246468116236], [-2.9600101017396825, 43.26263131197986], [-2.958755982364439, 43.26326569628412], [-2.9587498186177714, 43.26327019639896], [-2.958088691542081, 43.26327896076154], [-2.957593177084227, 43.26322475009495], [-2.9573533387241278, 43.26316162821013], [-2.957130496462232, 43.26302197245556], [-2.956867677624745, 43.262787752106874], [-2.9563301484261584, 43.262265276973665], [-2.9558684314489927, 43.26181036361671], [-2.9553367080307056, 43.26126987661085], [-2.954993113609661, 43.26094557353632], [-2.95471293557672, 43.260778876410825], [-2.954712825454875, 43.26092745356068], [-2.9547992705571278, 43.26117961873665], [-2.954960422653373, 43.26141830625821], [-2.9551365592759566, 43.26170202280591], [-2.9552569266469444, 43.26190467517881], [-2.955319213514752, 43.26202626265884], [-2.9553414798061706, 43.26211631811833], [-2.955356384394182, 43.26226940343275], [-2.955437006738661, 43.263120376701735], [-2.955428094906038, 43.263196912965135], [-2.9554246065185295, 43.263228427967206], [-2.955377953725845, 43.26331395418713], [-2.955276621116132, 43.263403961359316], [-2.9550990491793203, 43.26349393854079], [-2.9548745044130125, 43.26357939458813], [-2.9547578054277728, 43.26361986952689], [-2.9545540690011274, 43.263682821486285], [-2.9544589423087384, 43.263709797676746], [-2.9543410943872903, 43.26374126705823], [-2.954211691549712, 43.263777234030506], [-2.954045317216697, 43.26382219068346], [-2.9538554105070545, 43.26392566798215], [-2.9537814573889496, 43.26395715448393], [-2.9535346275974934, 43.263975063837584], [-2.953211530428342, 43.26402896018316], [-2.9528614583959976, 43.264109858522936], [-2.952615348930977, 43.264190798901375], [-2.952449738895158, 43.26424025588344], [-2.952222495849035, 43.2643212032555], [-2.952083072148641, 43.26436616830312], [-2.951841581240115, 43.26444710894763], [-2.951585889147161, 43.2644695126998]], [[-2.9525235757670107, 43.259900032502145], [-2.9524481112715346, 43.25990000115766], [-2.9508731167293196, 43.26116899533547], [-2.950941605239256, 43.26122755513335], [-2.9506742878722987, 43.26183525589769], [-2.9511189313992636, 43.261925493527535], [-2.951344879229521, 43.26201113428071], [-2.9520629859389413, 43.26248418295766], [-2.9530686334592007, 43.2630834108658], [-2.954677488174366, 43.26185041901399], [-2.9546979818361425, 43.26173336633187], [-2.954575480512725, 43.26129659090236], [-2.9542195859002938, 43.26094976892573], [-2.953563036854054, 43.260539791417166], [-2.9525235757670107, 43.259900032502145]], [[-2.9504059476301157, 43.261799121169524], [-2.9506837578284912, 43.26107436473967], [-2.950622251215136, 43.260952775052694], [-2.9505880564039124, 43.26086271350482], [-2.950420223950589, 43.260813115156274], [-2.950307403224788, 43.26082207088122], [-2.949825043561982, 43.2607228088649], [-2.9490520497897617, 43.2605513783118], [-2.9489457710463736, 43.260564837947115], [-2.9488775647443144, 43.26063234257684], [-2.948774528370066, 43.260911441516384], [-2.9487574398224043, 43.261087025086056], [-2.9487776879083603, 43.261276132388645], [-2.9488461519125044, 43.26136170746159], [-2.9489211691914043, 43.26143828074123], [-2.9490169972293323, 43.26149235155418], [-2.9504059476301157, 43.261799121169524]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:18", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "18", "alternateName": "wifi_zone", "description": "BASURTO", "val": 0}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.947072567422493, 43.26061801467043], [-2.948367061614655, 43.2614920600452], [-2.949830547092369, 43.26246071397529], [-2.9502371813416537, 43.26289311601207], [-2.950962325431742, 43.26323560680626], [-2.9509214709896323, 43.263285114995774], [-2.952111554964548, 43.26388893255098], [-2.9519266291520263, 43.26401942275147], [-2.952063614709536, 43.26413654098964], [-2.951680301600017, 43.26437500355489], [-2.9515501507469666, 43.26437945084158], [-2.951585889147161, 43.2644695126998], [-2.9515774180091583, 43.26446950911427], [-2.951526177551104, 43.264505506103255], [-2.951500364773401, 43.26452350450742], [-2.951448746328387, 43.264550496628594], [-2.9514125335147288, 43.26457299293454], [-2.951386724257621, 43.2645864889781], [-2.951360911404625, 43.26460448735052], [-2.951340111393437, 43.264613483177065], [-2.95133509853642, 43.264622485717034], [-2.95129349848807, 43.26464047735686], [-2.9511736930920254, 43.26470796132569], [-2.951054653931577, 43.26477994783215], [-2.9509267690950938, 43.2648384234114], [-2.9504037341176046, 43.26500028193515], [-2.9502955116658893, 43.26502724897843], [-2.9503931036550495, 43.26528842681614], [-2.9503931036550495, 43.26528842681614], [-2.9503934887119314, 43.265288426983126], [-2.9503934887119314, 43.265288426983126], [-2.950559126408883, 43.266161951745865], [-2.9498827500159135, 43.266413788168315], [-2.9405881929559383, 43.269457418290784], [-2.9401094154778824, 43.269578731598095], [-2.9394411700030654, 43.269704445084066], [-2.9390167482885494, 43.26976274992658], [-2.9382380472204828, 43.26982086246176], [-2.936083884419248, 43.26981517678286], [-2.9346652975448184, 43.26975134270846], [-2.93389286595455, 43.26970587560768], [-2.9333588027173354, 43.26966054240496], [-2.9328236543443125, 43.269552173420585], [-2.9321603302542814, 43.26939420033317], [-2.931947849910973, 43.26931753447523], [-2.931890882853359, 43.26929498890917], [-2.9314074170289457, 43.269119109065116], [-2.9303588158911786, 43.26846563723367], [-2.9300544934026256, 43.26822682790253], [-2.9291511669809145, 43.26751040096419], [-2.9287176283212046, 43.267136437913095], [-2.9284468091396127, 43.26690664979117], [-2.9275293592383638, 43.26611816368999], [-2.9258396647622407, 43.26488344085572], [-2.925489193428983, 43.264626579960726], [-2.9244896839468684, 43.2639325647617], [-2.9241338945919146, 43.263626170456924], [-2.923817835733968, 43.263265773450165], [-2.9237586232434607, 43.26319819894403], [-2.9236699763121528, 43.2629595159524], [-2.9236403594358955, 43.26262632321138], [-2.923630725452632, 43.26232466015076], [-2.923757740052088, 43.26205460459646], [-2.923928374549274, 43.26169453113697], [-2.9250764372754596, 43.26021401931562], [-2.9256074424956418, 43.26048450623656], [-2.9258240733021443, 43.26028204163642], [-2.9263965027385783, 43.259728623595265], [-2.926586160593648, 43.25953964718685], [-2.9266358822923397, 43.25949465568438], [-2.926674422131852, 43.25946316401354], [-2.926736475130695, 43.25940917568991], [-2.9269962096831956, 43.259215741109436], [-2.927459028397417, 43.258869355315284], [-2.927854796256827, 43.258567948768736], [-2.928111828601311, 43.25837450992183], [-2.9288274325513965, 43.2578301740951], [-2.9293811650148935, 43.257420804181066], [-2.929676137490757, 43.25737146013482], [-2.930080050887179, 43.25733568899135], [-2.9304650728832624, 43.25732241664922], [-2.9312720010364783, 43.257363425370976], [-2.931770556762647, 43.25704405753515], [-2.932280268197518, 43.25707587680508], [-2.9324722594000776, 43.25684186850668], [-2.9325636344161436, 43.25672486150923], [-2.9327841828571652, 43.25642783670793], [-2.9329449999570203, 43.256180302239464], [-2.933246580932982, 43.2557122349508], [-2.933240668272886, 43.255838297107346], [-2.9332386990202006, 43.25587881704544], [-2.9332543068910586, 43.25604091049965], [-2.933293779899543, 43.256207520208655], [-2.933356362978142, 43.25636513867956], [-2.9334412813715347, 43.256518267766964], [-2.933547765224135, 43.256666906974274], [-2.9336750544363097, 43.25680205111637], [-2.9338208292859917, 43.25693270346719], [-2.9339612487481213, 43.25703183614309], [-2.9339612487481213, 43.25703183614309], [-2.9340781979091224, 43.2571174480961], [-2.9341905564196256, 43.257176043235525], [-2.9344311076583445, 43.25724821883915], [-2.9346597627748046, 43.25728436840664], [-2.9357623830804362, 43.257321011623944], [-2.9370436200532, 43.257384756704226], [-2.938234767984144, 43.257448438827666], [-2.9388846289578767, 43.25748030425373], [-2.9399522019674516, 43.25753489772339], [-2.9401450777234697, 43.257548505829746], [-2.941493700570317, 43.257612236305185], [-2.9414952406041284, 43.2576122370928], [-2.9430656188040136, 43.25768956925802], [-2.943917602300953, 43.25773501353424], [-2.9445289683741485, 43.25776682801572], [-2.9458313914982868, 43.25783948962252], [-2.94607278476816, 43.25784860835621], [-2.946103410841375, 43.258046725813664], [-2.94610800318115, 43.25807824436678], [-2.946145901076291, 43.258325890983365], [-2.946191424240558, 43.258659085641256], [-2.946234284471388, 43.2589562602849], [-2.9462771649096653, 43.25923092320431], [-2.9463423808698708, 43.259501094233045], [-2.946404219087125, 43.25967221214815], [-2.9464606988943207, 43.2598073087972], [-2.9465591070990964, 43.259987448408914], [-2.94667061064918, 43.26016309169629], [-2.94668483691545, 43.26018561002601], [-2.9468159853420715, 43.260352257640605], [-2.947072567422493, 43.26061801467043]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:19", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "19", "alternateName": "wifi_zone", "description": "CENTRO", "val": 25}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.9279583011299692, 43.27037764185614], [-2.9279369592522695, 43.2701885304858], [-2.9277529725803793, 43.270116377125106], [-2.9273469412662045, 43.26991801736562], [-2.9266842556768733, 43.26955740799624], [-2.9263244197136755, 43.26937708351581], [-2.926117728444929, 43.269295908224926], [-2.9261078105152176, 43.26889969655563], [-2.925402014644934, 43.268539051839824], [-2.9257256437191153, 43.26840419243743], [-2.925927538373378, 43.26830977435284], [-2.9258018154798497, 43.26814760887851], [-2.9257611835982793, 43.26799450318256], [-2.9256660977733655, 43.267971929766844], [-2.925547632285917, 43.267859294388245], [-2.9254630371074235, 43.26776018796008], [-2.925157939564848, 43.26754387673861], [-2.9252207832843857, 43.267480885164275], [-2.925206557725245, 43.26746286652878], [-2.9252501147552055, 43.26742687632874], [-2.9252867625010097, 43.26737287226387], [-2.925365421245032, 43.26697221588053], [-2.924732090922818, 43.266886256565606], [-2.92432079436741, 43.265990020611476], [-2.9242758594141627, 43.26589544183956], [-2.9242071123290683, 43.26575132158717], [-2.924069619130703, 43.26546308094827], [-2.923953421350186, 43.265390966394186], [-2.923816068174029, 43.26530082829194], [-2.9240590736835332, 43.26496331469733], [-2.9241123230767894, 43.264873303318524], [-2.92410399171845, 43.26476073939363], [-2.9240497999444424, 43.264679661378715], [-2.9239893970618893, 43.264639100234646], [-2.923960925584918, 43.26462107196851], [-2.9239147529301817, 43.26459402725105], [-2.9238054710719767, 43.26453542414397], [-2.923739655290598, 43.26451286860609], [-2.9236761498677812, 43.264490314571766], [-2.9236153398524714, 43.264467762301976], [-2.9235710814585, 43.2644497233957], [-2.923537593256788, 43.26444069634413], [-2.92352258189055, 43.264436183973096], [-2.9235048808048716, 43.264427167465264], [-2.923487174085798, 43.26442265328716], [-2.9234613869347252, 43.26441363136389], [-2.92344330081351, 43.264404614588905], [-2.9234213585436195, 43.2644000975659], [-2.92338171522126, 43.26438656401177], [-2.9233336064463535, 43.26436852243438], [-2.9233305260392877, 43.26436852036985], [-2.9233193652146543, 43.26436401055278], [-2.9233166755098483, 43.26435950641353], [-2.9233028193323016, 43.26435499478795], [-2.9232931930623596, 43.26435498833343], [-2.9232808770906518, 43.26435047773797], [-2.9232639461669367, 43.26434146170926], [-2.923262020913377, 43.26434146041778], [-2.9232593255583925, 43.264341458609636], [-2.9232539348484243, 43.26434145499316], [-2.9232481647439665, 43.264336948785584], [-2.9232400843364292, 43.2643324410275], [-2.9232358487792243, 43.26433243818529], [-2.923233538475295, 43.26433243663494], [-2.9232312281713653, 43.26433243508452], [-2.9232277683731938, 43.264327930426326], [-2.923226228170688, 43.26432792939266], [-2.923224302917555, 43.26432792810053], [-2.923221992613797, 43.26432792654993], [-2.9232189122087857, 43.264327924482394], [-2.9232162168544016, 43.26432792267324], [-2.9232139122093868, 43.26432341878999], [-2.9232100617034065, 43.26432341620528], [-2.9232077513998203, 43.264323414654406], [-2.9232054410962327, 43.264323413103476], [-2.9232019813004735, 43.26431890844449], [-2.923193510187948, 43.26431890275709], [-2.9231850447362935, 43.26431439473656], [-2.9231811942308856, 43.26431439215089], [-2.9231742689828146, 43.26430988516386], [-2.9231688782756433, 43.26430988154337], [-2.9231638782814118, 43.264305375848764], [-2.9231584875746393, 43.26430537222779], [-2.9231550221202864, 43.26430536989988], [-2.9231473267742603, 43.264300862393874], [-2.923142321118343, 43.264300859030826], [-2.9231365510259555, 43.264296352817624], [-2.923126160329642, 43.26429184349911], [-2.9231173041704857, 43.26429183754728], [-2.9230668852466692, 43.264273794304806], [-2.9230584198106175, 43.26426928627489], [-2.9230522590065324, 43.26426928213094], [-2.9230511038557663, 43.26426928135392], [-2.923024546733538, 43.26426025881397], [-2.922984127814087, 43.26425122693622], [-2.922964495934017, 43.26424671138091], [-2.922948329507607, 43.264242198156516], [-2.9229256172326523, 43.26423768051966], [-2.9228594113626722, 43.26421962654776], [-2.9228213027938885, 43.26421059617033], [-2.9227997513789137, 43.26420157695528], [-2.9227978261297816, 43.264201575655974], [-2.9227959008806508, 43.26420157435665], [-2.9227905101830842, 43.26420157071833], [-2.9227855045353452, 43.26420156733966], [-2.922781274677859, 43.26419706214809], [-2.922791722230852, 43.26415654817238], [-2.922799842406578, 43.26412953963413], [-2.9228114564597085, 43.264080021770404], [-2.922818795143099, 43.26406201737611], [-2.922831926615169, 43.26403050987962], [-2.9228384895029436, 43.26401700729709], [-2.922855097761572, 43.2639764974697], [-2.9228686028764606, 43.263953994893676], [-2.922880947153816, 43.263935993869964], [-2.922894837298225, 43.263913491550234], [-2.922908727432393, 43.26389098922873], [-2.9229449787169077, 43.26384599028675], [-2.9229715924124164, 43.26380998951711], [-2.9230452271953333, 43.26373800168887], [-2.9230698985435732, 43.26371550659932], [-2.9230783809096295, 43.2637065076299], [-2.9230926389729666, 43.263697512543], [-2.9230964894394877, 43.26369751513163], [-2.9231015007128685, 43.26369301616367], [-2.9231068913656024, 43.26369301978728], [-2.9231126670649616, 43.263693023669454], [-2.923118448429974, 43.26368852521835], [-2.92312422412891, 43.26368852909995], [-2.923129999827847, 43.263688532981234], [-2.9231357755267857, 43.26368853686225], [-2.9231411605151503, 43.26369304281723], [-2.923146936214516, 43.26369304669766], [-2.923151941820634, 43.263693050060475], [-2.923156941763937, 43.26369755575605], [-2.923158096903896, 43.26369755653201], [-2.923171182828331, 43.26370206765829], [-2.9231846538014117, 43.26370657904165], [-2.92319889486996, 43.26371109094041], [-2.9232135266460313, 43.26371110076292], [-2.9232281584221105, 43.26371111058354], [-2.9232427901981963, 43.263711120402306], [-2.92325703692755, 43.263711129960875], [-2.923271289311305, 43.26370663718468], [-2.923285156646281, 43.26370214414849], [-2.92329825388591, 43.26369765059426], [-2.923310581030362, 43.26369315652226], [-2.9233221437304446, 43.26368415959973], [-2.9233325456377104, 43.26367966423487], [-2.9233417980530945, 43.263670665761936], [-2.9233498953264676, 43.26366166651423], [-2.9233564524119666, 43.263652666234016], [-2.923361854356586, 43.26364366517956], [-2.9233657217619977, 43.26363016075996], [-2.9233680433338716, 43.263621157641516], [-2.9233688247205913, 43.263612153491266], [-2.92336807157008, 43.26359864597616], [-2.923366157634681, 43.263589640020264], [-2.923362318470255, 43.26358063277454], [-2.9233619390720236, 43.263576130183495], [-2.9233592493986817, 43.26357162604463], [-2.9233569447715677, 43.26356712216368], [-2.9233561859761177, 43.26355811698151], [-2.9233558065784764, 43.26355361439041], [-2.9233565823180476, 43.26354911257324], [-2.923358133796845, 43.26354010893892], [-2.923360449718609, 43.26353560815362], [-2.923363535731242, 43.26353110788417], [-2.9233677768801534, 43.2635266083885], [-2.923372408720892, 43.2635176068174], [-2.9233778050046886, 43.26351310809511], [-2.9233839713786187, 43.26350860988833], [-2.923390902196975, 43.2635086145301], [-2.9233974536149234, 43.26350411658044], [-2.923817835733968, 43.263265773450165], [-2.9241338945919146, 43.263626170456924], [-2.9244896839468684, 43.2639325647617], [-2.925489193428983, 43.264626579960726], [-2.9258396647622407, 43.26488344085572], [-2.9275293592383638, 43.26611816368999], [-2.9284468091396127, 43.26690664979117], [-2.9287176283212046, 43.267136437913095], [-2.9291511669809145, 43.26751040096419], [-2.9300544934026256, 43.26822682790253], [-2.9303588158911786, 43.26846563723367], [-2.9314074170289457, 43.269119109065116], [-2.931890882853359, 43.26929498890917], [-2.931947849910973, 43.26931753447523], [-2.9321603302542814, 43.26939420033317], [-2.9328236543443125, 43.269552173420585], [-2.9333588027173354, 43.26966054240496], [-2.93389286595455, 43.26970587560768], [-2.9346652975448184, 43.26975134270846], [-2.936083884419248, 43.26981517678286], [-2.936096694704444, 43.270085323855135], [-2.936103513235759, 43.27019338362653], [-2.936111425835923, 43.2703599743176], [-2.936107020314509, 43.27052205579223], [-2.9360899444599253, 43.27064811153309], [-2.936076949047882, 43.27092274647888], [-2.9360170993863877, 43.2710757922759], [-2.9360210665978514, 43.27133242735788], [-2.936070292769084, 43.2713954875106], [-2.9353222624131328, 43.271196964458085], [-2.934816821346791, 43.27102108665329], [-2.934248661696122, 43.270800147264886], [-2.9337978610483724, 43.27066931965333], [-2.933470997518019, 43.270597092718376], [-2.9333347050603438, 43.27056999938264], [-2.9330963836299175, 43.270524836931116], [-2.9328553669260904, 43.27047967240075], [-2.9326162710583796, 43.27043901082525], [-2.932378720849869, 43.27039384733191], [-2.9321384753726467, 43.27034868174604], [-2.9319001506734885, 43.270308019130375], [-2.931661446241346, 43.27026285345943], [-2.9314604757174, 43.27022221223672], [-2.9310388858527117, 43.27014992155117], [-2.93067196911208, 43.27008666712267], [-2.9304743733640573, 43.270127068183704], [-2.9300634027973786, 43.27019885497163], [-2.929603519883575, 43.27027511252369], [-2.9291771541972134, 43.27033788198732], [-2.9288975379744673, 43.270373727180825], [-2.928597142407346, 43.270396051727566], [-2.9285093368631916, 43.27040049921762], [-2.928417685692927, 43.27040044190237], [-2.9282979230296666, 43.270400366896546], [-2.9281877928838638, 43.27039579548128], [-2.9279583011299692, 43.27037764185614]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:1", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "1", "alternateName": "wifi_zone", "description": "CASTA\u00d1OS", "val": 0}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.9036033095186764, 43.264785821919325], [-2.903249138905369, 43.26473599722526], [-2.9028498675916117, 43.264717649491594], [-2.9024772010953632, 43.26467681136937], [-2.9021126933375507, 43.26459095565562], [-2.9017402163847006, 43.26443305455801], [-2.901502501624349, 43.26427977069496], [-2.901404074119106, 43.26418963917841], [-2.901089838533174, 43.26397325576315], [-2.9008209602978896, 43.263806436512546], [-2.900514283035299, 43.26368010478821], [-2.9002148420186225, 43.263603304255156], [-2.899884198328438, 43.26353548030686], [-2.8996767180093057, 43.26349927984038], [-2.898884275163817, 43.26327796761639], [-2.8985737840338, 43.26313361795943], [-2.898189923921825, 43.26288564842606], [-2.8978677109103175, 43.26261522096301], [-2.897626290805776, 43.26238538595076], [-2.8973617551903987, 43.26216453435779], [-2.897066418661125, 43.26194365443369], [-2.896813392377498, 43.26174982594047], [-2.8966441186924587, 43.261893747943326], [-2.896505791983738, 43.26195215327397], [-2.8963135982103143, 43.26198799793473], [-2.896113818324498, 43.261956300314466], [-2.8959453108411894, 43.261875105077436], [-2.8958607106022796, 43.261811995359736], [-2.895830839109992, 43.26171741906203], [-2.8957120864988446, 43.26158674305466], [-2.8955587045824096, 43.261442528294836], [-2.895487335043434, 43.26129838828339], [-2.89538930624683, 43.2612082519103], [-2.8952923942518995, 43.26114062816703], [-2.895163563622043, 43.261050463400245], [-2.8950412556651344, 43.260973811488014], [-2.8949697021506164, 43.26093772710407], [-2.894492383247902, 43.261315484301875], [-2.8942556668987063, 43.2612702423446], [-2.894087470767262, 43.261234068034646], [-2.893990081405671, 43.26122047080897], [-2.8939034963993175, 43.26119337650598], [-2.8938484683175667, 43.26117531610192], [-2.8938662657450753, 43.26112580689137], [-2.893896376279483, 43.26108081143768], [-2.8939921370788637, 43.260923318364455], [-2.894047328928443, 43.2608468297377], [-2.8941342021381518, 43.26070733766263], [-2.894044144741031, 43.26068474258909], [-2.8939129051333157, 43.260653104582396], [-2.8937597112971747, 43.26062594837669], [-2.893585726150027, 43.26059877262668], [-2.8934132812646727, 43.260571598047065], [-2.8936195596105776, 43.260184588892024], [-2.893918004053139, 43.25971212039084], [-2.893730088868118, 43.25950483834592], [-2.893618746629839, 43.259324641259795], [-2.8935347412999857, 43.25914446950502], [-2.8934697121630557, 43.25890128259176], [-2.8934513174088394, 43.25863112503339], [-2.893482071021768, 43.25843755302658], [-2.89357108671144, 43.25817199777062], [-2.8937693646597853, 43.257730952642916], [-2.893919719240932, 43.25739341656316], [-2.89399744139799, 43.257199887920564], [-2.894193293952, 43.25682187252276], [-2.8944024557242742, 43.25653841823801], [-2.8946496140759996, 43.256322533691346], [-2.894896292761881, 43.25616067627201], [-2.89507470956993, 43.25606629086465], [-2.8955731896865244, 43.25589565797229], [-2.8963030802565615, 43.255707223533676], [-2.8967040589797937, 43.255590525393536], [-2.8970912066957806, 43.255455804031556], [-2.8975712719948103, 43.25524012241317], [-2.8979639633341314, 43.25501085384062], [-2.898231454935556, 43.25482649603491], [-2.898591514191759, 43.25453866578657], [-2.8987322588734856, 43.25440372014975], [-2.899308702876219, 43.254800435243034], [-2.8999374896129515, 43.25497657837439], [-2.8992162710889096, 43.25575485061629], [-2.898504629305756, 43.25655113606896], [-2.8983927543332695, 43.25668610702035], [-2.8981924731417084, 43.25696507415775], [-2.898192323126051, 43.257055120861736], [-2.898446848535419, 43.25703283538847], [-2.8984887990569024, 43.2570418773057], [-2.8986088980369176, 43.25705549084105], [-2.898728212138769, 43.25707810823907], [-2.898787465575733, 43.25710067238883], [-2.898908675064909, 43.257141300642566], [-2.8992222017641653, 43.257294656896406], [-2.899165479578066, 43.25737114671982], [-2.899024669488604, 43.25754211149274], [-2.899351829560657, 43.25760093024507], [-2.8994164960811672, 43.25760999180527], [-2.8994888553775655, 43.25762356242971], [-2.8998029777216456, 43.25765085204532], [-2.900257328750776, 43.25739011329724], [-2.9003217056487425, 43.257340643652626], [-2.9004793638916655, 43.25722372003627], [-2.900543355429267, 43.25717424993018], [-2.9006262267513754, 43.25711579150647], [-2.90068790071231, 43.25707082164712], [-2.900762664731426, 43.257025863110506], [-2.9008185049813617, 43.25701690685437], [-2.900933955187647, 43.2570485232857], [-2.9009750996015122, 43.257080075302376], [-2.9010639044867728, 43.257161194293644], [-2.9011546055060746, 43.257260324220084], [-2.9011734052623743, 43.257300861538056], [-2.901101270673925, 43.257386343688786], [-2.9011027742682733, 43.25740885669665], [-2.9011300587597875, 43.25744039667254], [-2.9012580769392953, 43.2575575681247], [-2.9014822025573426, 43.25776486906704], [-2.9015329729674, 43.25779642916877], [-2.9015545117252937, 43.25780995473038], [-2.9015937391746776, 43.25783700252945], [-2.901709896174861, 43.257909139852245], [-2.9017360551321665, 43.2579226693491], [-2.9018326130920293, 43.25797227800349], [-2.901875313093186, 43.25799482634407], [-2.901901087113246, 43.25800835547277], [-2.901967643384188, 43.25803992891633], [-2.9020776626763407, 43.258098553580126], [-2.902152674968081, 43.25813913883565], [-2.9021969152502556, 43.258161688373], [-2.902226924539995, 43.25817522104885], [-2.902289246030995, 43.25820679068485], [-2.9023061721559236, 43.25821580982305], [-2.902333486412596, 43.2582293401692], [-2.902345407393804, 43.258238355028226], [-2.90236502862044, 43.25824737645836], [-2.902375416754118, 43.25825188766501], [-2.9024261952195607, 43.258278945033666], [-2.9024504294320104, 43.25829247272456], [-2.9025485286074875, 43.25834208208586], [-2.902627348594405, 43.25840968431704], [-2.902671510365233, 43.25848175935146], [-2.9027302096042904, 43.2586123771588], [-2.903086356221329, 43.25812192428406], [-2.903306119612852, 43.25841476241363], [-2.903461708523215, 43.25863100617662], [-2.9036038513878326, 43.25882922902828], [-2.904376798092001, 43.259919444045615], [-2.9035226270695738, 43.26028341634518], [-2.9032419795394766, 43.260260667612705], [-2.9031600120726746, 43.26023358421664], [-2.9030967466507445, 43.260310070410824], [-2.903063156611222, 43.26036857236251], [-2.9030033990447293, 43.26041804744044], [-2.9026794776290568, 43.26048980975088], [-2.9025342652871693, 43.26052570483289], [-2.902370528331349, 43.260588597956584], [-2.902251054766298, 43.26066053335455], [-2.902154196619673, 43.26079552071811], [-2.902127848834276, 43.260899051972956], [-2.9021314611408893, 43.26104763224315], [-2.9021650986478478, 43.26120074053082], [-2.9022469949378245, 43.26127284796002], [-2.9026712562466814, 43.26130022374824], [-2.902812059748273, 43.26185863340991], [-2.902834184129483, 43.26198922000739], [-2.902878655035502, 43.26211082089643], [-2.9029305133551597, 43.2621874046564], [-2.9029927964085003, 43.262245987881535], [-2.9030797219920617, 43.26230459195324], [-2.9031162720133454, 43.262322632265395], [-2.9035279283215862, 43.26253459003873], [-2.903699043645821, 43.26267880901813], [-2.9040333707944384, 43.26309780734612], [-2.9041133712877487, 43.26339953101068], [-2.904116995625795, 43.263543608826865], [-2.904013114226196, 43.263737122185304], [-2.903993628414401, 43.2638856829394], [-2.904085393273723, 43.26405234636547], [-2.9041082347284504, 43.264218951957886], [-2.904057930796743, 43.26437649154476], [-2.9039503529949746, 43.264470950325666], [-2.903727566291472, 43.2646148377982], [-2.903606468087208, 43.26473629888717], [-2.9036033095186764, 43.264785821919325]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:2", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "2", "alternateName": "wifi_zone", "description": "OTXARKOAGA", "val": 7}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.8987322588734856, 43.25440372014975], [-2.899090226379594, 43.25398081613142], [-2.8993990371527003, 43.253481327883605], [-2.899688053045511, 43.25284224870282], [-2.9001943860605075, 43.25137492685884], [-2.9003990172482585, 43.251244537161924], [-2.9005535359071097, 43.25115462466207], [-2.900675672999975, 43.25109169792089], [-2.9007076618307215, 43.251069213957734], [-2.900755441583759, 43.251042241339455], [-2.9007978317633696, 43.25101526402749], [-2.900836757208418, 43.25098828369636], [-2.900880687179453, 43.25096130768818], [-2.9009496690868133, 43.25091634397017], [-2.90109497607988, 43.25080841337015], [-2.901203275022308, 43.250731967056076], [-2.901258383166545, 43.25069599586112], [-2.9013624325698606, 43.250628550420636], [-2.901476875762597, 43.25056111383676], [-2.901735439718285, 43.25040375408381], [-2.901881848400605, 43.25032733985098], [-2.902304540527721, 43.250084574860836], [-2.9026513349819196, 43.24987776251671], [-2.902947654690233, 43.24969792038889], [-2.903075553638161, 43.2496394983046], [-2.903238889814509, 43.24956759901298], [-2.9034318530684975, 43.249504729196474], [-2.9036332636780138, 43.24945537321372], [-2.9038408120172914, 43.24941952907905], [-2.903999820267269, 43.24940615558339], [-2.9041919205795077, 43.249401814282166], [-2.9042165577889154, 43.249401834913364], [-2.904433274163319, 43.24941102085884], [-2.904646882857912, 43.249438213195106], [-2.9046818998697574, 43.24944724707329], [-2.904887774636838, 43.24949694425464], [-2.905085159704855, 43.249560141064954], [-2.905272508369196, 43.249641338614765], [-2.905314825843192, 43.24965938303941], [-2.9053756004238753, 43.249690949759994], [-2.9053925176804625, 43.24970447079517], [-2.9054402107216193, 43.24973152431415], [-2.905503288230569, 43.24976759521775], [-2.9055671287761804, 43.24980816906384], [-2.9056186576631906, 43.24984423036954], [-2.9056363449345364, 43.2498577520036], [-2.9057047843404145, 43.249911836608305], [-2.9057662945879863, 43.24996591546393], [-2.905798967614604, 43.24999745880598], [-2.905817032993081, 43.250015483070555], [-2.9058835271349244, 43.25008307300759], [-2.906037234572096, 43.25026329325634], [-2.90628814527223, 43.2505696586799], [-2.906473360244709, 43.25079042525558], [-2.9069683113799463, 43.25137163155566], [-2.9070620726265197, 43.25148426642665], [-2.9071892719374803, 43.2516329471218], [-2.9074102343832013, 43.25189426225089], [-2.9076811569013734, 43.25221414776559], [-2.907947847515829, 43.25253402921572], [-2.9080304683437705, 43.25263314726918], [-2.908194562631816, 43.252826879925934], [-2.9084082460618474, 43.25307017785142], [-2.9086780509743777, 43.25337205066616], [-2.908967074187707, 43.25369644984682], [-2.909175387321131, 43.25393073734043], [-2.909364479436094, 43.25414699984117], [-2.909645431853968, 43.25446688852586], [-2.9099125607416023, 43.25476425389889], [-2.9099394636145592, 43.2547957914881], [-2.9100762883441527, 43.25495348115284], [-2.91025347847833, 43.25515172341574], [-2.910422983081435, 43.255340954692926], [-2.9105828704445735, 43.25552567585273], [-2.9107450884778943, 43.25569689157262], [-2.910873865193022, 43.25583206226481], [-2.9110530051093537, 43.25601679775006], [-2.9111517990783327, 43.25612042840645], [-2.9113120952835616, 43.25629164181212], [-2.9113482330207296, 43.25632768856344], [-2.91136822690636, 43.25634571342623], [-2.9114212786240223, 43.25639978262751], [-2.9114893193864777, 43.25647187277177], [-2.9116819185927953, 43.25667012469162], [-2.912009832836658, 43.25701255538723], [-2.9123066233695982, 43.25731444019235], [-2.9123465994472366, 43.25735949424771], [-2.912389649184071, 43.2574090529845], [-2.9124434533895927, 43.25747662930299], [-2.912497623380951, 43.25755771289989], [-2.9125805918534935, 43.25769284657887], [-2.912615531071863, 43.25776040839512], [-2.9128457916763004, 43.25828285563457], [-2.912846561701167, 43.25828285622123], [-2.9126370376963093, 43.25833672449166], [-2.912639341336243, 43.258341228591874], [-2.9126185377686817, 43.258350217384645], [-2.9125334692613327, 43.2583366453498], [-2.9125242289548865, 43.25833663828425], [-2.912396815547053, 43.258318531418496], [-2.911534576242884, 43.258187299978964], [-2.911875698644027, 43.258453201388356], [-2.9120026363927414, 43.25853434123954], [-2.9120864593297493, 43.25861094548192], [-2.912168325044622, 43.25871005986244], [-2.912232088818185, 43.25881366263612], [-2.9123011654968165, 43.25897129753113], [-2.9123264797050212, 43.259038852041314], [-2.912345242211069, 43.25911090386535], [-2.912343560049935, 43.2592099540628], [-2.9123365263738825, 43.2592819861165], [-2.912325141188862, 43.259435056955745], [-2.9123137882509558, 43.25956561611464], [-2.912306375938739, 43.259633145531836], [-2.9122974364489482, 43.259691669097194], [-2.9122850511362186, 43.25973668299963], [-2.9122684305646094, 43.25978169365233], [-2.9122487297912283, 43.25982670193949], [-2.9122031807320763, 43.25990770910515], [-2.912044573488209, 43.260159718282814], [-2.9117593643640958, 43.26062774192426], [-2.9115968705586566, 43.260902259145496], [-2.911559855647405, 43.26093824924574], [-2.9115452049859676, 43.26095174493474], [-2.9114916402692477, 43.26098321987547], [-2.9113652722411785, 43.26103715009876], [-2.9113267496618995, 43.26105062726061], [-2.9111021331435394, 43.26114950437969], [-2.9105161061661198, 43.26141918778138], [-2.910003681803295, 43.261643902713224], [-2.9098052632302465, 43.261729290867926], [-2.9098018045697285, 43.26172478580262], [-2.9096014469565055, 43.26181917674996], [-2.909096716601393, 43.26204389368245], [-2.908892134877522, 43.262129275349324], [-2.9086138960026187, 43.26229113757293], [-2.908482098481367, 43.26236757194938], [-2.908418121414615, 43.26240804178761], [-2.908360298128347, 43.26245301885732], [-2.908309398701272, 43.262502503784994], [-2.9082658081782258, 43.26255649688853], [-2.908233762005412, 43.26261500157389], [-2.908176276061594, 43.262691495181905], [-2.908098011323544, 43.2627589673937], [-2.908052150839258, 43.262785944565394], [-2.9079496621650813, 43.2628308855144], [-2.907894189105876, 43.26284885021225], [-2.9078090678366753, 43.2628667909932], [-2.9075934106815873, 43.262889128676306], [-2.907539883113095, 43.262893587761795], [-2.9074366510832266, 43.26292051830034], [-2.907343794606347, 43.262960964161806], [-2.9072643871450627, 43.26301943019997], [-2.9072022996098714, 43.263082412571], [-2.9071636927291653, 43.263149916302936], [-2.907153228146489, 43.26319493118072], [-2.9071500725346073, 43.26324445432694], [-2.9071538477086416, 43.263293983098144], [-2.907175631043198, 43.26340205686289], [-2.9071767040924725, 43.26345608577616], [-2.9071704612826292, 43.26351010875239], [-2.907156524390521, 43.26355962314659], [-2.907135271602972, 43.26360913159985], [-2.9071067029022117, 43.26365863410807], [-2.9070634886882565, 43.263717129384524], [-2.906993293686669, 43.26379361205708], [-2.906944681746408, 43.263856605235084], [-2.9068281021573945, 43.26405011080984], [-2.906792615856343, 43.26409060292853], [-2.9067255348506746, 43.26414457628743], [-2.906298024895481, 43.264463892772746], [-2.9061553760961423, 43.264580836573295], [-2.906031236984714, 43.26467978605636], [-2.905979584495485, 43.2647157623015], [-2.905920237816248, 43.264747229859616], [-2.905848576309113, 43.26477418491587], [-2.9057195209329416, 43.26481459964601], [-2.9055423127813573, 43.26486848148647], [-2.9055111094921244, 43.26487746038823], [-2.9054814464096044, 43.264886440554065], [-2.905453701620779, 43.26489992463341], [-2.9054097566621047, 43.26493140465415], [-2.9053931784127744, 43.26494489795162], [-2.905378903509397, 43.264962895487564], [-2.9053673239795357, 43.26498089525147], [-2.9053584398255734, 43.264998897244176], [-2.9053518659950988, 43.26501690114768], [-2.9053483656244454, 43.26503940992945], [-2.9053479526673285, 43.2650574189301], [-2.905350228120675, 43.2650799324907], [-2.905132119091131, 43.26518780787001], [-2.9049307275758314, 43.26543977145663], [-2.9046925807099444, 43.26530900556626], [-2.904417546993164, 43.26512868267151], [-2.903889269555029, 43.26487160691356], [-2.9036033095186764, 43.264785821919325], [-2.903606468087208, 43.26473629888717], [-2.903727566291472, 43.2646148377982], [-2.9039503529949746, 43.264470950325666], [-2.904057930796743, 43.26437649154476], [-2.9041082347284504, 43.264218951957886], [-2.904085393273723, 43.26405234636547], [-2.903993628414401, 43.2638856829394], [-2.904013114226196, 43.263737122185304], [-2.904116995625795, 43.263543608826865], [-2.9041133712877487, 43.26339953101068], [-2.9040333707944384, 43.26309780734612], [-2.903699043645821, 43.26267880901813], [-2.9035279283215862, 43.26253459003873], [-2.9031162720133454, 43.262322632265395], [-2.9030797219920617, 43.26230459195324], [-2.9029927964085003, 43.262245987881535], [-2.9029305133551597, 43.2621874046564], [-2.902878655035502, 43.26211082089643], [-2.902834184129483, 43.26198922000739], [-2.902812059748273, 43.26185863340991], [-2.9026712562466814, 43.26130022374824], [-2.9022469949378245, 43.26127284796002], [-2.9021650986478478, 43.26120074053082], [-2.9021314611408893, 43.26104763224315], [-2.902127848834276, 43.260899051972956], [-2.902154196619673, 43.26079552071811], [-2.902251054766298, 43.26066053335455], [-2.902370528331349, 43.260588597956584], [-2.9025342652871693, 43.26052570483289], [-2.9026794776290568, 43.26048980975088], [-2.9030033990447293, 43.26041804744044], [-2.903063156611222, 43.26036857236251], [-2.9030967466507445, 43.260310070410824], [-2.9031600120726746, 43.26023358421664], [-2.9032419795394766, 43.260260667612705], [-2.9035226270695738, 43.26028341634518], [-2.904376798092001, 43.259919444045615], [-2.9036038513878326, 43.25882922902828], [-2.903461708523215, 43.25863100617662], [-2.903306119612852, 43.25841476241363], [-2.903086356221329, 43.25812192428406], [-2.9027302096042904, 43.2586123771588], [-2.902671510365233, 43.25848175935146], [-2.902627348594405, 43.25840968431704], [-2.9025485286074875, 43.25834208208586], [-2.9024504294320104, 43.25829247272456], [-2.9024261952195607, 43.258278945033666], [-2.902375416754118, 43.25825188766501], [-2.90236502862044, 43.25824737645836], [-2.902345407393804, 43.258238355028226], [-2.902333486412596, 43.2582293401692], [-2.9023061721559236, 43.25821580982305], [-2.902289246030995, 43.25820679068485], [-2.902226924539995, 43.25817522104885], [-2.9021969152502556, 43.258161688373], [-2.902152674968081, 43.25813913883565], [-2.9020776626763407, 43.258098553580126], [-2.901967643384188, 43.25803992891633], [-2.901901087113246, 43.25800835547277], [-2.901875313093186, 43.25799482634407], [-2.9018326130920293, 43.25797227800349], [-2.9017360551321665, 43.2579226693491], [-2.901709896174861, 43.257909139852245], [-2.9015937391746776, 43.25783700252945], [-2.9015545117252937, 43.25780995473038], [-2.9015329729674, 43.25779642916877], [-2.9014822025573426, 43.25776486906704], [-2.9012580769392953, 43.2575575681247], [-2.9011300587597875, 43.25744039667254], [-2.9011027742682733, 43.25740885669665], [-2.901101270673925, 43.257386343688786], [-2.9011734052623743, 43.257300861538056], [-2.9011546055060746, 43.257260324220084], [-2.9010639044867728, 43.257161194293644], [-2.9009750996015122, 43.257080075302376], [-2.900933955187647, 43.2570485232857], [-2.9008185049813617, 43.25701690685437], [-2.900762664731426, 43.257025863110506], [-2.90068790071231, 43.25707082164712], [-2.9006262267513754, 43.25711579150647], [-2.900543355429267, 43.25717424993018], [-2.9004793638916655, 43.25722372003627], [-2.9003217056487425, 43.257340643652626], [-2.900257328750776, 43.25739011329724], [-2.8998029777216456, 43.25765085204532], [-2.8994888553775655, 43.25762356242971], [-2.8994164960811672, 43.25760999180527], [-2.899351829560657, 43.25760093024507], [-2.899024669488604, 43.25754211149274], [-2.899165479578066, 43.25737114671982], [-2.8992222017641653, 43.257294656896406], [-2.898908675064909, 43.257141300642566], [-2.898787465575733, 43.25710067238883], [-2.898728212138769, 43.25707810823907], [-2.8986088980369176, 43.25705549084105], [-2.8984887990569024, 43.2570418773057], [-2.898446848535419, 43.25703283538847], [-2.898192323126051, 43.257055120861736], [-2.8981924731417084, 43.25696507415775], [-2.8983927543332695, 43.25668610702035], [-2.898504629305756, 43.25655113606896], [-2.8992162710889096, 43.25575485061629], [-2.8999374896129515, 43.25497657837439], [-2.899308702876219, 43.254800435243034], [-2.8987322588734856, 43.25440372014975]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:3", "properties": {"fill": "#fcd7c4", "fill-opacity": 0.5, "type": "GtfsShape", "name": "3", "alternateName": "wifi_zone", "description": "TXURDINAGA", "val": 107}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.9642066619189253, 43.269849945002015], [-2.9647370756906626, 43.269588974469926], [-2.9650502288929186, 43.269449498271065], [-2.9646230681756274, 43.268963115040776], [-2.964817975764176, 43.268864123828834], [-2.9654577481105187, 43.26858967649176], [-2.9675487299877488, 43.26712252799204], [-2.9676160883385525, 43.26717657509182], [-2.9676572573349786, 43.26723961941816], [-2.9676860898974726, 43.26732967424962], [-2.9676999143217606, 43.26740171549945], [-2.9677095125200887, 43.26745574621773], [-2.9677183405934335, 43.26750977671737], [-2.9677502373071256, 43.26763134873036], [-2.9677913758876358, 43.26775292333439], [-2.9678386923969478, 43.26784298332219], [-2.9679118042492427, 43.26794205519503], [-2.9679572169664157, 43.26799159359452], [-2.9680938500412624, 43.268122199458475], [-2.968265532601684, 43.26823930788477], [-2.9690700988950884, 43.26871677557722], [-2.969552463219293, 43.268996049625045], [-2.9697037685316507, 43.26905912245656], [-2.9697214777822634, 43.26906813181091], [-2.9699343964391867, 43.269131220628466], [-2.9700622411899102, 43.269135756491025], [-2.970248239807933, 43.26912680035236], [-2.9704053681947302, 43.26909532478219], [-2.9707412752579194, 43.26885228521925], [-2.970929264734442, 43.26870375615929], [-2.971091482929721, 43.26849218761201], [-2.9711065286243685, 43.26843366108122], [-2.971170574616851, 43.26817254190515], [-2.971177520840167, 43.2681410273212], [-2.9712247778175906, 43.26755123350064], [-2.9712500511279023, 43.26703347142679], [-2.9716447583446377, 43.267006555940036], [-2.972461513556905, 43.26694822513106], [-2.973386089917396, 43.26688090895671], [-2.973532120825209, 43.267560795305755], [-2.9740973362068415, 43.26863248006809], [-2.975115060648393, 43.270613732215594], [-2.9757755296394177, 43.271487326241136], [-2.9764233647824816, 43.2722168391495], [-2.9771790902971587, 43.27282480696748], [-2.9774081125655316, 43.27313551317573], [-2.9774437578613853, 43.27359475780637], [-2.976946166994448, 43.27469322682409], [-2.976388498146917, 43.275742155477886], [-2.9762715889864366, 43.276300419868946], [-2.976384995837583, 43.27683171790481], [-2.9771910018524124, 43.278052011846555], [-2.9772494572001067, 43.27828164209208], [-2.9767834322484212, 43.27931258090124], [-2.9763710722815038, 43.27996983583011], [-2.976005455652768, 43.280248903813], [-2.9749512937675875, 43.28119416578065], [-2.9739527048818792, 43.28180625867372], [-2.9734457407906625, 43.28201775127381], [-2.972494229251292, 43.2823732099019], [-2.9719128085820685, 43.28282330082415], [-2.971598011499917, 43.28307085079411], [-2.971441093931686, 43.283399481199204], [-2.971429384592239, 43.28455207244595], [-2.9714451114343206, 43.28551557288365], [-2.971401523628679, 43.28647005370427], [-2.97136046108435, 43.28696529850018], [-2.9712592965711093, 43.28748303974418], [-2.9705639301594533, 43.28845986588262], [-2.9698307704641085, 43.28791939674747], [-2.9692143495779995, 43.28735644274878], [-2.968698844358151, 43.28682502926324], [-2.9682847067307185, 43.28619008821418], [-2.968021166093257, 43.28559120635351], [-2.9678956249406454, 43.284803265186966], [-2.967983948898399, 43.28384429563373], [-2.9680472588119855, 43.283574174064995], [-2.968299731877072, 43.28247567781033], [-2.9686149697250888, 43.2813907049934], [-2.968854390379066, 43.280170640764844], [-2.969006045953699, 43.278837993902634], [-2.9690693464145603, 43.27780697851053], [-2.9689592266495253, 43.27699202764496], [-2.968760803197531, 43.276397666501296], [-2.968707736416973, 43.27624007055107], [-2.968356545621935, 43.27541154569795], [-2.9677908597304663, 43.274573954795336], [-2.967682323868029, 43.27444785898678], [-2.9668102044627185, 43.273434585270174], [-2.965673318220585, 43.272146583438136], [-2.9654890027797562, 43.271885392816195], [-2.965249409149714, 43.2713180266087], [-2.9647973611001257, 43.270556994406256], [-2.9643444385009983, 43.26999406265545], [-2.964265158070371, 43.269912995939855], [-2.9642066619189253, 43.269849945002015]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:4", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "4", "alternateName": "wifi_zone", "description": "ZORROZA", "val": 0}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.9001943860605075, 43.25137492685884], [-2.8999003525712483, 43.251559266146835], [-2.8995288641096715, 43.25178856013275], [-2.8993770223209183, 43.25188747828465], [-2.899182033401367, 43.252004367598914], [-2.898856781144937, 43.252206686048694], [-2.898674501842903, 43.25231908338201], [-2.8984702558347806, 43.252444967965076], [-2.898170052373646, 43.25262929729363], [-2.897966574245258, 43.252755181653825], [-2.897751923377901, 43.2528855580086], [-2.897673704949317, 43.25292600917553], [-2.897632467002223, 43.25295298635155], [-2.897593546435711, 43.25297546324205], [-2.897550776050891, 43.25299793667153], [-2.8975053107808635, 43.253020407670384], [-2.8974444387525478, 43.25304736718505], [-2.8973804792754225, 43.253078826242565], [-2.8973084275944623, 43.25311478034512], [-2.897215964320922, 43.25315521840907], [-2.8971416101493395, 43.253186667992374], [-2.8970526190642496, 43.25322260670085], [-2.8969748074910857, 43.25324955071906], [-2.896907782903871, 43.253272002060996], [-2.8968380558020987, 43.25329895327129], [-2.896756394227107, 43.25332589366856], [-2.8966269644516474, 43.253370800230904], [-2.8963981558126726, 43.25344713310051], [-2.896106163590549, 43.25355042221328], [-2.8958854382713333, 43.25362676139578], [-2.8956231111279394, 43.2537165692339], [-2.8953754203152924, 43.253801887511685], [-2.8950483756071383, 43.25391414654236], [-2.894801453163808, 43.253999464279154], [-2.8944112297584867, 43.25413417508798], [-2.8941215486239757, 43.25423295891094], [-2.893859986267392, 43.25432276340357], [-2.893771769402781, 43.25435419792662], [-2.8937058973932, 43.254376648458226], [-2.89364888788828, 43.254394604847505], [-2.8936026658474083, 43.2544080688982], [-2.8935314038865854, 43.254430514315864], [-2.8934782520082516, 43.25444397186633], [-2.8934162453799828, 43.25445742114234], [-2.8933496188661385, 43.25447086607768], [-2.8932822223464916, 43.254484310255876], [-2.8931455200200817, 43.254502192021995], [-2.8929953508994486, 43.254515558684965], [-2.892916805362413, 43.25451998753091], [-2.892838259814098, 43.25452441632292], [-2.89277319675324, 43.2545243553556], [-2.892718913371259, 43.25452430446106], [-2.8926476984030134, 43.25451973530909], [-2.8925660887569586, 43.25451515635113], [-2.892507201359863, 43.25450609634461], [-2.892419054865783, 43.25449700879537], [-2.892345152964787, 43.25448793458432], [-2.892200437075845, 43.25446528658504], [-2.892052264354949, 43.254438132796835], [-2.891950274382221, 43.25442002713453], [-2.8918078846685225, 43.254388376147766], [-2.8916874314082857, 43.25436124809961], [-2.8915639063451186, 43.25432961466885], [-2.8913822803677807, 43.25427991657704], [-2.891287629635062, 43.25424831025986], [-2.8911214116038075, 43.254194124050656], [-2.8910206093880078, 43.25415800931306], [-2.890936345618899, 43.25413091494337], [-2.890843628318656, 43.25409480775724], [-2.8907062930599383, 43.254036146155656], [-2.890588961167564, 43.25398650821053], [-2.890510488732618, 43.253950414376824], [-2.8904273965745952, 43.25391431606419], [-2.8903531672340255, 43.25387372384198], [-2.89026893648814, 43.253828619633836], [-2.8901989340905865, 43.25379253370981], [-2.890154324512781, 43.2537654768171], [-2.8900931930685494, 43.25372039465696], [-2.89003205361344, 43.253679814800556], [-2.8899759190174112, 43.25363923972488], [-2.889920177587858, 43.25359416265521], [-2.8898709728274836, 43.25355359419564], [-2.889824078025121, 43.253513027939405], [-2.889665733617212, 43.253364297953986], [-2.890470052699536, 43.25288331998759], [-2.890923956604501, 43.253306974104476], [-2.8910150926910942, 43.25336559144741], [-2.891144334109342, 43.25342874732807], [-2.89135823982233, 43.253509992877525], [-2.8914952135243257, 43.25355514632519], [-2.891644915804419, 43.25358680463218], [-2.891841963157485, 43.25362300986086], [-2.8920205554211824, 43.25364569029802], [-2.8926733758761345, 43.25370933746261], [-2.8936096084763245, 43.25373722607632], [-2.893854135605469, 43.25370143447487], [-2.894123371566623, 43.25362514412146], [-2.895006678742749, 43.253310794113226], [-2.8954031477229205, 43.25312205882491], [-2.8960317236466535, 43.25272642546379], [-2.8969908218463427, 43.2519708990642], [-2.8975522624862684, 43.25142211702163], [-2.897934971269722, 43.25093170335071], [-2.8981572517899252, 43.25060773248481], [-2.8982664963254146, 43.250427735808756], [-2.8985346508452627, 43.25006328384117], [-2.898948043056341, 43.2496314243936], [-2.8998985860940496, 43.24864174352032], [-2.900402865659102, 43.248173939408204], [-2.9005246852639317, 43.248065989028795], [-2.9012899334577025, 43.247607412287245], [-2.901787541322106, 43.24720713147227], [-2.9023144916403973, 43.24674834297372], [-2.9034034481001076, 43.2460423986688], [-2.9037849166289535, 43.24579959320575], [-2.9043446832216016, 43.245507409824704], [-2.904701256472051, 43.24542666510435], [-2.9050069479494063, 43.245390900542915], [-2.905861956308556, 43.24534208146368], [-2.9071269553939496, 43.24526657546942], [-2.9086523874840102, 43.24529932017025], [-2.9108045385650874, 43.24556215480425], [-2.9123865823018513, 43.24585152783832], [-2.9132769924385964, 43.245811685152255], [-2.913726280180245, 43.24576249900854], [-2.9142710811638017, 43.2456773639092], [-2.91487761402371, 43.24548871809018], [-2.915473185581241, 43.2451514833565], [-2.9157244949318155, 43.244908541789485], [-2.916126214007261, 43.244454099498526], [-2.916925008578871, 43.24383335776503], [-2.917816364448849, 43.24335224985722], [-2.9195235850719743, 43.242687115328174], [-2.920881597241269, 43.24236389314482], [-2.921101014656542, 43.24235053762354], [-2.9213311631707124, 43.24237320789043], [-2.921556669800886, 43.242413883925735], [-2.9217752310196325, 43.2424680618279], [-2.921984916641505, 43.24254024267353], [-2.922182647508587, 43.242630424416255], [-2.9223668898007715, 43.242734103723066], [-2.922535718994584, 43.242851279355186], [-2.9225949332555934, 43.24290084532206], [-2.922686446393246, 43.242977447209846], [-2.922818296433361, 43.24311710918775], [-2.9229293501582903, 43.24326576170749], [-2.9230188376272697, 43.24342340431078], [-2.9230852246969365, 43.24358553366336], [-2.923091740018112, 43.243608049807015], [-2.923128879136211, 43.243765657109776], [-2.9231429174597974, 43.24392775123087], [-2.9231334698849896, 43.24409433191963], [-2.9231009324681345, 43.24425639473174], [-2.923045305032904, 43.244413939647806], [-2.9229673572655077, 43.244566967152785], [-2.922868249477289, 43.24471097563194], [-2.922748360801461, 43.24485046763865], [-2.9226096271652096, 43.24497643971447], [-2.922453582551058, 43.245093395183034], [-2.922281387442905, 43.24519683241107], [-2.922232466956494, 43.2452238132737], [-2.9215660928158527, 43.245570039376545], [-2.9214131588821393, 43.24565998144006], [-2.921274070511369, 43.24575893752861], [-2.9211499767049487, 43.24587141083506], [-2.9210424288337586, 43.24598839777663], [-2.920952191018822, 43.24611440127843], [-2.920880803073969, 43.24624942244576], [-2.920844502428984, 43.24633944434418], [-2.9207709558862773, 43.246654557956035], [-2.9207432049173234, 43.246978707940336], [-2.9207620317967926, 43.247302890171376], [-2.920783798536668, 43.247437975736126], [-2.921483573010202, 43.25047754334679], [-2.9215503428264675, 43.250644175999554], [-2.9216467207166756, 43.25083784297338], [-2.921064851611332, 43.25098151805511], [-2.9209430740771745, 43.251080485591096], [-2.92083209274077, 43.251165953427694], [-2.920711854335405, 43.25126492177941], [-2.9205376672115793, 43.25140437366007], [-2.9197276559708563, 43.25113816969153], [-2.9190069042006024, 43.250917046675276], [-2.918803149479924, 43.2509979444774], [-2.9180678740667316, 43.25127656572042], [-2.9181039283748196, 43.25137564316076], [-2.9181257389244593, 43.251474710394575], [-2.918133305646366, 43.25157376742991], [-2.918128956388789, 43.25165930889689], [-2.9181065375977266, 43.25172682804351], [-2.918075270444786, 43.25178983850237], [-2.918034378927836, 43.25185284205644], [-2.917993890421319, 43.25190233884592], [-2.9178824580080884, 43.252032826944536], [-2.917820759399364, 43.252109322519296], [-2.9177517521874288, 43.25218131045943], [-2.91767769163098, 43.25228931348677], [-2.917633292121088, 43.252383830787274], [-2.917535938159893, 43.25263589200229], [-2.917495357564734, 43.25275292372332], [-2.9174139508544816, 43.25288343299702], [-2.917393504399189, 43.25291493465118], [-2.9173676621315967, 43.25295093474926], [-2.9173375911526627, 43.25298242944048], [-2.9173032914625114, 43.2530094187216], [-2.9172651419478095, 43.25303640520803], [-2.9172231487012983, 43.25305888655521], [-2.917178466667076, 43.25307686359513], [-2.917168451093541, 43.25308135868864], [-2.917064457696371, 43.25311730210295], [-2.917104782884311, 43.253189368852205], [-2.917360362611654, 43.25350922025787], [-2.9176270670829685, 43.25386059549766], [-2.917780030511949, 43.254054306350746], [-2.91784112826304, 43.254139894789716], [-2.9178784235438155, 43.25417594032334], [-2.917964930705989, 43.254261546932305], [-2.91826258559906, 43.25450488658036], [-2.9186048177781583, 43.25481128998342], [-2.918633650114532, 43.254842826901005], [-2.918658247579465, 43.254874360800024], [-2.9186805291316107, 43.25491039539098], [-2.9187004887823846, 43.25495543301457], [-2.9187115996394515, 43.25499596200318], [-2.9187192336067964, 43.25504549320723], [-2.91875047972822, 43.25528864195269], [-2.9186003502044584, 43.25527502819421], [-2.918464850499096, 43.255261424667005], [-2.9179783033757962, 43.2551980440384], [-2.9177207854583904, 43.25516634270346], [-2.916995245173069, 43.25503975293688], [-2.916909801425092, 43.25502168153305], [-2.9159621989606723, 43.25484089557854], [-2.915681236446342, 43.254782158362616], [-2.9148752985792052, 43.254614974760074], [-2.914773680227955, 43.254601392066355], [-2.9146970233756524, 43.254632851337476], [-2.9142539759752752, 43.25485313495186], [-2.91374695312996, 43.25511839205767], [-2.913031496674877, 43.25548704252719], [-2.9126150146979115, 43.25569833526682], [-2.912681279066413, 43.2556668694648], [-2.91136822690636, 43.25634571342623], [-2.9113482330207296, 43.25632768856344], [-2.9113120952835616, 43.25629164181212], [-2.9111517990783327, 43.25612042840645], [-2.9110530051093537, 43.25601679775006], [-2.910873865193022, 43.25583206226481], [-2.9107450884778943, 43.25569689157262], [-2.9105828704445735, 43.25552567585273], [-2.910422983081435, 43.255340954692926], [-2.91025347847833, 43.25515172341574], [-2.9100762883441527, 43.25495348115284], [-2.9099394636145592, 43.2547957914881], [-2.9099125607416023, 43.25476425389889], [-2.909645431853968, 43.25446688852586], [-2.909364479436094, 43.25414699984117], [-2.909175387321131, 43.25393073734043], [-2.908967074187707, 43.25369644984682], [-2.9086780509743777, 43.25337205066616], [-2.9084082460618474, 43.25307017785142], [-2.908194562631816, 43.252826879925934], [-2.9080304683437705, 43.25263314726918], [-2.907947847515829, 43.25253402921572], [-2.9076811569013734, 43.25221414776559], [-2.9074102343832013, 43.25189426225089], [-2.9071892719374803, 43.2516329471218], [-2.9070620726265197, 43.25148426642665], [-2.9069683113799463, 43.25137163155566], [-2.906473360244709, 43.25079042525558], [-2.90628814527223, 43.2505696586799], [-2.906037234572096, 43.25026329325634], [-2.9058835271349244, 43.25008307300759], [-2.905817032993081, 43.250015483070555], [-2.905798967614604, 43.24999745880598], [-2.9057662945879863, 43.24996591546393], [-2.9057047843404145, 43.249911836608305], [-2.9056363449345364, 43.2498577520036], [-2.9056186576631906, 43.24984423036954], [-2.9055671287761804, 43.24980816906384], [-2.905503288230569, 43.24976759521775], [-2.9054402107216193, 43.24973152431415], [-2.9053925176804625, 43.24970447079517], [-2.9053756004238753, 43.249690949759994], [-2.905314825843192, 43.24965938303941], [-2.905272508369196, 43.249641338614765], [-2.905085159704855, 43.249560141064954], [-2.904887774636838, 43.24949694425464], [-2.9046818998697574, 43.24944724707329], [-2.904646882857912, 43.249438213195106], [-2.904433274163319, 43.24941102085884], [-2.9042165577889154, 43.249401834913364], [-2.9041919205795077, 43.249401814282166], [-2.903999820267269, 43.24940615558339], [-2.9038408120172914, 43.24941952907905], [-2.9036332636780138, 43.24945537321372], [-2.9034318530684975, 43.249504729196474], [-2.903238889814509, 43.24956759901298], [-2.903075553638161, 43.2496394983046], [-2.902947654690233, 43.24969792038889], [-2.9026513349819196, 43.24987776251671], [-2.902304540527721, 43.250084574860836], [-2.901881848400605, 43.25032733985098], [-2.901735439718285, 43.25040375408381], [-2.901476875762597, 43.25056111383676], [-2.9013624325698606, 43.250628550420636], [-2.901258383166545, 43.25069599586112], [-2.901203275022308, 43.250731967056076], [-2.90109497607988, 43.25080841337015], [-2.9009496690868133, 43.25091634397017], [-2.900880687179453, 43.25096130768818], [-2.900836757208418, 43.25098828369636], [-2.9007978317633696, 43.25101526402749], [-2.900755441583759, 43.251042241339455], [-2.9007076618307215, 43.251069213957734], [-2.900675672999975, 43.25109169792089], [-2.9005535359071097, 43.25115462466207], [-2.9003990172482585, 43.251244537161924], [-2.9001943860605075, 43.25137492685884]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:5", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "5", "alternateName": "wifi_zone", "description": "D4 SUR", "val": 33}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.923756880220383, 43.250708700755325], [-2.9239342705634166, 43.250771851703504], [-2.9240708549171943, 43.25083497529879], [-2.924287082903565, 43.25093417024505], [-2.9244983292687317, 43.25101535210597], [-2.9250639654632673, 43.251231836670755], [-2.925299455910024, 43.25132203762006], [-2.924415403929516, 43.2526991748034], [-2.927944181579704, 43.25394409916106], [-2.9282181112784147, 43.25409735108818], [-2.928499251291346, 43.25401198261038], [-2.9287884647154687, 43.253935623155364], [-2.9293249824938905, 43.25473287080731], [-2.929622751031033, 43.25458447703414], [-2.9299855623782154, 43.25411645586596], [-2.930347685724479, 43.2542472449119], [-2.93057554698564, 43.2542924068661], [-2.9307186033782577, 43.25511192019129], [-2.930716068835999, 43.255310021771805], [-2.9306565141298573, 43.255544107541745], [-2.9306352474012707, 43.25562513682674], [-2.9306120454103435, 43.25571516961906], [-2.930730152555162, 43.255791781030325], [-2.930937219832924, 43.25584593434518], [-2.931108523305994, 43.25586404700846], [-2.931477350780275, 43.25586426853031], [-2.931709869065414, 43.2558824169443], [-2.9317866705993776, 43.256404734531806], [-2.931822564317877, 43.25667039413657], [-2.9321470164015295, 43.25676513623354], [-2.9324722594000776, 43.25684186850668], [-2.932280268197518, 43.25707587680508], [-2.931770556762647, 43.25704405753515], [-2.9312720010364783, 43.257363425370976], [-2.9304650728832624, 43.25732241664922], [-2.930080050887179, 43.25733568899135], [-2.929676137490757, 43.25737146013482], [-2.9293811650148935, 43.257420804181066], [-2.9288274325513965, 43.2578301740951], [-2.928111828601311, 43.25837450992183], [-2.927854796256827, 43.258567948768736], [-2.927459028397417, 43.258869355315284], [-2.9269962096831956, 43.259215741109436], [-2.926736475130695, 43.25940917568991], [-2.926674422131852, 43.25946316401354], [-2.9266358822923397, 43.25949465568438], [-2.926586160593648, 43.25953964718685], [-2.9263965027385783, 43.259728623595265], [-2.9258240733021443, 43.26028204163642], [-2.9256074424956418, 43.26048450623656], [-2.9250764372754596, 43.26021401931562], [-2.9253200040127925, 43.260025080318385], [-2.9263208547670807, 43.25924232216274], [-2.9267004545507285, 43.25894541155614], [-2.926821484603357, 43.25883293052829], [-2.9269151727374756, 43.25872493424585], [-2.926997326236704, 43.258603423501675], [-2.9270015667756866, 43.25859892386694], [-2.92706215916107, 43.25847739931271], [-2.9271089069479337, 43.258342358879894], [-2.927135248886959, 43.258207305428876], [-2.927142719790333, 43.25807674229256], [-2.927130945507984, 43.257941664553904], [-2.927098771141501, 43.2578020714707], [-2.9270500254249305, 43.25767597483334], [-2.9269774147965593, 43.25754536059936], [-2.926531482231508, 43.256982282338555], [-2.9258185695291257, 43.25625244279151], [-2.9256786322109285, 43.25608576527962], [-2.925281748417684, 43.25572982164677], [-2.9247262682648034, 43.255360265336364], [-2.9242441887395194, 43.25510331352733], [-2.9237324464963317, 43.25486434927832], [-2.9230689487204247, 43.25468381124641], [-2.92285807089115, 43.25460712938974], [-2.92273112686145, 43.25452600152348], [-2.9226246160522913, 43.254422375617295], [-2.9225515995213294, 43.25431877229137], [-2.9224436808399528, 43.254111591340695], [-2.9223615454414995, 43.25391343247135], [-2.9222882995500528, 43.25368826550734], [-2.922250466828361, 43.253467624906634], [-2.922231889147539, 43.25324249503138], [-2.922244816902395, 43.253066912360005], [-2.9222765741784325, 43.25291835654838], [-2.9224283565381652, 43.252535760209554], [-2.9225719612842482, 43.25222519564278], [-2.922626407958986, 43.25209466445067], [-2.9226392659495235, 43.251973109804815], [-2.922637897020209, 43.25183803849622], [-2.9226268924206042, 43.2517119653601], [-2.9225889285377273, 43.25159487867288], [-2.9225236433683737, 43.25146876877734], [-2.9224302443174426, 43.251351644474916], [-2.922328664030361, 43.25131105443139], [-2.9222155119089703, 43.251288465816], [-2.9220804281564736, 43.25125685745906], [-2.9219580887305634, 43.25119374121091], [-2.921818483610707, 43.25108558956554], [-2.921704327144909, 43.25094593874048], [-2.9216467207166756, 43.25083784297338], [-2.9215503428264675, 43.250644175999554], [-2.921483573010202, 43.25047754334679], [-2.920783798536668, 43.247437975736126], [-2.9207620317967926, 43.247302890171376], [-2.9207432049173234, 43.246978707940336], [-2.9207709558862773, 43.246654557956035], [-2.920844502428984, 43.24633944434418], [-2.920880803073969, 43.24624942244576], [-2.920952191018822, 43.24611440127843], [-2.9210424288337586, 43.24598839777663], [-2.9211499767049487, 43.24587141083506], [-2.921274070511369, 43.24575893752861], [-2.9214131588821393, 43.24565998144006], [-2.9215660928158527, 43.245570039376545], [-2.922232466956494, 43.2452238132737], [-2.922281387442905, 43.24519683241107], [-2.922453582551058, 43.245093395183034], [-2.9226096271652096, 43.24497643971447], [-2.922748360801461, 43.24485046763865], [-2.922868249477289, 43.24471097563194], [-2.9229673572655077, 43.244566967152785], [-2.923045305032904, 43.244413939647806], [-2.9231009324681345, 43.24425639473174], [-2.9231334698849896, 43.24409433191963], [-2.9231429174597974, 43.24392775123087], [-2.923128879136211, 43.243765657109776], [-2.923091740018112, 43.243608049807015], [-2.9230852246969365, 43.24358553366336], [-2.9230188376272697, 43.24342340431078], [-2.9229293501582903, 43.24326576170749], [-2.922818296433361, 43.24311710918775], [-2.922686446393246, 43.242977447209846], [-2.9225949332555934, 43.24290084532206], [-2.922535718994584, 43.242851279355186], [-2.9223668898007715, 43.242734103723066], [-2.922182647508587, 43.242630424416255], [-2.921984916641505, 43.24254024267353], [-2.9217752310196325, 43.2424680618279], [-2.921556669800886, 43.242413883925735], [-2.9213311631707124, 43.24237320789043], [-2.921101014656542, 43.24235053762354], [-2.920881597241269, 43.24236389314482], [-2.9199225587885493, 43.24076939244735], [-2.9204686562532323, 43.24023849550388], [-2.9204777548560097, 43.240049402903395], [-2.9202509470870193, 43.23983313195195], [-2.920070143522756, 43.23946381259616], [-2.9201406085236, 43.23944135002831], [-2.9202507233967254, 43.23941441270841], [-2.9203793189240908, 43.239382985790265], [-2.9205040595332483, 43.23935605840467], [-2.9206264789851994, 43.23933813398446], [-2.920746204113919, 43.23932020756666], [-2.9208674629179674, 43.2393067844404], [-2.920992955491144, 43.23929336410962], [-2.9211161328441224, 43.23928444440076], [-2.9212281482697073, 43.23927551687401], [-2.921332454222883, 43.239275588648475], [-2.921425213391897, 43.239275652397545], [-2.92154876398678, 43.23927573719129], [-2.9216742332791434, 43.23928032552139], [-2.921797002582251, 43.23928941422424], [-2.9219197719220436, 43.23929850279537], [-2.922042144925334, 43.239316595676705], [-2.9221649086254655, 43.23933018633691], [-2.9222911249761383, 43.23935278392272], [-2.9224065644035497, 43.23937537406005], [-2.922592026053287, 43.23942052326251], [-2.9227051506655526, 43.23944761388789], [-2.9228190394834557, 43.23947920727278], [-2.9229282983376956, 43.23951980213674], [-2.9230410270553246, 43.239555896874535], [-2.9231522106684658, 43.23959649281894], [-2.923259539827745, 43.23964158842523], [-2.9233645541301074, 43.23969118473556], [-2.923466874332552, 43.239740779146736], [-2.9235680400128126, 43.239790372694635], [-2.9236661210655113, 43.23984446645007], [-2.923763047601516, 43.23989855935155], [-2.923859583805571, 43.23995715426615], [-2.9239526561171814, 43.240015746796104], [-2.924136101401859, 43.24013743219246], [-2.9243133890321955, 43.240259113218386], [-2.924362232223591, 43.240290662009805], [-2.9244510660660783, 43.24035375368371], [-2.9245383604917734, 43.24041684427252], [-2.924628734301035, 43.2404799368229], [-2.9247160346336427, 43.24053852492358], [-2.9248064088061043, 43.24060161733252], [-2.9248760095424227, 43.24065569131968], [-2.924965234872458, 43.24071428049251], [-2.925054839757243, 43.240777372198735], [-2.9251417505080397, 43.24084046207115], [-2.9252309708567865, 43.240903553386424], [-2.9253178819686774, 43.240966643123926], [-2.9254074875871905, 43.24102973455167], [-2.925492084148414, 43.241097325000894], [-2.9255778465710947, 43.241155911436046], [-2.9256612887798426, 43.24122350100771], [-2.9257420368342433, 43.24129108876895], [-2.9258258588530195, 43.24136318082001], [-2.9259039074726365, 43.241435269069456], [-2.9259781126578703, 43.24150285242358], [-2.926056546542535, 43.24157494081644], [-2.9261257373853558, 43.241651525540426], [-2.9261949338362, 43.24172360787099], [-2.926258736297912, 43.24180018903608], [-2.926322918403232, 43.241881272763116], [-2.926380942122285, 43.24196235249004], [-2.9264382015914627, 43.24203892934106], [-2.9264892972189718, 43.24212000455563], [-2.9265876343563137, 43.24228665479337], [-2.9266306418269266, 43.24237222710431], [-2.926676723321527, 43.242462303721716], [-2.926713187511207, 43.2425478718049], [-2.9267461875767795, 43.24263343765705], [-2.9267772631618603, 43.24271900226661], [-2.9268052541230953, 43.24280906724619], [-2.9268332397786403, 43.24290363456735], [-2.9268527681350958, 43.2429891917664], [-2.926870371962137, 43.24307474773061], [-2.926886815702235, 43.24316480530245], [-2.926899795229352, 43.2432548606569], [-2.9269085460737325, 43.243340410953884], [-2.92691953649389, 43.243484493265996], [-2.927242104279146, 43.24348019652304], [-2.927303739024639, 43.243763883924665], [-2.9273684590724596, 43.244043070885574], [-2.927429464071767, 43.244209696635565], [-2.9274901378768976, 43.244331298617325], [-2.927608123167695, 43.24448895566186], [-2.9277192336169073, 43.244601584718005], [-2.927812300747096, 43.2446736811133], [-2.927750242390538, 43.2447456795652], [-2.92769860356041, 43.24479517280963], [-2.927669322427382, 43.24481766605839], [-2.9276072530934454, 43.24489866912726], [-2.9275216922639276, 43.24498866198353], [-2.9274526884895593, 43.245074162924], [-2.927341695055765, 43.245186651268696], [-2.9273062547202637, 43.24520914051083], [-2.927260806169193, 43.24523162337867], [-2.927228840871021, 43.245245110103404], [-2.9271941810450146, 43.24525859510433], [-2.9271533676786747, 43.24526757382507], [-2.9270994666583743, 43.24527654419178], [-2.927049810604986, 43.24527651253744], [-2.9270055435807154, 43.24527648430026], [-2.926958202490578, 43.24527195173189], [-2.9269250984575685, 43.24527193059049], [-2.9269023821678815, 43.245276418428894], [-2.9268788906284504, 43.245285408118626], [-2.9268657975985946, 43.24528990210037], [-2.9268496035718354, 43.24531240350312], [-2.9268379802124262, 43.24537542898838], [-2.92678401973806, 43.24543392503205], [-2.926680343534976, 43.24554191505957], [-2.926653322648711, 43.2456049306539], [-2.926655946957487, 43.245663462900424], [-2.9267186154921547, 43.245726535976495], [-2.9268563893562893, 43.24575363825537], [-2.926968426562513, 43.24573570043096], [-2.92714052941509, 43.24570429371512], [-2.927225204030802, 43.24571335231482], [-2.9272863602448633, 43.24575391236241], [-2.9273016826346714, 43.24581695501407], [-2.927266947507955, 43.24589347290041], [-2.9272056732227343, 43.24595196448737], [-2.9271097707507234, 43.24599692692987], [-2.927032393405194, 43.24600137995226], [-2.926975422994153, 43.246001343599936], [-2.9267563948608037, 43.24600120357573], [-2.926624763232191, 43.245987612169806], [-2.9265627616355148, 43.24601008413875], [-2.926528074173685, 43.24604608067206], [-2.92653763804702, 43.2460956126721], [-2.9266180247758884, 43.24614969247387], [-2.9267677271809145, 43.24618130485937], [-2.926979372257103, 43.24623997070758], [-2.9272107031394263, 43.24625362518542], [-2.927450941105372, 43.24622226133856], [-2.927712002658745, 43.246159393692736], [-2.927873365299396, 43.2460964626346], [-2.928052076196047, 43.24601103050635], [-2.9282181154662656, 43.24589857604198], [-2.9282916643754615, 43.24587611041418], [-2.9283801940203373, 43.245880668224274], [-2.928700228447436, 43.2460789715734], [-2.9278724332198904, 43.246560204152004], [-2.927049217399308, 43.247063945368964], [-2.9259478558766063, 43.24773408783447], [-2.925356710709265, 43.247940811712986], [-2.9250348008141187, 43.24801714115275], [-2.9245277410713633, 43.24808434298649], [-2.9241100665742987, 43.24808856901672], [-2.9237320697886138, 43.24807030823619], [-2.9236348684594673, 43.248533985332934], [-2.924033899398656, 43.24897548117034], [-2.924050427958222, 43.249614825584715], [-2.924119446518928, 43.24983548642983], [-2.9243393033028267, 43.25011027525761], [-2.923756880220383, 43.250708700755325]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:6", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "6", "alternateName": "wifi_zone", "description": "RIA ESTE", "val": 3}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.9349257486854365, 43.250103280134695], [-2.934795353265386, 43.25036434203971], [-2.934716960584266, 43.250593917042075], [-2.934631522370404, 43.25093154428325], [-2.934583058927456, 43.25161137092708], [-2.9345849789618446, 43.251615874371424], [-2.934579824954645, 43.251755444160736], [-2.9345774476568542, 43.251818475648854], [-2.9345750944510143, 43.25185899541904], [-2.934572341810824, 43.25191302199893], [-2.934563015705661, 43.251994058894944], [-2.934553304602116, 43.252075095568784], [-2.934536630184244, 43.25218764467779], [-2.934525773736599, 43.252259675999326], [-2.9345160963077177, 43.25230919626464], [-2.9345040945371665, 43.25237222223535], [-2.9344913324415094, 43.25242624307722], [-2.9344804952035997, 43.252480265019614], [-2.934465033401917, 43.25253878665691], [-2.9344580652010106, 43.25257480143001], [-2.9344476418576133, 43.252601809531356], [-2.934437598652357, 43.252633320195116], [-2.9344163572784208, 43.25269634085727], [-2.9343985951586844, 43.252745856473574], [-2.9343781381637264, 43.25279537054081], [-2.9343503568743703, 43.25285388509177], [-2.934339933435643, 43.25288089318194], [-2.93432025598233, 43.252921402994346], [-2.9342650490497424, 43.25306544633416], [-2.934256170299926, 43.25308795295806], [-2.934236093210413, 43.25314196956044], [-2.9341419106047293, 43.253371534978015], [-2.9340770539974894, 43.25353808438433], [-2.9339323058443734, 43.25388918376808], [-2.93387247729049, 43.254033224224585], [-2.933799904876181, 43.254213276026874], [-2.9336566983716956, 43.25455987356815], [-2.9336451193666195, 43.254586880916705], [-2.933512340164837, 43.254901967895776], [-2.9334208568801654, 43.25512252952999], [-2.9333204738584144, 43.25538360698616], [-2.9333077297380084, 43.25541961830426], [-2.933296140586976, 43.2554556302942], [-2.93328144688549, 43.255514152188695], [-2.9332671430677077, 43.255568171964896], [-2.9332566891831293, 43.255622193985054], [-2.9332497100811072, 43.255667213345], [-2.933246580932982, 43.2557122349508], [-2.9329449999570203, 43.256180302239464], [-2.9327841828571652, 43.25642783670793], [-2.9325636344161436, 43.25672486150923], [-2.9324722594000776, 43.25684186850668], [-2.9321470164015295, 43.25676513623354], [-2.931822564317877, 43.25667039413657], [-2.9317866705993776, 43.256404734531806], [-2.931709869065414, 43.2558824169443], [-2.931477350780275, 43.25586426853031], [-2.931108523305994, 43.25586404700846], [-2.930937219832924, 43.25584593434518], [-2.930730152555162, 43.255791781030325], [-2.9306120454103435, 43.25571516961906], [-2.9306352474012707, 43.25562513682674], [-2.9306565141298573, 43.255544107541745], [-2.930716068835999, 43.255310021771805], [-2.9307186033782577, 43.25511192019129], [-2.93057554698564, 43.2542924068661], [-2.930347685724479, 43.2542472449119], [-2.9299855623782154, 43.25411645586596], [-2.929622751031033, 43.25458447703414], [-2.9293249824938905, 43.25473287080731], [-2.9287884647154687, 43.253935623155364], [-2.928499251291346, 43.25401198261038], [-2.9282181112784147, 43.25409735108818], [-2.927944181579704, 43.25394409916106], [-2.924415403929516, 43.2526991748034], [-2.925299455910024, 43.25132203762006], [-2.9250639654632673, 43.251231836670755], [-2.9244983292687317, 43.25101535210597], [-2.924287082903565, 43.25093417024505], [-2.9240708549171943, 43.25083497529879], [-2.9239342705634166, 43.250771851703504], [-2.923756880220383, 43.250708700755325], [-2.9243393033028267, 43.25011027525761], [-2.924119446518928, 43.24983548642983], [-2.924050427958222, 43.249614825584715], [-2.924033899398656, 43.24897548117034], [-2.9236348684594673, 43.248533985332934], [-2.9237320697886138, 43.24807030823619], [-2.9241100665742987, 43.24808856901672], [-2.9245277410713633, 43.24808434298649], [-2.9250348008141187, 43.24801714115275], [-2.925356710709265, 43.247940811712986], [-2.9259478558766063, 43.24773408783447], [-2.927049217399308, 43.247063945368964], [-2.9278724332198904, 43.246560204152004], [-2.928700228447436, 43.2460789715734], [-2.931303714011343, 43.24456327219973], [-2.9319401142536097, 43.24549563936809], [-2.9324372094457782, 43.246058727905194], [-2.9325037337139084, 43.24612180008536], [-2.9329563738291298, 43.24651377075431], [-2.9334621808041965, 43.246869751740945], [-2.934016155280282, 43.24718523711345], [-2.9346121426084686, 43.24745572031129], [-2.934884568165114, 43.247563932092994], [-2.935370587243501, 43.24772178993889], [-2.9358762836424246, 43.24783913560293], [-2.9363962625230133, 43.247920468176574], [-2.936392375570317, 43.2479564848099], [-2.9363505808954846, 43.24816807197649], [-2.93627875981016, 43.248379642398596], [-2.936177306355931, 43.248582191541914], [-2.936046990188857, 43.24877571975878], [-2.935909762906969, 43.24895123455486], [-2.935352091851853, 43.249558737779374], [-2.9352838780740886, 43.24963073677803], [-2.9352357010634265, 43.2496847376887], [-2.935158994031415, 43.249779243541916], [-2.935118131021992, 43.24983324854708], [-2.9350730286007467, 43.24989175347885], [-2.9350182829438913, 43.24996826230575], [-2.9349720158657964, 43.25003577123], [-2.934927678284078, 43.25009877888474], [-2.9349257486854365, 43.250103280134695]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:7", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "7", "alternateName": "wifi_zone", "description": "D5 OESTE", "val": 0}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.9204569229363293, 43.2649338526482], [-2.920453136877643, 43.26488432432163], [-2.9205182988845233, 43.26481683457767], [-2.9205858061819625, 43.26472233240828], [-2.9206013370352246, 43.26462329179717], [-2.920584126726357, 43.264533233129036], [-2.9204175693365775, 43.264402549629175], [-2.9202471327699904, 43.264294374860945], [-2.9201848075449406, 43.26425381036522], [-2.920076323537223, 43.26417719490365], [-2.9199036015204722, 43.26405100867673], [-2.919868585695967, 43.26403297480789], [-2.919705816590592, 43.26395181861648], [-2.9195909123467794, 43.263780649114196], [-2.919503258036004, 43.26367703372204], [-2.919408667258321, 43.263577915711096], [-2.9193556081870824, 43.263519347938775], [-2.919333323104824, 43.263483313530905], [-2.91934300867482, 43.26343829699099], [-2.919399758778382, 43.2633257785653], [-2.9194899659323124, 43.26324480002105], [-2.9196621989012352, 43.263154874365675], [-2.9198840310167875, 43.263119011244065], [-2.9200866284017457, 43.26306962724487], [-2.9202391170538338, 43.26306072899463], [-2.9203499975874165, 43.26306981092682], [-2.9204631591044703, 43.26310140602373], [-2.9205401208344828, 43.263137478206396], [-2.9206355354925218, 43.26319607482681], [-2.920601371942462, 43.263115009050075], [-2.920575650152219, 43.26305646080989], [-2.920546089699155, 43.26298890522253], [-2.920508461008388, 43.26290783700829], [-2.9204842795592674, 43.2628492898158], [-2.9205524260117603, 43.262853839501965], [-2.92062980761777, 43.26286289789297], [-2.920700252657419, 43.26287645376071], [-2.9207884504996584, 43.26285850551737], [-2.9208435872423886, 43.262800013296456], [-2.9208467142332335, 43.262763996760235], [-2.920849852885632, 43.26271897555672], [-2.9208491178008265, 43.262691961022796], [-2.920850692957397, 43.262664948087235], [-2.9210008411417063, 43.26267855888936], [-2.9211313813973923, 43.262669644289545], [-2.921163730580035, 43.26266516425049], [-2.921245014671754, 43.26263370387669], [-2.9213151441242053, 43.26259323109757], [-2.9213864459812102, 43.2625392520678], [-2.9214176862842867, 43.26249875249314], [-2.921444696907571, 43.26245374766743], [-2.92146942040759, 43.262390731913705], [-2.921474868810293, 43.26234571227565], [-2.9214453713806003, 43.26222863123842], [-2.921421235624591, 43.26213406556439], [-2.921403984261149, 43.262075523318494], [-2.921359849946395, 43.2619629345344], [-2.921255812805894, 43.26172423904018], [-2.9211732279453155, 43.261571102657015], [-2.9210622034608864, 43.26137742554159], [-2.9209126882558905, 43.26117471702996], [-2.9208204500798916, 43.26104408539753], [-2.9207617215059742, 43.260904472226116], [-2.9207452470172965, 43.26084142806743], [-2.9207249631702616, 43.260746864892255], [-2.9207262175571307, 43.26067032599637], [-2.9207357677707884, 43.26043170863374], [-2.9207358787414734, 43.26034616426239], [-2.9207198478714163, 43.260238097006464], [-2.920694949815326, 43.26013902827845], [-2.9206404284141154, 43.2600219296377], [-2.920456482780189, 43.25965261001508], [-2.920571353687646, 43.25954913601221], [-2.9206002653264638, 43.259522142042734], [-2.9206272518389933, 43.259495146730124], [-2.920740978782582, 43.259382667079905], [-2.920887087685173, 43.259238693331746], [-2.92095726006658, 43.25916220205456], [-2.9210154734487466, 43.25910371183837], [-2.9210756118060153, 43.25904522292005], [-2.921322932052993, 43.25893733711501], [-2.920917561532448, 43.25859938204563], [-2.921011778605211, 43.25838783711893], [-2.9210785545163627, 43.25825731531799], [-2.9211117934519484, 43.25815828674053], [-2.921370883173295, 43.258176474483584], [-2.921307400257498, 43.257843257577505], [-2.921408009402068, 43.25774877757254], [-2.921564669854456, 43.25747874460005], [-2.9216496832156706, 43.25723567640199], [-2.9215212300075306, 43.25712753214482], [-2.921462089646828, 43.25701043066504], [-2.9214809606523104, 43.25700594127733], [-2.921512927588735, 43.256996958530365], [-2.921521776908331, 43.25700146694365], [-2.9215691555688927, 43.25698349006868], [-2.9216000136773665, 43.256938487800326], [-2.921620447765331, 43.256915990092295], [-2.921626619376284, 43.25690698963645], [-2.9217438796386865, 43.25673598090892], [-2.9218057393266332, 43.25653341780365], [-2.9218296670113677, 43.2564884107323], [-2.9218909052232234, 43.256470443192285], [-2.9219290893545113, 43.25641644114801], [-2.922063730232394, 43.25620042051131], [-2.9218240195939353, 43.25608769837919], [-2.9219334684996072, 43.25600222860899], [-2.9222251871392966, 43.255786314852905], [-2.9225908969795724, 43.25551191997496], [-2.922652707029322, 43.255345375081376], [-2.9230689487204247, 43.25468381124641], [-2.9237324464963317, 43.25486434927832], [-2.9242441887395194, 43.25510331352733], [-2.9247262682648034, 43.255360265336364], [-2.925281748417684, 43.25572982164677], [-2.9256786322109285, 43.25608576527962], [-2.9258185695291257, 43.25625244279151], [-2.926531482231508, 43.256982282338555], [-2.9269774147965593, 43.25754536059936], [-2.9270500254249305, 43.25767597483334], [-2.927098771141501, 43.2578020714707], [-2.927130945507984, 43.257941664553904], [-2.927142719790333, 43.25807674229256], [-2.927135248886959, 43.258207305428876], [-2.9271089069479337, 43.258342358879894], [-2.92706215916107, 43.25847739931271], [-2.9270015667756866, 43.25859892386694], [-2.926997326236704, 43.258603423501675], [-2.9269151727374756, 43.25872493424585], [-2.926821484603357, 43.25883293052829], [-2.9267004545507285, 43.25894541155614], [-2.9263208547670807, 43.25924232216274], [-2.9253200040127925, 43.260025080318385], [-2.9250764372754596, 43.26021401931562], [-2.923928374549274, 43.26169453113697], [-2.923757740052088, 43.26205460459646], [-2.923630725452632, 43.26232466015076], [-2.9236403594358955, 43.26262632321138], [-2.9236699763121528, 43.2629595159524], [-2.9237586232434607, 43.26319819894403], [-2.923817835733968, 43.263265773450165], [-2.9233974536149234, 43.26350411658044], [-2.923390902196975, 43.2635086145301], [-2.9233839713786187, 43.26350860988833], [-2.9233778050046886, 43.26351310809511], [-2.923372408720892, 43.2635176068174], [-2.9233677768801534, 43.2635266083885], [-2.923363535731242, 43.26353110788417], [-2.923360449718609, 43.26353560815362], [-2.923358133796845, 43.26354010893892], [-2.9233565823180476, 43.26354911257324], [-2.9233558065784764, 43.26355361439041], [-2.9233561859761177, 43.26355811698151], [-2.9233569447715677, 43.26356712216368], [-2.9233592493986817, 43.26357162604463], [-2.9233619390720236, 43.263576130183495], [-2.923362318470255, 43.26358063277454], [-2.923366157634681, 43.263589640020264], [-2.92336807157008, 43.26359864597616], [-2.9233688247205913, 43.263612153491266], [-2.9233680433338716, 43.263621157641516], [-2.9233657217619977, 43.26363016075996], [-2.923361854356586, 43.26364366517956], [-2.9233564524119666, 43.263652666234016], [-2.9233498953264676, 43.26366166651423], [-2.9233417980530945, 43.263670665761936], [-2.9233325456377104, 43.26367966423487], [-2.9233221437304446, 43.26368415959973], [-2.923310581030362, 43.26369315652226], [-2.92329825388591, 43.26369765059426], [-2.923285156646281, 43.26370214414849], [-2.923271289311305, 43.26370663718468], [-2.92325703692755, 43.263711129960875], [-2.9232427901981963, 43.263711120402306], [-2.9232281584221105, 43.26371111058354], [-2.9232135266460313, 43.26371110076292], [-2.92319889486996, 43.26371109094041], [-2.9231846538014117, 43.26370657904165], [-2.923171182828331, 43.26370206765829], [-2.923158096903896, 43.26369755653201], [-2.923156941763937, 43.26369755575605], [-2.923151941820634, 43.263693050060475], [-2.923146936214516, 43.26369304669766], [-2.9231411605151503, 43.26369304281723], [-2.9231357755267857, 43.26368853686225], [-2.923129999827847, 43.263688532981234], [-2.92312422412891, 43.26368852909995], [-2.923118448429974, 43.26368852521835], [-2.9231126670649616, 43.263693023669454], [-2.9231068913656024, 43.26369301978728], [-2.9231015007128685, 43.26369301616367], [-2.9230964894394877, 43.26369751513163], [-2.9230926389729666, 43.263697512543], [-2.9230783809096295, 43.2637065076299], [-2.9230698985435732, 43.26371550659932], [-2.9230452271953333, 43.26373800168887], [-2.9229715924124164, 43.26380998951711], [-2.9229449787169077, 43.26384599028675], [-2.922908727432393, 43.26389098922873], [-2.922894837298225, 43.263913491550234], [-2.922880947153816, 43.263935993869964], [-2.9228686028764606, 43.263953994893676], [-2.922855097761572, 43.2639764974697], [-2.9228384895029436, 43.26401700729709], [-2.922831926615169, 43.26403050987962], [-2.922818795143099, 43.26406201737611], [-2.9228114564597085, 43.264080021770404], [-2.922799842406578, 43.26412953963413], [-2.922791722230852, 43.26415654817238], [-2.922781274677859, 43.26419706214809], [-2.9227801138377796, 43.264201563700865], [-2.922772712522551, 43.26426909374981], [-2.92276570762508, 43.26432761939254], [-2.922767230752576, 43.26434112742971], [-2.9227666237248724, 43.26451671813181], [-2.9227409882532434, 43.264692291927496], [-2.9227321035645004, 43.26471479760652], [-2.9226981334427067, 43.26478230969532], [-2.922654151844065, 43.264849815004496], [-2.9226009345481256, 43.26491281171158], [-2.9225388665928125, 43.26497130006456], [-2.9224359655354233, 43.26504326771091], [-2.9223292365761835, 43.265097223322115], [-2.9221778237492413, 43.26516465545014], [-2.9217467558985537, 43.26531293845382], [-2.9214582267859295, 43.26540728975955], [-2.9211234781962663, 43.26551061314655], [-2.9210980527344006, 43.26551960028298], [-2.921072253840518, 43.265519582485425], [-2.921045679011653, 43.26552406648184], [-2.9210194950577715, 43.26552404840662], [-2.920992931868431, 43.26551952772816], [-2.920967138799205, 43.265515007575594], [-2.920942115849922, 43.26551048794945], [-2.920917868848599, 43.26550146651891], [-2.920895162086221, 43.265492446148336], [-2.9208739955621055, 43.265483426838635], [-2.9208543751084277, 43.26546990625935], [-2.9208366857861825, 43.26545188467769], [-2.920821300984526, 43.26543836702376], [-2.9208082323710376, 43.26542034863581], [-2.920797474109506, 43.26540233184594], [-2.920793635210395, 43.265393324517085], [-2.9207878827015903, 43.26537531119212], [-2.9207848314337777, 43.26535279740195], [-2.920784860623574, 43.265330285744824], [-2.920787970267576, 43.26530777622073], [-2.920794154525116, 43.265289771160866], [-2.9208030400114793, 43.26526726563524], [-2.9208150001066286, 43.26524926457274], [-2.920829655588811, 43.26523126537437], [-2.920846621399461, 43.26521326777274], [-2.9208662767606812, 43.265199774364675], [-2.92088786322363, 43.26518177995316], [-2.920911363296029, 43.265172791531754], [-2.921859400583662, 43.26484927488034], [-2.9218728832278362, 43.26484478175352], [-2.921902164588646, 43.264831294740425], [-2.9219291356143207, 43.26481780614309], [-2.9219545664136204, 43.26480431648854], [-2.921977692630438, 43.26478632292057], [-2.921998123459895, 43.26476832750998], [-2.922015473851091, 43.26475032999571], [-2.9220301346059725, 43.26472782830959], [-2.9220417149260904, 43.264705324522225], [-2.9220502148148464, 43.2646828186346], [-2.922055249222933, 43.26466031038499], [-2.9220568238982545, 43.264633297441776], [-2.9220549273566245, 43.26461078446929], [-2.92204956534607, 43.264588269135295], [-2.92204112292254, 43.264565751701696], [-2.9220395884594135, 43.26456124831985], [-2.922026910471895, 43.264538727998435], [-2.922011916435538, 43.264520708432705], [-2.921993841994288, 43.26450268676441], [-2.9219734515038898, 43.26448916584964], [-2.9219511357647883, 43.264475643617644], [-2.9219265097268057, 43.26446211980451], [-2.9219003434942286, 43.264448594934514], [-2.9218787863744002, 43.264444077878636], [-2.9218726313104733, 43.26443957133886], [-2.9218441432726805, 43.264435049542605], [-2.9218145000853353, 43.26443052694973], [-2.9217844718511565, 43.26442600408589], [-2.921754437855118, 43.26442598354644], [-2.921724783141838, 43.26443046559484], [-2.9216951284242167, 43.264434947635515], [-2.9216666230834067, 43.26444393279178], [-2.9216373418564676, 43.26445741974558], [-2.9215857102925824, 43.26448439838182], [-2.9215383026880235, 43.26452038456413], [-2.9214962857563203, 43.26455637442609], [-2.9212403442007973, 43.264763305953366], [-2.9212156775618907, 43.26478129831141], [-2.921163263810955, 43.26481728088849], [-2.9211062351654387, 43.264848757922756], [-2.9210449766849065, 43.26487572967319], [-2.920980258485727, 43.26489819666506], [-2.920913241569764, 43.26491165735938], [-2.9208439142981115, 43.26492511641573], [-2.9207730584556493, 43.264929569699824], [-2.9207022084468885, 43.26492952060827], [-2.9204569229363293, 43.2649338526482]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:8", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "8", "alternateName": "wifi_zone", "description": "CASCO_VIEJO", "val": 11}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.9216467207166756, 43.25083784297338], [-2.921704327144909, 43.25094593874048], [-2.921818483610707, 43.25108558956554], [-2.9219580887305634, 43.25119374121091], [-2.9220804281564736, 43.25125685745906], [-2.9222155119089703, 43.251288465816], [-2.922328664030361, 43.25131105443139], [-2.9224302443174426, 43.251351644474916], [-2.9225236433683737, 43.25146876877734], [-2.9225889285377273, 43.25159487867288], [-2.9226268924206042, 43.2517119653601], [-2.922637897020209, 43.25183803849622], [-2.9226392659495235, 43.251973109804815], [-2.922626407958986, 43.25209466445067], [-2.9225719612842482, 43.25222519564278], [-2.9224283565381652, 43.252535760209554], [-2.9222765741784325, 43.25291835654838], [-2.922244816902395, 43.253066912360005], [-2.922231889147539, 43.25324249503138], [-2.922250466828361, 43.253467624906634], [-2.9222882995500528, 43.25368826550734], [-2.9223615454414995, 43.25391343247135], [-2.9224436808399528, 43.254111591340695], [-2.9225515995213294, 43.25431877229137], [-2.9226246160522913, 43.254422375617295], [-2.92273112686145, 43.25452600152348], [-2.92285807089115, 43.25460712938974], [-2.9230689487204247, 43.25468381124641], [-2.922652707029322, 43.255345375081376], [-2.9225908969795724, 43.25551191997496], [-2.9222251871392966, 43.255786314852905], [-2.9219334684996072, 43.25600222860899], [-2.9218240195939353, 43.25608769837919], [-2.922063730232394, 43.25620042051131], [-2.9219290893545113, 43.25641644114801], [-2.9218909052232234, 43.256470443192285], [-2.9218296670113677, 43.2564884107323], [-2.9218057393266332, 43.25653341780365], [-2.9217438796386865, 43.25673598090892], [-2.921626619376284, 43.25690698963645], [-2.921620447765331, 43.256915990092295], [-2.9216000136773665, 43.256938487800326], [-2.9215691555688927, 43.25698349006868], [-2.921521776908331, 43.25700146694365], [-2.921512927588735, 43.256996958530365], [-2.9214809606523104, 43.25700594127733], [-2.921462089646828, 43.25701043066504], [-2.9215212300075306, 43.25712753214482], [-2.9216496832156706, 43.25723567640199], [-2.921564669854456, 43.25747874460005], [-2.921408009402068, 43.25774877757254], [-2.921307400257498, 43.257843257577505], [-2.921370883173295, 43.258176474483584], [-2.9211117934519484, 43.25815828674053], [-2.9210785545163627, 43.25825731531799], [-2.921011778605211, 43.25838783711893], [-2.920917561532448, 43.25859938204563], [-2.921322932052993, 43.25893733711501], [-2.9210756118060153, 43.25904522292005], [-2.9210154734487466, 43.25910371183837], [-2.92095726006658, 43.25916220205456], [-2.920887087685173, 43.259238693331746], [-2.920740978782582, 43.259382667079905], [-2.9206272518389933, 43.259495146730124], [-2.9206002653264638, 43.259522142042734], [-2.920571353687646, 43.25954913601221], [-2.920450701601697, 43.25965710833497], [-2.920456482780189, 43.25965261001508], [-2.9206404284141154, 43.2600219296377], [-2.920694949815326, 43.26013902827845], [-2.9207198478714163, 43.260238097006464], [-2.9207358787414734, 43.26034616426239], [-2.9207357677707884, 43.26043170863374], [-2.9207262175571307, 43.26067032599637], [-2.9207249631702616, 43.260746864892255], [-2.9207452470172965, 43.26084142806743], [-2.9207617215059742, 43.260904472226116], [-2.9208204500798916, 43.26104408539753], [-2.9209126882558905, 43.26117471702996], [-2.9210622034608864, 43.26137742554159], [-2.9211732279453155, 43.261571102657015], [-2.921255812805894, 43.26172423904018], [-2.921359849946395, 43.2619629345344], [-2.921403984261149, 43.262075523318494], [-2.921421235624591, 43.26213406556439], [-2.9214453713806003, 43.26222863123842], [-2.921474868810293, 43.26234571227565], [-2.92146942040759, 43.262390731913705], [-2.921444696907571, 43.26245374766743], [-2.9214176862842867, 43.26249875249314], [-2.9213864459812102, 43.2625392520678], [-2.9213151441242053, 43.26259323109757], [-2.921245014671754, 43.26263370387669], [-2.921163730580035, 43.26266516425049], [-2.9211313813973923, 43.262669644289545], [-2.9210008411417063, 43.26267855888936], [-2.920850692957397, 43.262664948087235], [-2.9208491178008265, 43.262691961022796], [-2.920849852885632, 43.26271897555672], [-2.9208467142332335, 43.262763996760235], [-2.9208435872423886, 43.262800013296456], [-2.9207884504996584, 43.26285850551737], [-2.920700252657419, 43.26287645376071], [-2.92062980761777, 43.26286289789297], [-2.9205524260117603, 43.262853839501965], [-2.9204842795592674, 43.2628492898158], [-2.920508461008388, 43.26290783700829], [-2.920546089699155, 43.26298890522253], [-2.920575650152219, 43.26305646080989], [-2.920601371942462, 43.263115009050075], [-2.9206355354925218, 43.26319607482681], [-2.9205401208344828, 43.263137478206396], [-2.9204631591044703, 43.26310140602373], [-2.9203499975874165, 43.26306981092682], [-2.9202391170538338, 43.26306072899463], [-2.9200866284017457, 43.26306962724487], [-2.9198840310167875, 43.263119011244065], [-2.9196621989012352, 43.263154874365675], [-2.9194899659323124, 43.26324480002105], [-2.919399758778382, 43.2633257785653], [-2.91934300867482, 43.26343829699099], [-2.919333323104824, 43.263483313530905], [-2.9193556081870824, 43.263519347938775], [-2.919408667258321, 43.263577915711096], [-2.919503258036004, 43.26367703372204], [-2.9195909123467794, 43.263780649114196], [-2.919705816590592, 43.26395181861648], [-2.919868585695967, 43.26403297480789], [-2.9199036015204722, 43.26405100867673], [-2.920076323537223, 43.26417719490365], [-2.9201848075449406, 43.26425381036522], [-2.9202471327699904, 43.264294374860945], [-2.9204175693365775, 43.264402549629175], [-2.920584126726357, 43.264533233129036], [-2.9206013370352246, 43.26462329179717], [-2.9205858061819625, 43.26472233240828], [-2.9205182988845233, 43.26481683457767], [-2.920453136877643, 43.26488432432163], [-2.9204569229363293, 43.2649338526482], [-2.9199224556036505, 43.26494248443033], [-2.9185978562626054, 43.26495055418632], [-2.918550873610197, 43.2649550230796], [-2.91832485261804, 43.264950359591246], [-2.9181223380861687, 43.26493220547631], [-2.9181003899860936, 43.26493218976471], [-2.917880187293038, 43.2648960132127], [-2.9176661699949946, 43.26484183134532], [-2.9176169013208857, 43.26482828886633], [-2.917535691448303, 43.26480121633702], [-2.917459114454254, 43.264765142421105], [-2.9173875493291854, 43.26472456973737], [-2.9173225362900412, 43.264679499408295], [-2.9172640753366466, 43.264629931444965], [-2.9172510018472613, 43.26461641498066], [-2.917178715758861, 43.26453982295521], [-2.9171176024509022, 43.26445873664258], [-2.917068817044893, 43.264373156897925], [-2.917032359499738, 43.2642830837368], [-2.917008993752301, 43.264193020061306], [-2.916997790918134, 43.26393637875551], [-2.9170024481938035, 43.2639093681153], [-2.917016426111351, 43.26382383386049], [-2.917031155740519, 43.26375180715803], [-2.9170404824569487, 43.26368878120814], [-2.9170451580343206, 43.26364826356793], [-2.917045231392661, 43.26359423557952], [-2.917044608018204, 43.26348617904268], [-2.9170400669510737, 43.26342764536941], [-2.917033178941237, 43.263396124015145], [-2.9170048201883345, 43.26329705202929], [-2.916971810413242, 43.26322048834467], [-2.9169364782199056, 43.26315292763753], [-2.91690958642943, 43.26310788473582], [-2.916868087564506, 43.26304482186411], [-2.9166324128468077, 43.262783514785475], [-2.916350212044771, 43.26247714982021], [-2.916174899922153, 43.26228342096547], [-2.9158457851724857, 43.26193649929935], [-2.9157200524623694, 43.261810341265715], [-2.915076014242202, 43.261166030554485], [-2.914806093127745, 43.26090019186066], [-2.914390065862381, 43.2604901684142], [-2.913934828828653, 43.260039592876524], [-2.913698370038446, 43.25980529306667], [-2.913611867387954, 43.25971518097789], [-2.9135984107356507, 43.259701663795326], [-2.913524607694193, 43.25961606357016], [-2.9135192237745744, 43.25961155716017], [-2.9134535063784655, 43.259525963000165], [-2.9133755004483874, 43.25941784779593], [-2.913281041215033, 43.2592376826216], [-2.913191645328469, 43.25901700014251], [-2.9131115809858072, 43.259003432336364], [-2.913033448171029, 43.258985363602136], [-2.912958016933112, 43.25896279452969], [-2.912944547762319, 43.25895828193985], [-2.9127883273745026, 43.258890627840586], [-2.9126429070857847, 43.2588094747535], [-2.9126098279262354, 43.258786937785], [-2.9125525185895733, 43.25874637292452], [-2.912488676968145, 43.25869679835675], [-2.9124036983651735, 43.25862019352525], [-2.9123198620968758, 43.25855259418675], [-2.912245625493628, 43.25850301151377], [-2.9122075350002397, 43.25848497292421], [-2.9121671279763266, 43.25847143488409], [-2.9121247959026935, 43.25845789535092], [-2.9120809173162137, 43.25844885695434], [-2.912035877221324, 43.258444319988634], [-2.911990452119737, 43.25843978270898], [-2.9119450140491887, 43.258444250083016], [-2.9118999609854934, 43.25844871773552], [-2.911875698644027, 43.258453201388356], [-2.911534576242884, 43.258187299978964], [-2.912396815547053, 43.258318531418496], [-2.9125242289548865, 43.25833663828425], [-2.9125334692613327, 43.2583366453498], [-2.9126185377686817, 43.258350217384645], [-2.912639341336243, 43.258341228591874], [-2.9126370376963093, 43.25833672449166], [-2.912846561701167, 43.25828285622123], [-2.9128457916763004, 43.25828285563457], [-2.912615531071863, 43.25776040839512], [-2.9125805918534935, 43.25769284657887], [-2.912497623380951, 43.25755771289989], [-2.9124434533895927, 43.25747662930299], [-2.912389649184071, 43.2574090529845], [-2.9123465994472366, 43.25735949424771], [-2.9123066233695982, 43.25731444019235], [-2.912009832836658, 43.25701255538723], [-2.9116819185927953, 43.25667012469162], [-2.9114893193864777, 43.25647187277177], [-2.9114212786240223, 43.25639978262751], [-2.91136822690636, 43.25634571342623], [-2.912681279066413, 43.2556668694648], [-2.9126150146979115, 43.25569833526682], [-2.913031496674877, 43.25548704252719], [-2.91374695312996, 43.25511839205767], [-2.9142539759752752, 43.25485313495186], [-2.9146970233756524, 43.254632851337476], [-2.914773680227955, 43.254601392066355], [-2.9148752985792052, 43.254614974760074], [-2.915681236446342, 43.254782158362616], [-2.9159621989606723, 43.25484089557854], [-2.916909801425092, 43.25502168153305], [-2.916995245173069, 43.25503975293688], [-2.9177207854583904, 43.25516634270346], [-2.9179783033757962, 43.2551980440384], [-2.918464850499096, 43.255261424667005], [-2.9186003502044584, 43.25527502819421], [-2.91875047972822, 43.25528864195269], [-2.9187192336067964, 43.25504549320723], [-2.9187115996394515, 43.25499596200318], [-2.9187004887823846, 43.25495543301457], [-2.9186805291316107, 43.25491039539098], [-2.918658247579465, 43.254874360800024], [-2.918633650114532, 43.254842826901005], [-2.9186048177781583, 43.25481128998342], [-2.91826258559906, 43.25450488658036], [-2.917964930705989, 43.254261546932305], [-2.9178784235438155, 43.25417594032334], [-2.91784112826304, 43.254139894789716], [-2.917780030511949, 43.254054306350746], [-2.9176270670829685, 43.25386059549766], [-2.917360362611654, 43.25350922025787], [-2.917104782884311, 43.253189368852205], [-2.917064457696371, 43.25311730210295], [-2.917168451093541, 43.25308135868864], [-2.917178466667076, 43.25307686359513], [-2.9172231487012983, 43.25305888655521], [-2.9172651419478095, 43.25303640520803], [-2.9173032914625114, 43.2530094187216], [-2.9173375911526627, 43.25298242944048], [-2.9173676621315967, 43.25295093474926], [-2.917393504399189, 43.25291493465118], [-2.9174139508544816, 43.25288343299702], [-2.917495357564734, 43.25275292372332], [-2.917535938159893, 43.25263589200229], [-2.917633292121088, 43.252383830787274], [-2.91767769163098, 43.25228931348677], [-2.9177517521874288, 43.25218131045943], [-2.917820759399364, 43.252109322519296], [-2.9178824580080884, 43.252032826944536], [-2.917993890421319, 43.25190233884592], [-2.918034378927836, 43.25185284205644], [-2.918075270444786, 43.25178983850237], [-2.9181065375977266, 43.25172682804351], [-2.918128956388789, 43.25165930889689], [-2.918133305646366, 43.25157376742991], [-2.9181257389244593, 43.251474710394575], [-2.9181039283748196, 43.25137564316076], [-2.9180678740667316, 43.25127656572042], [-2.918803149479924, 43.2509979444774], [-2.9190069042006024, 43.250917046675276], [-2.9197276559708563, 43.25113816969153], [-2.9205376672115793, 43.25140437366007], [-2.920711854335405, 43.25126492177941], [-2.92083209274077, 43.251165953427694], [-2.9209430740771745, 43.251080485591096], [-2.921064851611332, 43.25098151805511], [-2.9216467207166756, 43.25083784297338]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:9", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "9", "alternateName": "wifi_zone", "description": "D5_ESTE", "val": 14}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.9116569810925643, 43.27232022562244], [-2.9116404217540177, 43.27232021283269], [-2.9116404412944106, 43.27230670585807], [-2.9116569941170534, 43.272311220972696], [-2.9116569810925643, 43.27232022562244]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:20", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "20", "alternateName": "wifi_zone", "description": "MB_L3", "val": 4}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.933246580932982, 43.2557122349508], [-2.9332497100811072, 43.255667213345], [-2.9332566891831293, 43.255622193985054], [-2.9332671430677077, 43.255568171964896], [-2.93328144688549, 43.255514152188695], [-2.933296140586976, 43.2554556302942], [-2.9333077297380084, 43.25541961830426], [-2.9333204738584144, 43.25538360698616], [-2.9334208568801654, 43.25512252952999], [-2.933512340164837, 43.254901967895776], [-2.9336451193666195, 43.254586880916705], [-2.9336566983716956, 43.25455987356815], [-2.933799904876181, 43.254213276026874], [-2.93387247729049, 43.254033224224585], [-2.9339323058443734, 43.25388918376808], [-2.9340770539974894, 43.25353808438433], [-2.9341419106047293, 43.253371534978015], [-2.934236093210413, 43.25314196956044], [-2.934256170299926, 43.25308795295806], [-2.9342650490497424, 43.25306544633416], [-2.93432025598233, 43.252921402994346], [-2.934339933435643, 43.25288089318194], [-2.9343503568743703, 43.25285388509177], [-2.9343781381637264, 43.25279537054081], [-2.9343985951586844, 43.252745856473574], [-2.9344163572784208, 43.25269634085727], [-2.934437598652357, 43.252633320195116], [-2.9344476418576133, 43.252601809531356], [-2.9344580652010106, 43.25257480143001], [-2.934465033401917, 43.25253878665691], [-2.9344804952035997, 43.252480265019614], [-2.9344913324415094, 43.25242624307722], [-2.9345040945371665, 43.25237222223535], [-2.9345160963077177, 43.25230919626464], [-2.934525773736599, 43.252259675999326], [-2.934536630184244, 43.25218764467779], [-2.934553304602116, 43.252075095568784], [-2.934563015705661, 43.251994058894944], [-2.934572341810824, 43.25191302199893], [-2.9345750944510143, 43.25185899541904], [-2.9345774476568542, 43.251818475648854], [-2.934579824954645, 43.251755444160736], [-2.9345849789618446, 43.251615874371424], [-2.934583058927456, 43.25161137092708], [-2.934631522370404, 43.25093154428325], [-2.934716960584266, 43.250593917042075], [-2.934795353265386, 43.25036434203971], [-2.9349257486854365, 43.250103280134695], [-2.934927678284078, 43.25009877888474], [-2.9349720158657964, 43.25003577123], [-2.9350182829438913, 43.24996826230575], [-2.9350730286007467, 43.24989175347885], [-2.935118131021992, 43.24983324854708], [-2.935158994031415, 43.249779243541916], [-2.9352357010634265, 43.2496847376887], [-2.9352838780740886, 43.24963073677803], [-2.935352091851853, 43.249558737779374], [-2.935909762906969, 43.24895123455486], [-2.936046990188857, 43.24877571975878], [-2.936177306355931, 43.248582191541914], [-2.93627875981016, 43.248379642398596], [-2.9363505808954846, 43.24816807197649], [-2.936392375570317, 43.2479564848099], [-2.9363962625230133, 43.247920468176574], [-2.936858575015863, 43.24792972898254], [-2.9372223688353345, 43.24791191980259], [-2.9374240996681094, 43.24789402093104], [-2.9376304635293797, 43.24786261718159], [-2.937851459735522, 43.247826718660534], [-2.9386850501850517, 43.24764707450884], [-2.9393403304695194, 43.24754386981042], [-2.939439935804078, 43.24841737834666], [-2.9394432487101883, 43.248570459962686], [-2.9394857972172677, 43.249142280750824], [-2.9394728886229404, 43.24934938194328], [-2.939491508024821, 43.24998422285617], [-2.9396740014670395, 43.24996180749935], [-2.9397161916808483, 43.25011941190861], [-2.9396452743453776, 43.250204919119085], [-2.9395309604242454, 43.250574051237116], [-2.939533919881558, 43.2506956161758], [-2.9395422733225893, 43.250812681615585], [-2.9395633084257566, 43.250952265487676], [-2.9394454774578382, 43.25098371960435], [-2.9394570041601753, 43.25100623743988], [-2.9395035004779935, 43.251091806628644], [-2.9395573157683303, 43.25117287731776], [-2.939618065080103, 43.25124944929393], [-2.9396815093259003, 43.2513260226578], [-2.9397830302081975, 43.25143863480758], [-2.9398603382080966, 43.25151071302015], [-2.939941504942964, 43.251573788512594], [-2.9400272870772355, 43.2516413687129], [-2.9401188527920104, 43.251699947182956], [-2.9402119585685935, 43.25175852638402], [-2.9403093036119667, 43.25181260537456], [-2.9404108835224054, 43.25186668648778], [-2.940499007103985, 43.25190275112725], [-2.9405621163204123, 43.251929798012036], [-2.940657939539868, 43.25196586652902], [-2.9407837820506297, 43.25201095520092], [-2.9409157930270164, 43.25204704222796], [-2.9415593480039792, 43.25217343849519], [-2.9416521138899028, 43.25218699288613], [-2.9416123282065882, 43.252326545310275], [-2.9415779836491973, 43.25241207234662], [-2.941503870098089, 43.25261914237618], [-2.9414564014869145, 43.2527406814244], [-2.941403517088093, 43.25288923174899], [-2.9413560394269447, 43.25301977543579], [-2.9413452340752415, 43.253046783967896], [-2.9413348136938366, 43.253073792696306], [-2.9413239910334643, 43.25311881059829], [-2.9413081809059536, 43.253145816559275], [-2.9413031415700828, 43.25318183273536], [-2.9412660925772136, 43.25327636296776], [-2.941234048232108, 43.25337089575761], [-2.9411811714119986, 43.253510441276916], [-2.94110590890621, 43.25370850572824], [-2.9411296998423326, 43.253789560179435], [-2.9412548024517404, 43.253807633870146], [-2.941943017851675, 43.253952060245204], [-2.9422797950330626, 43.25404227755842], [-2.9436657975236975, 43.254403156042976], [-2.9437289148695838, 43.2544256988289], [-2.9437816417131786, 43.254443734129914], [-2.9438239697566844, 43.25446626664471], [-2.943850132438704, 43.254484288866124], [-2.9438801408905935, 43.25450681531237], [-2.9440213122249093, 43.254637452459924], [-2.944156721646325, 43.25475457958583], [-2.9442552093916476, 43.254831167468126], [-2.944136127837839, 43.25496167734967], [-2.9446050396571466, 43.254970910064536], [-2.944646971143768, 43.255006949112065], [-2.944804314973561, 43.25513759310636], [-2.9448800976605933, 43.25520516480096], [-2.9449601154462903, 43.255272738482304], [-2.9450378193947775, 43.25534481333872], [-2.945111284541646, 43.25542138845115], [-2.945193211690558, 43.255506972256576], [-2.9452585923173245, 43.25558354339865], [-2.9453358959076996, 43.25567362723016], [-2.9454281864591376, 43.255795234560594], [-2.945488943702304, 43.255876305704625], [-2.945542771141623, 43.25595737351656], [-2.9456046756785352, 43.2560474498289], [-2.9456312045335227, 43.25608798352682], [-2.9456538874362383, 43.25612401304837], [-2.945702702316691, 43.25621408308575], [-2.945744599328284, 43.256290642791825], [-2.945783789457263, 43.256380708226764], [-2.9458022335550056, 43.256421238050706], [-2.945826051729461, 43.256479779786986], [-2.945852545014971, 43.256560834496774], [-2.9458732752985113, 43.25662837944514], [-2.945892461630583, 43.25670042600114], [-2.9459039758428287, 43.25674095252846], [-2.9459166371108276, 43.25679048428137], [-2.945926607357884, 43.256835512418135], [-2.945939637735888, 43.25690305371132], [-2.9459530571290222, 43.25696609284377], [-2.945971417922376, 43.25710117178229], [-2.946003182401034, 43.25731729919801], [-2.946029584826615, 43.25750190767451], [-2.9460586467052754, 43.257727038467806], [-2.94607278476816, 43.25784860835621], [-2.9458313914982868, 43.25783948962252], [-2.9445289683741485, 43.25776682801572], [-2.943917602300953, 43.25773501353424], [-2.9430656188040136, 43.25768956925802], [-2.9414952406041284, 43.2576122370928], [-2.941493700570317, 43.257612236305185], [-2.9401450777234697, 43.257548505829746], [-2.9399522019674516, 43.25753489772339], [-2.9388846289578767, 43.25748030425373], [-2.938234767984144, 43.257448438827666], [-2.9370436200532, 43.257384756704226], [-2.9357623830804362, 43.257321011623944], [-2.9346597627748046, 43.25728436840664], [-2.9344311076583445, 43.25724821883915], [-2.9341905564196256, 43.257176043235525], [-2.9340781979091224, 43.2571174480961], [-2.9339612487481213, 43.25703183614309], [-2.9339612487481213, 43.25703183614309], [-2.9338208292859917, 43.25693270346719], [-2.9336750544363097, 43.25680205111637], [-2.933547765224135, 43.256666906974274], [-2.9334412813715347, 43.256518267766964], [-2.933356362978142, 43.25636513867956], [-2.933293779899543, 43.256207520208655], [-2.9332543068910586, 43.25604091049965], [-2.9332386990202006, 43.25587881704544], [-2.933240668272886, 43.255838297107346], [-2.933246580932982, 43.2557122349508]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:10", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "10", "alternateName": "wifi_zone", "description": "D7 NORTE", "val": 0}}, {"type": "Feature", "geometry": {"coordinates": [[[-2.9517021717970633, 43.286386892944606], [-2.9516936976183215, 43.28638688936629], [-2.9516937047436627, 43.286377884731266], [-2.9517021789211544, 43.286377888309616], [-2.9517021717970633, 43.286386892944606]]], "type": "Polygon"}, "id": "urn:ngsi-ld:GtfsShape:bilbao:wifi_zone:21", "properties": {"fill": "#fff5f0", "fill-opacity": 0.5, "type": "GtfsShape", "name": "21", "alternateName": "wifi_zone", "description": "ACCESOS_VIARIOS", "val": 0}}]}}]
\ No newline at end of file
diff --git a/src/assets/map/map-component-maps/test_gabriele.json b/src/assets/map/map-component-maps/test_gabriele.json
new file mode 100644
index 0000000000000000000000000000000000000000..4aecdf038fb61fcbf8c77cc937e2b3032ba18f7c
--- /dev/null
+++ b/src/assets/map/map-component-maps/test_gabriele.json
@@ -0,0 +1 @@
+{"@context": ["https://smartdatamodels.org/context.jsonld"], "type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"coordinates": [-2.935188110338201, 43.26750551179745], "type": "Point"}, "properties": {"name": "60", "type": "GtfsShape", "no": 2.19, "no2": 15.29, "nox": 12.06, "o3": 71.88, "pm10": 14.0, "pm25": 10.14, "so2": 3.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.902376115931137, 43.25491056506432], "type": "Point"}, "properties": {"name": "62", "type": "GtfsShape", "no": 2.19, "no2": 15.29, "nox": 12.06, "o3": 71.88, "pm10": 14.0, "pm25": 10.14, "so2": 3.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.960475856567045, 43.245553729819484], "type": "Point"}, "properties": {"name": "92", "type": "GtfsShape", "no": 2.19, "no2": 15.29, "nox": 12.06, "o3": 71.88, "pm10": 14.0, "pm25": 10.14, "so2": 3.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.9475439999557134, 43.26522199716327], "type": "Point"}, "properties": {"name": "88", "type": "GtfsShape", "no": 2.19, "no2": 15.29, "nox": 12.06, "o3": 71.88, "pm10": 14.0, "pm25": 10.14, "so2": 3.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.953278416670214, 43.28099012364825], "type": "Point"}, "properties": {"name": "87", "type": "GtfsShape", "no": 2.19, "no2": 15.29, "nox": 12.06, "o3": 71.88, "pm10": 14.0, "pm25": 10.14, "so2": 3.2}}, {"type": "Feature", "geometry": {"coordinates": [-2.945656664175787, 43.25880286639215], "type": "Point"}, "properties": {"name": "81", "type": "GtfsShape", "no": 2.19, "no2": 15.29, "nox": 12.06, "o3": 71.88, "pm10": 14.0, "pm25": 10.14, "so2": 3.2}}]}
\ No newline at end of file