-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStation.html
3298 lines (3261 loc) · 83.5 KB
/
Station.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<title>Example</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.js"></script>
</head>
<body>
<div id="mapid" style="width: 100%; height: 90vh"></div>
<script>
var stations = [
{
"name": "Alingsås",
"latlon": "12.532185461206 57.9269051699343",
"updated": "2015-11-05T07:34:22.999Z"
},
{
"name": "Arbrå",
"latlon": "16.3798346181591 61.4710347924654",
"updated": "2015-11-05T07:34:24.653Z"
},
{
"name": "Avesta centrum",
"latlon": "16.1706069389695 60.1472930337373",
"updated": "2015-11-05T07:34:26.993Z"
},
{
"name": "Anneberg",
"latlon": "12.1007764368917 57.538628927781",
"updated": "2015-11-05T07:34:28.865Z"
},
{
"name": "Ankarsrum",
"latlon": "16.3358963888688 57.6995449569825",
"updated": "2015-11-05T07:34:31.486Z"
},
{
"name": "Abisko turiststation",
"latlon": "18.7832603522682 68.3573162414033",
"updated": "2015-11-05T07:34:32.142Z"
},
{
"name": "Astrid Lindgrens värld",
"latlon": "15.8400639513057 57.6727072952325",
"updated": "2015-11-05T07:34:34.622Z"
},
{
"name": "Abisko Östra",
"latlon": "18.8303462142963 68.3486410812835",
"updated": "2015-11-05T07:34:40.301Z"
},
{
"name": "Aneby",
"latlon": "14.8118962687104 57.837434576066",
"updated": "2015-11-05T07:34:40.582Z"
},
{
"name": "Arvika",
"latlon": "12.5908033776737 59.6536341637694",
"updated": "2016-02-26T10:00:06.332Z"
},
{
"name": "Aspen",
"latlon": "12.2405122416734 57.7544220567796",
"updated": "2015-11-05T07:34:44.185Z"
},
{
"name": "Arlanda C",
"latlon": "17.9284893924452 59.6490721208678",
"updated": "2015-11-05T07:34:44.809Z"
},
{
"name": "Arlanda N",
"latlon": "17.929839291864 59.6515219469916",
"updated": "2015-11-05T07:34:53.047Z"
},
{
"name": "Avesta Krylbo",
"latlon": "16.2161478519393 60.1295332434851",
"updated": "2015-11-05T07:34:53.047Z"
},
{
"name": "Arlanda S",
"latlon": "17.9283285216695 59.6468203573589",
"updated": "2015-11-05T07:34:53.686Z"
},
{
"name": "Arboga",
"latlon": "15.8405255787081 59.3971893875123",
"updated": "2015-11-05T07:34:55.917Z"
},
{
"name": "Assberg",
"latlon": "12.6686015308144 57.4943517214656",
"updated": "2015-11-05T07:34:55.449Z"
},
{
"name": "Aspedalen",
"latlon": "12.2584783647372 57.7624780666275",
"updated": "2015-11-05T07:34:57.555Z"
},
{
"name": "Barkåkra",
"latlon": "12.8246319221453 56.293655747657",
"updated": "2016-05-02T09:00:02.573Z"
},
{
"name": "Alvesta",
"latlon": "14.5561917721263 56.8980219294131",
"updated": "2016-02-26T10:00:05.552Z"
},
{
"name": "Boden C",
"latlon": "21.7080533264143 65.8288023354709",
"updated": "2015-11-05T07:35:05.325Z"
},
{
"name": "Bodafors",
"latlon": "14.6947801364115 57.5061001395354",
"updated": "2015-11-05T07:35:05.231Z"
},
{
"name": "Brunflo",
"latlon": "14.8325839296119 63.0759732945692",
"updated": "2015-11-05T07:35:07.009Z"
},
{
"name": "Bredaryd",
"latlon": "13.7376510165926 57.1765367567373",
"updated": "2015-11-05T07:35:07.977Z"
},
{
"name": "Billingsfors",
"latlon": "12.2496695825134 58.9819643773683",
"updated": "2015-11-05T07:35:08.71Z"
},
{
"name": "Bohus",
"latlon": "12.0195643850274 57.8640055661095",
"updated": "2015-11-05T07:35:13.203Z"
},
{
"name": "Bräkne-Hoby",
"latlon": "15.1160583531504 56.2313701357739",
"updated": "2015-11-05T07:35:14.919Z"
},
{
"name": "Billeberga",
"latlon": "12.9958482634416 55.8837601992385",
"updated": "2015-11-05T07:35:15.044Z"
},
{
"name": "Björketorp",
"latlon": "12.5239445017376 57.4279259679464",
"updated": "2015-11-05T07:35:16.12Z"
},
{
"name": "Berga",
"latlon": "16.0334429799738 57.2165328077341",
"updated": "2015-11-05T07:35:17.322Z"
},
{
"name": "Bjuv",
"latlon": "12.9110740250425 56.0825674373118",
"updated": "2015-11-05T07:35:15.996Z"
},
{
"name": "Björkliden",
"latlon": "18.6863534333755 68.4083872371577",
"updated": "2015-11-05T07:35:18.788Z"
},
{
"name": "Burlöv",
"latlon": "13.0803955969925 55.6409182312255",
"updated": "2015-11-05T07:35:20.364Z"
},
{
"name": "Ballingslöv",
"latlon": "13.848391969821 56.2140339244477",
"updated": "2015-11-05T07:35:20.239Z"
},
{
"name": "Badabruk",
"latlon": "13.0961355397896 60.0621873749748",
"updated": "2015-11-05T07:35:20.66Z"
},
{
"name": "Blomstermåla",
"latlon": "16.3321140104171 56.9807111653379",
"updated": "2015-11-05T07:35:21.581Z"
},
{
"name": "Blomberg",
"latlon": "13.3205202856963 58.540152712581",
"updated": "2015-11-05T07:35:22.751Z"
},
{
"name": "Björköby",
"latlon": "14.9105621636143 57.5210524686644",
"updated": "2015-11-05T07:35:23.11Z"
},
{
"name": "Barkarby",
"latlon": "17.86735654633 59.4041345970704",
"updated": "2015-11-05T07:35:23.25Z"
},
{
"name": "Borlänge C",
"latlon": "15.4254721265275 60.4829431349273",
"updated": "2015-11-05T07:35:25.091Z"
},
{
"name": "Bollebygd",
"latlon": "12.5700109369614 57.6675305037806",
"updated": "2015-11-05T07:35:28.57Z"
},
{
"name": "Borgstena",
"latlon": "13.0148329283842 57.8829752310649",
"updated": "2015-11-05T07:35:26.511Z"
},
{
"name": "Bor",
"latlon": "14.1686435338034 57.1161315575361",
"updated": "2015-11-05T07:35:29.537Z"
},
{
"name": "Bromölla",
"latlon": "14.4816195380891 56.0671645874712",
"updated": "2015-11-05T07:35:30.052Z"
},
{
"name": "Berghem",
"latlon": "12.5983644548329 57.4670367930647",
"updated": "2015-11-05T07:35:31.815Z"
},
{
"name": "Bjørnfjell",
"latlon": "18.0715614128685 68.4320478843274",
"updated": "2015-11-05T07:35:33.359Z"
},
{
"name": "Bjärnum",
"latlon": "13.704058721809 56.2929268804327",
"updated": "2015-11-05T07:35:37.15Z"
},
{
"name": "Bro",
"latlon": "17.6329583487067 59.5123000136841",
"updated": "2015-11-05T07:35:38.398Z"
},
{
"name": "Basthagen",
"latlon": "15.9741711932516 58.2054984829877",
"updated": "2015-11-05T07:35:38.773Z"
},
{
"name": "Brinellskolan",
"latlon": "14.7009363259691 57.6694202744613",
"updated": "2015-11-05T07:35:38.492Z"
},
{
"name": "Bankeryd",
"latlon": "14.1282336593242 57.8603598848661",
"updated": "2015-11-05T07:35:39.865Z"
},
{
"name": "Bollnäs",
"latlon": "16.3917204106836 61.3494847445244",
"updated": "2015-11-05T07:35:40.536Z"
},
{
"name": "Bredsjö",
"latlon": "14.7269179643882 59.8320341764935",
"updated": "2015-11-05T07:35:43.89Z"
},
{
"name": "Borås C",
"latlon": "12.9310250174163 57.7203316462918",
"updated": "2015-11-05T07:35:44.873Z"
},
{
"name": "Buterud",
"latlon": "12.4002562566847 58.8531131478312",
"updated": "2015-11-05T07:35:46.074Z"
},
{
"name": "Boxholm",
"latlon": "15.0536307084315 58.192918909762",
"updated": "2015-11-05T07:35:51.753Z"
},
{
"name": "Bastuträsk",
"latlon": "20.0415114230834 64.7890385048333",
"updated": "2015-11-05T07:35:53.344Z"
},
{
"name": "Byarum",
"latlon": "14.1437684799175 57.5362542617541",
"updated": "2015-11-05T07:35:54.592Z"
},
{
"name": "Bålsta",
"latlon": "17.5318845496334 59.5694322754827",
"updated": "2015-11-05T07:35:55.996Z"
},
{
"name": "Bergåsa",
"latlon": "15.6006353953043 56.1818170891553",
"updated": "2015-11-05T07:35:57.494Z"
},
{
"name": "Brunsberg",
"latlon": "12.9613134073319 59.6176282869347",
"updated": "2015-11-05T07:35:57.307Z"
},
{
"name": "Bratteborg",
"latlon": "14.1253561939988 57.5776121530607",
"updated": "2015-11-05T07:36:00.208Z"
},
{
"name": "Bräcke",
"latlon": "15.4176180654212 62.7500039077378",
"updated": "2015-11-05T07:36:01.394Z"
},
{
"name": "Båstad",
"latlon": "12.905212820502 56.4308350032326",
"updated": "2015-12-12T23:34:02.141Z"
},
{
"name": "Copenhagen Airport",
"latlon": "12.6469451952492 55.6286136063162",
"updated": "2015-11-05T07:36:03.36Z"
},
{
"name": "Bäckebron",
"latlon": "13.1661643715636 59.6610381324955",
"updated": "2015-11-05T07:36:03.906Z"
},
{
"name": "Köpenhamn",
"latlon": "12.5683320917877 55.6761115476888",
"updated": "2015-11-05T07:36:05.014Z"
},
{
"name": "Stockholm Central",
"latlon": "18.0572670185758 59.3299708428723",
"updated": "2016-02-26T10:00:06.16Z"
},
{
"name": "Tårnby",
"latlon": "12.5999969517609 55.633330413221",
"updated": "2015-11-05T07:36:06.402Z"
},
{
"name": "Örestad",
"latlon": "12.5766628125062 55.628332371048",
"updated": "2015-11-05T07:36:07.12Z"
},
{
"name": "Dingle",
"latlon": "11.5791144556394 58.5295740929632",
"updated": "2015-11-05T07:36:11.722Z"
},
{
"name": "Djurås",
"latlon": "15.1385500723749 60.5600828935314",
"updated": "2015-11-05T07:36:15.201Z"
},
{
"name": "Duved",
"latlon": "12.9174879697974 63.3897651210165",
"updated": "2015-11-05T07:36:15.685Z"
},
{
"name": "Helsingör",
"latlon": "12.6000075472212 56.0333369710483",
"updated": "2015-11-05T07:36:15.903Z"
},
{
"name": "Eslöv",
"latlon": "13.3053733345934 55.8376813842514",
"updated": "2015-11-05T07:36:17.198Z"
},
{
"name": "Dösjebro",
"latlon": "13.0328995389856 55.8229849229653",
"updated": "2015-11-05T07:36:17.057Z"
},
{
"name": "Derome",
"latlon": "12.3201453601302 57.2305586748659",
"updated": "2015-11-05T07:36:17.385Z"
},
{
"name": "Ed",
"latlon": "11.932872334364 58.9134899995091",
"updated": "2015-11-05T07:36:22.19Z"
},
{
"name": "Edsbjörke",
"latlon": "13.1709931791619 59.9012524707535",
"updated": "2015-11-05T07:36:21.457Z"
},
{
"name": "Eksjö",
"latlon": "14.9754283704148 57.6637529804974",
"updated": "2015-11-05T07:36:23.657Z"
},
{
"name": "Degerfors",
"latlon": "14.4403553486943 59.2288762795347",
"updated": "2015-11-05T07:36:23.22Z"
},
{
"name": "Emmaboda",
"latlon": "15.5349355137986 56.6297895899469",
"updated": "2015-11-05T07:36:24.936Z"
},
{
"name": "Enafors",
"latlon": "12.337325380481 63.2897788824675",
"updated": "2015-11-05T07:36:26.418Z"
},
{
"name": "Enköping",
"latlon": "17.0886564829173 59.6445798456081",
"updated": "2015-11-05T07:36:27.775Z"
},
{
"name": "Diö",
"latlon": "14.2142306244619 56.6330857609311",
"updated": "2015-11-05T07:36:28.602Z"
},
{
"name": "Edane",
"latlon": "12.8293413495825 59.6268090245988",
"updated": "2015-11-05T07:36:31.395Z"
},
{
"name": "Erikslund",
"latlon": "15.9125596952188 62.5273896737415",
"updated": "2015-11-05T07:36:32.923Z"
},
{
"name": "Eskilstuna C",
"latlon": "16.5054559022885 59.3693875916149",
"updated": "2016-02-26T10:00:06.27Z"
},
{
"name": "Fredriksdal",
"latlon": "14.5944469057398 57.6158745862139",
"updated": "2015-11-05T07:36:35.747Z"
},
{
"name": "Fågelsjö",
"latlon": "14.6820784664882 61.8016045720116",
"updated": "2015-11-05T07:36:39.242Z"
},
{
"name": "Falköping C",
"latlon": "13.5520061823309 58.1757438389766",
"updated": "2015-11-05T07:36:39.304Z"
},
{
"name": "Filipstad",
"latlon": "14.159470306207 59.7083494204666",
"updated": "2015-11-05T07:36:42.44Z"
},
{
"name": "Fagerås",
"latlon": "13.2181750560206 59.5197774491083",
"updated": "2015-11-05T07:36:42.066Z"
},
{
"name": "Flen",
"latlon": "16.5852782322459 59.0569465930196",
"updated": "2015-11-05T07:36:43.906Z"
},
{
"name": "Dingtuna",
"latlon": "16.3897790145116 59.5715644267142",
"updated": "2015-11-05T07:36:45.732Z"
},
{
"name": "Friluftsgården",
"latlon": "12.2516320948587 58.9507813364635",
"updated": "2015-11-05T07:36:44.609Z"
},
{
"name": "Forserum",
"latlon": "14.474112547818 57.6978566313073",
"updated": "2015-11-05T07:36:47.354Z"
},
{
"name": "Ekenässjön",
"latlon": "15.0189169114996 57.4905054171018",
"updated": "2015-11-05T07:36:50.162Z"
},
{
"name": "Fristad",
"latlon": "13.0086261492004 57.8274249839282",
"updated": "2015-11-05T07:36:52.128Z"
},
{
"name": "Ekeryd",
"latlon": "14.1058803397571 57.6094287115452",
"updated": "2015-11-05T07:36:53.064Z"
},
{
"name": "Falkenberg",
"latlon": "12.5087243158207 56.9195066417958",
"updated": "2015-11-05T07:36:58.166Z"
},
{
"name": "Forshem",
"latlon": "13.491826356044 58.6180831751924",
"updated": "2015-11-05T07:36:58.056Z"
},
{
"name": "Frykåsen",
"latlon": "13.1847908399415 59.6264562303535",
"updated": "2015-11-05T07:36:58.259Z"
},
{
"name": "Fagersta Norra",
"latlon": "15.7753448854304 60.0086419915385",
"updated": "2015-11-05T07:36:59.024Z"
},
{
"name": "Frövi",
"latlon": "15.3636943735569 59.4676199690732",
"updated": "2015-11-05T07:37:00.334Z"
},
{
"name": "Forsheda",
"latlon": "13.8329175160426 57.1632729653273",
"updated": "2015-11-05T07:37:01.13Z"
},
{
"name": "Fagersta C",
"latlon": "15.8154658557136 59.9905487548437",
"updated": "2015-11-05T07:37:00.381Z"
},
{
"name": "Charlottenberg",
"latlon": "12.2992640873846 59.8831304389512",
"updated": "2015-11-05T07:37:01.848Z"
},
{
"name": "Fors",
"latlon": "16.3115207083685 60.2064994834294",
"updated": "2015-11-05T07:37:00.49Z"
},
{
"name": "Falun C",
"latlon": "15.6417266980283 60.6032473070255",
"updated": "2015-11-05T07:37:03.813Z"
},
{
"name": "Fritsla",
"latlon": "12.7897675449533 57.5577430306981",
"updated": "2015-11-05T07:37:04.063Z"
},
{
"name": "Furuvik",
"latlon": "17.3373249581562 60.6508340182463",
"updated": "2015-11-05T07:37:05.014Z"
},
{
"name": "Falerum",
"latlon": "16.2071941852431 58.1436384207624",
"updated": "2015-11-05T07:37:04.125Z"
},
{
"name": "Farsta strand",
"latlon": "18.1041371217327 59.2367049603428",
"updated": "2015-11-05T07:37:05.966Z"
},
{
"name": "Furuvik",
"latlon": "17.3296824499988 60.651416395415",
"updated": "2015-11-05T07:37:06.387Z"
},
{
"name": "Floby",
"latlon": "13.3322272215307 58.1387436140628",
"updated": "2015-11-05T07:37:09.757Z"
},
{
"name": "Göteborg C",
"latlon": "11.9738943525784 57.7089007755225",
"updated": "2016-02-26T10:00:06.379Z"
},
{
"name": "Fårhult",
"latlon": "16.3999246160154 57.7338262405517",
"updated": "2015-11-05T07:37:10.6Z"
},
{
"name": "Framnäs city",
"latlon": "13.147312245826 58.5077120962695",
"updated": "2015-11-05T07:37:12.097Z"
},
{
"name": "Fränsta",
"latlon": "16.1674488535114 62.4960126034106",
"updated": "2015-11-05T07:37:12.269Z"
},
{
"name": "Floda",
"latlon": "12.3614818285874 57.8100025563089",
"updated": "2015-11-05T07:37:13.626Z"
},
{
"name": "Gamlestaden",
"latlon": "12.0044597508843 57.7360700845657",
"updated": "2015-11-05T07:37:16.59Z"
},
{
"name": "Gantofta",
"latlon": "12.8090012606602 55.9890456107358",
"updated": "2015-11-05T07:37:15.217Z"
},
{
"name": "Gagnef",
"latlon": "15.081034651319 60.5987555588554",
"updated": "2015-11-05T07:37:15.561Z"
},
{
"name": "Förslöv",
"latlon": "12.8013642097102 56.3554348402735",
"updated": "2016-04-24T20:00:04.458Z"
},
{
"name": "Gnosjö",
"latlon": "13.7349999806626 57.3585171451769",
"updated": "2015-11-05T07:37:26.247Z"
},
{
"name": "Gnarp",
"latlon": "17.2429183281157 62.0553507307757",
"updated": "2015-11-05T07:37:25.202Z"
},
{
"name": "Karlskrona C",
"latlon": "15.5852513496702 56.1670568462734",
"updated": "2016-02-26T10:00:06.114Z"
},
{
"name": "Gällivare",
"latlon": "20.6510745005776 67.1333248857204",
"updated": "2015-11-05T07:37:38.073Z"
},
{
"name": "Gävle C",
"latlon": "17.1517500385491 60.676086133455",
"updated": "2015-11-05T07:37:39.102Z"
},
{
"name": "Gröndalsviken",
"latlon": "17.9317290389689 58.8992532022516",
"updated": "2015-11-05T07:37:39.43Z"
},
{
"name": "Järnvägsmuseum",
"latlon": "17.1517500385491 60.676086133455",
"updated": "2015-11-05T07:37:40.803Z"
},
{
"name": "Filsbäck",
"latlon": "13.2472011125749 58.4931698165164",
"updated": "2015-11-05T07:37:42.441Z"
},
{
"name": "Gällö",
"latlon": "15.2294995005834 62.9112338237777",
"updated": "2015-11-05T07:37:41.255Z"
},
{
"name": "Gårdsjö",
"latlon": "14.3338023969986 58.8721304875829",
"updated": "2015-11-05T07:37:42.379Z"
},
{
"name": "Fordonsmagasinet",
"latlon": "17.1517500385491 60.676086133455",
"updated": "2015-11-05T07:37:46.606Z"
},
{
"name": "Gärsnäs",
"latlon": "14.181556623064 55.5464975281798",
"updated": "2015-11-05T07:37:46.934Z"
},
{
"name": "Gamleby",
"latlon": "16.4096370113393 57.8969935008067",
"updated": "2015-11-05T07:37:47.745Z"
},
{
"name": "Halmstad C",
"latlon": "12.8648189805825 56.669602913586",
"updated": "2015-11-05T07:37:50.085Z"
},
{
"name": "Fjällåsen",
"latlon": "20.0937032079087 67.5193569699856",
"updated": "2015-11-27T12:27:47.518Z"
},
{
"name": "Grästorp",
"latlon": "12.6857774600212 58.3345934334522",
"updated": "2015-11-05T07:37:50.273Z"
},
{
"name": "Holmsveden",
"latlon": "16.7190918591055 61.1197088573286",
"updated": "2015-11-05T07:37:51.536Z"
},
{
"name": "Hedemora",
"latlon": "15.9802354933937 60.274104352677",
"updated": "2015-11-05T07:37:50.6Z"
},
{
"name": "Hultsfred",
"latlon": "15.8471133448818 57.4859112144215",
"updated": "2015-11-05T07:37:52.519Z"
},
{
"name": "Gasklockorna",
"latlon": "17.1517500385491 60.676086133455",
"updated": "2015-11-05T07:37:53.83Z"
},
{
"name": "Fjälkinge",
"latlon": "14.298079224161 56.041440495738",
"updated": "2015-11-05T07:37:52.784Z"
},
{
"name": "Fåker",
"latlon": "14.5743926077072 62.9932005969487",
"updated": "2015-11-05T07:37:57.153Z"
},
{
"name": "Grängesberg",
"latlon": "15.0034320996029 60.075037517036",
"updated": "2015-11-05T07:37:56.373Z"
},
{
"name": "Hallstahammar",
"latlon": "16.22019443689 59.6146559281278",
"updated": "2015-11-05T07:37:58.323Z"
},
{
"name": "Hestra",
"latlon": "13.5957537999081 57.4431079111657",
"updated": "2015-11-05T07:38:00.71Z"
},
{
"name": "Hjärup",
"latlon": "13.1361803466787 55.6738087816691",
"updated": "2015-11-05T07:38:02.238Z"
},
{
"name": "Häggvik",
"latlon": "17.9337082297925 59.443229737156",
"updated": "2015-11-05T07:38:03.97Z"
},
{
"name": "Hällefors",
"latlon": "14.5180500304255 59.7777456719305",
"updated": "2015-12-14T15:00:05.579Z"
},
{
"name": "Hällekis",
"latlon": "13.4330235948983 58.6300547944381",
"updated": "2015-11-05T07:38:04.563Z"
},
{
"name": "Grythyttan",
"latlon": "14.5304854480136 59.7038422804499",
"updated": "2015-11-05T07:38:06.217Z"
},
{
"name": "Gävle hamn",
"latlon": "17.1517500385491 60.676086133455",
"updated": "2015-11-05T07:38:07.824Z"
},
{
"name": "Hemfosa",
"latlon": "17.9765802941488 59.0687886825316",
"updated": "2015-11-05T07:38:08.026Z"
},
{
"name": "Helenelund",
"latlon": "17.9631198951495 59.4085359646815",
"updated": "2015-11-05T07:38:06.498Z"
},
{
"name": "Kristianstad C",
"latlon": "14.1508312750579 56.0322216407474",
"updated": "2015-11-05T07:38:11.786Z"
},
{
"name": "Horndals Bruk",
"latlon": "16.4134623254661 60.2961174041789",
"updated": "2015-11-05T07:38:13.19Z"
},
{
"name": "Hällevadsholm",
"latlon": "11.535223797959 58.5800096706227",
"updated": "2015-11-05T07:38:14.407Z"
},
{
"name": "Handen",
"latlon": "18.1340834074442 59.1662851271394",
"updated": "2015-11-05T07:38:18.713Z"
},
{
"name": "Hallsberg",
"latlon": "15.1112478172538 59.0671090589881",
"updated": "2016-02-26T10:00:06.519Z"
},
{
"name": "Huskvarna",
"latlon": "14.2647650683231 57.7823655729354",
"updated": "2015-11-05T07:38:21.084Z"
},
{
"name": "Hyllie",
"latlon": "12.9763343217418 55.5631479716257",
"updated": "2015-11-05T07:38:21.256Z"
},
{
"name": "Hällnäs",
"latlon": "19.6258875908338 64.3054741976039",
"updated": "2015-11-05T07:38:25.281Z"
},
{
"name": "Herrljunga",
"latlon": "13.0209486928172 58.0790570049692",
"updated": "2015-11-05T07:38:26.435Z"
},
{
"name": "Hoting",
"latlon": "16.1991096184601 64.1155930295054",
"updated": "2015-11-05T07:38:26.607Z"
},
{
"name": "Hudiksvall",
"latlon": "17.1091816131139 61.7246637258046",
"updated": "2015-11-05T07:38:24.517Z"
},
{
"name": "Helsingborg C",
"latlon": "12.6951703844657 56.0435376883783",
"updated": "2016-02-26T10:00:06.488Z"
},
{
"name": "Hillerstorp",
"latlon": "13.8836280947338 57.3135939314312",
"updated": "2015-11-05T07:38:27.559Z"
},
{
"name": "Huddinge",
"latlon": "17.9780431454181 59.2357454525235",
"updated": "2015-11-05T07:38:29.524Z"
},
{
"name": "Glumslöv",
"latlon": "12.8141720514794 55.9440115123064",
"updated": "2015-11-05T07:38:30.46Z"
},
{
"name": "Håverud",
"latlon": "12.4129096109095 58.8245969418537",
"updated": "2015-11-05T07:38:31.989Z"
},
{
"name": "Högboda",
"latlon": "13.0511550065696 59.5575199294804",
"updated": "2015-11-05T07:38:32.66Z"
},
{
"name": "Hörnefors",
"latlon": "19.9123428677067 63.6330013295118",
"updated": "2015-11-05T07:38:34.688Z"
},
{
"name": "Gemla",
"latlon": "14.6462490495045 56.870765167956",
"updated": "2015-11-05T07:38:35.048Z"
},
{
"name": "Horred",
"latlon": "12.4776538138191 57.3537220041402",
"updated": "2015-11-05T07:38:37.808Z"
},
{
"name": "Heby",
"latlon": "16.8531647607442 59.9404344960413",
"updated": "2015-11-05T07:38:37.34Z"
},
{
"name": "Hälleforsnäs",
"latlon": "16.5025592986284 59.1619964627486",
"updated": "2015-11-05T07:38:38.526Z"
},
{
"name": "Habo",
"latlon": "14.0769505945176 57.9063931265591",
"updated": "2015-11-05T07:38:41.943Z"
},
{
"name": "Högsby",
"latlon": "16.0274645830568 57.1658502905439",
"updated": "2015-11-05T07:38:41.147Z"
},
{
"name": "Grums",
"latlon": "13.1137647699469 59.3530015079341",
"updated": "2015-11-05T07:38:43.394Z"
},
{
"name": "Häljarp",
"latlon": "12.9125577126453 55.8608240709573",
"updated": "2015-11-05T07:38:43.331Z"
},
{
"name": "Jakobsberg",
"latlon": "17.8331196186415 59.4238058774284",
"updated": "2015-11-05T07:38:47.029Z"
},
{
"name": "Gnesta",
"latlon": "17.31284113434 59.0485492768045",
"updated": "2015-11-05T07:38:47.871Z"
},
{
"name": "Ramlösa",
"latlon": "12.7219092811599 56.0271198582432",
"updated": "2015-11-05T07:38:49.088Z"
},
{
"name": "Gunnesbo",
"latlon": "13.1685166597849 55.7257555005575",
"updated": "2015-11-05T07:38:51.444Z"
},
{
"name": "Jonsered",
"latlon": "12.1736234197867 57.7498461339853",
"updated": "2015-11-05T07:38:51.225Z"
},
{
"name": "Järpås",
"latlon": "12.9699505035732 58.3789839449479",
"updated": "2015-11-05T07:38:50.96Z"
},
{
"name": "Ingmår",
"latlon": "13.1752825065428 59.8784715310039",
"updated": "2015-11-05T07:38:53.877Z"
},
{
"name": "Järvsö",
"latlon": "16.1720935637869 61.7156944322997",
"updated": "2015-11-05T07:38:50.866Z"
},
{
"name": "Hovslätt",
"latlon": "14.1239484958983 57.7348856340212",
"updated": "2015-11-05T07:38:54.595Z"
},
{
"name": "Järna",
"latlon": "17.5683889007515 59.0938175589973",
"updated": "2015-11-05T07:38:56.218Z"
},
{
"name": "Hovmantorp",
"latlon": "15.1395841840132 56.7862197356799",
"updated": "2015-11-05T07:38:56.654Z"
},
{
"name": "Insjön",
"latlon": "15.0944054907308 60.6755121238602",
"updated": "2015-11-05T07:38:56.451Z"
},
{
"name": "Hässleholm",
"latlon": "13.7632071830411 56.1579059392938",
"updated": "2016-02-26T10:00:06.441Z"
},