Newer
Older
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
{
"type": "FeatureCollection",
"name": "matrix_25x25_4326_with_transparency",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "id": 1, "transparent": true, "lat": 54.92, "lon": 5.008 }, "geometry": { "type": "Point", "coordinates": [ 5.0084803137923, 54.918032369542168 ] } },
{ "type": "Feature", "properties": { "id": 2, "transparent": true, "lat": 54.7, "lon": 5.063 }, "geometry": { "type": "Point", "coordinates": [ 5.063480662645452, 54.696755869986298 ] } },
{ "type": "Feature", "properties": { "id": 3, "transparent": true, "lat": 54.48, "lon": 5.118 }, "geometry": { "type": "Point", "coordinates": [ 5.117737010569596, 54.47543430228847 ] } },
{ "type": "Feature", "properties": { "id": 4, "transparent": true, "lat": 54.25, "lon": 5.171 }, "geometry": { "type": "Point", "coordinates": [ 5.171262832808234, 54.254068336213194 ] } },
{ "type": "Feature", "properties": { "id": 5, "transparent": true, "lat": 54.03, "lon": 5.224 }, "geometry": { "type": "Point", "coordinates": [ 5.224071277747368, 54.032658625194024 ] } },
{ "type": "Feature", "properties": { "id": 6, "transparent": true, "lat": 53.81, "lon": 5.276 }, "geometry": { "type": "Point", "coordinates": [ 5.276175176614958, 53.811205806842814 ] } },
{ "type": "Feature", "properties": { "id": 7, "transparent": true, "lat": 53.59, "lon": 5.328 }, "geometry": { "type": "Point", "coordinates": [ 5.327587052839805, 53.589710503440749 ] } },
{ "type": "Feature", "properties": { "id": 8, "transparent": true, "lat": 53.37, "lon": 5.378 }, "geometry": { "type": "Point", "coordinates": [ 5.378319131083608, 53.36817332241187 ] } },
{ "type": "Feature", "properties": { "id": 9, "transparent": true, "lat": 53.15, "lon": 5.428 }, "geometry": { "type": "Point", "coordinates": [ 5.428383345959187, 53.146594856780126 ] } },
{ "type": "Feature", "properties": { "id": 10, "transparent": true, "lat": 52.92, "lon": 5.478 }, "geometry": { "type": "Point", "coordinates": [ 5.477791350447543, 52.924975685610235 ] } },
{ "type": "Feature", "properties": { "id": 11, "transparent": true, "lat": 52.7, "lon": 5.527 }, "geometry": { "type": "Point", "coordinates": [ 5.526554524025576, 52.703316374433314 ] } },
{ "type": "Feature", "properties": { "id": 12, "transparent": true, "lat": 52.48, "lon": 5.575 }, "geometry": { "type": "Point", "coordinates": [ 5.57468398051596, 52.481617475657643 ] } },
{ "type": "Feature", "properties": { "id": 13, "transparent": true, "lat": 52.26, "lon": 5.622 }, "geometry": { "type": "Point", "coordinates": [ 5.62219057567005, 52.259879528965385 ] } },
{ "type": "Feature", "properties": { "id": 14, "transparent": true, "lat": 52.04, "lon": 5.669 }, "geometry": { "type": "Point", "coordinates": [ 5.669084914494253, 52.038103061695601 ] } },
{ "type": "Feature", "properties": { "id": 15, "transparent": true, "lat": 51.82, "lon": 5.715 }, "geometry": { "type": "Point", "coordinates": [ 5.715377358329879, 51.816288589214352 ] } },
{ "type": "Feature", "properties": { "id": 16, "transparent": true, "lat": 51.59, "lon": 5.761 }, "geometry": { "type": "Point", "coordinates": [ 5.761078031695916, 51.594436615272066 ] } },
{ "type": "Feature", "properties": { "id": 17, "transparent": true, "lat": 51.37, "lon": 5.806 }, "geometry": { "type": "Point", "coordinates": [ 5.806196828903959, 51.372547632349033 ] } },
{ "type": "Feature", "properties": { "id": 18, "transparent": true, "lat": 51.15, "lon": 5.851 }, "geometry": { "type": "Point", "coordinates": [ 5.850743420453904, 51.150622121989208 ] } },
{ "type": "Feature", "properties": { "id": 19, "transparent": true, "lat": 50.93, "lon": 5.895 }, "geometry": { "type": "Point", "coordinates": [ 5.894727259218888, 50.92866055512286 ] } },
{ "type": "Feature", "properties": { "id": 20, "transparent": true, "lat": 50.71, "lon": 5.938 }, "geometry": { "type": "Point", "coordinates": [ 5.938157586427306, 50.706663392378587 ] } },
{ "type": "Feature", "properties": { "id": 21, "transparent": true, "lat": 50.48, "lon": 5.981 }, "geometry": { "type": "Point", "coordinates": [ 5.981043437449706, 50.484631084385022 ] } },
{ "type": "Feature", "properties": { "id": 22, "transparent": true, "lat": 50.26, "lon": 6.023 }, "geometry": { "type": "Point", "coordinates": [ 6.023393647397778, 50.26256407206251 ] } },
{ "type": "Feature", "properties": { "id": 23, "transparent": true, "lat": 50.04, "lon": 6.065 }, "geometry": { "type": "Point", "coordinates": [ 6.065216856542509, 50.040462786905408 ] } },
{ "type": "Feature", "properties": { "id": 24, "transparent": true, "lat": 49.82, "lon": 6.107 }, "geometry": { "type": "Point", "coordinates": [ 6.106521515558205, 49.818327651255096 ] } },
{ "type": "Feature", "properties": { "id": 25, "transparent": true, "lat": 49.6, "lon": 6.147 }, "geometry": { "type": "Point", "coordinates": [ 6.147315890598782, 49.596159078564277 ] } },
{ "type": "Feature", "properties": { "id": 26, "transparent": true, "lat": 49.37, "lon": 6.188 }, "geometry": { "type": "Point", "coordinates": [ 6.187608068212614, 49.37395747365251 ] } },
{ "type": "Feature", "properties": { "id": 27, "transparent": true, "lat": 49.15, "lon": 6.227 }, "geometry": { "type": "Point", "coordinates": [ 6.227405960101651, 49.151723232953948 ] } },
{ "type": "Feature", "properties": { "id": 28, "transparent": true, "lat": 48.93, "lon": 6.267 }, "geometry": { "type": "Point", "coordinates": [ 6.26671730773069, 48.929456744756862 ] } },
{ "type": "Feature", "properties": { "id": 29, "transparent": true, "lat": 48.71, "lon": 6.306 }, "geometry": { "type": "Point", "coordinates": [ 6.305549686792086, 48.707158389435662 ] } },
{ "type": "Feature", "properties": { "id": 30, "transparent": true, "lat": 48.48, "lon": 6.344 }, "geometry": { "type": "Point", "coordinates": [ 6.343910511531186, 48.484828539675675 ] } },
{ "type": "Feature", "properties": { "id": 31, "transparent": true, "lat": 48.26, "lon": 6.382 }, "geometry": { "type": "Point", "coordinates": [ 6.381807038937446, 48.26246756069078 ] } },
{ "type": "Feature", "properties": { "id": 32, "transparent": true, "lat": 48.04, "lon": 6.419 }, "geometry": { "type": "Point", "coordinates": [ 6.419246372806087, 48.040075810434274 ] } },
{ "type": "Feature", "properties": { "id": 33, "transparent": true, "lat": 47.82, "lon": 6.456 }, "geometry": { "type": "Point", "coordinates": [ 6.456235467674817, 47.817653639803162 ] } },
{ "type": "Feature", "properties": { "id": 34, "transparent": true, "lat": 47.6, "lon": 6.493 }, "geometry": { "type": "Point", "coordinates": [ 6.492781132640118, 47.595201392836152 ] } },
{ "type": "Feature", "properties": { "id": 35, "transparent": true, "lat": 47.37, "lon": 6.529 }, "geometry": { "type": "Point", "coordinates": [ 6.528890035057294, 47.372719406905503 ] } },
{ "type": "Feature", "properties": { "id": 36, "transparent": true, "lat": 47.15, "lon": 6.565 }, "geometry": { "type": "Point", "coordinates": [ 6.564568704128345, 47.1502080129031 ] } },
{ "type": "Feature", "properties": { "id": 37, "transparent": true, "lat": 54.95, "lon": 5.393 }, "geometry": { "type": "Point", "coordinates": [ 5.392957650074747, 54.949329352535131 ] } },
{ "type": "Feature", "properties": { "id": 38, "transparent": true, "lat": 54.73, "lon": 5.446 }, "geometry": { "type": "Point", "coordinates": [ 5.445922523082977, 54.727798595041101 ] } },
{ "type": "Feature", "properties": { "id": 39, "transparent": true, "lat": 54.51, "lon": 5.498 }, "geometry": { "type": "Point", "coordinates": [ 5.498169623982019, 54.506225477394061 ] } },
{ "type": "Feature", "properties": { "id": 40, "transparent": true, "lat": 54.28, "lon": 5.55 }, "geometry": { "type": "Point", "coordinates": [ 5.549711988576254, 54.284610619429294 ] } },
{ "type": "Feature", "properties": { "id": 41, "transparent": true, "lat": 54.06, "lon": 5.601 }, "geometry": { "type": "Point", "coordinates": [ 5.600562335418259, 54.062954625823664 ] } },
{ "type": "Feature", "properties": { "id": 42, "transparent": true, "lat": 53.84, "lon": 5.651 }, "geometry": { "type": "Point", "coordinates": [ 5.650733075261929, 53.84125808657074 ] } },
{ "type": "Feature", "properties": { "id": 43, "transparent": true, "lat": 53.62, "lon": 5.7 }, "geometry": { "type": "Point", "coordinates": [ 5.700236320182034, 53.619521577439201 ] } },
{ "type": "Feature", "properties": { "id": 44, "transparent": true, "lat": 53.4, "lon": 5.749 }, "geometry": { "type": "Point", "coordinates": [ 5.749083892373795, 53.397745660414593 ] } },
{ "type": "Feature", "properties": { "id": 45, "transparent": true, "lat": 53.18, "lon": 5.797 }, "geometry": { "type": "Point", "coordinates": [ 5.797287332645219, 53.17593088412584 ] } },
{ "type": "Feature", "properties": { "id": 46, "transparent": true, "lat": 52.95, "lon": 5.845 }, "geometry": { "type": "Point", "coordinates": [ 5.844857908614721, 52.954077784256476 ] } },
{ "type": "Feature", "properties": { "id": 47, "transparent": true, "lat": 52.73, "lon": 5.892 }, "geometry": { "type": "Point", "coordinates": [ 5.891806622625626, 52.732186883941651 ] } },
{ "type": "Feature", "properties": { "id": 48, "transparent": true, "lat": 52.51, "lon": 5.938 }, "geometry": { "type": "Point", "coordinates": [ 5.938144219388888, 52.510258694151304 ] } },
{ "type": "Feature", "properties": { "id": 49, "transparent": true, "lat": 52.29, "lon": 5.984 }, "geometry": { "type": "Point", "coordinates": [ 5.983881193364697, 52.288293714060096 ] } },
{ "type": "Feature", "properties": { "id": 50, "transparent": true, "lat": 52.07, "lon": 6.029 }, "geometry": { "type": "Point", "coordinates": [ 6.029027795893287, 52.06629243140457 ] } },
{ "type": "Feature", "properties": { "id": 51, "transparent": false, "lat": 51.84, "lon": 6.074 }, "geometry": { "type": "Point", "coordinates": [ 6.073594042084662, 51.844255322828246 ] } },
{ "type": "Feature", "properties": { "id": 52, "transparent": false, "lat": 51.62, "lon": 6.118 }, "geometry": { "type": "Point", "coordinates": [ 6.117589717476728, 51.62218285421477 ] } },
{ "type": "Feature", "properties": { "id": 53, "transparent": true, "lat": 51.4, "lon": 6.161 }, "geometry": { "type": "Point", "coordinates": [ 6.161024384470668, 51.400075481009949 ] } },
{ "type": "Feature", "properties": { "id": 54, "transparent": false, "lat": 51.18, "lon": 6.204 }, "geometry": { "type": "Point", "coordinates": [ 6.203907388552197, 51.177933648532921 ] } },
{ "type": "Feature", "properties": { "id": 55, "transparent": false, "lat": 50.96, "lon": 6.246 }, "geometry": { "type": "Point", "coordinates": [ 6.246247864306913, 50.955757792276863 ] } },
{ "type": "Feature", "properties": { "id": 56, "transparent": false, "lat": 50.73, "lon": 6.288 }, "geometry": { "type": "Point", "coordinates": [ 6.288054741237502, 50.733548338199761 ] } },
{ "type": "Feature", "properties": { "id": 57, "transparent": false, "lat": 50.51, "lon": 6.329 }, "geometry": { "type": "Point", "coordinates": [ 6.329336749390398, 50.511305703005455 ] } },
{ "type": "Feature", "properties": { "id": 58, "transparent": false, "lat": 50.29, "lon": 6.37 }, "geometry": { "type": "Point", "coordinates": [ 6.370102424799014, 50.289030294415525 ] } },
{ "type": "Feature", "properties": { "id": 59, "transparent": false, "lat": 50.07, "lon": 6.41 }, "geometry": { "type": "Point", "coordinates": [ 6.410360114750477, 50.066722511432189 ] } },
{ "type": "Feature", "properties": { "id": 60, "transparent": false, "lat": 49.84, "lon": 6.45 }, "geometry": { "type": "Point", "coordinates": [ 6.450117982882398, 49.844382744592671 ] } },
{ "type": "Feature", "properties": { "id": 61, "transparent": false, "lat": 49.62, "lon": 6.489 }, "geometry": { "type": "Point", "coordinates": [ 6.489384014116036, 49.62201137621534 ] } },
{ "type": "Feature", "properties": { "id": 62, "transparent": true, "lat": 49.4, "lon": 6.528 }, "geometry": { "type": "Point", "coordinates": [ 6.52816601943191, 49.399608780637799 ] } },
{ "type": "Feature", "properties": { "id": 63, "transparent": true, "lat": 49.18, "lon": 6.566 }, "geometry": { "type": "Point", "coordinates": [ 6.566471640493573, 49.177175324447447 ] } },
{ "type": "Feature", "properties": { "id": 64, "transparent": true, "lat": 48.95, "lon": 6.604 }, "geometry": { "type": "Point", "coordinates": [ 6.604308354125207, 48.954711366704629 ] } },
{ "type": "Feature", "properties": { "id": 65, "transparent": true, "lat": 48.73, "lon": 6.642 }, "geometry": { "type": "Point", "coordinates": [ 6.641683476648299, 48.732217259158695 ] } },
{ "type": "Feature", "properties": { "id": 66, "transparent": true, "lat": 48.51, "lon": 6.679 }, "geometry": { "type": "Point", "coordinates": [ 6.678604168082507, 48.509693346457141 ] } },
{ "type": "Feature", "properties": { "id": 67, "transparent": true, "lat": 48.29, "lon": 6.715 }, "geometry": { "type": "Point", "coordinates": [ 6.715077436215656, 48.287139966348349 ] } },
{ "type": "Feature", "properties": { "id": 68, "transparent": true, "lat": 48.06, "lon": 6.751 }, "geometry": { "type": "Point", "coordinates": [ 6.751110140547485, 48.064557449877803 ] } },
{ "type": "Feature", "properties": { "id": 69, "transparent": true, "lat": 47.84, "lon": 6.787 }, "geometry": { "type": "Point", "coordinates": [ 6.786708996111741, 47.841946121578253 ] } },
{ "type": "Feature", "properties": { "id": 70, "transparent": true, "lat": 47.62, "lon": 6.822 }, "geometry": { "type": "Point", "coordinates": [ 6.821880577180863, 47.619306299654014 ] } },
{ "type": "Feature", "properties": { "id": 71, "transparent": true, "lat": 47.4, "lon": 6.857 }, "geometry": { "type": "Point", "coordinates": [ 6.856631320857491, 47.396638296159452 ] } },
{ "type": "Feature", "properties": { "id": 72, "transparent": true, "lat": 47.17, "lon": 6.891 }, "geometry": { "type": "Point", "coordinates": [ 6.890967530556667, 47.173942417172185 ] } },
{ "type": "Feature", "properties": { "id": 73, "transparent": true, "lat": 54.98, "lon": 5.778 }, "geometry": { "type": "Point", "coordinates": [ 5.778166065131252, 54.979419661954729 ] } },
{ "type": "Feature", "properties": { "id": 74, "transparent": true, "lat": 54.76, "lon": 5.829 }, "geometry": { "type": "Point", "coordinates": [ 5.829082101130972, 54.75764408105389 ] } },
{ "type": "Feature", "properties": { "id": 75, "transparent": true, "lat": 54.54, "lon": 5.879 }, "geometry": { "type": "Point", "coordinates": [ 5.879306920833596, 54.535828756441276 ] } },
{ "type": "Feature", "properties": { "id": 76, "transparent": true, "lat": 54.31, "lon": 5.929 }, "geometry": { "type": "Point", "coordinates": [ 5.928853110805987, 54.313974259521288 ] } },
{ "type": "Feature", "properties": { "id": 77, "transparent": true, "lat": 54.09, "lon": 5.978 }, "geometry": { "type": "Point", "coordinates": [ 5.977732950316526, 54.092081147683103 ] } },
{ "type": "Feature", "properties": { "id": 78, "transparent": true, "lat": 53.87, "lon": 6.026 }, "geometry": { "type": "Point", "coordinates": [ 6.025958420527717, 53.870149964742701 ] } },
{ "type": "Feature", "properties": { "id": 79, "transparent": true, "lat": 53.65, "lon": 6.074 }, "geometry": { "type": "Point", "coordinates": [ 6.073541213362939, 53.648181241368846 ] } },
{ "type": "Feature", "properties": { "id": 80, "transparent": true, "lat": 53.43, "lon": 6.12 }, "geometry": { "type": "Point", "coordinates": [ 6.120492740060571, 53.426175495493986 ] } },
{ "type": "Feature", "properties": { "id": 81, "transparent": true, "lat": 53.2, "lon": 6.167 }, "geometry": { "type": "Point", "coordinates": [ 6.166824139428202, 53.20413323271061 ] } },
{ "type": "Feature", "properties": { "id": 82, "transparent": true, "lat": 52.98, "lon": 6.213 }, "geometry": { "type": "Point", "coordinates": [ 6.212546285809011, 52.982054946653541 ] } },
{ "type": "Feature", "properties": { "id": 83, "transparent": true, "lat": 52.76, "lon": 6.258 }, "geometry": { "type": "Point", "coordinates": [ 6.257669796771823, 52.759941119368918 ] } },
{ "type": "Feature", "properties": { "id": 84, "transparent": true, "lat": 52.54, "lon": 6.302 }, "geometry": { "type": "Point", "coordinates": [ 6.302205040535959, 52.537792221670202 ] } },
{ "type": "Feature", "properties": { "id": 85, "transparent": true, "lat": 52.32, "lon": 6.346 }, "geometry": { "type": "Point", "coordinates": [ 6.346162143141302, 52.31560871348195 ] } },
{ "type": "Feature", "properties": { "id": 86, "transparent": true, "lat": 52.09, "lon": 6.39 }, "geometry": { "type": "Point", "coordinates": [ 6.389550995373694, 52.093391044171675 ] } },
{ "type": "Feature", "properties": { "id": 87, "transparent": false, "lat": 51.87, "lon": 6.432 }, "geometry": { "type": "Point", "coordinates": [ 6.432381259455245, 51.871139652870376 ] } },
{ "type": "Feature", "properties": { "id": 88, "transparent": false, "lat": 51.65, "lon": 6.475 }, "geometry": { "type": "Point", "coordinates": [ 6.474662375508809, 51.64885496878199 ] } },
{ "type": "Feature", "properties": { "id": 89, "transparent": false, "lat": 51.43, "lon": 6.516 }, "geometry": { "type": "Point", "coordinates": [ 6.516403567805257, 51.426537411482613 ] } },
{ "type": "Feature", "properties": { "id": 90, "transparent": false, "lat": 51.2, "lon": 6.558 }, "geometry": { "type": "Point", "coordinates": [ 6.557613850802112, 51.204187391209288 ] } },
{ "type": "Feature", "properties": { "id": 91, "transparent": false, "lat": 50.98, "lon": 6.598 }, "geometry": { "type": "Point", "coordinates": [ 6.598302034981447, 50.981805309139439 ] } },
{ "type": "Feature", "properties": { "id": 92, "transparent": false, "lat": 50.76, "lon": 6.638 }, "geometry": { "type": "Point", "coordinates": [ 6.638476732494788, 50.759391557660713 ] } },
{ "type": "Feature", "properties": { "id": 93, "transparent": false, "lat": 50.54, "lon": 6.678 }, "geometry": { "type": "Point", "coordinates": [ 6.678146362622368, 50.536946520631993 ] } },
{ "type": "Feature", "properties": { "id": 94, "transparent": false, "lat": 50.31, "lon": 6.717 }, "geometry": { "type": "Point", "coordinates": [ 6.7173191570537, 50.314470573635759 ] } },
{ "type": "Feature", "properties": { "id": 95, "transparent": false, "lat": 50.09, "lon": 6.756 }, "geometry": { "type": "Point", "coordinates": [ 6.756003164996305, 50.091964084222198 ] } },
{ "type": "Feature", "properties": { "id": 96, "transparent": false, "lat": 49.87, "lon": 6.794 }, "geometry": { "type": "Point", "coordinates": [ 6.794206258118952, 49.869427412145164 ] } },
{ "type": "Feature", "properties": { "id": 97, "transparent": false, "lat": 49.65, "lon": 6.832 }, "geometry": { "type": "Point", "coordinates": [ 6.831936135335622, 49.646860909590764 ] } },
{ "type": "Feature", "properties": { "id": 98, "transparent": false, "lat": 49.42, "lon": 6.869 }, "geometry": { "type": "Point", "coordinates": [ 6.869200327436098, 49.424264921398169 ] } },
{ "type": "Feature", "properties": { "id": 99, "transparent": true, "lat": 49.2, "lon": 6.906 }, "geometry": { "type": "Point", "coordinates": [ 6.906006201568838, 49.201639785273741 ] } },
{ "type": "Feature", "properties": { "id": 100, "transparent": true, "lat": 48.98, "lon": 6.942 }, "geometry": { "type": "Point", "coordinates": [ 6.942360965581596, 48.978985831997875 ] } },
{ "type": "Feature", "properties": { "id": 101, "transparent": true, "lat": 48.76, "lon": 6.978 }, "geometry": { "type": "Point", "coordinates": [ 6.978271672224912, 48.756303385625571 ] } },
{ "type": "Feature", "properties": { "id": 102, "transparent": true, "lat": 48.53, "lon": 7.014 }, "geometry": { "type": "Point", "coordinates": [ 7.013745223223587, 48.533592763680439 ] } },
{ "type": "Feature", "properties": { "id": 103, "transparent": true, "lat": 48.31, "lon": 7.049 }, "geometry": { "type": "Point", "coordinates": [ 7.04878837322077, 48.310854277342756 ] } },
{ "type": "Feature", "properties": { "id": 104, "transparent": true, "lat": 48.09, "lon": 7.083 }, "geometry": { "type": "Point", "coordinates": [ 7.083407733599384, 48.088088231631431 ] } },
{ "type": "Feature", "properties": { "id": 105, "transparent": true, "lat": 47.87, "lon": 7.118 }, "geometry": { "type": "Point", "coordinates": [ 7.117609776185186, 47.865294925580422 ] } },
{ "type": "Feature", "properties": { "id": 106, "transparent": true, "lat": 47.64, "lon": 7.151 }, "geometry": { "type": "Point", "coordinates": [ 7.151400836835773, 47.642474652409604 ] } },
{ "type": "Feature", "properties": { "id": 107, "transparent": true, "lat": 47.42, "lon": 7.185 }, "geometry": { "type": "Point", "coordinates": [ 7.184787118919495, 47.419627699690324 ] } },
{ "type": "Feature", "properties": { "id": 108, "transparent": true, "lat": 47.2, "lon": 7.218 }, "geometry": { "type": "Point", "coordinates": [ 7.217774696688234, 47.196754349505966 ] } },
{ "type": "Feature", "properties": { "id": 109, "transparent": true, "lat": 55.01, "lon": 6.164 }, "geometry": { "type": "Point", "coordinates": [ 6.164078545439946, 55.008298334212462 ] } },
{ "type": "Feature", "properties": { "id": 110, "transparent": true, "lat": 54.79, "lon": 6.213 }, "geometry": { "type": "Point", "coordinates": [ 6.212932842680751, 54.786287447492981 ] } },
{ "type": "Feature", "properties": { "id": 111, "transparent": true, "lat": 54.56, "lon": 6.261 }, "geometry": { "type": "Point", "coordinates": [ 6.261122796208424, 54.564239340058535 ] } },
{ "type": "Feature", "properties": { "id": 112, "transparent": true, "lat": 54.34, "lon": 6.309 }, "geometry": { "type": "Point", "coordinates": [ 6.308660533822311, 54.342154536436361 ] } },
{ "type": "Feature", "properties": { "id": 113, "transparent": true, "lat": 54.12, "lon": 6.356 }, "geometry": { "type": "Point", "coordinates": [ 6.355557886316293, 54.120033548250703 ] } },
{ "type": "Feature", "properties": { "id": 114, "transparent": false, "lat": 53.9, "lon": 6.402 }, "geometry": { "type": "Point", "coordinates": [ 6.401826396396971, 53.897876874632153 ] } },
{ "type": "Feature", "properties": { "id": 115, "transparent": false, "lat": 53.68, "lon": 6.447 }, "geometry": { "type": "Point", "coordinates": [ 6.447477327284289, 53.675685002612262 ] } },
{ "type": "Feature", "properties": { "id": 116, "transparent": true, "lat": 53.45, "lon": 6.493 }, "geometry": { "type": "Point", "coordinates": [ 6.492521671007617, 53.453458407503916 ] } },
{ "type": "Feature", "properties": { "id": 117, "transparent": true, "lat": 53.23, "lon": 6.537 }, "geometry": { "type": "Point", "coordinates": [ 6.536970156409664, 53.231197553268444 ] } },
{ "type": "Feature", "properties": { "id": 118, "transparent": true, "lat": 53.01, "lon": 6.581 }, "geometry": { "type": "Point", "coordinates": [ 6.580833256870115, 53.008902892869493 ] } },
{ "type": "Feature", "properties": { "id": 119, "transparent": true, "lat": 52.79, "lon": 6.624 }, "geometry": { "type": "Point", "coordinates": [ 6.624121197760248, 52.786574868614558 ] } },
{ "type": "Feature", "properties": { "id": 120, "transparent": true, "lat": 52.56, "lon": 6.667 }, "geometry": { "type": "Point", "coordinates": [ 6.666843963639349, 52.564213912484604 ] } },
{ "type": "Feature", "properties": { "id": 121, "transparent": true, "lat": 52.34, "lon": 6.709 }, "geometry": { "type": "Point", "coordinates": [ 6.70901130520318, 52.341820446452189 ] } },
{ "type": "Feature", "properties": { "id": 122, "transparent": true, "lat": 52.12, "lon": 6.751 }, "geometry": { "type": "Point", "coordinates": [ 6.75063274599441, 52.119394882788534 ] } },
{ "type": "Feature", "properties": { "id": 123, "transparent": false, "lat": 51.9, "lon": 6.792 }, "geometry": { "type": "Point", "coordinates": [ 6.791717588884293, 51.89693762436017 ] } },
{ "type": "Feature", "properties": { "id": 124, "transparent": false, "lat": 51.67, "lon": 6.832 }, "geometry": { "type": "Point", "coordinates": [ 6.832274922334686, 51.674449064915315 ] } },
{ "type": "Feature", "properties": { "id": 125, "transparent": false, "lat": 51.45, "lon": 6.872 }, "geometry": { "type": "Point", "coordinates": [ 6.872313626448898, 51.451929589360503 ] } },
{ "type": "Feature", "properties": { "id": 126, "transparent": false, "lat": 51.23, "lon": 6.912 }, "geometry": { "type": "Point", "coordinates": [ 6.911842378819611, 51.229379574028016 ] } },
{ "type": "Feature", "properties": { "id": 127, "transparent": false, "lat": 51.01, "lon": 6.951 }, "geometry": { "type": "Point", "coordinates": [ 6.950869660181711, 51.006799386934063 ] } },
{ "type": "Feature", "properties": { "id": 128, "transparent": false, "lat": 50.78, "lon": 6.989 }, "geometry": { "type": "Point", "coordinates": [ 6.989403759877503, 50.784189388028587 ] } },
{ "type": "Feature", "properties": { "id": 129, "transparent": false, "lat": 50.56, "lon": 7.027 }, "geometry": { "type": "Point", "coordinates": [ 7.027452781141512, 50.561549929436545 ] } },
{ "type": "Feature", "properties": { "id": 130, "transparent": false, "lat": 50.34, "lon": 7.065 }, "geometry": { "type": "Point", "coordinates": [ 7.065024646211738, 50.338881355691264 ] } },
{ "type": "Feature", "properties": { "id": 131, "transparent": false, "lat": 50.12, "lon": 7.102 }, "geometry": { "type": "Point", "coordinates": [ 7.102127101273877, 50.116184003960157 ] } },
{ "type": "Feature", "properties": { "id": 132, "transparent": false, "lat": 49.89, "lon": 7.139 }, "geometry": { "type": "Point", "coordinates": [ 7.138767721244887, 49.893458204262998 ] } },
{ "type": "Feature", "properties": { "id": 133, "transparent": false, "lat": 49.67, "lon": 7.175 }, "geometry": { "type": "Point", "coordinates": [ 7.174953914401804, 49.670704279683065 ] } },
{ "type": "Feature", "properties": { "id": 134, "transparent": false, "lat": 49.45, "lon": 7.211 }, "geometry": { "type": "Point", "coordinates": [ 7.210692926861707, 49.447922546571448 ] } },
{ "type": "Feature", "properties": { "id": 135, "transparent": false, "lat": 49.23, "lon": 7.246 }, "geometry": { "type": "Point", "coordinates": [ 7.245991846918232, 49.225113314744746 ] } },
{ "type": "Feature", "properties": { "id": 136, "transparent": true, "lat": 49.0, "lon": 7.281 }, "geometry": { "type": "Point", "coordinates": [ 7.280857609239993, 49.002276887676508 ] } },
{ "type": "Feature", "properties": { "id": 137, "transparent": true, "lat": 48.78, "lon": 7.315 }, "geometry": { "type": "Point", "coordinates": [ 7.315296998935976, 48.779413562682372 ] } },
{ "type": "Feature", "properties": { "id": 138, "transparent": true, "lat": 48.56, "lon": 7.349 }, "geometry": { "type": "Point", "coordinates": [ 7.34931665549274, 48.556523631099481 ] } },
{ "type": "Feature", "properties": { "id": 139, "transparent": true, "lat": 48.33, "lon": 7.383 }, "geometry": { "type": "Point", "coordinates": [ 7.382923076588104, 48.333607378460179 ] } },
{ "type": "Feature", "properties": { "id": 140, "transparent": true, "lat": 48.11, "lon": 7.416 }, "geometry": { "type": "Point", "coordinates": [ 7.416122621785783, 48.110665084660148 ] } },
{ "type": "Feature", "properties": { "id": 141, "transparent": true, "lat": 47.89, "lon": 7.449 }, "geometry": { "type": "Point", "coordinates": [ 7.448921516115258, 47.887697024121458 ] } },
{ "type": "Feature", "properties": { "id": 142, "transparent": true, "lat": 47.66, "lon": 7.481 }, "geometry": { "type": "Point", "coordinates": [ 7.481325853540979, 47.664703465950311 ] } },
{ "type": "Feature", "properties": { "id": 143, "transparent": true, "lat": 47.44, "lon": 7.513 }, "geometry": { "type": "Point", "coordinates": [ 7.513341600324873, 47.441684674090077 ] } },
{ "type": "Feature", "properties": { "id": 144, "transparent": true, "lat": 47.22, "lon": 7.545 }, "geometry": { "type": "Point", "coordinates": [ 7.544974598285901, 47.218640907469521 ] } },
{ "type": "Feature", "properties": { "id": 145, "transparent": true, "lat": 55.04, "lon": 6.551 }, "geometry": { "type": "Point", "coordinates": [ 6.550667750884366, 55.035960589748399 ] } },
{ "type": "Feature", "properties": { "id": 146, "transparent": true, "lat": 54.81, "lon": 6.597 }, "geometry": { "type": "Point", "coordinates": [ 6.597447876910784, 54.813723995039588 ] } },
{ "type": "Feature", "properties": { "id": 147, "transparent": true, "lat": 54.59, "lon": 6.644 }, "geometry": { "type": "Point", "coordinates": [ 6.643590838005326, 54.591452607327774 ] } },
{ "type": "Feature", "properties": { "id": 148, "transparent": true, "lat": 54.37, "lon": 6.689 }, "geometry": { "type": "Point", "coordinates": [ 6.689108293952819, 54.369146905870934 ] } },
{ "type": "Feature", "properties": { "id": 149, "transparent": false, "lat": 54.15, "lon": 6.734 }, "geometry": { "type": "Point", "coordinates": [ 6.734011618156718, 54.146807358103281 ] } },
{ "type": "Feature", "properties": { "id": 150, "transparent": false, "lat": 53.92, "lon": 6.778 }, "geometry": { "type": "Point", "coordinates": [ 6.778311906269264, 53.924434420012744 ] } },
{ "type": "Feature", "properties": { "id": 151, "transparent": false, "lat": 53.7, "lon": 6.822 }, "geometry": { "type": "Point", "coordinates": [ 6.822019984512973, 53.70202853650494 ] } },
{ "type": "Feature", "properties": { "id": 152, "transparent": false, "lat": 53.48, "lon": 6.865 }, "geometry": { "type": "Point", "coordinates": [ 6.865146417706239, 53.479590141753832 ] } },
{ "type": "Feature", "properties": { "id": 153, "transparent": true, "lat": 53.26, "lon": 6.908 }, "geometry": { "type": "Point", "coordinates": [ 6.907701517005152, 53.257119659540209 ] } },
{ "type": "Feature", "properties": { "id": 154, "transparent": true, "lat": 53.03, "lon": 6.95 }, "geometry": { "type": "Point", "coordinates": [ 6.94969534737309, 53.034617503577877 ] } },
{ "type": "Feature", "properties": { "id": 155, "transparent": true, "lat": 52.81, "lon": 6.991 }, "geometry": { "type": "Point", "coordinates": [ 6.991137734789072, 52.812084077828551 ] } },
{ "type": "Feature", "properties": { "id": 156, "transparent": false, "lat": 52.59, "lon": 7.032 }, "geometry": { "type": "Point", "coordinates": [ 7.032038273205502, 52.589519776805602 ] } },
{ "type": "Feature", "properties": { "id": 157, "transparent": true, "lat": 52.37, "lon": 7.072 }, "geometry": { "type": "Point", "coordinates": [ 7.072406331265202, 52.366924985867207 ] } },
{ "type": "Feature", "properties": { "id": 158, "transparent": false, "lat": 52.14, "lon": 7.112 }, "geometry": { "type": "Point", "coordinates": [ 7.112251058787439, 52.144300081499374 ] } },
{ "type": "Feature", "properties": { "id": 159, "transparent": false, "lat": 51.92, "lon": 7.152 }, "geometry": { "type": "Point", "coordinates": [ 7.151581393032041, 51.921645431589255 ] } },
{ "type": "Feature", "properties": { "id": 160, "transparent": false, "lat": 51.7, "lon": 7.19 }, "geometry": { "type": "Point", "coordinates": [ 7.190406064750389, 51.698961395688961 ] } },
{ "type": "Feature", "properties": { "id": 161, "transparent": false, "lat": 51.48, "lon": 7.229 }, "geometry": { "type": "Point", "coordinates": [ 7.228733604031612, 51.47624832527049 ] } },
{ "type": "Feature", "properties": { "id": 162, "transparent": false, "lat": 51.25, "lon": 7.267 }, "geometry": { "type": "Point", "coordinates": [ 7.266572345951977, 51.253506563971918 ] } },
{ "type": "Feature", "properties": { "id": 163, "transparent": false, "lat": 51.03, "lon": 7.304 }, "geometry": { "type": "Point", "coordinates": [ 7.303930436035148, 51.030736447835395 ] } },
{ "type": "Feature", "properties": { "id": 164, "transparent": false, "lat": 50.81, "lon": 7.341 }, "geometry": { "type": "Point", "coordinates": [ 7.340815835530542, 50.807938305537057 ] } },
{ "type": "Feature", "properties": { "id": 165, "transparent": false, "lat": 50.59, "lon": 7.377 }, "geometry": { "type": "Point", "coordinates": [ 7.377236326516857, 50.585112458609281 ] } },
{ "type": "Feature", "properties": { "id": 166, "transparent": false, "lat": 50.36, "lon": 7.413 }, "geometry": { "type": "Point", "coordinates": [ 7.413199516837365, 50.362259221655599 ] } },
{ "type": "Feature", "properties": { "id": 167, "transparent": false, "lat": 50.14, "lon": 7.449 }, "geometry": { "type": "Point", "coordinates": [ 7.44871284487341, 50.139378902558505 ] } },
{ "type": "Feature", "properties": { "id": 168, "transparent": false, "lat": 49.92, "lon": 7.484 }, "geometry": { "type": "Point", "coordinates": [ 7.483783584162233, 49.916471802680377 ] } },
{ "type": "Feature", "properties": { "id": 169, "transparent": false, "lat": 49.69, "lon": 7.518 }, "geometry": { "type": "Point", "coordinates": [ 7.518418847864929, 49.693538217057913 ] } },
{ "type": "Feature", "properties": { "id": 170, "transparent": false, "lat": 49.47, "lon": 7.553 }, "geometry": { "type": "Point", "coordinates": [ 7.552625593090223, 49.470578434590152 ] } },
{ "type": "Feature", "properties": { "id": 171, "transparent": false, "lat": 49.25, "lon": 7.586 }, "geometry": { "type": "Point", "coordinates": [ 7.586410625079342, 49.247592738220519 ] } },
{ "type": "Feature", "properties": { "id": 172, "transparent": true, "lat": 49.02, "lon": 7.62 }, "geometry": { "type": "Point", "coordinates": [ 7.619780601257195, 49.024581405112912 ] } },
{ "type": "Feature", "properties": { "id": 173, "transparent": true, "lat": 48.8, "lon": 7.653 }, "geometry": { "type": "Point", "coordinates": [ 7.652742035154775, 48.801544706822199 ] } },
{ "type": "Feature", "properties": { "id": 174, "transparent": true, "lat": 48.58, "lon": 7.685 }, "geometry": { "type": "Point", "coordinates": [ 7.685301300207461, 48.578482909459275 ] } },
{ "type": "Feature", "properties": { "id": 175, "transparent": true, "lat": 48.36, "lon": 7.717 }, "geometry": { "type": "Point", "coordinates": [ 7.71746463343382, 48.355396273850808 ] } },
{ "type": "Feature", "properties": { "id": 176, "transparent": false, "lat": 48.13, "lon": 7.749 }, "geometry": { "type": "Point", "coordinates": [ 7.749238138999184, 48.132285055694169 ] } },
{ "type": "Feature", "properties": { "id": 177, "transparent": false, "lat": 47.91, "lon": 7.781 }, "geometry": { "type": "Point", "coordinates": [ 7.780627791668187, 47.909149505707127 ] } },
{ "type": "Feature", "properties": { "id": 178, "transparent": false, "lat": 47.69, "lon": 7.812 }, "geometry": { "type": "Point", "coordinates": [ 7.811639440150279, 47.685989869773266 ] } },
{ "type": "Feature", "properties": { "id": 179, "transparent": true, "lat": 47.46, "lon": 7.842 }, "geometry": { "type": "Point", "coordinates": [ 7.842278810341994, 47.462806389082537 ] } },
{ "type": "Feature", "properties": { "id": 180, "transparent": true, "lat": 47.24, "lon": 7.873 }, "geometry": { "type": "Point", "coordinates": [ 7.872551508469684, 47.239599300267706 ] } },
{ "type": "Feature", "properties": { "id": 181, "transparent": true, "lat": 55.06, "lon": 6.938 }, "geometry": { "type": "Point", "coordinates": [ 6.937906025618378, 55.062401835720998 ] } },
{ "type": "Feature", "properties": { "id": 182, "transparent": true, "lat": 54.84, "lon": 6.983 }, "geometry": { "type": "Point", "coordinates": [ 6.982600026859773, 54.839949208202214 ] } },
{ "type": "Feature", "properties": { "id": 183, "transparent": true, "lat": 54.62, "lon": 7.027 }, "geometry": { "type": "Point", "coordinates": [ 7.026684337228003, 54.617464118326126 ] } },
{ "type": "Feature", "properties": { "id": 184, "transparent": true, "lat": 54.39, "lon": 7.07 }, "geometry": { "type": "Point", "coordinates": [ 7.070170139543611, 54.394947001741983 ] } },
{ "type": "Feature", "properties": { "id": 185, "transparent": false, "lat": 54.17, "lon": 7.113 }, "geometry": { "type": "Point", "coordinates": [ 7.113068341191755, 54.172398283319659 ] } },
{ "type": "Feature", "properties": { "id": 186, "transparent": false, "lat": 53.95, "lon": 7.155 }, "geometry": { "type": "Point", "coordinates": [ 7.155389582450923, 53.949818377496186 ] } },
{ "type": "Feature", "properties": { "id": 187, "transparent": false, "lat": 53.73, "lon": 7.197 }, "geometry": { "type": "Point", "coordinates": [ 7.197144244522606, 53.727207688609845 ] } },
{ "type": "Feature", "properties": { "id": 188, "transparent": false, "lat": 53.5, "lon": 7.238 }, "geometry": { "type": "Point", "coordinates": [ 7.23834245727435, 53.504566611221925 ] } },
{ "type": "Feature", "properties": { "id": 189, "transparent": false, "lat": 53.28, "lon": 7.279 }, "geometry": { "type": "Point", "coordinates": [ 7.278994106707864, 53.281895530427462 ] } },
{ "type": "Feature", "properties": { "id": 190, "transparent": false, "lat": 53.06, "lon": 7.319 }, "geometry": { "type": "Point", "coordinates": [ 7.319108842163586, 53.059194822154438 ] } },
{ "type": "Feature", "properties": { "id": 191, "transparent": false, "lat": 52.84, "lon": 7.359 }, "geometry": { "type": "Point", "coordinates": [ 7.358696083272267, 52.836464853452711 ] } },
{ "type": "Feature", "properties": { "id": 192, "transparent": false, "lat": 52.61, "lon": 7.398 }, "geometry": { "type": "Point", "coordinates": [ 7.397765026663953, 52.613705982772714 ] } },
{ "type": "Feature", "properties": { "id": 193, "transparent": false, "lat": 52.39, "lon": 7.436 }, "geometry": { "type": "Point", "coordinates": [ 7.436324652444033, 52.390918560234383 ] } },
{ "type": "Feature", "properties": { "id": 194, "transparent": false, "lat": 52.17, "lon": 7.474 }, "geometry": { "type": "Point", "coordinates": [ 7.474383730445712, 52.168102927886714 ] } },
{ "type": "Feature", "properties": { "id": 195, "transparent": false, "lat": 51.95, "lon": 7.512 }, "geometry": { "type": "Point", "coordinates": [ 7.511950826267797, 51.94525941995844 ] } },
{ "type": "Feature", "properties": { "id": 196, "transparent": false, "lat": 51.72, "lon": 7.549 }, "geometry": { "type": "Point", "coordinates": [ 7.54903430710633, 51.722388363100009 ] } },
{ "type": "Feature", "properties": { "id": 197, "transparent": false, "lat": 51.5, "lon": 7.586 }, "geometry": { "type": "Point", "coordinates": [ 7.585642347388128, 51.499490076617292 ] } },
{ "type": "Feature", "properties": { "id": 198, "transparent": false, "lat": 51.28, "lon": 7.622 }, "geometry": { "type": "Point", "coordinates": [ 7.621782934214026, 51.276564872697456 ] } },
{ "type": "Feature", "properties": { "id": 199, "transparent": false, "lat": 51.05, "lon": 7.657 }, "geometry": { "type": "Point", "coordinates": [ 7.657463872619236, 51.053613056626993 ] } },
{ "type": "Feature", "properties": { "id": 200, "transparent": false, "lat": 50.83, "lon": 7.693 }, "geometry": { "type": "Point", "coordinates": [ 7.692692790657919, 50.830634927002592 ] } },
{ "type": "Feature", "properties": { "id": 201, "transparent": false, "lat": 50.61, "lon": 7.727 }, "geometry": { "type": "Point", "coordinates": [ 7.727477144318683, 50.607630775934894 ] } },
{ "type": "Feature", "properties": { "id": 202, "transparent": false, "lat": 50.38, "lon": 7.762 }, "geometry": { "type": "Point", "coordinates": [ 7.761824222277595, 50.384600889245469 ] } },
{ "type": "Feature", "properties": { "id": 203, "transparent": false, "lat": 50.16, "lon": 7.796 }, "geometry": { "type": "Point", "coordinates": [ 7.795741150494815, 50.16154554665723 ] } },
{ "type": "Feature", "properties": { "id": 204, "transparent": false, "lat": 49.94, "lon": 7.829 }, "geometry": { "type": "Point", "coordinates": [ 7.829234896660825, 49.938465021978658 ] } },
{ "type": "Feature", "properties": { "id": 205, "transparent": false, "lat": 49.72, "lon": 7.862 }, "geometry": { "type": "Point", "coordinates": [ 7.86231227449792, 49.715359583281924 ] } },
{ "type": "Feature", "properties": { "id": 206, "transparent": false, "lat": 49.49, "lon": 7.895 }, "geometry": { "type": "Point", "coordinates": [ 7.894979947922437, 49.492229493075207 ] } },
{ "type": "Feature", "properties": { "id": 207, "transparent": false, "lat": 49.27, "lon": 7.927 }, "geometry": { "type": "Point", "coordinates": [ 7.927244435072835, 49.269075008469478 ] } },
{ "type": "Feature", "properties": { "id": 208, "transparent": false, "lat": 49.05, "lon": 7.959 }, "geometry": { "type": "Point", "coordinates": [ 7.959112112208729, 49.045896381339823 ] } },
{ "type": "Feature", "properties": { "id": 209, "transparent": true, "lat": 48.82, "lon": 7.991 }, "geometry": { "type": "Point", "coordinates": [ 7.990589217485527, 48.822693858481678 ] } },
{ "type": "Feature", "properties": { "id": 210, "transparent": false, "lat": 48.6, "lon": 8.022 }, "geometry": { "type": "Point", "coordinates": [ 8.021681854609389, 48.599467681761965 ] } },
{ "type": "Feature", "properties": { "id": 211, "transparent": false, "lat": 48.38, "lon": 8.052 }, "geometry": { "type": "Point", "coordinates": [ 8.052395996376728, 48.376218088265539 ] } },
{ "type": "Feature", "properties": { "id": 212, "transparent": false, "lat": 48.15, "lon": 8.083 }, "geometry": { "type": "Point", "coordinates": [ 8.082737488102607, 48.152945310436841 ] } },
{ "type": "Feature", "properties": { "id": 213, "transparent": false, "lat": 47.93, "lon": 8.113 }, "geometry": { "type": "Point", "coordinates": [ 8.112712050941973, 47.929649576217336 ] } },
{ "type": "Feature", "properties": { "id": 214, "transparent": false, "lat": 47.71, "lon": 8.142 }, "geometry": { "type": "Point", "coordinates": [ 8.142325285107594, 47.7063311091784 ] } },
{ "type": "Feature", "properties": { "id": 215, "transparent": true, "lat": 47.48, "lon": 8.172 }, "geometry": { "type": "Point", "coordinates": [ 8.171582672988473, 47.482990128650158 ] } },
{ "type": "Feature", "properties": { "id": 216, "transparent": true, "lat": 47.26, "lon": 8.2 }, "geometry": { "type": "Point", "coordinates": [ 8.200489582172191, 47.259626849846391 ] } },
{ "type": "Feature", "properties": { "id": 217, "transparent": true, "lat": 55.09, "lon": 7.326 }, "geometry": { "type": "Point", "coordinates": [ 7.325765409291256, 55.087617668607614 ] } },
{ "type": "Feature", "properties": { "id": 218, "transparent": true, "lat": 54.86, "lon": 7.368 }, "geometry": { "type": "Point", "coordinates": [ 7.36836182034495, 54.864958757843922 ] } },
{ "type": "Feature", "properties": { "id": 219, "transparent": true, "lat": 54.64, "lon": 7.41 }, "geometry": { "type": "Point", "coordinates": [ 7.410376298606061, 54.642269616582482 ] } },
{ "type": "Feature", "properties": { "id": 220, "transparent": true, "lat": 54.42, "lon": 7.452 }, "geometry": { "type": "Point", "coordinates": [ 7.451819541292394, 54.419550638575345 ] } },
{ "type": "Feature", "properties": { "id": 221, "transparent": true, "lat": 54.2, "lon": 7.493 }, "geometry": { "type": "Point", "coordinates": [ 7.492701981444237, 54.196802207803024 ] } },
{ "type": "Feature", "properties": { "id": 222, "transparent": false, "lat": 53.97, "lon": 7.533 }, "geometry": { "type": "Point", "coordinates": [ 7.533033795938699, 53.974024698790934 ] } },
{ "type": "Feature", "properties": { "id": 223, "transparent": false, "lat": 53.75, "lon": 7.573 }, "geometry": { "type": "Point", "coordinates": [ 7.572824913215204, 53.75121847691446 ] } },
{ "type": "Feature", "properties": { "id": 224, "transparent": false, "lat": 53.53, "lon": 7.612 }, "geometry": { "type": "Point", "coordinates": [ 7.612085020724153, 53.528383898692859 ] } },
{ "type": "Feature", "properties": { "id": 225, "transparent": false, "lat": 53.31, "lon": 7.651 }, "geometry": { "type": "Point", "coordinates": [ 7.650823572110165, 53.30552131207282 ] } },
{ "type": "Feature", "properties": { "id": 226, "transparent": false, "lat": 53.08, "lon": 7.689 }, "geometry": { "type": "Point", "coordinates": [ 7.689049794140803, 53.082631056701771 ] } },
{ "type": "Feature", "properties": { "id": 227, "transparent": false, "lat": 52.86, "lon": 7.727 }, "geometry": { "type": "Point", "coordinates": [ 7.726772693391223, 52.8597134641916 ] } },
{ "type": "Feature", "properties": { "id": 228, "transparent": false, "lat": 52.64, "lon": 7.764 }, "geometry": { "type": "Point", "coordinates": [ 7.764001062694611, 52.636768858372982 ] } },
{ "type": "Feature", "properties": { "id": 229, "transparent": false, "lat": 52.41, "lon": 7.801 }, "geometry": { "type": "Point", "coordinates": [ 7.80074348736793, 52.413797555540889 ] } },
{ "type": "Feature", "properties": { "id": 230, "transparent": false, "lat": 52.19, "lon": 7.837 }, "geometry": { "type": "Point", "coordinates": [ 7.837008351221944, 52.190799864691471 ] } },
{ "type": "Feature", "properties": { "id": 231, "transparent": false, "lat": 51.97, "lon": 7.873 }, "geometry": { "type": "Point", "coordinates": [ 7.872803842364181, 51.967776087750835 ] } },
{ "type": "Feature", "properties": { "id": 232, "transparent": false, "lat": 51.74, "lon": 7.908 }, "geometry": { "type": "Point", "coordinates": [ 7.908137958803091, 51.744726519795741 ] } },
{ "type": "Feature", "properties": { "id": 233, "transparent": false, "lat": 51.52, "lon": 7.943 }, "geometry": { "type": "Point", "coordinates": [ 7.943018513861156, 51.521651449266997 ] } },
{ "type": "Feature", "properties": { "id": 234, "transparent": false, "lat": 51.3, "lon": 7.977 }, "geometry": { "type": "Point", "coordinates": [ 7.977453141404602, 51.298551158175385 ] } },
{ "type": "Feature", "properties": { "id": 235, "transparent": false, "lat": 51.08, "lon": 8.011 }, "geometry": { "type": "Point", "coordinates": [ 8.011449300896782, 51.075425922300646 ] } },
{ "type": "Feature", "properties": { "id": 236, "transparent": false, "lat": 50.85, "lon": 8.045 }, "geometry": { "type": "Point", "coordinates": [ 8.045014282282123, 50.852276011383829 ] } },
{ "type": "Feature", "properties": { "id": 237, "transparent": false, "lat": 50.63, "lon": 8.078 }, "geometry": { "type": "Point", "coordinates": [ 8.078155210707212, 50.629101689313103 ] } },
{ "type": "Feature", "properties": { "id": 238, "transparent": false, "lat": 50.41, "lon": 8.111 }, "geometry": { "type": "Point", "coordinates": [ 8.110879051085259, 50.405903214303443 ] } },
{ "type": "Feature", "properties": { "id": 239, "transparent": false, "lat": 50.18, "lon": 8.143 }, "geometry": { "type": "Point", "coordinates": [ 8.143192612509939, 50.182680839070251 ] } },
{ "type": "Feature", "properties": { "id": 240, "transparent": false, "lat": 49.96, "lon": 8.175 }, "geometry": { "type": "Point", "coordinates": [ 8.175102552524386, 49.959434810997386 ] } },
{ "type": "Feature", "properties": { "id": 241, "transparent": false, "lat": 49.74, "lon": 8.207 }, "geometry": { "type": "Point", "coordinates": [ 8.206615381250769, 49.73616537229956 ] } },
{ "type": "Feature", "properties": { "id": 242, "transparent": false, "lat": 49.51, "lon": 8.238 }, "geometry": { "type": "Point", "coordinates": [ 8.237737465385743, 49.512872760179448 ] } },
{ "type": "Feature", "properties": { "id": 243, "transparent": false, "lat": 49.29, "lon": 8.268 }, "geometry": { "type": "Point", "coordinates": [ 8.268475032066805, 49.289557206979808 ] } },
{ "type": "Feature", "properties": { "id": 244, "transparent": false, "lat": 49.07, "lon": 8.299 }, "geometry": { "type": "Point", "coordinates": [ 8.298834172614338, 49.066218940330486 ] } },
{ "type": "Feature", "properties": { "id": 245, "transparent": false, "lat": 48.84, "lon": 8.329 }, "geometry": { "type": "Point", "coordinates": [ 8.32882084615402, 48.842858183290772 ] } },
{ "type": "Feature", "properties": { "id": 246, "transparent": false, "lat": 48.62, "lon": 8.358 }, "geometry": { "type": "Point", "coordinates": [ 8.358440883123921, 48.619475154487354 ] } },
{ "type": "Feature", "properties": { "id": 247, "transparent": false, "lat": 48.4, "lon": 8.388 }, "geometry": { "type": "Point", "coordinates": [ 8.387699988670605, 48.396070068247575 ] } },
{ "type": "Feature", "properties": { "id": 248, "transparent": false, "lat": 48.17, "lon": 8.417 }, "geometry": { "type": "Point", "coordinates": [ 8.416603745938286, 48.172643134728737 ] } },
{ "type": "Feature", "properties": { "id": 249, "transparent": false, "lat": 47.95, "lon": 8.445 }, "geometry": { "type": "Point", "coordinates": [ 8.445157619254868, 47.949194560043161 ] } },
{ "type": "Feature", "properties": { "id": 250, "transparent": true, "lat": 47.73, "lon": 8.473 }, "geometry": { "type": "Point", "coordinates": [ 8.473366957218657, 47.725724546379432 ] } },
{ "type": "Feature", "properties": { "id": 251, "transparent": true, "lat": 47.5, "lon": 8.501 }, "geometry": { "type": "Point", "coordinates": [ 8.501236995689309, 47.502233292119662 ] } },
{ "type": "Feature", "properties": { "id": 252, "transparent": true, "lat": 47.28, "lon": 8.529 }, "geometry": { "type": "Point", "coordinates": [ 8.528772860686425, 47.278720991953428 ] } },
{ "type": "Feature", "properties": { "id": 253, "transparent": true, "lat": 55.11, "lon": 7.714 }, "geometry": { "type": "Point", "coordinates": [ 7.714217648623016, 55.111603876712351 ] } },
{ "type": "Feature", "properties": { "id": 254, "transparent": true, "lat": 54.89, "lon": 7.755 }, "geometry": { "type": "Point", "coordinates": [ 7.754705501215899, 54.888748503619269 ] } },
{ "type": "Feature", "properties": { "id": 255, "transparent": true, "lat": 54.67, "lon": 7.795 }, "geometry": { "type": "Point", "coordinates": [ 7.794639451537678, 54.665865031445875 ] } },
{ "type": "Feature", "properties": { "id": 256, "transparent": true, "lat": 54.44, "lon": 7.834 }, "geometry": { "type": "Point", "coordinates": [ 7.834029702889825, 54.442953813808032 ] } },
{ "type": "Feature", "properties": { "id": 257, "transparent": false, "lat": 54.22, "lon": 7.873 }, "geometry": { "type": "Point", "coordinates": [ 7.872886205955509, 54.220015195519437 ] } },
{ "type": "Feature", "properties": { "id": 258, "transparent": false, "lat": 54.0, "lon": 7.911 }, "geometry": { "type": "Point", "coordinates": [ 7.911218666486961, 53.99704951287908 ] } },
{ "type": "Feature", "properties": { "id": 259, "transparent": false, "lat": 53.77, "lon": 7.949 }, "geometry": { "type": "Point", "coordinates": [ 7.949036552714785, 53.774057093948279 ] } },
{ "type": "Feature", "properties": { "id": 260, "transparent": false, "lat": 53.55, "lon": 7.986 }, "geometry": { "type": "Point", "coordinates": [ 7.98634910249084, 53.551038258817528 ] } },
{ "type": "Feature", "properties": { "id": 261, "transparent": false, "lat": 53.33, "lon": 8.023 }, "geometry": { "type": "Point", "coordinates": [ 8.023165330175607, 53.327993319864042 ] } },
{ "type": "Feature", "properties": { "id": 262, "transparent": false, "lat": 53.1, "lon": 8.059 }, "geometry": { "type": "Point", "coordinates": [ 8.059494033280822, 53.104922581999801 ] } },
{ "type": "Feature", "properties": { "id": 263, "transparent": false, "lat": 52.88, "lon": 8.095 }, "geometry": { "type": "Point", "coordinates": [ 8.095343798877154, 52.881826342911054 ] } },
{ "type": "Feature", "properties": { "id": 264, "transparent": false, "lat": 52.66, "lon": 8.131 }, "geometry": { "type": "Point", "coordinates": [ 8.130723009776721, 52.658704893289112 ] } },
{ "type": "Feature", "properties": { "id": 265, "transparent": false, "lat": 52.44, "lon": 8.166 }, "geometry": { "type": "Point", "coordinates": [ 8.165639850499449, 52.435558517053224 ] } },
{ "type": "Feature", "properties": { "id": 266, "transparent": false, "lat": 52.21, "lon": 8.2 }, "geometry": { "type": "Point", "coordinates": [ 8.200102313032069, 52.212387491565586 ] } },
{ "type": "Feature", "properties": { "id": 267, "transparent": false, "lat": 51.99, "lon": 8.234 }, "geometry": { "type": "Point", "coordinates": [ 8.234118202388009, 51.98919208783893 ] } },
{ "type": "Feature", "properties": { "id": 268, "transparent": false, "lat": 51.77, "lon": 8.268 }, "geometry": { "type": "Point", "coordinates": [ 8.267695141976214, 51.765972570736871 ] } },
{ "type": "Feature", "properties": { "id": 269, "transparent": false, "lat": 51.54, "lon": 8.301 }, "geometry": { "type": "Point", "coordinates": [ 8.300840578786362, 51.542729199167439 ] } },
{ "type": "Feature", "properties": { "id": 270, "transparent": false, "lat": 51.32, "lon": 8.334 }, "geometry": { "type": "Point", "coordinates": [ 8.333561788397818, 51.31946222626997 ] } },
{ "type": "Feature", "properties": { "id": 271, "transparent": false, "lat": 51.1, "lon": 8.366 }, "geometry": { "type": "Point", "coordinates": [ 8.365865879819205, 51.09617189959571 ] } },
{ "type": "Feature", "properties": { "id": 272, "transparent": false, "lat": 50.87, "lon": 8.398 }, "geometry": { "type": "Point", "coordinates": [ 8.397759800165201, 50.872858461282149 ] } },
{ "type": "Feature", "properties": { "id": 273, "transparent": false, "lat": 50.65, "lon": 8.429 }, "geometry": { "type": "Point", "coordinates": [ 8.429250339176892, 50.649522148221756 ] } },
{ "type": "Feature", "properties": { "id": 274, "transparent": false, "lat": 50.43, "lon": 8.46 }, "geometry": { "type": "Point", "coordinates": [ 8.460344133591732, 50.426163192224806 ] } },
{ "type": "Feature", "properties": { "id": 275, "transparent": false, "lat": 50.2, "lon": 8.491 }, "geometry": { "type": "Point", "coordinates": [ 8.491047671368863, 50.202781820176995 ] } },
{ "type": "Feature", "properties": { "id": 276, "transparent": false, "lat": 49.98, "lon": 8.521 }, "geometry": { "type": "Point", "coordinates": [ 8.521367295775351, 49.979378254191708 ] } },
{ "type": "Feature", "properties": { "id": 277, "transparent": false, "lat": 49.76, "lon": 8.551 }, "geometry": { "type": "Point", "coordinates": [ 8.551309209338617, 49.755952711757402 ] } },
{ "type": "Feature", "properties": { "id": 278, "transparent": false, "lat": 49.53, "lon": 8.581 }, "geometry": { "type": "Point", "coordinates": [ 8.580879477670104, 49.532505405879952 ] } },
{ "type": "Feature", "properties": { "id": 279, "transparent": false, "lat": 49.31, "lon": 8.61 }, "geometry": { "type": "Point", "coordinates": [ 8.610084033165039, 49.309036545220692 ] } },
{ "type": "Feature", "properties": { "id": 280, "transparent": false, "lat": 49.09, "lon": 8.639 }, "geometry": { "type": "Point", "coordinates": [ 8.638928678582957, 49.085546334229619 ] } },
{ "type": "Feature", "properties": { "id": 281, "transparent": false, "lat": 48.86, "lon": 8.667 }, "geometry": { "type": "Point", "coordinates": [ 8.667419090513354, 48.862034973274561 ] } },
{ "type": "Feature", "properties": { "id": 282, "transparent": false, "lat": 48.64, "lon": 8.696 }, "geometry": { "type": "Point", "coordinates": [ 8.695560822730798, 48.6385026587661 ] } },
{ "type": "Feature", "properties": { "id": 283, "transparent": false, "lat": 48.41, "lon": 8.723 }, "geometry": { "type": "Point", "coordinates": [ 8.723359309443527, 48.414949583278471 ] } },
{ "type": "Feature", "properties": { "id": 284, "transparent": false, "lat": 48.19, "lon": 8.751 }, "geometry": { "type": "Point", "coordinates": [ 8.750819868439461, 48.191375935666727 ] } },
{ "type": "Feature", "properties": { "id": 285, "transparent": false, "lat": 47.97, "lon": 8.778 }, "geometry": { "type": "Point", "coordinates": [ 8.777947704133345, 47.967781901180075 ] } },
{ "type": "Feature", "properties": { "id": 286, "transparent": false, "lat": 47.74, "lon": 8.805 }, "geometry": { "type": "Point", "coordinates": [ 8.804747910518655, 47.744167661571772 ] } },
{ "type": "Feature", "properties": { "id": 287, "transparent": true, "lat": 47.52, "lon": 8.831 }, "geometry": { "type": "Point", "coordinates": [ 8.831225474027651, 47.520533395205447 ] } },
{ "type": "Feature", "properties": { "id": 288, "transparent": true, "lat": 47.3, "lon": 8.857 }, "geometry": { "type": "Point", "coordinates": [ 8.857385276302917, 47.296879277158254 ] } },
{ "type": "Feature", "properties": { "id": 289, "transparent": true, "lat": 55.13, "lon": 8.103 }, "geometry": { "type": "Point", "coordinates": [ 8.103234209319337, 55.134356442577968 ] } },
{ "type": "Feature", "properties": { "id": 290, "transparent": false, "lat": 54.91, "lon": 8.142 }, "geometry": { "type": "Point", "coordinates": [ 8.14160304093371, 54.911314496317672 ] } },
{ "type": "Feature", "properties": { "id": 291, "transparent": false, "lat": 54.69, "lon": 8.179 }, "geometry": { "type": "Point", "coordinates": [ 8.179446261343926, 54.688246480362857 ] } },
{ "type": "Feature", "properties": { "id": 292, "transparent": false, "lat": 54.47, "lon": 8.217 }, "geometry": { "type": "Point", "coordinates": [ 8.216773571959621, 54.465152710001732 ] } },
{ "type": "Feature", "properties": { "id": 293, "transparent": false, "lat": 54.24, "lon": 8.254 }, "geometry": { "type": "Point", "coordinates": [ 8.253594433421476, 54.242033492649654 ] } },
{ "type": "Feature", "properties": { "id": 294, "transparent": false, "lat": 54.02, "lon": 8.29 }, "geometry": { "type": "Point", "coordinates": [ 8.289918072949471, 54.018889128108668 ] } },
{ "type": "Feature", "properties": { "id": 295, "transparent": false, "lat": 53.8, "lon": 8.326 }, "geometry": { "type": "Point", "coordinates": [ 8.325753491424397, 53.795719908817482 ] } },
{ "type": "Feature", "properties": { "id": 296, "transparent": false, "lat": 53.57, "lon": 8.361 }, "geometry": { "type": "Point", "coordinates": [ 8.36110947021386, 53.572526120092434 ] } },
{ "type": "Feature", "properties": { "id": 297, "transparent": false, "lat": 53.35, "lon": 8.396 }, "geometry": { "type": "Point", "coordinates": [ 8.395994577753354, 53.34930804035978 ] } },
{ "type": "Feature", "properties": { "id": 298, "transparent": false, "lat": 53.13, "lon": 8.43 }, "geometry": { "type": "Point", "coordinates": [ 8.430417175892629, 53.126065941379629 ] } },
{ "type": "Feature", "properties": { "id": 299, "transparent": false, "lat": 52.9, "lon": 8.464 }, "geometry": { "type": "Point", "coordinates": [ 8.464385426016914, 52.902800088461937 ] } },
{ "type": "Feature", "properties": { "id": 300, "transparent": false, "lat": 52.68, "lon": 8.498 }, "geometry": { "type": "Point", "coordinates": [ 8.497907294952331, 52.679510740674857 ] } },
{ "type": "Feature", "properties": { "id": 301, "transparent": false, "lat": 52.46, "lon": 8.531 }, "geometry": { "type": "Point", "coordinates": [ 8.530990560664174, 52.456198151045733 ] } },
{ "type": "Feature", "properties": { "id": 302, "transparent": false, "lat": 52.23, "lon": 8.564 }, "geometry": { "type": "Point", "coordinates": [ 8.563642817756543, 52.232862566755117 ] } },
{ "type": "Feature", "properties": { "id": 303, "transparent": false, "lat": 52.01, "lon": 8.596 }, "geometry": { "type": "Point", "coordinates": [ 8.595871482781257, 52.009504229323937 ] } },
{ "type": "Feature", "properties": { "id": 304, "transparent": false, "lat": 51.79, "lon": 8.628 }, "geometry": { "type": "Point", "coordinates": [ 8.627683799363712, 51.786123374794315 ] } },
{ "type": "Feature", "properties": { "id": 305, "transparent": false, "lat": 51.56, "lon": 8.659 }, "geometry": { "type": "Point", "coordinates": [ 8.659086843152984, 51.56272023390401 ] } },
{ "type": "Feature", "properties": { "id": 306, "transparent": false, "lat": 51.34, "lon": 8.69 }, "geometry": { "type": "Point", "coordinates": [ 8.690087526603122, 51.339295032255045 ] } },
{ "type": "Feature", "properties": { "id": 307, "transparent": false, "lat": 51.12, "lon": 8.721 }, "geometry": { "type": "Point", "coordinates": [ 8.720692603592266, 51.11584799047651 ] } },
{ "type": "Feature", "properties": { "id": 308, "transparent": false, "lat": 50.89, "lon": 8.751 }, "geometry": { "type": "Point", "coordinates": [ 8.750908673885993, 50.892379324381857 ] } },
{ "type": "Feature", "properties": { "id": 309, "transparent": false, "lat": 50.67, "lon": 8.781 }, "geometry": { "type": "Point", "coordinates": [ 8.780742187450903, 50.668889245120873 ] } },
{ "type": "Feature", "properties": { "id": 310, "transparent": false, "lat": 50.45, "lon": 8.81 }, "geometry": { "type": "Point", "coordinates": [ 8.810199448624285, 50.44537795932667 ] } },
{ "type": "Feature", "properties": { "id": 311, "transparent": false, "lat": 50.22, "lon": 8.839 }, "geometry": { "type": "Point", "coordinates": [ 8.839286620145391, 50.221845669257682 ] } },
{ "type": "Feature", "properties": { "id": 312, "transparent": false, "lat": 50.0, "lon": 8.868 }, "geometry": { "type": "Point", "coordinates": [ 8.868009727053648, 49.998292572934922 ] } },
{ "type": "Feature", "properties": { "id": 313, "transparent": false, "lat": 49.77, "lon": 8.896 }, "geometry": { "type": "Point", "coordinates": [ 8.896374660458859, 49.77471886427486 ] } },
{ "type": "Feature", "properties": { "id": 314, "transparent": false, "lat": 49.55, "lon": 8.924 }, "geometry": { "type": "Point", "coordinates": [ 8.92438718118825, 49.551124733217769 ] } },
{ "type": "Feature", "properties": { "id": 315, "transparent": false, "lat": 49.33, "lon": 8.952 }, "geometry": { "type": "Point", "coordinates": [ 8.95205292331503, 49.327510365852049 ] } },
{ "type": "Feature", "properties": { "id": 316, "transparent": false, "lat": 49.1, "lon": 8.979 }, "geometry": { "type": "Point", "coordinates": [ 8.979377397572899, 49.10387594453433 ] } },
{ "type": "Feature", "properties": { "id": 317, "transparent": false, "lat": 48.88, "lon": 9.006 }, "geometry": { "type": "Point", "coordinates": [ 9.006365994660765, 48.8802216480059 ] } },
{ "type": "Feature", "properties": { "id": 318, "transparent": false, "lat": 48.66, "lon": 9.033 }, "geometry": { "type": "Point", "coordinates": [ 9.033023988441746, 48.656547651505178 ] } },
{ "type": "Feature", "properties": { "id": 319, "transparent": false, "lat": 48.43, "lon": 9.059 }, "geometry": { "type": "Point", "coordinates": [ 9.05935653904036, 48.432854126876798 ] } },
{ "type": "Feature", "properties": { "id": 320, "transparent": false, "lat": 48.21, "lon": 9.085 }, "geometry": { "type": "Point", "coordinates": [ 9.085368695841682, 48.209141242677006 ] } },
{ "type": "Feature", "properties": { "id": 321, "transparent": false, "lat": 47.99, "lon": 9.111 }, "geometry": { "type": "Point", "coordinates": [ 9.111065400395987, 47.985409164275914 ] } },
{ "type": "Feature", "properties": { "id": 322, "transparent": true, "lat": 47.76, "lon": 9.136 }, "geometry": { "type": "Point", "coordinates": [ 9.136451489232394, 47.761658053956403 ] } },
{ "type": "Feature", "properties": { "id": 323, "transparent": true, "lat": 47.54, "lon": 9.162 }, "geometry": { "type": "Point", "coordinates": [ 9.161531696584756, 47.537888071009924 ] } },
{ "type": "Feature", "properties": { "id": 324, "transparent": true, "lat": 47.31, "lon": 9.186 }, "geometry": { "type": "Point", "coordinates": [ 9.186310657032973, 47.314099371829407 ] } },
{ "type": "Feature", "properties": { "id": 325, "transparent": true, "lat": 55.16, "lon": 8.493 }, "geometry": { "type": "Point", "coordinates": [ 8.492786288314688, 55.15587154529878 ] } },
{ "type": "Feature", "properties": { "id": 326, "transparent": false, "lat": 54.93, "lon": 8.529 }, "geometry": { "type": "Point", "coordinates": [ 8.529026150464485, 54.932652980110291 ] } },
{ "type": "Feature", "properties": { "id": 327, "transparent": false, "lat": 54.71, "lon": 8.565 }, "geometry": { "type": "Point", "coordinates": [ 8.564768940824274, 54.709410271060662 ] } },
{ "type": "Feature", "properties": { "id": 328, "transparent": false, "lat": 54.49, "lon": 8.6 }, "geometry": { "type": "Point", "coordinates": [ 8.600023851287204, 54.486143696964611 ] } },
{ "type": "Feature", "properties": { "id": 329, "transparent": false, "lat": 54.26, "lon": 8.635 }, "geometry": { "type": "Point", "coordinates": [ 8.634799845105203, 54.262853529651707 ] } },
{ "type": "Feature", "properties": { "id": 330, "transparent": false, "lat": 54.04, "lon": 8.669 }, "geometry": { "type": "Point", "coordinates": [ 8.66910566388632, 54.039540034198986 ] } },
{ "type": "Feature", "properties": { "id": 331, "transparent": false, "lat": 53.82, "lon": 8.703 }, "geometry": { "type": "Point", "coordinates": [ 8.702949834337311, 53.81620346915512 ] } },
{ "type": "Feature", "properties": { "id": 332, "transparent": false, "lat": 53.59, "lon": 8.736 }, "geometry": { "type": "Point", "coordinates": [ 8.736340674762133, 53.592844086756322 ] } },
{ "type": "Feature", "properties": { "id": 333, "transparent": false, "lat": 53.37, "lon": 8.769 }, "geometry": { "type": "Point", "coordinates": [ 8.769286301326568, 53.369462133134654 ] } },
{ "type": "Feature", "properties": { "id": 334, "transparent": false, "lat": 53.15, "lon": 8.802 }, "geometry": { "type": "Point", "coordinates": [ 8.801794634098652, 53.146057848518666 ] } },
{ "type": "Feature", "properties": { "id": 335, "transparent": false, "lat": 52.92, "lon": 8.834 }, "geometry": { "type": "Point", "coordinates": [ 8.833873402874262, 52.922631467427067 ] } },
{ "type": "Feature", "properties": { "id": 336, "transparent": false, "lat": 52.7, "lon": 8.866 }, "geometry": { "type": "Point", "coordinates": [ 8.865530152796609, 52.699183218855332 ] } },
{ "type": "Feature", "properties": { "id": 337, "transparent": false, "lat": 52.48, "lon": 8.897 }, "geometry": { "type": "Point", "coordinates": [ 8.896772249778078, 52.475713326455931 ] } },
{ "type": "Feature", "properties": { "id": 338, "transparent": false, "lat": 52.25, "lon": 8.928 }, "geometry": { "type": "Point", "coordinates": [ 8.927606885732491, 52.252222008712039 ] } },
{ "type": "Feature", "properties": { "id": 339, "transparent": false, "lat": 52.03, "lon": 8.958 }, "geometry": { "type": "Point", "coordinates": [ 8.958041083625398, 52.028709479105366 ] } },
{ "type": "Feature", "properties": { "id": 340, "transparent": false, "lat": 51.81, "lon": 8.988 }, "geometry": { "type": "Point", "coordinates": [ 8.988081702349724, 51.805175946278062 ] } },
{ "type": "Feature", "properties": { "id": 341, "transparent": false, "lat": 51.58, "lon": 9.018 }, "geometry": { "type": "Point", "coordinates": [ 9.017735441433757, 51.581621614189103 ] } },
{ "type": "Feature", "properties": { "id": 342, "transparent": false, "lat": 51.36, "lon": 9.047 }, "geometry": { "type": "Point", "coordinates": [ 9.047008845588151, 51.358046682265226 ] } },
{ "type": "Feature", "properties": { "id": 343, "transparent": false, "lat": 51.13, "lon": 9.076 }, "geometry": { "type": "Point", "coordinates": [ 9.075908309098244, 51.134451345546779 ] } },
{ "type": "Feature", "properties": { "id": 344, "transparent": false, "lat": 50.91, "lon": 9.104 }, "geometry": { "type": "Point", "coordinates": [ 9.104440080067896, 50.910835794828706 ] } },
{ "type": "Feature", "properties": { "id": 345, "transparent": false, "lat": 50.69, "lon": 9.133 }, "geometry": { "type": "Point", "coordinates": [ 9.132610264520467, 50.68720021679659 ] } },
{ "type": "Feature", "properties": { "id": 346, "transparent": false, "lat": 50.46, "lon": 9.16 }, "geometry": { "type": "Point", "coordinates": [ 9.160424830362693, 50.463544794158253 ] } },
{ "type": "Feature", "properties": { "id": 347, "transparent": false, "lat": 50.24, "lon": 9.188 }, "geometry": { "type": "Point", "coordinates": [ 9.187889611216582, 50.239869705771007 ] } },
{ "type": "Feature", "properties": { "id": 348, "transparent": false, "lat": 50.02, "lon": 9.215 }, "geometry": { "type": "Point", "coordinates": [ 9.215010310124521, 50.016175126764487 ] } },
{ "type": "Feature", "properties": { "id": 349, "transparent": false, "lat": 49.79, "lon": 9.242 }, "geometry": { "type": "Point", "coordinates": [ 9.24179250313242, 49.792461228659704 ] } },
{ "type": "Feature", "properties": { "id": 350, "transparent": false, "lat": 49.57, "lon": 9.268 }, "geometry": { "type": "Point", "coordinates": [ 9.26824164275547, 49.568728179483898 ] } },
{ "type": "Feature", "properties": { "id": 351, "transparent": false, "lat": 49.34, "lon": 9.294 }, "geometry": { "type": "Point", "coordinates": [ 9.294363061331062, 49.34497614388183 ] } },
{ "type": "Feature", "properties": { "id": 352, "transparent": false, "lat": 49.12, "lon": 9.32 }, "geometry": { "type": "Point", "coordinates": [ 9.320161974263037, 49.121205283223389 ] } },
{ "type": "Feature", "properties": { "id": 353, "transparent": false, "lat": 48.9, "lon": 9.346 }, "geometry": { "type": "Point", "coordinates": [ 9.345643483161357, 48.89741575570774 ] } },
{ "type": "Feature", "properties": { "id": 354, "transparent": false, "lat": 48.67, "lon": 9.371 }, "geometry": { "type": "Point", "coordinates": [ 9.370812578881109, 48.673607716464012 ] } },
{ "type": "Feature", "properties": { "id": 355, "transparent": false, "lat": 48.45, "lon": 9.396 }, "geometry": { "type": "Point", "coordinates": [ 9.395674144464557, 48.44978131764897 ] } },
{ "type": "Feature", "properties": { "id": 356, "transparent": false, "lat": 48.23, "lon": 9.42 }, "geometry": { "type": "Point", "coordinates": [ 9.420232957989832, 48.225936708541319 ] } },
{ "type": "Feature", "properties": { "id": 357, "transparent": false, "lat": 48.0, "lon": 9.444 }, "geometry": { "type": "Point", "coordinates": [ 9.444493695329665, 48.0020740356332 ] } },
{ "type": "Feature", "properties": { "id": 358, "transparent": false, "lat": 47.78, "lon": 9.468 }, "geometry": { "type": "Point", "coordinates": [ 9.468460932823453, 47.778193442718752 ] } },
{ "type": "Feature", "properties": { "id": 359, "transparent": true, "lat": 47.55, "lon": 9.492 }, "geometry": { "type": "Point", "coordinates": [ 9.49213914986583, 47.554295070979755 ] } },
{ "type": "Feature", "properties": { "id": 360, "transparent": true, "lat": 47.33, "lon": 9.516 }, "geometry": { "type": "Point", "coordinates": [ 9.515532731414721, 47.330379059068868 ] } },
{ "type": "Feature", "properties": { "id": 361, "transparent": true, "lat": 55.18, "lon": 8.883 }, "geometry": { "type": "Point", "coordinates": [ 8.88284482633161, 55.176145562731421 ] } },
{ "type": "Feature", "properties": { "id": 362, "transparent": false, "lat": 54.95, "lon": 8.917 }, "geometry": { "type": "Point", "coordinates": [ 8.916946292475538, 54.952760394697634 ] } },
{ "type": "Feature", "properties": { "id": 363, "transparent": false, "lat": 54.73, "lon": 8.951 }, "geometry": { "type": "Point", "coordinates": [ 8.950579462101979, 54.729352903633647 ] } },
{ "type": "Feature", "properties": { "id": 364, "transparent": false, "lat": 54.51, "lon": 8.984 }, "geometry": { "type": "Point", "coordinates": [ 8.983753010326154, 54.505923333778753 ] } },
{ "type": "Feature", "properties": { "id": 365, "transparent": false, "lat": 54.28, "lon": 9.016 }, "geometry": { "type": "Point", "coordinates": [ 9.016475396015714, 54.282471923231405 ] } },
{ "type": "Feature", "properties": { "id": 366, "transparent": false, "lat": 54.06, "lon": 9.049 }, "geometry": { "type": "Point", "coordinates": [ 9.04875486842599, 54.058998904156276 ] } },
{ "type": "Feature", "properties": { "id": 367, "transparent": false, "lat": 53.84, "lon": 9.081 }, "geometry": { "type": "Point", "coordinates": [ 9.080599473592912, 53.83550450298366 ] } },
{ "type": "Feature", "properties": { "id": 368, "transparent": false, "lat": 53.61, "lon": 9.112 }, "geometry": { "type": "Point", "coordinates": [ 9.112017060493811, 53.611988940601584 ] } },
{ "type": "Feature", "properties": { "id": 369, "transparent": false, "lat": 53.39, "lon": 9.143 }, "geometry": { "type": "Point", "coordinates": [ 9.143015286985817, 53.38845243254115 ] } },
{ "type": "Feature", "properties": { "id": 370, "transparent": false, "lat": 53.16, "lon": 9.174 }, "geometry": { "type": "Point", "coordinates": [ 9.173601625531187, 53.164895189154926 ] } },
{ "type": "Feature", "properties": { "id": 371, "transparent": false, "lat": 52.94, "lon": 9.204 }, "geometry": { "type": "Point", "coordinates": [ 9.203783368718341, 52.941317415789328 ] } },
{ "type": "Feature", "properties": { "id": 372, "transparent": false, "lat": 52.72, "lon": 9.234 }, "geometry": { "type": "Point", "coordinates": [ 9.233567634587052, 52.717719312950528 ] } },
{ "type": "Feature", "properties": { "id": 373, "transparent": false, "lat": 52.49, "lon": 9.263 }, "geometry": { "type": "Point", "coordinates": [ 9.262961371765831, 52.494101076464773 ] } },
{ "type": "Feature", "properties": { "id": 374, "transparent": false, "lat": 52.27, "lon": 9.292 }, "geometry": { "type": "Point", "coordinates": [ 9.291971364429159, 52.270462897632804 ] } },
{ "type": "Feature", "properties": { "id": 375, "transparent": false, "lat": 52.05, "lon": 9.321 }, "geometry": { "type": "Point", "coordinates": [ 9.320604237081819, 52.04680496337923 ] } },
{ "type": "Feature", "properties": { "id": 376, "transparent": false, "lat": 51.82, "lon": 9.349 }, "geometry": { "type": "Point", "coordinates": [ 9.348866459177376, 51.823127456396413 ] } },
{ "type": "Feature", "properties": { "id": 377, "transparent": false, "lat": 51.6, "lon": 9.377 }, "geometry": { "type": "Point", "coordinates": [ 9.376764349577416, 51.599430555283504 ] } },
{ "type": "Feature", "properties": { "id": 378, "transparent": false, "lat": 51.38, "lon": 9.404 }, "geometry": { "type": "Point", "coordinates": [ 9.404304080857845, 51.375714434680702 ] } },
{ "type": "Feature", "properties": { "id": 379, "transparent": false, "lat": 51.15, "lon": 9.431 }, "geometry": { "type": "Point", "coordinates": [ 9.431491683468401, 51.151979265398928 ] } },
{ "type": "Feature", "properties": { "id": 380, "transparent": false, "lat": 50.93, "lon": 9.458 }, "geometry": { "type": "Point", "coordinates": [ 9.45833304975109, 50.92822521454508 ] } },
{ "type": "Feature", "properties": { "id": 381, "transparent": false, "lat": 50.7, "lon": 9.485 }, "geometry": { "type": "Point", "coordinates": [ 9.484833937823117, 50.704452445643035 ] } },
{ "type": "Feature", "properties": { "id": 382, "transparent": false, "lat": 50.48, "lon": 9.511 }, "geometry": { "type": "Point", "coordinates": [ 9.510999975329561, 50.480661118750675 ] } },
{ "type": "Feature", "properties": { "id": 383, "transparent": false, "lat": 50.26, "lon": 9.537 }, "geometry": { "type": "Point", "coordinates": [ 9.536836663070895, 50.256851390572848 ] } },
{ "type": "Feature", "properties": { "id": 384, "transparent": false, "lat": 50.03, "lon": 9.562 }, "geometry": { "type": "Point", "coordinates": [ 9.562349378510126, 50.033023414570742 ] } },
{ "type": "Feature", "properties": { "id": 385, "transparent": false, "lat": 49.81, "lon": 9.588 }, "geometry": { "type": "Point", "coordinates": [ 9.587543379164208, 49.809177341067468 ] } },
{ "type": "Feature", "properties": { "id": 386, "transparent": false, "lat": 49.59, "lon": 9.612 }, "geometry": { "type": "Point", "coordinates": [ 9.612423805884122, 49.585313317350327 ] } },
{ "type": "Feature", "properties": { "id": 387, "transparent": false, "lat": 49.36, "lon": 9.637 }, "geometry": { "type": "Point", "coordinates": [ 9.636995686027864, 49.361431487769615 ] } },
{ "type": "Feature", "properties": { "id": 388, "transparent": false, "lat": 49.14, "lon": 9.661 }, "geometry": { "type": "Point", "coordinates": [ 9.661263936530379, 49.137531993834237 ] } },
{ "type": "Feature", "properties": { "id": 389, "transparent": false, "lat": 48.91, "lon": 9.685 }, "geometry": { "type": "Point", "coordinates": [ 9.685233366874307, 48.913614974304288 ] } },
{ "type": "Feature", "properties": { "id": 390, "transparent": false, "lat": 48.69, "lon": 9.709 }, "geometry": { "type": "Point", "coordinates": [ 9.708908681965248, 48.68968056528049 ] } },
{ "type": "Feature", "properties": { "id": 391, "transparent": false, "lat": 48.47, "lon": 9.732 }, "geometry": { "type": "Point", "coordinates": [ 9.732294484915098, 48.465728900290948 ] } },
{ "type": "Feature", "properties": { "id": 392, "transparent": false, "lat": 48.24, "lon": 9.755 }, "geometry": { "type": "Point", "coordinates": [ 9.755395279736859, 48.241760110374962 ] } },
{ "type": "Feature", "properties": { "id": 393, "transparent": false, "lat": 48.02, "lon": 9.778 }, "geometry": { "type": "Point", "coordinates": [ 9.778215473954155, 48.017774324164279 ] } },
{ "type": "Feature", "properties": { "id": 394, "transparent": false, "lat": 47.79, "lon": 9.801 }, "geometry": { "type": "Point", "coordinates": [ 9.800759381128621, 47.793771667961764 ] } },
{ "type": "Feature", "properties": { "id": 395, "transparent": false, "lat": 47.57, "lon": 9.823 }, "geometry": { "type": "Point", "coordinates": [ 9.823031223308092, 47.569752265817499 ] } },
{ "type": "Feature", "properties": { "id": 396, "transparent": true, "lat": 47.35, "lon": 9.845 }, "geometry": { "type": "Point", "coordinates": [ 9.845035133398525, 47.345716239602638 ] } },
{ "type": "Feature", "properties": { "id": 397, "transparent": true, "lat": 55.2, "lon": 9.273 }, "geometry": { "type": "Point", "coordinates": [ 9.273380520743391, 55.195175073600609 ] } },
{ "type": "Feature", "properties": { "id": 398, "transparent": false, "lat": 54.97, "lon": 9.305 }, "geometry": { "type": "Point", "coordinates": [ 9.305334693822099, 54.971633377354578 ] } },
{ "type": "Feature", "properties": { "id": 399, "transparent": false, "lat": 54.75, "lon": 9.337 }, "geometry": { "type": "Point", "coordinates": [ 9.336849568747716, 54.748071072530145 ] } },
{ "type": "Feature", "properties": { "id": 400, "transparent": false, "lat": 54.52, "lon": 9.368 }, "geometry": { "type": "Point", "coordinates": [ 9.367933296971065, 54.524488370730751 ] } },
{ "type": "Feature", "properties": { "id": 401, "transparent": false, "lat": 54.3, "lon": 9.399 }, "geometry": { "type": "Point", "coordinates": [ 9.398593826342051, 54.300885478218639 ] } },
{ "type": "Feature", "properties": { "id": 402, "transparent": false, "lat": 54.08, "lon": 9.429 }, "geometry": { "type": "Point", "coordinates": [ 9.428838907372084, 54.077262596097434 ] } },
{ "type": "Feature", "properties": { "id": 403, "transparent": false, "lat": 53.85, "lon": 9.459 }, "geometry": { "type": "Point", "coordinates": [ 9.458676099267096, 53.853619920488136 ] } },
{ "type": "Feature", "properties": { "id": 404, "transparent": false, "lat": 53.63, "lon": 9.488 }, "geometry": { "type": "Point", "coordinates": [ 9.488112775740907, 53.629957642698507 ] } },
{ "type": "Feature", "properties": { "id": 405, "transparent": false, "lat": 53.41, "lon": 9.517 }, "geometry": { "type": "Point", "coordinates": [ 9.517156130618172, 53.406275949386661 ] } },
{ "type": "Feature", "properties": { "id": 406, "transparent": false, "lat": 53.18, "lon": 9.546 }, "geometry": { "type": "Point", "coordinates": [ 9.545813183235721, 53.182575022718332 ] } },
{ "type": "Feature", "properties": { "id": 407, "transparent": false, "lat": 52.96, "lon": 9.574 }, "geometry": { "type": "Point", "coordinates": [ 9.574090783650655, 52.958855040518927 ] } },
{ "type": "Feature", "properties": { "id": 408, "transparent": false, "lat": 52.74, "lon": 9.602 }, "geometry": { "type": "Point", "coordinates": [ 9.601995617663215, 52.735116176419929 ] } },
{ "type": "Feature", "properties": { "id": 409, "transparent": false, "lat": 52.51, "lon": 9.63 }, "geometry": { "type": "Point", "coordinates": [ 9.62953421166204, 52.511358600000115 ] } },
{ "type": "Feature", "properties": { "id": 410, "transparent": false, "lat": 52.29, "lon": 9.657 }, "geometry": { "type": "Point", "coordinates": [ 9.656712937299053, 52.287582476921969 ] } },
{ "type": "Feature", "properties": { "id": 411, "transparent": false, "lat": 52.06, "lon": 9.684 }, "geometry": { "type": "Point", "coordinates": [ 9.683538016000918, 52.063787969063227 ] } },
{ "type": "Feature", "properties": { "id": 412, "transparent": false, "lat": 51.84, "lon": 9.71 }, "geometry": { "type": "Point", "coordinates": [ 9.710015523323689, 51.839975234643738 ] } },
{ "type": "Feature", "properties": { "id": 413, "transparent": false, "lat": 51.62, "lon": 9.736 }, "geometry": { "type": "Point", "coordinates": [ 9.736151393156909, 51.616144428348157 ] } },
{ "type": "Feature", "properties": { "id": 414, "transparent": false, "lat": 51.39, "lon": 9.762 }, "geometry": { "type": "Point", "coordinates": [ 9.761951421783225, 51.39229570144429 ] } },
{ "type": "Feature", "properties": { "id": 415, "transparent": false, "lat": 51.17, "lon": 9.787 }, "geometry": { "type": "Point", "coordinates": [ 9.787421271799241, 51.168429201897368 ] } },
{ "type": "Feature", "properties": { "id": 416, "transparent": false, "lat": 50.94, "lon": 9.813 }, "geometry": { "type": "Point", "coordinates": [ 9.812566475903081, 50.944545074480494 ] } },
{ "type": "Feature", "properties": { "id": 417, "transparent": false, "lat": 50.72, "lon": 9.837 }, "geometry": { "type": "Point", "coordinates": [ 9.837392440553922, 50.720643460881355 ] } },
{ "type": "Feature", "properties": { "id": 418, "transparent": false, "lat": 50.5, "lon": 9.862 }, "geometry": { "type": "Point", "coordinates": [ 9.861904449508506, 50.496724499805303 ] } },
{ "type": "Feature", "properties": { "id": 419, "transparent": false, "lat": 50.27, "lon": 9.886 }, "geometry": { "type": "Point", "coordinates": [ 9.886107667239392, 50.272788327074956 ] } },
{ "type": "Feature", "properties": { "id": 420, "transparent": false, "lat": 50.05, "lon": 9.91 }, "geometry": { "type": "Point", "coordinates": [ 9.910007142239524, 50.048835075726636 ] } },
{ "type": "Feature", "properties": { "id": 421, "transparent": false, "lat": 49.82, "lon": 9.934 }, "geometry": { "type": "Point", "coordinates": [ 9.933607810217527, 49.824864876103376 ] } },
{ "type": "Feature", "properties": { "id": 422, "transparent": false, "lat": 49.6, "lon": 9.957 }, "geometry": { "type": "Point", "coordinates": [ 9.956914497187858, 49.600877855945001 ] } },
{ "type": "Feature", "properties": { "id": 423, "transparent": false, "lat": 49.38, "lon": 9.98 }, "geometry": { "type": "Point", "coordinates": [ 9.979931922459825, 49.376874140475351 ] } },
{ "type": "Feature", "properties": { "id": 424, "transparent": false, "lat": 49.15, "lon": 10.003 }, "geometry": { "type": "Point", "coordinates": [ 10.002664701529355, 49.152853852486388 ] } },
{ "type": "Feature", "properties": { "id": 425, "transparent": false, "lat": 48.93, "lon": 10.025 }, "geometry": { "type": "Point", "coordinates": [ 10.025117348877087, 48.92881711241985 ] } },
{ "type": "Feature", "properties": { "id": 426, "transparent": false, "lat": 48.7, "lon": 10.047 }, "geometry": { "type": "Point", "coordinates": [ 10.047294280676363, 48.70476403844598 ] } },
{ "type": "Feature", "properties": { "id": 427, "transparent": false, "lat": 48.48, "lon": 10.069 }, "geometry": { "type": "Point", "coordinates": [ 10.06919981741445, 48.480694746540067 ] } },
{ "type": "Feature", "properties": { "id": 428, "transparent": false, "lat": 48.26, "lon": 10.091 }, "geometry": { "type": "Point", "coordinates": [ 10.090838186430211, 48.256609350556189 ] } },
{ "type": "Feature", "properties": { "id": 429, "transparent": false, "lat": 48.03, "lon": 10.112 }, "geometry": { "type": "Point", "coordinates": [ 10.112213524371302, 48.032507962298858 ] } },
{ "type": "Feature", "properties": { "id": 430, "transparent": false, "lat": 47.81, "lon": 10.133 }, "geometry": { "type": "Point", "coordinates": [ 10.133329879573846, 47.808390691592237 ] } },
{ "type": "Feature", "properties": { "id": 431, "transparent": false, "lat": 47.58, "lon": 10.154 }, "geometry": { "type": "Point", "coordinates": [ 10.154191214367444, 47.584257646347261 ] } },
{ "type": "Feature", "properties": { "id": 432, "transparent": true, "lat": 47.36, "lon": 10.175 }, "geometry": { "type": "Point", "coordinates": [ 10.174801407308156, 47.360108932626602 ] } },
{ "type": "Feature", "properties": { "id": 433, "transparent": true, "lat": 55.21, "lon": 9.664 }, "geometry": { "type": "Point", "coordinates": [ 9.664363838726706, 55.212956859496991 ] } },
{ "type": "Feature", "properties": { "id": 434, "transparent": true, "lat": 54.99, "lon": 9.694 }, "geometry": { "type": "Point", "coordinates": [ 9.694162358311557, 54.989268764870793 ] } },
{ "type": "Feature", "properties": { "id": 435, "transparent": false, "lat": 54.77, "lon": 9.724 }, "geometry": { "type": "Point", "coordinates": [ 9.723550788168899, 54.765561668437094 ] } },
{ "type": "Feature", "properties": { "id": 436, "transparent": false, "lat": 54.54, "lon": 9.753 }, "geometry": { "type": "Point", "coordinates": [ 9.752536749584953, 54.54183575114272 ] } },
{ "type": "Feature", "properties": { "id": 437, "transparent": false, "lat": 54.32, "lon": 9.781 }, "geometry": { "type": "Point", "coordinates": [ 9.781127673131197, 54.318091189346632 ] } },
{ "type": "Feature", "properties": { "id": 438, "transparent": false, "lat": 54.09, "lon": 9.809 }, "geometry": { "type": "Point", "coordinates": [ 9.809330804543691, 54.094328154979486 ] } },
{ "type": "Feature", "properties": { "id": 439, "transparent": false, "lat": 53.87, "lon": 9.837 }, "geometry": { "type": "Point", "coordinates": [ 9.83715321038655, 53.870546815697416 ] } },
{ "type": "Feature", "properties": { "id": 440, "transparent": false, "lat": 53.65, "lon": 9.865 }, "geometry": { "type": "Point", "coordinates": [ 9.864601783508604, 53.646747335030078 ] } },
{ "type": "Feature", "properties": { "id": 441, "transparent": false, "lat": 53.42, "lon": 9.892 }, "geometry": { "type": "Point", "coordinates": [ 9.891683248302099, 53.42292987252339 ] } },
{ "type": "Feature", "properties": { "id": 442, "transparent": false, "lat": 53.2, "lon": 9.918 }, "geometry": { "type": "Point", "coordinates": [ 9.91840416577166, 53.199094583877198 ] } },
{ "type": "Feature", "properties": { "id": 443, "transparent": false, "lat": 52.98, "lon": 9.945 }, "geometry": { "type": "Point", "coordinates": [ 9.94477093842147, 52.975241621077949 ] } },
{ "type": "Feature", "properties": { "id": 444, "transparent": false, "lat": 52.75, "lon": 9.971 }, "geometry": { "type": "Point", "coordinates": [ 9.970789814968203, 52.751371132526486 ] } },
{ "type": "Feature", "properties": { "id": 445, "transparent": false, "lat": 52.53, "lon": 9.996 }, "geometry": { "type": "Point", "coordinates": [ 9.996466894886874, 52.527483263161685 ] } },
{ "type": "Feature", "properties": { "id": 446, "transparent": false, "lat": 52.3, "lon": 10.022 }, "geometry": { "type": "Point", "coordinates": [ 10.021808132796499, 52.303578154579334 ] } },
{ "type": "Feature", "properties": { "id": 447, "transparent": false, "lat": 52.08, "lon": 10.047 }, "geometry": { "type": "Point", "coordinates": [ 10.046819342692041, 52.079655945147145 ] } },
{ "type": "Feature", "properties": { "id": 448, "transparent": false, "lat": 51.86, "lon": 10.072 }, "geometry": { "type": "Point", "coordinates": [ 10.071506202028919, 51.855716770115635 ] } },
{ "type": "Feature", "properties": { "id": 449, "transparent": false, "lat": 51.63, "lon": 10.096 }, "geometry": { "type": "Point", "coordinates": [ 10.095874255665992, 51.631760761725083 ] } },
{ "type": "Feature", "properties": { "id": 450, "transparent": false, "lat": 51.41, "lon": 10.12 }, "geometry": { "type": "Point", "coordinates": [ 10.119928919672713, 51.40778804930904 ] } },
{ "type": "Feature", "properties": { "id": 451, "transparent": false, "lat": 51.18, "lon": 10.144 }, "geometry": { "type": "Point", "coordinates": [ 10.143675485005851, 51.183798759394065 ] } },
{ "type": "Feature", "properties": { "id": 452, "transparent": false, "lat": 50.96, "lon": 10.167 }, "geometry": { "type": "Point", "coordinates": [ 10.167119121060942, 50.959793015796208 ] } },
{ "type": "Feature", "properties": { "id": 453, "transparent": false, "lat": 50.74, "lon": 10.19 }, "geometry": { "type": "Point", "coordinates": [ 10.190264879103442, 50.735770939714115 ] } },
{ "type": "Feature", "properties": { "id": 454, "transparent": false, "lat": 50.51, "lon": 10.213 }, "geometry": { "type": "Point", "coordinates": [ 10.213117695584257, 50.511732649819081 ] } },
{ "type": "Feature", "properties": { "id": 455, "transparent": false, "lat": 50.29, "lon": 10.236 }, "geometry": { "type": "Point", "coordinates": [ 10.23568239534417, 50.287678262342048 ] } },
{ "type": "Feature", "properties": { "id": 456, "transparent": false, "lat": 50.06, "lon": 10.258 }, "geometry": { "type": "Point", "coordinates": [ 10.257963694711499, 50.063607891157694 ] } },
{ "type": "Feature", "properties": { "id": 457, "transparent": false, "lat": 49.84, "lon": 10.28 }, "geometry": { "type": "Point", "coordinates": [ 10.27996620449704, 49.839521647865752 ] } },
{ "type": "Feature", "properties": { "id": 458, "transparent": false, "lat": 49.62, "lon": 10.302 }, "geometry": { "type": "Point", "coordinates": [ 10.301694432890322, 49.615419641869593 ] } },
{ "type": "Feature", "properties": { "id": 459, "transparent": false, "lat": 49.39, "lon": 10.323 }, "geometry": { "type": "Point", "coordinates": [ 10.323152788260847, 49.391301980452312 ] } },
{ "type": "Feature", "properties": { "id": 460, "transparent": false, "lat": 49.17, "lon": 10.344 }, "geometry": { "type": "Point", "coordinates": [ 10.344345581867989, 49.167168768850267 ] } },
{ "type": "Feature", "properties": { "id": 461, "transparent": false, "lat": 48.94, "lon": 10.365 }, "geometry": { "type": "Point", "coordinates": [ 10.365277030482963, 48.943020110324191 ] } },
{ "type": "Feature", "properties": { "id": 462, "transparent": false, "lat": 48.72, "lon": 10.386 }, "geometry": { "type": "Point", "coordinates": [ 10.385951258926164, 48.718856106228095 ] } },
{ "type": "Feature", "properties": { "id": 463, "transparent": false, "lat": 48.49, "lon": 10.406 }, "geometry": { "type": "Point", "coordinates": [ 10.40637230252308, 48.49467685607587 ] } },
{ "type": "Feature", "properties": { "id": 464, "transparent": false, "lat": 48.27, "lon": 10.427 }, "geometry": { "type": "Point", "coordinates": [ 10.426544109481721, 48.270482457605787 ] } },
{ "type": "Feature", "properties": { "id": 465, "transparent": false, "lat": 48.05, "lon": 10.446 }, "geometry": { "type": "Point", "coordinates": [ 10.446470543194566, 48.046273006842931 ] } },
{ "type": "Feature", "properties": { "id": 466, "transparent": false, "lat": 47.82, "lon": 10.466 }, "geometry": { "type": "Point", "coordinates": [ 10.466155384467697, 47.822048598159668 ] } },
{ "type": "Feature", "properties": { "id": 467, "transparent": false, "lat": 47.6, "lon": 10.486 }, "geometry": { "type": "Point", "coordinates": [ 10.485602333679889, 47.597809324334122 ] } },
{ "type": "Feature", "properties": { "id": 468, "transparent": true, "lat": 47.37, "lon": 10.505 }, "geometry": { "type": "Point", "coordinates": [ 10.504815012874097, 47.37355527660695 ] } },
{ "type": "Feature", "properties": { "id": 469, "transparent": true, "lat": 55.23, "lon": 10.056 }, "geometry": { "type": "Point", "coordinates": [ 10.055765030690202, 55.22948790676449 ] } },
{ "type": "Feature", "properties": { "id": 470, "transparent": true, "lat": 55.01, "lon": 10.083 }, "geometry": { "type": "Point", "coordinates": [ 10.083400079731788, 55.005663595383375 ] } },
{ "type": "Feature", "properties": { "id": 471, "transparent": true, "lat": 54.78, "lon": 10.111 }, "geometry": { "type": "Point", "coordinates": [ 10.110654444251832, 54.781821780060213 ] } },
{ "type": "Feature", "properties": { "id": 472, "transparent": false, "lat": 54.56, "lon": 10.138 }, "geometry": { "type": "Point", "coordinates": [ 10.13753520926875, 54.557962613101665 ] } },
{ "type": "Feature", "properties": { "id": 473, "transparent": false, "lat": 54.33, "lon": 10.164 }, "geometry": { "type": "Point", "coordinates": [ 10.16404928219783, 54.334086242932337 ] } },
{ "type": "Feature", "properties": { "id": 474, "transparent": false, "lat": 54.11, "lon": 10.19 }, "geometry": { "type": "Point", "coordinates": [ 10.190203398337895, 54.110192814232626 ] } },
{ "type": "Feature", "properties": { "id": 475, "transparent": false, "lat": 53.89, "lon": 10.216 }, "geometry": { "type": "Point", "coordinates": [ 10.216004126155978, 53.88628246807167 ] } },
{ "type": "Feature", "properties": { "id": 476, "transparent": false, "lat": 53.66, "lon": 10.241 }, "geometry": { "type": "Point", "coordinates": [ 10.241457872378641, 53.66235534203522 ] } },
{ "type": "Feature", "properties": { "id": 477, "transparent": false, "lat": 53.44, "lon": 10.267 }, "geometry": { "type": "Point", "coordinates": [ 10.266570886898061, 53.438411570349103 ] } },
{ "type": "Feature", "properties": { "id": 478, "transparent": false, "lat": 53.21, "lon": 10.291 }, "geometry": { "type": "Point", "coordinates": [ 10.291349267500737, 53.214451283998038 ] } },
{ "type": "Feature", "properties": { "id": 479, "transparent": false, "lat": 52.99, "lon": 10.316 }, "geometry": { "type": "Point", "coordinates": [ 10.315798964426206, 52.990474610840366 ] } },
{ "type": "Feature", "properties": { "id": 480, "transparent": false, "lat": 52.77, "lon": 10.34 }, "geometry": { "type": "Point", "coordinates": [ 10.339925784762848, 52.766481675718495 ] } },
{ "type": "Feature", "properties": { "id": 481, "transparent": false, "lat": 52.54, "lon": 10.364 }, "geometry": { "type": "Point", "coordinates": [ 10.363735396687506, 52.542472600565645 ] } },
{ "type": "Feature", "properties": { "id": 482, "transparent": false, "lat": 52.32, "lon": 10.387 }, "geometry": { "type": "Point", "coordinates": [ 10.387233333555368, 52.318447504508612 ] } },
{ "type": "Feature", "properties": { "id": 483, "transparent": false, "lat": 52.09, "lon": 10.41 }, "geometry": { "type": "Point", "coordinates": [ 10.410424997846178, 52.094406503967114 ] } },
{ "type": "Feature", "properties": { "id": 484, "transparent": false, "lat": 51.87, "lon": 10.433 }, "geometry": { "type": "Point", "coordinates": [ 10.433315664972676, 51.870349712749558 ] } },
{ "type": "Feature", "properties": { "id": 485, "transparent": false, "lat": 51.65, "lon": 10.456 }, "geometry": { "type": "Point", "coordinates": [ 10.455910486956791, 51.646277242145558 ] } },
{ "type": "Feature", "properties": { "id": 486, "transparent": false, "lat": 51.42, "lon": 10.478 }, "geometry": { "type": "Point", "coordinates": [ 10.478214495978925, 51.422189201015186 ] } },
{ "type": "Feature", "properties": { "id": 487, "transparent": false, "lat": 51.2, "lon": 10.5 }, "geometry": { "type": "Point", "coordinates": [ 10.500232607805366, 51.198085695875207 ] } },
{ "type": "Feature", "properties": { "id": 488, "transparent": false, "lat": 50.97, "lon": 10.522 }, "geometry": { "type": "Point", "coordinates": [ 10.521969625098718, 50.973966830982455 ] } },
{ "type": "Feature", "properties": { "id": 489, "transparent": false, "lat": 50.75, "lon": 10.543 }, "geometry": { "type": "Point", "coordinates": [ 10.543430240615926, 50.749832708414196 ] } },
{ "type": "Feature", "properties": { "id": 490, "transparent": false, "lat": 50.53, "lon": 10.565 }, "geometry": { "type": "Point", "coordinates": [ 10.564619040298343, 50.525683428145946 ] } },
{ "type": "Feature", "properties": { "id": 491, "transparent": false, "lat": 50.3, "lon": 10.586 }, "geometry": { "type": "Point", "coordinates": [ 10.585540506258031, 50.30151908812654 ] } },
{ "type": "Feature", "properties": { "id": 492, "transparent": false, "lat": 50.08, "lon": 10.606 }, "geometry": { "type": "Point", "coordinates": [ 10.606199019664347, 50.077339784350883 ] } },
{ "type": "Feature", "properties": { "id": 493, "transparent": false, "lat": 49.85, "lon": 10.627 }, "geometry": { "type": "Point", "coordinates": [ 10.62659886353468, 49.853145610930063 ] } },
{ "type": "Feature", "properties": { "id": 494, "transparent": false, "lat": 49.63, "lon": 10.647 }, "geometry": { "type": "Point", "coordinates": [ 10.646744225432963, 49.628936660159219 ] } },
{ "type": "Feature", "properties": { "id": 495, "transparent": false, "lat": 49.4, "lon": 10.667 }, "geometry": { "type": "Point", "coordinates": [ 10.666639200079576, 49.404713022583344 ] } },
{ "type": "Feature", "properties": { "id": 496, "transparent": false, "lat": 49.18, "lon": 10.686 }, "geometry": { "type": "Point", "coordinates": [ 10.686287791875923, 49.180474787060646 ] } },
{ "type": "Feature", "properties": { "id": 497, "transparent": false, "lat": 48.96, "lon": 10.706 }, "geometry": { "type": "Point", "coordinates": [ 10.705693917346965, 48.956222040824073 ] } },
{ "type": "Feature", "properties": { "id": 498, "transparent": false, "lat": 48.73, "lon": 10.725 }, "geometry": { "type": "Point", "coordinates": [ 10.724861407504775, 48.731954869540715 ] } },
{ "type": "Feature", "properties": { "id": 499, "transparent": false, "lat": 48.51, "lon": 10.744 }, "geometry": { "type": "Point", "coordinates": [ 10.743794010136076, 48.507673357369328 ] } },
{ "type": "Feature", "properties": { "id": 500, "transparent": false, "lat": 48.28, "lon": 10.762 }, "geometry": { "type": "Point", "coordinates": [ 10.76249539201658, 48.283377587016034 ] } },
{ "type": "Feature", "properties": { "id": 501, "transparent": false, "lat": 48.06, "lon": 10.781 }, "geometry": { "type": "Point", "coordinates": [ 10.780969141054863, 48.059067639788232 ] } },
{ "type": "Feature", "properties": { "id": 502, "transparent": false, "lat": 47.83, "lon": 10.799 }, "geometry": { "type": "Point", "coordinates": [ 10.799218768368332, 47.834743595646714 ] } },
{ "type": "Feature", "properties": { "id": 503, "transparent": false, "lat": 47.61, "lon": 10.817 }, "geometry": { "type": "Point", "coordinates": [ 10.817247710293822, 47.61040553325622 ] } },
{ "type": "Feature", "properties": { "id": 504, "transparent": true, "lat": 47.39, "lon": 10.835 }, "geometry": { "type": "Point", "coordinates": [ 10.835059330335175, 47.38605353003436 ] } },
{ "type": "Feature", "properties": { "id": 505, "transparent": true, "lat": 55.24, "lon": 10.448 }, "geometry": { "type": "Point", "coordinates": [ 10.447554143964375, 55.244765408274553 ] } },
{ "type": "Feature", "properties": { "id": 506, "transparent": true, "lat": 55.02, "lon": 10.473 }, "geometry": { "type": "Point", "coordinates": [ 10.473018455129555, 55.020815110099612 ] } },
{ "type": "Feature", "properties": { "id": 507, "transparent": true, "lat": 54.8, "lon": 10.498 }, "geometry": { "type": "Point", "coordinates": [ 10.498131670243231, 54.796848695796989 ] } },
{ "type": "Feature", "properties": { "id": 508, "transparent": true, "lat": 54.57, "lon": 10.523 }, "geometry": { "type": "Point", "coordinates": [ 10.522900332359916, 54.572866291084665 ] } },
{ "type": "Feature", "properties": { "id": 509, "transparent": false, "lat": 54.35, "lon": 10.547 }, "geometry": { "type": "Point", "coordinates": [ 10.547330820253555, 54.348868018455455 ] } },
{ "type": "Feature", "properties": { "id": 510, "transparent": false, "lat": 54.12, "lon": 10.571 }, "geometry": { "type": "Point", "coordinates": [ 10.571429353502467, 54.124853997294743 ] } },
{ "type": "Feature", "properties": { "id": 511, "transparent": false, "lat": 53.9, "lon": 10.595 }, "geometry": { "type": "Point", "coordinates": [ 10.59520199738669, 53.900824343993783 ] } },
{ "type": "Feature", "properties": { "id": 512, "transparent": false, "lat": 53.68, "lon": 10.619 }, "geometry": { "type": "Point", "coordinates": [ 10.618654667605693, 53.676779172058978 ] } },
{ "type": "Feature", "properties": { "id": 513, "transparent": false, "lat": 53.45, "lon": 10.642 }, "geometry": { "type": "Point", "coordinates": [ 10.64179313482413, 53.452718592217082 ] } },
{ "type": "Feature", "properties": { "id": 514, "transparent": false, "lat": 53.23, "lon": 10.665 }, "geometry": { "type": "Point", "coordinates": [ 10.66462302905283, 53.228642712516688 ] } },
{ "type": "Feature", "properties": { "id": 515, "transparent": false, "lat": 53.0, "lon": 10.687 }, "geometry": { "type": "Point", "coordinates": [ 10.687149843872003, 53.004551638425994 ] } },
{ "type": "Feature", "properties": { "id": 516, "transparent": false, "lat": 52.78, "lon": 10.709 }, "geometry": { "type": "Point", "coordinates": [ 10.709378940503182, 52.780445472927227 ] } },
{ "type": "Feature", "properties": { "id": 517, "transparent": false, "lat": 52.56, "lon": 10.731 }, "geometry": { "type": "Point", "coordinates": [ 10.731315551736193, 52.556324316607508 ] } },
{ "type": "Feature", "properties": { "id": 518, "transparent": false, "lat": 52.33, "lon": 10.753 }, "geometry": { "type": "Point", "coordinates": [ 10.752964785717127, 52.33218826774668 ] } },
{ "type": "Feature", "properties": { "id": 519, "transparent": false, "lat": 52.11, "lon": 10.774 }, "geometry": { "type": "Point", "coordinates": [ 10.774331629603015, 52.108037422402013 ] } },
{ "type": "Feature", "properties": { "id": 520, "transparent": false, "lat": 51.88, "lon": 10.795 }, "geometry": { "type": "Point", "coordinates": [ 10.795420953088607, 51.883871874489891 ] } },
{ "type": "Feature", "properties": { "id": 521, "transparent": false, "lat": 51.66, "lon": 10.816 }, "geometry": { "type": "Point", "coordinates": [ 10.816237511810472, 51.659691715864717 ] } },
{ "type": "Feature", "properties": { "id": 522, "transparent": false, "lat": 51.44, "lon": 10.837 }, "geometry": { "type": "Point", "coordinates": [ 10.836785950633333, 51.435497036395148 ] } },
{ "type": "Feature", "properties": { "id": 523, "transparent": false, "lat": 51.21, "lon": 10.857 }, "geometry": { "type": "Point", "coordinates": [ 10.85707080682336, 51.211287924037592 ] } },
{ "type": "Feature", "properties": { "id": 524, "transparent": false, "lat": 50.99, "lon": 10.877 }, "geometry": { "type": "Point", "coordinates": [ 10.877096513112921, 50.987064464907263 ] } },
{ "type": "Feature", "properties": { "id": 525, "transparent": false, "lat": 50.76, "lon": 10.897 }, "geometry": { "type": "Point", "coordinates": [ 10.896867400661094, 50.762826743346885 ] } },
{ "type": "Feature", "properties": { "id": 526, "transparent": false, "lat": 50.54, "lon": 10.916 }, "geometry": { "type": "Point", "coordinates": [ 10.91638770191404, 50.538574841992912 ] } },
{ "type": "Feature", "properties": { "id": 527, "transparent": false, "lat": 50.31, "lon": 10.936 }, "geometry": { "type": "Point", "coordinates": [ 10.935661553369153, 50.314308841839726 ] } },
{ "type": "Feature", "properties": { "id": 528, "transparent": false, "lat": 50.09, "lon": 10.955 }, "geometry": { "type": "Point", "coordinates": [ 10.954692998246736, 50.09002882230147 ] } },
{ "type": "Feature", "properties": { "id": 529, "transparent": false, "lat": 49.87, "lon": 10.973 }, "geometry": { "type": "Point", "coordinates": [ 10.973485989072804, 49.86573486127206 ] } },
{ "type": "Feature", "properties": { "id": 530, "transparent": false, "lat": 49.64, "lon": 10.992 }, "geometry": { "type": "Point", "coordinates": [ 10.992044390176391, 49.641427035182929 ] } },
{ "type": "Feature", "properties": { "id": 531, "transparent": false, "lat": 49.42, "lon": 11.01 }, "geometry": { "type": "Point", "coordinates": [ 11.010371980104694, 49.41710541905919 ] } },
{ "type": "Feature", "properties": { "id": 532, "transparent": false, "lat": 49.19, "lon": 11.028 }, "geometry": { "type": "Point", "coordinates": [ 11.028472453959125, 49.192770086573667 ] } },
{ "type": "Feature", "properties": { "id": 533, "transparent": false, "lat": 48.97, "lon": 11.046 }, "geometry": { "type": "Point", "coordinates": [ 11.04634942565534, 48.968421110099356 ] } },
{ "type": "Feature", "properties": { "id": 534, "transparent": false, "lat": 48.74, "lon": 11.064 }, "geometry": { "type": "Point", "coordinates": [ 11.06400643011002, 48.744058560760038 ] } },
{ "type": "Feature", "properties": { "id": 535, "transparent": false, "lat": 48.52, "lon": 11.081 }, "geometry": { "type": "Point", "coordinates": [ 11.081446925357231, 48.519682508479406 ] } },
{ "type": "Feature", "properties": { "id": 536, "transparent": false, "lat": 48.3, "lon": 11.099 }, "geometry": { "type": "Point", "coordinates": [ 11.098674294596954, 48.295293022028481 ] } },
{ "type": "Feature", "properties": { "id": 537, "transparent": false, "lat": 48.07, "lon": 11.116 }, "geometry": { "type": "Point", "coordinates": [ 11.115691848178292, 48.070890169071582 ] } },
{ "type": "Feature", "properties": { "id": 538, "transparent": false, "lat": 47.85, "lon": 11.133 }, "geometry": { "type": "Point", "coordinates": [ 11.132502825519792, 47.846474016210777 ] } },
{ "type": "Feature", "properties": { "id": 539, "transparent": false, "lat": 47.62, "lon": 11.149 }, "geometry": { "type": "Point", "coordinates": [ 11.149110396969165, 47.622044629028942 ] } },
{ "type": "Feature", "properties": { "id": 540, "transparent": true, "lat": 47.4, "lon": 11.166 }, "geometry": { "type": "Point", "coordinates": [ 11.165517665604641, 47.397602072131512 ] } },
{ "type": "Feature", "properties": { "id": 541, "transparent": true, "lat": 55.26, "lon": 10.84 }, "geometry": { "type": "Point", "coordinates": [ 10.839701036737488, 55.258786765084828 ] } },
{ "type": "Feature", "properties": { "id": 542, "transparent": true, "lat": 55.03, "lon": 10.863 }, "geometry": { "type": "Point", "coordinates": [ 10.862987898324251, 55.034720754907497 ] } },
{ "type": "Feature", "properties": { "id": 543, "transparent": true, "lat": 54.81, "lon": 10.886 }, "geometry": { "type": "Point", "coordinates": [ 10.88595342185697, 54.810639905300725 ] } },
{ "type": "Feature", "properties": { "id": 544, "transparent": false, "lat": 54.59, "lon": 10.909 }, "geometry": { "type": "Point", "coordinates": [ 10.908603603146739, 54.586544317477923 ] } },
{ "type": "Feature", "properties": { "id": 545, "transparent": false, "lat": 54.36, "lon": 10.931 }, "geometry": { "type": "Point", "coordinates": [ 10.930944287242609, 54.362434090034192 ] } },
{ "type": "Feature", "properties": { "id": 546, "transparent": false, "lat": 54.14, "lon": 10.953 }, "geometry": { "type": "Point", "coordinates": [ 10.952981173106409, 54.138309319045334 ] } },
{ "type": "Feature", "properties": { "id": 547, "transparent": false, "lat": 53.91, "lon": 10.975 }, "geometry": { "type": "Point", "coordinates": [ 10.974719818114719, 53.914170098163154 ] } },
{ "type": "Feature", "properties": { "id": 548, "transparent": false, "lat": 53.69, "lon": 10.996 }, "geometry": { "type": "Point", "coordinates": [ 10.996165642395397, 53.690016518707218 ] } },
{ "type": "Feature", "properties": { "id": 549, "transparent": false, "lat": 53.47, "lon": 11.017 }, "geometry": { "type": "Point", "coordinates": [ 11.017323933005695, 53.465848669753463 ] } },
{ "type": "Feature", "properties": { "id": 550, "transparent": false, "lat": 53.24, "lon": 11.038 }, "geometry": { "type": "Point", "coordinates": [ 11.038199847958696, 53.241666638219421 ] } },
{ "type": "Feature", "properties": { "id": 551, "transparent": false, "lat": 53.02, "lon": 11.059 }, "geometry": { "type": "Point", "coordinates": [ 11.05879842010437, 53.017470508946495 ] } },
{ "type": "Feature", "properties": { "id": 552, "transparent": false, "lat": 52.79, "lon": 11.079 }, "geometry": { "type": "Point", "coordinates": [ 11.079124560871433, 52.793260364779179 ] } },
{ "type": "Feature", "properties": { "id": 553, "transparent": false, "lat": 52.57, "lon": 11.099 }, "geometry": { "type": "Point", "coordinates": [ 11.099183063875659, 52.569036286641662 ] } },
{ "type": "Feature", "properties": { "id": 554, "transparent": false, "lat": 52.34, "lon": 11.119 }, "geometry": { "type": "Point", "coordinates": [ 11.118978608400294, 52.344798353611544 ] } },
{ "type": "Feature", "properties": { "id": 555, "transparent": false, "lat": 52.12, "lon": 11.139 }, "geometry": { "type": "Point", "coordinates": [ 11.138515762753718, 52.120546642991059 ] } },
{ "type": "Feature", "properties": { "id": 556, "transparent": false, "lat": 51.9, "lon": 11.158 }, "geometry": { "type": "Point", "coordinates": [ 11.157798987509429, 51.896281230375756 ] } },
{ "type": "Feature", "properties": { "id": 557, "transparent": false, "lat": 51.67, "lon": 11.177 }, "geometry": { "type": "Point", "coordinates": [ 11.176832638633082, 51.672002189720871 ] } },
{ "type": "Feature", "properties": { "id": 558, "transparent": false, "lat": 51.45, "lon": 11.196 }, "geometry": { "type": "Point", "coordinates": [ 11.195620970501173, 51.447709593405364 ] } },
{ "type": "Feature", "properties": { "id": 559, "transparent": false, "lat": 51.22, "lon": 11.214 }, "geometry": { "type": "Point", "coordinates": [ 11.214168138815721, 51.223403512293721 ] } },
{ "type": "Feature", "properties": { "id": 560, "transparent": false, "lat": 51.0, "lon": 11.232 }, "geometry": { "type": "Point", "coordinates": [ 11.232478203419028, 50.999084015795681 ] } },
{ "type": "Feature", "properties": { "id": 561, "transparent": false, "lat": 50.77, "lon": 11.251 }, "geometry": { "type": "Point", "coordinates": [ 11.250555131012595, 50.774751171924017 ] } },
{ "type": "Feature", "properties": { "id": 562, "transparent": false, "lat": 50.55, "lon": 11.268 }, "geometry": { "type": "Point", "coordinates": [ 11.268402797783857, 50.550405047350175 ] } },
{ "type": "Feature", "properties": { "id": 563, "transparent": false, "lat": 50.33, "lon": 11.286 }, "geometry": { "type": "Point", "coordinates": [ 11.28602499194446, 50.326045707458192 ] } },
{ "type": "Feature", "properties": { "id": 564, "transparent": false, "lat": 50.1, "lon": 11.303 }, "geometry": { "type": "Point", "coordinates": [ 11.303425416183432, 50.101673216396776 ] } },
{ "type": "Feature", "properties": { "id": 565, "transparent": false, "lat": 49.88, "lon": 11.321 }, "geometry": { "type": "Point", "coordinates": [ 11.320607690038631, 49.877287637129683 ] } },
{ "type": "Feature", "properties": { "id": 566, "transparent": false, "lat": 49.65, "lon": 11.338 }, "geometry": { "type": "Point", "coordinates": [ 11.337575352189591, 49.652889031484179 ] } },
{ "type": "Feature", "properties": { "id": 567, "transparent": false, "lat": 49.43, "lon": 11.354 }, "geometry": { "type": "Point", "coordinates": [ 11.354331862674744, 49.428477460198408 ] } },
{ "type": "Feature", "properties": { "id": 568, "transparent": false, "lat": 49.2, "lon": 11.371 }, "geometry": { "type": "Point", "coordinates": [ 11.370880605036007, 49.204052982966658 ] } },
{ "type": "Feature", "properties": { "id": 569, "transparent": false, "lat": 48.98, "lon": 11.387 }, "geometry": { "type": "Point", "coordinates": [ 11.387224888393364, 48.979615658483468 ] } },
{ "type": "Feature", "properties": { "id": 570, "transparent": false, "lat": 48.76, "lon": 11.403 }, "geometry": { "type": "Point", "coordinates": [ 11.403367949452194, 48.75516554448626 ] } },
{ "type": "Feature", "properties": { "id": 571, "transparent": false, "lat": 48.53, "lon": 11.419 }, "geometry": { "type": "Point", "coordinates": [ 11.419312954445809, 48.530702697796485 ] } },
{ "type": "Feature", "properties": { "id": 572, "transparent": false, "lat": 48.31, "lon": 11.435 }, "geometry": { "type": "Point", "coordinates": [ 11.435063001015633, 48.30622717435952 ] } },
{ "type": "Feature", "properties": { "id": 573, "transparent": false, "lat": 48.08, "lon": 11.451 }, "geometry": { "type": "Point", "coordinates": [ 11.450621120031377, 48.081739029283312 ] } },
{ "type": "Feature", "properties": { "id": 574, "transparent": false, "lat": 47.86, "lon": 11.466 }, "geometry": { "type": "Point", "coordinates": [ 11.46599027735336, 47.857238316875716 ] } },
{ "type": "Feature", "properties": { "id": 575, "transparent": false, "lat": 47.63, "lon": 11.481 }, "geometry": { "type": "Point", "coordinates": [ 11.48117337553918, 47.63272509068058 ] } },
{ "type": "Feature", "properties": { "id": 576, "transparent": true, "lat": 47.41, "lon": 11.496 }, "geometry": { "type": "Point", "coordinates": [ 11.4961732554967, 47.408199403512945 ] } },
{ "type": "Feature", "properties": { "id": 577, "transparent": true, "lat": 55.27, "lon": 11.232 }, "geometry": { "type": "Point", "coordinates": [ 11.232175392221732, 55.271549587980168 ] } },
{ "type": "Feature", "properties": { "id": 578, "transparent": true, "lat": 55.05, "lon": 11.253 }, "geometry": { "type": "Point", "coordinates": [ 11.253278653641988, 55.047378181871565 ] } },
{ "type": "Feature", "properties": { "id": 579, "transparent": true, "lat": 54.82, "lon": 11.274 }, "geometry": { "type": "Point", "coordinates": [ 11.274090490591671, 54.823193100933047 ] } },
{ "type": "Feature", "properties": { "id": 580, "transparent": true, "lat": 54.6, "lon": 11.295 }, "geometry": { "type": "Point", "coordinates": [ 11.294616346784386, 54.598994423987634 ] } },
{ "type": "Feature", "properties": { "id": 581, "transparent": false, "lat": 54.37, "lon": 11.315 }, "geometry": { "type": "Point", "coordinates": [ 11.314861528870781, 54.374782227795848 ] } },
{ "type": "Feature", "properties": { "id": 582, "transparent": false, "lat": 54.15, "lon": 11.335 }, "geometry": { "type": "Point", "coordinates": [ 11.334831210695455, 54.150556587137352 ] } },
{ "type": "Feature", "properties": { "id": 583, "transparent": false, "lat": 53.93, "lon": 11.355 }, "geometry": { "type": "Point", "coordinates": [ 11.354530437396166, 53.926317574889822 ] } },
{ "type": "Feature", "properties": { "id": 584, "transparent": false, "lat": 53.7, "lon": 11.374 }, "geometry": { "type": "Point", "coordinates": [ 11.373964129352148, 53.702065262104661 ] } },
{ "type": "Feature", "properties": { "id": 585, "transparent": false, "lat": 53.48, "lon": 11.393 }, "geometry": { "type": "Point", "coordinates": [ 11.393137085987913, 53.47779971808027 ] } },
{ "type": "Feature", "properties": { "id": 586, "transparent": false, "lat": 53.25, "lon": 11.412 }, "geometry": { "type": "Point", "coordinates": [ 11.412053989438711, 53.253521010432365 ] } },
{ "type": "Feature", "properties": { "id": 587, "transparent": false, "lat": 53.03, "lon": 11.431 }, "geometry": { "type": "Point", "coordinates": [ 11.430719408083423, 53.029229205162103 ] } },
{ "type": "Feature", "properties": { "id": 588, "transparent": false, "lat": 52.8, "lon": 11.449 }, "geometry": { "type": "Point", "coordinates": [ 11.449137799950504, 52.804924366721409 ] } },
{ "type": "Feature", "properties": { "id": 589, "transparent": false, "lat": 52.58, "lon": 11.467 }, "geometry": { "type": "Point", "coordinates": [ 11.467313516002175, 52.580606558076298 ] } },
{ "type": "Feature", "properties": { "id": 590, "transparent": false, "lat": 52.36, "lon": 11.485 }, "geometry": { "type": "Point", "coordinates": [ 11.485250803301991, 52.3562758407678 ] } },
{ "type": "Feature", "properties": { "id": 591, "transparent": false, "lat": 52.13, "lon": 11.503 }, "geometry": { "type": "Point", "coordinates": [ 11.50295380807051, 52.131932274970801 ] } },
{ "type": "Feature", "properties": { "id": 592, "transparent": false, "lat": 51.91, "lon": 11.52 }, "geometry": { "type": "Point", "coordinates": [ 11.520426578633673, 51.907575919550766 ] } },
{ "type": "Feature", "properties": { "id": 593, "transparent": false, "lat": 51.68, "lon": 11.538 }, "geometry": { "type": "Point", "coordinates": [ 11.537673068268269, 51.683206832118643 ] } },
{ "type": "Feature", "properties": { "id": 594, "transparent": false, "lat": 51.46, "lon": 11.555 }, "geometry": { "type": "Point", "coordinates": [ 11.554697137948608, 51.458825069083623 ] } },
{ "type": "Feature", "properties": { "id": 595, "transparent": false, "lat": 51.23, "lon": 11.572 }, "geometry": { "type": "Point", "coordinates": [ 11.571502558998407, 51.234430685704389 ] } },
{ "type": "Feature", "properties": { "id": 596, "transparent": false, "lat": 51.01, "lon": 11.588 }, "geometry": { "type": "Point", "coordinates": [ 11.58809301565166, 51.010023736138336 ] } },
{ "type": "Feature", "properties": { "id": 597, "transparent": false, "lat": 50.79, "lon": 11.604 }, "geometry": { "type": "Point", "coordinates": [ 11.604472107526123, 50.785604273489334 ] } },
{ "type": "Feature", "properties": { "id": 598, "transparent": false, "lat": 50.56, "lon": 11.621 }, "geometry": { "type": "Point", "coordinates": [ 11.620643352012838, 50.56117234985372 ] } },
{ "type": "Feature", "properties": { "id": 599, "transparent": false, "lat": 50.34, "lon": 11.637 }, "geometry": { "type": "Point", "coordinates": [ 11.636610186585052, 50.336728016364859 ] } },
{ "type": "Feature", "properties": { "id": 600, "transparent": false, "lat": 50.11, "lon": 11.652 }, "geometry": { "type": "Point", "coordinates": [ 11.652375971029606, 50.112271323236079 ] } },
{ "type": "Feature", "properties": { "id": 601, "transparent": false, "lat": 49.89, "lon": 11.668 }, "geometry": { "type": "Point", "coordinates": [ 11.667943989603874, 49.887802319802361 ] } },
{ "type": "Feature", "properties": { "id": 602, "transparent": false, "lat": 49.66, "lon": 11.683 }, "geometry": { "type": "Point", "coordinates": [ 11.683317453121107, 49.663321054560413 ] } },
{ "type": "Feature", "properties": { "id": 603, "transparent": false, "lat": 49.44, "lon": 11.698 }, "geometry": { "type": "Point", "coordinates": [ 11.698499500966903, 49.438827575207682 ] } },
{ "type": "Feature", "properties": { "id": 604, "transparent": false, "lat": 49.21, "lon": 11.713 }, "geometry": { "type": "Point", "coordinates": [ 11.71349320304949, 49.214321928679816 ] } },
{ "type": "Feature", "properties": { "id": 605, "transparent": false, "lat": 48.99, "lon": 11.728 }, "geometry": { "type": "Point", "coordinates": [ 11.728301561686303, 48.989804161187138 ] } },
{ "type": "Feature", "properties": { "id": 606, "transparent": false, "lat": 48.77, "lon": 11.743 }, "geometry": { "type": "Point", "coordinates": [ 11.742927513429278, 48.765274318249723 ] } },
{ "type": "Feature", "properties": { "id": 607, "transparent": false, "lat": 48.54, "lon": 11.757 }, "geometry": { "type": "Point", "coordinates": [ 11.757373930831163, 48.540732444731525 ] } },
{ "type": "Feature", "properties": { "id": 608, "transparent": false, "lat": 48.32, "lon": 11.772 }, "geometry": { "type": "Point", "coordinates": [ 11.771643624155045, 48.316178584873235 ] } },
{ "type": "Feature", "properties": { "id": 609, "transparent": false, "lat": 48.09, "lon": 11.786 }, "geometry": { "type": "Point", "coordinates": [ 11.785739343029256, 48.091612782324198 ] } },
{ "type": "Feature", "properties": { "id": 610, "transparent": false, "lat": 47.87, "lon": 11.8 }, "geometry": { "type": "Point", "coordinates": [ 11.799663778049574, 47.867035080173302 ] } },
{ "type": "Feature", "properties": { "id": 611, "transparent": false, "lat": 47.64, "lon": 11.813 }, "geometry": { "type": "Point", "coordinates": [ 11.813419562330804, 47.642445520978683 ] } },
{ "type": "Feature", "properties": { "id": 612, "transparent": true, "lat": 47.42, "lon": 11.827 }, "geometry": { "type": "Point", "coordinates": [ 11.827009273009457, 47.417844146796867 ] } },
{ "type": "Feature", "properties": { "id": 613, "transparent": true, "lat": 55.28, "lon": 11.625 }, "geometry": { "type": "Point", "coordinates": [ 11.624946733033383, 55.283051698893523 ] } },
{ "type": "Feature", "properties": { "id": 614, "transparent": true, "lat": 55.06, "lon": 11.644 }, "geometry": { "type": "Point", "coordinates": [ 11.643860809854313, 55.05878525061248 ] } },
{ "type": "Feature", "properties": { "id": 615, "transparent": true, "lat": 54.83, "lon": 11.663 }, "geometry": { "type": "Point", "coordinates": [ 11.662513517244088, 54.834506179103371 ] } },
{ "type": "Feature", "properties": { "id": 616, "transparent": true, "lat": 54.61, "lon": 11.681 }, "geometry": { "type": "Point", "coordinates": [ 11.680909742398388, 54.610214542940788 ] } },
{ "type": "Feature", "properties": { "id": 617, "transparent": false, "lat": 54.39, "lon": 11.699 }, "geometry": { "type": "Point", "coordinates": [ 11.699054249313731, 54.385910399140336 ] } },
{ "type": "Feature", "properties": { "id": 618, "transparent": false, "lat": 54.16, "lon": 11.717 }, "geometry": { "type": "Point", "coordinates": [ 11.716951682619387, 54.16159380322474 ] } },
{ "type": "Feature", "properties": { "id": 619, "transparent": false, "lat": 53.94, "lon": 11.735 }, "geometry": { "type": "Point", "coordinates": [ 11.734606571267065, 53.937264809287555 ] } },
{ "type": "Feature", "properties": { "id": 620, "transparent": false, "lat": 53.71, "lon": 11.752 }, "geometry": { "type": "Point", "coordinates": [ 11.752023332084585, 53.712923470054491 ] } },
{ "type": "Feature", "properties": { "id": 621, "transparent": false, "lat": 53.49, "lon": 11.769 }, "geometry": { "type": "Point", "coordinates": [ 11.769206273199234, 53.488569836942659 ] } },
{ "type": "Feature", "properties": { "id": 622, "transparent": false, "lat": 53.26, "lon": 11.786 }, "geometry": { "type": "Point", "coordinates": [ 11.786159597336447, 53.264203960117491 ] } },
{ "type": "Feature", "properties": { "id": 623, "transparent": false, "lat": 53.04, "lon": 11.803 }, "geometry": { "type": "Point", "coordinates": [ 11.802887404998978, 53.039825888547739 ] } },
{ "type": "Feature", "properties": { "id": 624, "transparent": false, "lat": 52.82, "lon": 11.819 }, "geometry": { "type": "Point", "coordinates": [ 11.819393697531641, 52.815435670058456 ] } },
{ "type": "Feature", "properties": { "id": 625, "transparent": false, "lat": 52.59, "lon": 11.836 }, "geometry": { "type": "Point", "coordinates": [ 11.83568238007636, 52.591033351382258 ] } },
{ "type": "Feature", "properties": { "id": 626, "transparent": false, "lat": 52.37, "lon": 11.852 }, "geometry": { "type": "Point", "coordinates": [ 11.85175726442208, 52.366618978208429 ] } },
{ "type": "Feature", "properties": { "id": 627, "transparent": false, "lat": 52.14, "lon": 11.868 }, "geometry": { "type": "Point", "coordinates": [ 11.867622071753869, 52.142192595230746 ] } },
{ "type": "Feature", "properties": { "id": 628, "transparent": false, "lat": 51.92, "lon": 11.883 }, "geometry": { "type": "Point", "coordinates": [ 11.883280435305371, 51.917754246193212 ] } },
{ "type": "Feature", "properties": { "id": 629, "transparent": false, "lat": 51.69, "lon": 11.899 }, "geometry": { "type": "Point", "coordinates": [ 11.898735902918478, 51.693303973934604 ] } },
{ "type": "Feature", "properties": { "id": 630, "transparent": false, "lat": 51.47, "lon": 11.914 }, "geometry": { "type": "Point", "coordinates": [ 11.913991939514057, 51.468841820431095 ] } },
{ "type": "Feature", "properties": { "id": 631, "transparent": false, "lat": 51.24, "lon": 11.929 }, "geometry": { "type": "Point", "coordinates": [ 11.929051929477263, 51.24436782683771 ] } },
{ "type": "Feature", "properties": { "id": 632, "transparent": false, "lat": 51.02, "lon": 11.944 }, "geometry": { "type": "Point", "coordinates": [ 11.943919178960876, 51.019882033528233 ] } },
{ "type": "Feature", "properties": { "id": 633, "transparent": false, "lat": 50.8, "lon": 11.959 }, "geometry": { "type": "Point", "coordinates": [ 11.958596918109915, 50.795384480133784 ] } },
{ "type": "Feature", "properties": { "id": 634, "transparent": false, "lat": 50.57, "lon": 11.973 }, "geometry": { "type": "Point", "coordinates": [ 11.973088303210659, 50.57087520558008 ] } },
{ "type": "Feature", "properties": { "id": 635, "transparent": false, "lat": 50.35, "lon": 11.987 }, "geometry": { "type": "Point", "coordinates": [ 11.98739641876705, 50.346354248123426 ] } },
{ "type": "Feature", "properties": { "id": 636, "transparent": false, "lat": 50.12, "lon": 12.002 }, "geometry": { "type": "Point", "coordinates": [ 12.001524279507285, 50.121821645385538 ] } },
{ "type": "Feature", "properties": { "id": 637, "transparent": false, "lat": 49.9, "lon": 12.015 }, "geometry": { "type": "Point", "coordinates": [ 12.015474832323388, 49.897277434387256 ] } },
{ "type": "Feature", "properties": { "id": 638, "transparent": false, "lat": 49.67, "lon": 12.029 }, "geometry": { "type": "Point", "coordinates": [ 12.029250958146275, 49.672721651580929 ] } },
{ "type": "Feature", "properties": { "id": 639, "transparent": false, "lat": 49.45, "lon": 12.043 }, "geometry": { "type": "Point", "coordinates": [ 12.042855473758845, 49.448154332881998 ] } },
{ "type": "Feature", "properties": { "id": 640, "transparent": false, "lat": 49.22, "lon": 12.056 }, "geometry": { "type": "Point", "coordinates": [ 12.056291133549468, 49.223575513699352 ] } },
{ "type": "Feature", "properties": { "id": 641, "transparent": false, "lat": 49.0, "lon": 12.07 }, "geometry": { "type": "Point", "coordinates": [ 12.069560631208123, 48.998985228964727 ] } },
{ "type": "Feature", "properties": { "id": 642, "transparent": false, "lat": 48.77, "lon": 12.083 }, "geometry": { "type": "Point", "coordinates": [ 12.082666601367363, 48.774383513161212 ] } },
{ "type": "Feature", "properties": { "id": 643, "transparent": false, "lat": 48.55, "lon": 12.096 }, "geometry": { "type": "Point", "coordinates": [ 12.095611621190177, 48.549770400350766 ] } },
{ "type": "Feature", "properties": { "id": 644, "transparent": false, "lat": 48.33, "lon": 12.108 }, "geometry": { "type": "Point", "coordinates": [ 12.108398211906788, 48.325145924200839 ] } },
{ "type": "Feature", "properties": { "id": 645, "transparent": false, "lat": 48.1, "lon": 12.121 }, "geometry": { "type": "Point", "coordinates": [ 12.121028840302214, 48.100510118010156 ] } },
{ "type": "Feature", "properties": { "id": 646, "transparent": false, "lat": 47.88, "lon": 12.134 }, "geometry": { "type": "Point", "coordinates": [ 12.133505920156473, 47.875863014733682 ] } },
{ "type": "Feature", "properties": { "id": 647, "transparent": false, "lat": 47.65, "lon": 12.146 }, "geometry": { "type": "Point", "coordinates": [ 12.145831813639157, 47.651204647006715 ] } },
{ "type": "Feature", "properties": { "id": 648, "transparent": true, "lat": 47.43, "lon": 12.158 }, "geometry": { "type": "Point", "coordinates": [ 12.158008832660075, 47.426535047168386 ] } },
{ "type": "Feature", "properties": { "id": 649, "transparent": true, "lat": 55.29, "lon": 12.018 }, "geometry": { "type": "Point", "coordinates": [ 12.017984435770101, 55.293291132205219 ] } },
{ "type": "Feature", "properties": { "id": 650, "transparent": true, "lat": 55.07, "lon": 12.035 }, "geometry": { "type": "Point", "coordinates": [ 12.034704314305493, 55.068940029568061 ] } },
{ "type": "Feature", "properties": { "id": 651, "transparent": true, "lat": 54.84, "lon": 12.051 }, "geometry": { "type": "Point", "coordinates": [ 12.051193005602917, 54.844577241493305 ] } },
{ "type": "Feature", "properties": { "id": 652, "transparent": true, "lat": 54.62, "lon": 12.067 }, "geometry": { "type": "Point", "coordinates": [ 12.067454836360746, 54.620202808474126 ] } },
{ "type": "Feature", "properties": { "id": 653, "transparent": false, "lat": 54.4, "lon": 12.083 }, "geometry": { "type": "Point", "coordinates": [ 12.083494024090557, 54.395816769895113 ] } },
{ "type": "Feature", "properties": { "id": 654, "transparent": false, "lat": 54.17, "lon": 12.099 }, "geometry": { "type": "Point", "coordinates": [ 12.09931468051759, 54.171419164084412 ] } },
{ "type": "Feature", "properties": { "id": 655, "transparent": false, "lat": 53.95, "lon": 12.115 }, "geometry": { "type": "Point", "coordinates": [ 12.114920814854836, 53.947010028364005 ] } },
{ "type": "Feature", "properties": { "id": 656, "transparent": false, "lat": 53.72, "lon": 12.13 }, "geometry": { "type": "Point", "coordinates": [ 12.130316336956229, 53.722589399097934 ] } },
{ "type": "Feature", "properties": { "id": 657, "transparent": false, "lat": 53.5, "lon": 12.146 }, "geometry": { "type": "Point", "coordinates": [ 12.14550506035406, 53.498157311739149 ] } },
{ "type": "Feature", "properties": { "id": 658, "transparent": false, "lat": 53.27, "lon": 12.16 }, "geometry": { "type": "Point", "coordinates": [ 12.160490705185588, 53.273713800874233 ] } },
{ "type": "Feature", "properties": { "id": 659, "transparent": false, "lat": 53.05, "lon": 12.175 }, "geometry": { "type": "Point", "coordinates": [ 12.175276901013504, 53.049258900266928 ] } },
{ "type": "Feature", "properties": { "id": 660, "transparent": false, "lat": 52.82, "lon": 12.19 }, "geometry": { "type": "Point", "coordinates": [ 12.189867189544692, 52.82479264289983 ] } },
{ "type": "Feature", "properties": { "id": 661, "transparent": false, "lat": 52.6, "lon": 12.204 }, "geometry": { "type": "Point", "coordinates": [ 12.204265027251584, 52.600315061014804 ] } },
{ "type": "Feature", "properties": { "id": 662, "transparent": false, "lat": 52.38, "lon": 12.218 }, "geometry": { "type": "Point", "coordinates": [ 12.218473787900093, 52.375826186151727 ] } },
{ "type": "Feature", "properties": { "id": 663, "transparent": false, "lat": 52.15, "lon": 12.232 }, "geometry": { "type": "Point", "coordinates": [ 12.232496764988033, 52.151326049186217 ] } },
{ "type": "Feature", "properties": { "id": 664, "transparent": false, "lat": 51.93, "lon": 12.246 }, "geometry": { "type": "Point", "coordinates": [ 12.246337174097663, 51.926814680365744 ] } },
{ "type": "Feature", "properties": { "id": 665, "transparent": false, "lat": 51.7, "lon": 12.26 }, "geometry": { "type": "Point", "coordinates": [ 12.259998155165871, 51.702292109344654 ] } },
{ "type": "Feature", "properties": { "id": 666, "transparent": false, "lat": 51.48, "lon": 12.273 }, "geometry": { "type": "Point", "coordinates": [ 12.273482774675333, 51.477758365217909 ] } },
{ "type": "Feature", "properties": { "id": 667, "transparent": false, "lat": 51.25, "lon": 12.287 }, "geometry": { "type": "Point", "coordinates": [ 12.286794027769853, 51.253213476553761 ] } },
{ "type": "Feature", "properties": { "id": 668, "transparent": false, "lat": 51.03, "lon": 12.3 }, "geometry": { "type": "Point", "coordinates": [ 12.29993484029689, 51.02865747142517 ] } },
{ "type": "Feature", "properties": { "id": 669, "transparent": false, "lat": 50.8, "lon": 12.313 }, "geometry": { "type": "Point", "coordinates": [ 12.312908070780212, 50.804090377440289 ] } },
{ "type": "Feature", "properties": { "id": 670, "transparent": false, "lat": 50.58, "lon": 12.326 }, "geometry": { "type": "Point", "coordinates": [ 12.32571651232541, 50.579512221771871 ] } },
{ "type": "Feature", "properties": { "id": 671, "transparent": false, "lat": 50.35, "lon": 12.338 }, "geometry": { "type": "Point", "coordinates": [ 12.338362894460957, 50.354923031185628 ] } },
{ "type": "Feature", "properties": { "id": 672, "transparent": true, "lat": 50.13, "lon": 12.351 }, "geometry": { "type": "Point", "coordinates": [ 12.350849884917302, 50.130322832067741 ] } },
{ "type": "Feature", "properties": { "id": 673, "transparent": false, "lat": 49.91, "lon": 12.363 }, "geometry": { "type": "Point", "coordinates": [ 12.36318009134644, 49.90571165045138 ] } },
{ "type": "Feature", "properties": { "id": 674, "transparent": false, "lat": 49.68, "lon": 12.375 }, "geometry": { "type": "Point", "coordinates": [ 12.375356062984258, 49.681089512042355 ] } },
{ "type": "Feature", "properties": { "id": 675, "transparent": false, "lat": 49.46, "lon": 12.387 }, "geometry": { "type": "Point", "coordinates": [ 12.387380292257861, 49.456456442243969 ] } },
{ "type": "Feature", "properties": { "id": 676, "transparent": false, "lat": 49.23, "lon": 12.399 }, "geometry": { "type": "Point", "coordinates": [ 12.399255216339984, 49.231812466180912 ] } },
{ "type": "Feature", "properties": { "id": 677, "transparent": false, "lat": 49.01, "lon": 12.411 }, "geometry": { "type": "Point", "coordinates": [ 12.410983218652525, 49.007157608722622 ] } },
{ "type": "Feature", "properties": { "id": 678, "transparent": false, "lat": 48.78, "lon": 12.423 }, "geometry": { "type": "Point", "coordinates": [ 12.422566630321102, 48.782491894505561 ] } },
{ "type": "Feature", "properties": { "id": 679, "transparent": false, "lat": 48.56, "lon": 12.434 }, "geometry": { "type": "Point", "coordinates": [ 12.434007731582509, 48.557815347955042 ] } },
{ "type": "Feature", "properties": { "id": 680, "transparent": false, "lat": 48.33, "lon": 12.445 }, "geometry": { "type": "Point", "coordinates": [ 12.445308753146817, 48.333127993306178 ] } },
{ "type": "Feature", "properties": { "id": 681, "transparent": false, "lat": 48.11, "lon": 12.456 }, "geometry": { "type": "Point", "coordinates": [ 12.456471877515824, 48.108429854624248 ] } },
{ "type": "Feature", "properties": { "id": 682, "transparent": false, "lat": 47.88, "lon": 12.467 }, "geometry": { "type": "Point", "coordinates": [ 12.467499240259484, 47.883720955824316 ] } },
{ "type": "Feature", "properties": { "id": 683, "transparent": false, "lat": 47.66, "lon": 12.478 }, "geometry": { "type": "Point", "coordinates": [ 12.478392931251827, 47.659001320690322 ] } },
{ "type": "Feature", "properties": { "id": 684, "transparent": true, "lat": 47.43, "lon": 12.489 }, "geometry": { "type": "Point", "coordinates": [ 12.489154995867926, 47.434270972893458 ] } },
{ "type": "Feature", "properties": { "id": 685, "transparent": true, "lat": 55.3, "lon": 12.411 }, "geometry": { "type": "Point", "coordinates": [ 12.411257745768177, 55.302266135918366 ] } },
{ "type": "Feature", "properties": { "id": 686, "transparent": true, "lat": 55.08, "lon": 12.426 }, "geometry": { "type": "Point", "coordinates": [ 12.425778987211922, 55.077840797134165 ] } },
{ "type": "Feature", "properties": { "id": 687, "transparent": true, "lat": 54.85, "lon": 12.44 }, "geometry": { "type": "Point", "coordinates": [ 12.440099336307208, 54.853404596164253 ] } },
{ "type": "Feature", "properties": { "id": 688, "transparent": true, "lat": 54.63, "lon": 12.454 }, "geometry": { "type": "Point", "coordinates": [ 12.454222555723575, 54.628957557609766 ] } },
{ "type": "Feature", "properties": { "id": 689, "transparent": false, "lat": 54.4, "lon": 12.468 }, "geometry": { "type": "Point", "coordinates": [ 12.468152313088151, 54.404499705359818 ] } },
{ "type": "Feature", "properties": { "id": 690, "transparent": false, "lat": 54.18, "lon": 12.482 }, "geometry": { "type": "Point", "coordinates": [ 12.481892183948951, 54.18003106263123 ] } },
{ "type": "Feature", "properties": { "id": 691, "transparent": false, "lat": 53.96, "lon": 12.495 }, "geometry": { "type": "Point", "coordinates": [ 12.495445654627932, 53.955551652006911 ] } },
{ "type": "Feature", "properties": { "id": 692, "transparent": false, "lat": 53.73, "lon": 12.509 }, "geometry": { "type": "Point", "coordinates": [ 12.50881612496854, 53.731061495472701 ] } },
{ "type": "Feature", "properties": { "id": 693, "transparent": false, "lat": 53.51, "lon": 12.522 }, "geometry": { "type": "Point", "coordinates": [ 12.522006910982244, 53.506560614453058 ] } },
{ "type": "Feature", "properties": { "id": 694, "transparent": false, "lat": 53.28, "lon": 12.535 }, "geometry": { "type": "Point", "coordinates": [ 12.535021247398417, 53.28204902984529 ] } },
{ "type": "Feature", "properties": { "id": 695, "transparent": false, "lat": 53.06, "lon": 12.548 }, "geometry": { "type": "Point", "coordinates": [ 12.547862290121607, 53.05752676205276 ] } },
{ "type": "Feature", "properties": { "id": 696, "transparent": false, "lat": 52.83, "lon": 12.561 }, "geometry": { "type": "Point", "coordinates": [ 12.560533118600111, 52.832993831016687 ] } },
{ "type": "Feature", "properties": { "id": 697, "transparent": false, "lat": 52.61, "lon": 12.573 }, "geometry": { "type": "Point", "coordinates": [ 12.573036738109558, 52.608450256247039 ] } },
{ "type": "Feature", "properties": { "id": 698, "transparent": false, "lat": 52.38, "lon": 12.585 }, "geometry": { "type": "Point", "coordinates": [ 12.585376081955037, 52.38389605685218 ] } },
{ "type": "Feature", "properties": { "id": 699, "transparent": false, "lat": 52.16, "lon": 12.598 }, "geometry": { "type": "Point", "coordinates": [ 12.59755401359514, 52.159331251567586 ] } },
{ "type": "Feature", "properties": { "id": 700, "transparent": false, "lat": 51.93, "lon": 12.61 }, "geometry": { "type": "Point", "coordinates": [ 12.609573328691118, 51.934755858783539 ] } },
{ "type": "Feature", "properties": { "id": 701, "transparent": false, "lat": 51.71, "lon": 12.621 }, "geometry": { "type": "Point", "coordinates": [ 12.621436757084217, 51.710169896571784 ] } },
{ "type": "Feature", "properties": { "id": 702, "transparent": false, "lat": 51.49, "lon": 12.633 }, "geometry": { "type": "Point", "coordinates": [ 12.633146964704101, 51.485573382711458 ] } },
{ "type": "Feature", "properties": { "id": 703, "transparent": false, "lat": 51.26, "lon": 12.645 }, "geometry": { "type": "Point", "coordinates": [ 12.644706555411171, 51.260966334713807 ] } },
{ "type": "Feature", "properties": { "id": 704, "transparent": false, "lat": 51.04, "lon": 12.656 }, "geometry": { "type": "Point", "coordinates": [ 12.656118072775381, 51.036348769846519 ] } },
{ "type": "Feature", "properties": { "id": 705, "transparent": false, "lat": 50.81, "lon": 12.667 }, "geometry": { "type": "Point", "coordinates": [ 12.667384001794163, 50.811720705156759 ] } },
{ "type": "Feature", "properties": { "id": 706, "transparent": false, "lat": 50.59, "lon": 12.679 }, "geometry": { "type": "Point", "coordinates": [ 12.678506770551795, 50.587082157493775 ] } },
{ "type": "Feature", "properties": { "id": 707, "transparent": true, "lat": 50.36, "lon": 12.689 }, "geometry": { "type": "Point", "coordinates": [ 12.689488751822582, 50.362433143530509 ] } },
{ "type": "Feature", "properties": { "id": 708, "transparent": true, "lat": 50.14, "lon": 12.7 }, "geometry": { "type": "Point", "coordinates": [ 12.700332264620036, 50.137773679784701 ] } },
{ "type": "Feature", "properties": { "id": 709, "transparent": true, "lat": 49.91, "lon": 12.711 }, "geometry": { "type": "Point", "coordinates": [ 12.71103957569415, 49.91310378263907 ] } },
{ "type": "Feature", "properties": { "id": 710, "transparent": true, "lat": 49.69, "lon": 12.722 }, "geometry": { "type": "Point", "coordinates": [ 12.721612900978808, 49.68842346836098 ] } },
{ "type": "Feature", "properties": { "id": 711, "transparent": true, "lat": 49.46, "lon": 12.732 }, "geometry": { "type": "Point", "coordinates": [ 12.73205440699124, 49.463732753121398 ] } },
{ "type": "Feature", "properties": { "id": 712, "transparent": false, "lat": 49.24, "lon": 12.742 }, "geometry": { "type": "Point", "coordinates": [ 12.742366212185344, 49.239031653013207 ] } },
{ "type": "Feature", "properties": { "id": 713, "transparent": false, "lat": 49.01, "lon": 12.753 }, "geometry": { "type": "Point", "coordinates": [ 12.752550388260678, 49.014320184068957 ] } },
{ "type": "Feature", "properties": { "id": 714, "transparent": false, "lat": 48.79, "lon": 12.763 }, "geometry": { "type": "Point", "coordinates": [ 12.762608961428773, 48.789598362277999 ] } },
{ "type": "Feature", "properties": { "id": 715, "transparent": false, "lat": 48.56, "lon": 12.773 }, "geometry": { "type": "Point", "coordinates": [ 12.772543913638398, 48.564866203603131 ] } },
{ "type": "Feature", "properties": { "id": 716, "transparent": false, "lat": 48.34, "lon": 12.782 }, "geometry": { "type": "Point", "coordinates": [ 12.782357183761292, 48.340123723996534 ] } },
{ "type": "Feature", "properties": { "id": 717, "transparent": true, "lat": 48.12, "lon": 12.792 }, "geometry": { "type": "Point", "coordinates": [ 12.792050668739883, 48.115370939415392 ] } },
{ "type": "Feature", "properties": { "id": 718, "transparent": false, "lat": 47.89, "lon": 12.802 }, "geometry": { "type": "Point", "coordinates": [ 12.801626224698357, 47.89060786583692 ] } },
{ "type": "Feature", "properties": { "id": 719, "transparent": false, "lat": 47.67, "lon": 12.811 }, "geometry": { "type": "Point", "coordinates": [ 12.811085668018485, 47.665834519272771 ] } },
{ "type": "Feature", "properties": { "id": 720, "transparent": true, "lat": 47.44, "lon": 12.82 }, "geometry": { "type": "Point", "coordinates": [ 12.820430776381448, 47.441050915783265 ] } },
{ "type": "Feature", "properties": { "id": 721, "transparent": true, "lat": 55.31, "lon": 12.805 }, "geometry": { "type": "Point", "coordinates": [ 12.804735792022043, 55.309975172708953 ] } },
{ "type": "Feature", "properties": { "id": 722, "transparent": true, "lat": 55.09, "lon": 12.817 }, "geometry": { "type": "Point", "coordinates": [ 12.817054536116657, 55.085486042684032 ] } },
{ "type": "Feature", "properties": { "id": 723, "transparent": true, "lat": 54.86, "lon": 12.829 }, "geometry": { "type": "Point", "coordinates": [ 12.829202780853219, 54.860986758546929 ] } },
{ "type": "Feature", "properties": { "id": 724, "transparent": true, "lat": 54.64, "lon": 12.841 }, "geometry": { "type": "Point", "coordinates": [ 12.841183721794744, 54.636477331216042 ] } },
{ "type": "Feature", "properties": { "id": 725, "transparent": false, "lat": 54.41, "lon": 12.853 }, "geometry": { "type": "Point", "coordinates": [ 12.853000473721435, 54.411957771239507 ] } },
{ "type": "Feature", "properties": { "id": 726, "transparent": false, "lat": 54.19, "lon": 12.865 }, "geometry": { "type": "Point", "coordinates": [ 12.86465607315184, 54.187428088824419 ] } },
{ "type": "Feature", "properties": { "id": 727, "transparent": false, "lat": 53.96, "lon": 12.876 }, "geometry": { "type": "Point", "coordinates": [ 12.876153480770096, 53.96288829386485 ] } },
{ "type": "Feature", "properties": { "id": 728, "transparent": false, "lat": 53.74, "lon": 12.887 }, "geometry": { "type": "Point", "coordinates": [ 12.887495583763313, 53.73833839596886 ] } },
{ "type": "Feature", "properties": { "id": 729, "transparent": false, "lat": 53.51, "lon": 12.899 }, "geometry": { "type": "Point", "coordinates": [ 12.898685198072952, 53.513778404484604 ] } },
{ "type": "Feature", "properties": { "id": 730, "transparent": false, "lat": 53.29, "lon": 12.91 }, "geometry": { "type": "Point", "coordinates": [ 12.90972507056388, 53.289208328525454 ] } },
{ "type": "Feature", "properties": { "id": 731, "transparent": false, "lat": 53.06, "lon": 12.921 }, "geometry": { "type": "Point", "coordinates": [ 12.92061788111455, 53.064628176994269 ] } },
{ "type": "Feature", "properties": { "id": 732, "transparent": false, "lat": 52.84, "lon": 12.931 }, "geometry": { "type": "Point", "coordinates": [ 12.931366244631668, 52.84003795860675 ] } },
{ "type": "Feature", "properties": { "id": 733, "transparent": false, "lat": 52.62, "lon": 12.942 }, "geometry": { "type": "Point", "coordinates": [ 12.941972712992495, 52.615437681914059 ] } },
{ "type": "Feature", "properties": { "id": 734, "transparent": false, "lat": 52.39, "lon": 12.952 }, "geometry": { "type": "Point", "coordinates": [ 12.952439776917794, 52.390827355324546 ] } },
{ "type": "Feature", "properties": { "id": 735, "transparent": false, "lat": 52.17, "lon": 12.963 }, "geometry": { "type": "Point", "coordinates": [ 12.962769867778283, 52.166206987124866 ] } },
{ "type": "Feature", "properties": { "id": 736, "transparent": false, "lat": 51.94, "lon": 12.973 }, "geometry": { "type": "Point", "coordinates": [ 12.972965359337362, 51.941576585500201 ] } },
{ "type": "Feature", "properties": { "id": 737, "transparent": false, "lat": 51.72, "lon": 12.983 }, "geometry": { "type": "Point", "coordinates": [ 12.98302856943266, 51.716936158553892 ] } },
{ "type": "Feature", "properties": { "id": 738, "transparent": false, "lat": 51.49, "lon": 12.993 }, "geometry": { "type": "Point", "coordinates": [ 12.992961761598975, 51.492285714326364 ] } },
{ "type": "Feature", "properties": { "id": 739, "transparent": false, "lat": 51.27, "lon": 13.003 }, "geometry": { "type": "Point", "coordinates": [ 13.002767146634879, 51.267625260813453 ] } },
{ "type": "Feature", "properties": { "id": 740, "transparent": false, "lat": 51.04, "lon": 13.012 }, "geometry": { "type": "Point", "coordinates": [ 13.012446884115338, 51.042954805983996 ] } },
{ "type": "Feature", "properties": { "id": 741, "transparent": false, "lat": 50.82, "lon": 13.022 }, "geometry": { "type": "Point", "coordinates": [ 13.022003083852439, 50.818274357796952 ] } },
{ "type": "Feature", "properties": { "id": 742, "transparent": false, "lat": 50.59, "lon": 13.031 }, "geometry": { "type": "Point", "coordinates": [ 13.031437807306334, 50.593583924217896 ] } },
{ "type": "Feature", "properties": { "id": 743, "transparent": true, "lat": 50.37, "lon": 13.041 }, "geometry": { "type": "Point", "coordinates": [ 13.040753068948343, 50.368883513234898 ] } },
{ "type": "Feature", "properties": { "id": 744, "transparent": true, "lat": 50.14, "lon": 13.05 }, "geometry": { "type": "Point", "coordinates": [ 13.049950837578088, 50.14417313287403 ] } },
{ "type": "Feature", "properties": { "id": 745, "transparent": true, "lat": 49.92, "lon": 13.059 }, "geometry": { "type": "Point", "coordinates": [ 13.059033037596482, 49.919452791214162 ] } },
{ "type": "Feature", "properties": { "id": 746, "transparent": true, "lat": 49.69, "lon": 13.068 }, "geometry": { "type": "Point", "coordinates": [ 13.068001550236266, 49.694722496401361 ] } },
{ "type": "Feature", "properties": { "id": 747, "transparent": true, "lat": 49.47, "lon": 13.077 }, "geometry": { "type": "Point", "coordinates": [ 13.076858214751747, 49.469982256662924 ] } },
{ "type": "Feature", "properties": { "id": 748, "transparent": false, "lat": 49.25, "lon": 13.086 }, "geometry": { "type": "Point", "coordinates": [ 13.085604829569277, 49.245232080320669 ] } },
{ "type": "Feature", "properties": { "id": 749, "transparent": false, "lat": 49.02, "lon": 13.094 }, "geometry": { "type": "Point", "coordinates": [ 13.094243153400038, 49.020471975804071 ] } },
{ "type": "Feature", "properties": { "id": 750, "transparent": false, "lat": 48.8, "lon": 13.103 }, "geometry": { "type": "Point", "coordinates": [ 13.102774906316469, 48.795701951662792 ] } },
{ "type": "Feature", "properties": { "id": 751, "transparent": false, "lat": 48.57, "lon": 13.111 }, "geometry": { "type": "Point", "coordinates": [ 13.111201770793814, 48.570922016578884 ] } },
{ "type": "Feature", "properties": { "id": 752, "transparent": false, "lat": 48.35, "lon": 13.12 }, "geometry": { "type": "Point", "coordinates": [ 13.119525392718012, 48.346132179378522 ] } },
{ "type": "Feature", "properties": { "id": 753, "transparent": true, "lat": 48.12, "lon": 13.128 }, "geometry": { "type": "Point", "coordinates": [ 13.12774738236126, 48.121332449043408 ] } },
{ "type": "Feature", "properties": { "id": 754, "transparent": true, "lat": 47.9, "lon": 13.136 }, "geometry": { "type": "Point", "coordinates": [ 13.13586931532639, 47.896522834721836 ] } },
{ "type": "Feature", "properties": { "id": 755, "transparent": true, "lat": 47.67, "lon": 13.144 }, "geometry": { "type": "Point", "coordinates": [ 13.14389273346127, 47.671703345739211 ] } },
{ "type": "Feature", "properties": { "id": 756, "transparent": true, "lat": 47.45, "lon": 13.152 }, "geometry": { "type": "Point", "coordinates": [ 13.151819145744289, 47.446873991608506 ] } },
{ "type": "Feature", "properties": { "id": 757, "transparent": true, "lat": 55.32, "lon": 13.198 }, "geometry": { "type": "Point", "coordinates": [ 13.198387602248088, 55.316416920849285 ] } },
{ "type": "Feature", "properties": { "id": 758, "transparent": true, "lat": 55.09, "lon": 13.209 }, "geometry": { "type": "Point", "coordinates": [ 13.20850057048194, 55.091874467464386 ] } },
{ "type": "Feature", "properties": { "id": 759, "transparent": true, "lat": 54.87, "lon": 13.218 }, "geometry": { "type": "Point", "coordinates": [ 13.218473515733189, 54.867322452311384 ] } },
{ "type": "Feature", "properties": { "id": 760, "transparent": false, "lat": 54.64, "lon": 13.228 }, "geometry": { "type": "Point", "coordinates": [ 13.228309063839742, 54.642760874852129 ] } },
{ "type": "Feature", "properties": { "id": 761, "transparent": false, "lat": 54.42, "lon": 13.238 }, "geometry": { "type": "Point", "coordinates": [ 13.238009774214433, 54.418189734464889 ] } },
{ "type": "Feature", "properties": { "id": 762, "transparent": false, "lat": 54.19, "lon": 13.248 }, "geometry": { "type": "Point", "coordinates": [ 13.247578141919767, 54.19360903046438 ] } },
{ "type": "Feature", "properties": { "id": 763, "transparent": false, "lat": 53.97, "lon": 13.257 }, "geometry": { "type": "Point", "coordinates": [ 13.257016599665311, 53.969018762121351 ] } },
{ "type": "Feature", "properties": { "id": 764, "transparent": false, "lat": 53.74, "lon": 13.266 }, "geometry": { "type": "Point", "coordinates": [ 13.26632751973108, 53.744418928681192 ] } },
{ "type": "Feature", "properties": { "id": 765, "transparent": false, "lat": 53.52, "lon": 13.276 }, "geometry": { "type": "Point", "coordinates": [ 13.275513215820068, 53.519809529382123 ] } },
{ "type": "Feature", "properties": { "id": 766, "transparent": false, "lat": 53.3, "lon": 13.285 }, "geometry": { "type": "Point", "coordinates": [ 13.284575944842986, 53.295190563472509 ] } },
{ "type": "Feature", "properties": { "id": 767, "transparent": false, "lat": 53.07, "lon": 13.294 }, "geometry": { "type": "Point", "coordinates": [ 13.29351790863806, 53.070562030227826 ] } },
{ "type": "Feature", "properties": { "id": 768, "transparent": false, "lat": 52.85, "lon": 13.302 }, "geometry": { "type": "Point", "coordinates": [ 13.302341255628608, 52.845923928966734 ] } },
{ "type": "Feature", "properties": { "id": 769, "transparent": false, "lat": 52.62, "lon": 13.311 }, "geometry": { "type": "Point", "coordinates": [ 13.311048082421058, 52.621276259066953 ] } },
{ "type": "Feature", "properties": { "id": 770, "transparent": false, "lat": 52.4, "lon": 13.32 }, "geometry": { "type": "Point", "coordinates": [ 13.319640435345834, 52.396619019980193 ] } },
{ "type": "Feature", "properties": { "id": 771, "transparent": false, "lat": 52.17, "lon": 13.328 }, "geometry": { "type": "Point", "coordinates": [ 13.328120311943509, 52.171952211246925 ] } },
{ "type": "Feature", "properties": { "id": 772, "transparent": false, "lat": 51.95, "lon": 13.336 }, "geometry": { "type": "Point", "coordinates": [ 13.336489662398469, 51.9472758325104 ] } },
{ "type": "Feature", "properties": { "id": 773, "transparent": false, "lat": 51.72, "lon": 13.345 }, "geometry": { "type": "Point", "coordinates": [ 13.344750390922218, 51.722589883530297 ] } },
{ "type": "Feature", "properties": { "id": 774, "transparent": false, "lat": 51.5, "lon": 13.353 }, "geometry": { "type": "Point", "coordinates": [ 13.35290435708843, 51.497894364195922 ] } },
{ "type": "Feature", "properties": { "id": 775, "transparent": false, "lat": 51.27, "lon": 13.361 }, "geometry": { "type": "Point", "coordinates": [ 13.360953377121607, 51.273189274538893 ] } },
{ "type": "Feature", "properties": { "id": 776, "transparent": false, "lat": 51.05, "lon": 13.369 }, "geometry": { "type": "Point", "coordinates": [ 13.368899225141325, 51.048474614745437 ] } },
{ "type": "Feature", "properties": { "id": 777, "transparent": false, "lat": 50.82, "lon": 13.377 }, "geometry": { "type": "Point", "coordinates": [ 13.376743634363722, 50.823750385168267 ] } },
{ "type": "Feature", "properties": { "id": 778, "transparent": true, "lat": 50.6, "lon": 13.384 }, "geometry": { "type": "Point", "coordinates": [ 13.384488298262038, 50.599016586338088 ] } },
{ "type": "Feature", "properties": { "id": 779, "transparent": true, "lat": 50.37, "lon": 13.392 }, "geometry": { "type": "Point", "coordinates": [ 13.392134871687761, 50.374273218974643 ] } },
{ "type": "Feature", "properties": { "id": 780, "transparent": true, "lat": 50.15, "lon": 13.4 }, "geometry": { "type": "Point", "coordinates": [ 13.399684971953929, 50.149520283997447 ] } },
{ "type": "Feature", "properties": { "id": 781, "transparent": true, "lat": 49.92, "lon": 13.407 }, "geometry": { "type": "Point", "coordinates": [ 13.407140179882106, 49.924757782536211 ] } },
{ "type": "Feature", "properties": { "id": 782, "transparent": true, "lat": 49.7, "lon": 13.415 }, "geometry": { "type": "Point", "coordinates": [ 13.414502040814421, 49.699985715940755 ] } },
{ "type": "Feature", "properties": { "id": 783, "transparent": true, "lat": 49.48, "lon": 13.422 }, "geometry": { "type": "Point", "coordinates": [ 13.421772065592007, 49.475204085790821 ] } },
{ "type": "Feature", "properties": { "id": 784, "transparent": true, "lat": 49.25, "lon": 13.429 }, "geometry": { "type": "Point", "coordinates": [ 13.428951731501165, 49.25041289390532 ] } },
{ "type": "Feature", "properties": { "id": 785, "transparent": true, "lat": 49.03, "lon": 13.436 }, "geometry": { "type": "Point", "coordinates": [ 13.436042483188457, 49.025612142351498 ] } },
{ "type": "Feature", "properties": { "id": 786, "transparent": false, "lat": 48.8, "lon": 13.443 }, "geometry": { "type": "Point", "coordinates": [ 13.443045733545937, 48.800801833453626 ] } },
{ "type": "Feature", "properties": { "id": 787, "transparent": false, "lat": 48.58, "lon": 13.45 }, "geometry": { "type": "Point", "coordinates": [ 13.449962864567615, 48.575981969801447 ] } },
{ "type": "Feature", "properties": { "id": 788, "transparent": true, "lat": 48.35, "lon": 13.457 }, "geometry": { "type": "Point", "coordinates": [ 13.456795228178294, 48.351152554258469 ] } },
{ "type": "Feature", "properties": { "id": 789, "transparent": true, "lat": 48.13, "lon": 13.464 }, "geometry": { "type": "Point", "coordinates": [ 13.463544147035728, 48.126313589969733 ] } },
{ "type": "Feature", "properties": { "id": 790, "transparent": true, "lat": 47.9, "lon": 13.47 }, "geometry": { "type": "Point", "coordinates": [ 13.470210915307199, 47.901465080369633 ] } },
{ "type": "Feature", "properties": { "id": 791, "transparent": true, "lat": 47.68, "lon": 13.477 }, "geometry": { "type": "Point", "coordinates": [ 13.476796799421356, 47.676607029189157 ] } },
{ "type": "Feature", "properties": { "id": 792, "transparent": true, "lat": 47.45, "lon": 13.483 }, "geometry": { "type": "Point", "coordinates": [ 13.483303038796315, 47.451739440463179 ] } },
{ "type": "Feature", "properties": { "id": 793, "transparent": true, "lat": 55.32, "lon": 13.592 }, "geometry": { "type": "Point", "coordinates": [ 13.592182118074316, 55.321590275003224 ] } },
{ "type": "Feature", "properties": { "id": 794, "transparent": true, "lat": 55.1, "lon": 13.6 }, "geometry": { "type": "Point", "coordinates": [ 13.600086616402056, 55.097004985367292 ] } },
{ "type": "Feature", "properties": { "id": 795, "transparent": true, "lat": 54.87, "lon": 13.608 }, "geometry": { "type": "Point", "coordinates": [ 13.60788163668925, 54.87241061011607 ] } },
{ "type": "Feature", "properties": { "id": 796, "transparent": false, "lat": 54.65, "lon": 13.616 }, "geometry": { "type": "Point", "coordinates": [ 13.615569232893696, 54.647807139495541 ] } },
{ "type": "Feature", "properties": { "id": 797, "transparent": false, "lat": 54.42, "lon": 13.623 }, "geometry": { "type": "Point", "coordinates": [ 13.62315140698669, 54.42319456389879 ] } },
{ "type": "Feature", "properties": { "id": 798, "transparent": false, "lat": 54.2, "lon": 13.631 }, "geometry": { "type": "Point", "coordinates": [ 13.630630110577858, 54.198572873878931 ] } },
{ "type": "Feature", "properties": { "id": 799, "transparent": false, "lat": 53.97, "lon": 13.638 }, "geometry": { "type": "Point", "coordinates": [ 13.638007246479352, 53.97394206016164 ] } },
{ "type": "Feature", "properties": { "id": 800, "transparent": false, "lat": 53.75, "lon": 13.645 }, "geometry": { "type": "Point", "coordinates": [ 13.64528467021205, 53.749302113657087 ] } },
{ "type": "Feature", "properties": { "id": 801, "transparent": false, "lat": 53.52, "lon": 13.652 }, "geometry": { "type": "Point", "coordinates": [ 13.652464191456227, 53.524653025471714 ] } },
{ "type": "Feature", "properties": { "id": 802, "transparent": false, "lat": 53.3, "lon": 13.66 }, "geometry": { "type": "Point", "coordinates": [ 13.65954757544911, 53.29999478691937 ] } },
{ "type": "Feature", "properties": { "id": 803, "transparent": false, "lat": 53.08, "lon": 13.667 }, "geometry": { "type": "Point", "coordinates": [ 13.666536544331532, 53.075327389532205 ] } },
{ "type": "Feature", "properties": { "id": 804, "transparent": false, "lat": 52.85, "lon": 13.673 }, "geometry": { "type": "Point", "coordinates": [ 13.673432778445834, 52.850650825071099 ] } },
{ "type": "Feature", "properties": { "id": 805, "transparent": false, "lat": 52.63, "lon": 13.68 }, "geometry": { "type": "Point", "coordinates": [ 13.680237917587108, 52.625965085535832 ] } },
{ "type": "Feature", "properties": { "id": 806, "transparent": false, "lat": 52.4, "lon": 13.687 }, "geometry": { "type": "Point", "coordinates": [ 13.686953562209673, 52.401270163174793 ] } },
{ "type": "Feature", "properties": { "id": 807, "transparent": false, "lat": 52.18, "lon": 13.694 }, "geometry": { "type": "Point", "coordinates": [ 13.693581274590649, 52.176566050494486 ] } },
{ "type": "Feature", "properties": { "id": 808, "transparent": false, "lat": 51.95, "lon": 13.7 }, "geometry": { "type": "Point", "coordinates": [ 13.700122579952428, 51.951852740268606 ] } },
{ "type": "Feature", "properties": { "id": 809, "transparent": false, "lat": 51.73, "lon": 13.707 }, "geometry": { "type": "Point", "coordinates": [ 13.706578967545695, 51.727130225546894 ] } },
{ "type": "Feature", "properties": { "id": 810, "transparent": false, "lat": 51.5, "lon": 13.713 }, "geometry": { "type": "Point", "coordinates": [ 13.71295189169461, 51.502398499663592 ] } },
{ "type": "Feature", "properties": { "id": 811, "transparent": false, "lat": 51.28, "lon": 13.719 }, "geometry": { "type": "Point", "coordinates": [ 13.7192427728057, 51.277657556245771 ] } },
{ "type": "Feature", "properties": { "id": 812, "transparent": false, "lat": 51.05, "lon": 13.725 }, "geometry": { "type": "Point", "coordinates": [ 13.725452998341906, 51.052907389221211 ] } },
{ "type": "Feature", "properties": { "id": 813, "transparent": false, "lat": 50.83, "lon": 13.732 }, "geometry": { "type": "Point", "coordinates": [ 13.731583923763173, 50.828147992826146 ] } },
{ "type": "Feature", "properties": { "id": 814, "transparent": true, "lat": 50.6, "lon": 13.738 }, "geometry": { "type": "Point", "coordinates": [ 13.737636873434942, 50.603379361612681 ] } },
{ "type": "Feature", "properties": { "id": 815, "transparent": true, "lat": 50.38, "lon": 13.744 }, "geometry": { "type": "Point", "coordinates": [ 13.743613141505792, 50.378601490455999 ] } },
{ "type": "Feature", "properties": { "id": 816, "transparent": true, "lat": 50.15, "lon": 13.75 }, "geometry": { "type": "Point", "coordinates": [ 13.74951399275545, 50.153814374561264 ] } },
{ "type": "Feature", "properties": { "id": 817, "transparent": true, "lat": 49.93, "lon": 13.755 }, "geometry": { "type": "Point", "coordinates": [ 13.755340663414323, 49.92901800947044 ] } },
{ "type": "Feature", "properties": { "id": 818, "transparent": true, "lat": 49.7, "lon": 13.761 }, "geometry": { "type": "Point", "coordinates": [ 13.76109436195569, 49.70421239106868 ] } },
{ "type": "Feature", "properties": { "id": 819, "transparent": true, "lat": 49.48, "lon": 13.767 }, "geometry": { "type": "Point", "coordinates": [ 13.76677626986157, 49.479397515590691 ] } },
{ "type": "Feature", "properties": { "id": 820, "transparent": true, "lat": 49.25, "lon": 13.772 }, "geometry": { "type": "Point", "coordinates": [ 13.772387542363296, 49.25457337962677 ] } },
{ "type": "Feature", "properties": { "id": 821, "transparent": true, "lat": 49.03, "lon": 13.778 }, "geometry": { "type": "Point", "coordinates": [ 13.777929309157786, 49.029739980128689 ] } },
{ "type": "Feature", "properties": { "id": 822, "transparent": false, "lat": 48.8, "lon": 13.783 }, "geometry": { "type": "Point", "coordinates": [ 13.783402675100403, 48.804897314415328 ] } },
{ "type": "Feature", "properties": { "id": 823, "transparent": false, "lat": 48.58, "lon": 13.789 }, "geometry": { "type": "Point", "coordinates": [ 13.788808720875293, 48.580045380178241 ] } },
{ "type": "Feature", "properties": { "id": 824, "transparent": true, "lat": 48.36, "lon": 13.794 }, "geometry": { "type": "Point", "coordinates": [ 13.794148503644085, 48.355184175486876 ] } },
{ "type": "Feature", "properties": { "id": 825, "transparent": true, "lat": 48.13, "lon": 13.799 }, "geometry": { "type": "Point", "coordinates": [ 13.799423057673719, 48.130313698793749 ] } },
{ "type": "Feature", "properties": { "id": 826, "transparent": true, "lat": 47.91, "lon": 13.805 }, "geometry": { "type": "Point", "coordinates": [ 13.804633394944201, 47.905433948939418 ] } },
{ "type": "Feature", "properties": { "id": 827, "transparent": true, "lat": 47.68, "lon": 13.81 }, "geometry": { "type": "Point", "coordinates": [ 13.809780505737027, 47.680544925157129 ] } },
{ "type": "Feature", "properties": { "id": 828, "transparent": true, "lat": 47.46, "lon": 13.815 }, "geometry": { "type": "Point", "coordinates": [ 13.814865359205003, 47.455646627077627 ] } },
{ "type": "Feature", "properties": { "id": 829, "transparent": true, "lat": 55.33, "lon": 13.986 }, "geometry": { "type": "Point", "coordinates": [ 13.98608821033732, 55.325494346892299 ] } },
{ "type": "Feature", "properties": { "id": 830, "transparent": true, "lat": 55.1, "lon": 13.992 }, "geometry": { "type": "Point", "coordinates": [ 13.991782131418773, 55.100876723576498 ] } },
{ "type": "Feature", "properties": { "id": 831, "transparent": true, "lat": 54.88, "lon": 13.997 }, "geometry": { "type": "Point", "coordinates": [ 13.997397173065405, 54.87625037423539 ] } },
{ "type": "Feature", "properties": { "id": 832, "transparent": true, "lat": 54.65, "lon": 14.003 }, "geometry": { "type": "Point", "coordinates": [ 14.002934815667171, 54.651615282151205 ] } },
{ "type": "Feature", "properties": { "id": 833, "transparent": true, "lat": 54.43, "lon": 14.008 }, "geometry": { "type": "Point", "coordinates": [ 14.00839650212947, 54.426971430927765 ] } },
{ "type": "Feature", "properties": { "id": 834, "transparent": false, "lat": 54.2, "lon": 14.014 }, "geometry": { "type": "Point", "coordinates": [ 14.013783639045284, 54.202318804497935 ] } },
{ "type": "Feature", "properties": { "id": 835, "transparent": false, "lat": 53.98, "lon": 14.019 }, "geometry": { "type": "Point", "coordinates": [ 14.019097597823567, 53.97765738713084 ] } },
{ "type": "Feature", "properties": { "id": 836, "transparent": false, "lat": 53.75, "lon": 14.024 }, "geometry": { "type": "Point", "coordinates": [ 14.024339715775774, 53.752987163438867 ] } },
{ "type": "Feature", "properties": { "id": 837, "transparent": false, "lat": 53.53, "lon": 14.03 }, "geometry": { "type": "Point", "coordinates": [ 14.029511297162299, 53.528308118384444 ] } },
{ "type": "Feature", "properties": { "id": 838, "transparent": false, "lat": 53.3, "lon": 14.035 }, "geometry": { "type": "Point", "coordinates": [ 14.034613614200586, 53.303620237286538 ] } },
{ "type": "Feature", "properties": { "id": 839, "transparent": false, "lat": 53.08, "lon": 14.04 }, "geometry": { "type": "Point", "coordinates": [ 14.039647908036489, 53.078923505826999 ] } },
{ "type": "Feature", "properties": { "id": 840, "transparent": false, "lat": 52.85, "lon": 14.045 }, "geometry": { "type": "Point", "coordinates": [ 14.04461538968048, 52.854217910056626 ] } },
{ "type": "Feature", "properties": { "id": 841, "transparent": false, "lat": 52.63, "lon": 14.05 }, "geometry": { "type": "Point", "coordinates": [ 14.04951724091015, 52.629503436401173 ] } },
{ "type": "Feature", "properties": { "id": 842, "transparent": false, "lat": 52.4, "lon": 14.054 }, "geometry": { "type": "Point", "coordinates": [ 14.05435461514041, 52.404780071666927 ] } },
{ "type": "Feature", "properties": { "id": 843, "transparent": false, "lat": 52.18, "lon": 14.059 }, "geometry": { "type": "Point", "coordinates": [ 14.059128638262752, 52.180047803046392 ] } },
{ "type": "Feature", "properties": { "id": 844, "transparent": false, "lat": 51.96, "lon": 14.064 }, "geometry": { "type": "Point", "coordinates": [ 14.063840409454825, 51.955306618123487 ] } },
{ "type": "Feature", "properties": { "id": 845, "transparent": false, "lat": 51.73, "lon": 14.068 }, "geometry": { "type": "Point", "coordinates": [ 14.068491001961549, 51.730556504878841 ] } },
{ "type": "Feature", "properties": { "id": 846, "transparent": false, "lat": 51.51, "lon": 14.073 }, "geometry": { "type": "Point", "coordinates": [ 14.073081463848945, 51.505797451694754 ] } },
{ "type": "Feature", "properties": { "id": 847, "transparent": false, "lat": 51.28, "lon": 14.078 }, "geometry": { "type": "Point", "coordinates": [ 14.07761281873174, 51.281029447360005 ] } },
{ "type": "Feature", "properties": { "id": 848, "transparent": false, "lat": 51.06, "lon": 14.082 }, "geometry": { "type": "Point", "coordinates": [ 14.082086066475867, 51.056252481074608 ] } },
{ "type": "Feature", "properties": { "id": 849, "transparent": false, "lat": 50.83, "lon": 14.087 }, "geometry": { "type": "Point", "coordinates": [ 14.086502183876801, 50.831466542454294 ] } },
{ "type": "Feature", "properties": { "id": 850, "transparent": true, "lat": 50.61, "lon": 14.091 }, "geometry": { "type": "Point", "coordinates": [ 14.090862125314747, 50.606671621534915 ] } },
{ "type": "Feature", "properties": { "id": 851, "transparent": true, "lat": 50.38, "lon": 14.095 }, "geometry": { "type": "Point", "coordinates": [ 14.095166823387562, 50.381867708776696 ] } },
{ "type": "Feature", "properties": { "id": 852, "transparent": true, "lat": 50.16, "lon": 14.099 }, "geometry": { "type": "Point", "coordinates": [ 14.099417189522294, 50.157054795068262 ] } },
{ "type": "Feature", "properties": { "id": 853, "transparent": true, "lat": 49.93, "lon": 14.104 }, "geometry": { "type": "Point", "coordinates": [ 14.103614114566206, 49.932232871730719 ] } },
{ "type": "Feature", "properties": { "id": 854, "transparent": true, "lat": 49.71, "lon": 14.108 }, "geometry": { "type": "Point", "coordinates": [ 14.107758469358016, 49.707401930521428 ] } },
{ "type": "Feature", "properties": { "id": 855, "transparent": true, "lat": 49.48, "lon": 14.112 }, "geometry": { "type": "Point", "coordinates": [ 14.1118511052802, 49.482561963637686 ] } },
{ "type": "Feature", "properties": { "id": 856, "transparent": true, "lat": 49.26, "lon": 14.116 }, "geometry": { "type": "Point", "coordinates": [ 14.11589285479303, 49.25771296372033 ] } },
{ "type": "Feature", "properties": { "id": 857, "transparent": true, "lat": 49.03, "lon": 14.12 }, "geometry": { "type": "Point", "coordinates": [ 14.119884531951062, 49.032854923857251 ] } },
{ "type": "Feature", "properties": { "id": 858, "transparent": true, "lat": 48.81, "lon": 14.124 }, "geometry": { "type": "Point", "coordinates": [ 14.123826932902753, 48.807987837586658 ] } },
{ "type": "Feature", "properties": { "id": 859, "transparent": true, "lat": 48.58, "lon": 14.128 }, "geometry": { "type": "Point", "coordinates": [ 14.127720836373841, 48.583111698900325 ] } },
{ "type": "Feature", "properties": { "id": 860, "transparent": true, "lat": 48.36, "lon": 14.132 }, "geometry": { "type": "Point", "coordinates": [ 14.131567004135084, 48.358226502246787 ] } },
{ "type": "Feature", "properties": { "id": 861, "transparent": true, "lat": 48.13, "lon": 14.135 }, "geometry": { "type": "Point", "coordinates": [ 14.135366181454961, 48.133332242534209 ] } },
{ "type": "Feature", "properties": { "id": 862, "transparent": true, "lat": 47.91, "lon": 14.139 }, "geometry": { "type": "Point", "coordinates": [ 14.1391190975379, 47.90842891513347 ] } },
{ "type": "Feature", "properties": { "id": 863, "transparent": true, "lat": 47.68, "lon": 14.143 }, "geometry": { "type": "Point", "coordinates": [ 14.142826465948559, 47.683516515880761 ] } },
{ "type": "Feature", "properties": { "id": 864, "transparent": true, "lat": 47.46, "lon": 14.146 }, "geometry": { "type": "Point", "coordinates": [ 14.146488985022661, 47.4585950410805 ] } },
{ "type": "Feature", "properties": { "id": 865, "transparent": true, "lat": 55.33, "lon": 14.38 }, "geometry": { "type": "Point", "coordinates": [ 14.380074694467584, 55.328128465831604 ] } },
{ "type": "Feature", "properties": { "id": 866, "transparent": true, "lat": 55.1, "lon": 14.384 }, "geometry": { "type": "Point", "coordinates": [ 14.38355651942123, 55.103489023087612 ] } },
{ "type": "Feature", "properties": { "id": 867, "transparent": true, "lat": 54.88, "lon": 14.387 }, "geometry": { "type": "Point", "coordinates": [ 14.386990102240269, 54.878841097064537 ] } },
{ "type": "Feature", "properties": { "id": 868, "transparent": true, "lat": 54.65, "lon": 14.39 }, "geometry": { "type": "Point", "coordinates": [ 14.390376348529262, 54.65418466634172 ] } },
{ "type": "Feature", "properties": { "id": 869, "transparent": true, "lat": 54.43, "lon": 14.394 }, "geometry": { "type": "Point", "coordinates": [ 14.393716140955894, 54.429519709938006 ] } },
{ "type": "Feature", "properties": { "id": 870, "transparent": true, "lat": 54.2, "lon": 14.397 }, "geometry": { "type": "Point", "coordinates": [ 14.397010339968432, 54.204846207315455 ] } },
{ "type": "Feature", "properties": { "id": 871, "transparent": true, "lat": 53.98, "lon": 14.4 }, "geometry": { "type": "Point", "coordinates": [ 14.400259784486416, 53.98016413838306 ] } },
{ "type": "Feature", "properties": { "id": 872, "transparent": true, "lat": 53.76, "lon": 14.403 }, "geometry": { "type": "Point", "coordinates": [ 14.403465292565707, 53.755473483500261 ] } },
{ "type": "Feature", "properties": { "id": 873, "transparent": true, "lat": 53.53, "lon": 14.407 }, "geometry": { "type": "Point", "coordinates": [ 14.406627662038996, 53.530774223480492 ] } },
{ "type": "Feature", "properties": { "id": 874, "transparent": false, "lat": 53.31, "lon": 14.41 }, "geometry": { "type": "Point", "coordinates": [ 14.409747671132815, 53.306066339594437 ] } },
{ "type": "Feature", "properties": { "id": 875, "transparent": true, "lat": 53.08, "lon": 14.413 }, "geometry": { "type": "Point", "coordinates": [ 14.412826079062105, 53.081349813573389 ] } },
{ "type": "Feature", "properties": { "id": 876, "transparent": true, "lat": 52.86, "lon": 14.416 }, "geometry": { "type": "Point", "coordinates": [ 14.415863626603196, 52.856624627612327 ] } },
{ "type": "Feature", "properties": { "id": 877, "transparent": false, "lat": 52.63, "lon": 14.419 }, "geometry": { "type": "Point", "coordinates": [ 14.418861036646186, 52.631890764373026 ] } },
{ "type": "Feature", "properties": { "id": 878, "transparent": false, "lat": 52.41, "lon": 14.422 }, "geometry": { "type": "Point", "coordinates": [ 14.421819014727546, 52.407148206987031 ] } },
{ "type": "Feature", "properties": { "id": 879, "transparent": false, "lat": 52.18, "lon": 14.425 }, "geometry": { "type": "Point", "coordinates": [ 14.424738249543761, 52.182396939058513 ] } },
{ "type": "Feature", "properties": { "id": 880, "transparent": false, "lat": 51.96, "lon": 14.428 }, "geometry": { "type": "Point", "coordinates": [ 14.427619413446807, 51.957636944667122 ] } },
{ "type": "Feature", "properties": { "id": 881, "transparent": false, "lat": 51.73, "lon": 14.43 }, "geometry": { "type": "Point", "coordinates": [ 14.430463162922219, 51.732868208370633 ] } },
{ "type": "Feature", "properties": { "id": 882, "transparent": false, "lat": 51.51, "lon": 14.433 }, "geometry": { "type": "Point", "coordinates": [ 14.433270139050416, 51.508090715207665 ] } },
{ "type": "Feature", "properties": { "id": 883, "transparent": false, "lat": 51.28, "lon": 14.436 }, "geometry": { "type": "Point", "coordinates": [ 14.436040967952017, 51.283304450700136 ] } },
{ "type": "Feature", "properties": { "id": 884, "transparent": false, "lat": 51.06, "lon": 14.439 }, "geometry": { "type": "Point", "coordinates": [ 14.438776261217757, 51.058509400855783 ] } },
{ "type": "Feature", "properties": { "id": 885, "transparent": true, "lat": 50.83, "lon": 14.441 }, "geometry": { "type": "Point", "coordinates": [ 14.441476616323619, 50.833705552170571 ] } },
{ "type": "Feature", "properties": { "id": 886, "transparent": true, "lat": 50.61, "lon": 14.444 }, "geometry": { "type": "Point", "coordinates": [ 14.444142617031787, 50.60889289163098 ] } },
{ "type": "Feature", "properties": { "id": 887, "transparent": true, "lat": 50.38, "lon": 14.447 }, "geometry": { "type": "Point", "coordinates": [ 14.446774833777988, 50.384071406716302 ] } },
{ "type": "Feature", "properties": { "id": 888, "transparent": true, "lat": 50.16, "lon": 14.449 }, "geometry": { "type": "Point", "coordinates": [ 14.449373824045736, 50.159241085400716 ] } },
{ "type": "Feature", "properties": { "id": 889, "transparent": true, "lat": 49.93, "lon": 14.452 }, "geometry": { "type": "Point", "coordinates": [ 14.451940132727989, 49.934401916155537 ] } },
{ "type": "Feature", "properties": { "id": 890, "transparent": true, "lat": 49.71, "lon": 14.454 }, "geometry": { "type": "Point", "coordinates": [ 14.45447429247675, 49.709553887951039 ] } },
{ "type": "Feature", "properties": { "id": 891, "transparent": true, "lat": 49.48, "lon": 14.457 }, "geometry": { "type": "Point", "coordinates": [ 14.456976824041035, 49.484696990258705 ] } },
{ "type": "Feature", "properties": { "id": 892, "transparent": true, "lat": 49.26, "lon": 14.459 }, "geometry": { "type": "Point", "coordinates": [ 14.45944823659366, 49.259831213052841 ] } },
{ "type": "Feature", "properties": { "id": 893, "transparent": true, "lat": 49.03, "lon": 14.462 }, "geometry": { "type": "Point", "coordinates": [ 14.46188902804732, 49.034956546812616 ] } },
{ "type": "Feature", "properties": { "id": 894, "transparent": true, "lat": 48.81, "lon": 14.464 }, "geometry": { "type": "Point", "coordinates": [ 14.464299685360297, 48.8100729825237 ] } },
{ "type": "Feature", "properties": { "id": 895, "transparent": true, "lat": 48.59, "lon": 14.467 }, "geometry": { "type": "Point", "coordinates": [ 14.466680684832262, 48.585180511680036 ] } },
{ "type": "Feature", "properties": { "id": 896, "transparent": true, "lat": 48.36, "lon": 14.469 }, "geometry": { "type": "Point", "coordinates": [ 14.469032492390495, 48.360279126285512 ] } },
{ "type": "Feature", "properties": { "id": 897, "transparent": true, "lat": 48.14, "lon": 14.471 }, "geometry": { "type": "Point", "coordinates": [ 14.471355563866885, 48.135368818855433 ] } },
{ "type": "Feature", "properties": { "id": 898, "transparent": true, "lat": 47.91, "lon": 14.474 }, "geometry": { "type": "Point", "coordinates": [ 14.473650345266089, 47.910449582418188 ] } },
{ "type": "Feature", "properties": { "id": 899, "transparent": true, "lat": 47.69, "lon": 14.476 }, "geometry": { "type": "Point", "coordinates": [ 14.475917273025155, 47.685521410516564 ] } },
{ "type": "Feature", "properties": { "id": 900, "transparent": true, "lat": 47.46, "lon": 14.478 }, "geometry": { "type": "Point", "coordinates": [ 14.478156774264907, 47.460584297209301 ] } },
{ "type": "Feature", "properties": { "id": 901, "transparent": true, "lat": 55.33, "lon": 14.774 }, "geometry": { "type": "Point", "coordinates": [ 14.774110345944056, 55.329492179134931 ] } },
{ "type": "Feature", "properties": { "id": 902, "transparent": true, "lat": 55.1, "lon": 14.775 }, "geometry": { "type": "Point", "coordinates": [ 14.775379145612044, 55.104841439101151 ] } },
{ "type": "Feature", "properties": { "id": 903, "transparent": true, "lat": 54.88, "lon": 14.777 }, "geometry": { "type": "Point", "coordinates": [ 14.77663036412314, 54.880182341500984 ] } },
{ "type": "Feature", "properties": { "id": 904, "transparent": true, "lat": 54.66, "lon": 14.778 }, "geometry": { "type": "Point", "coordinates": [ 14.777864331551228, 54.655514862477688 ] } },
{ "type": "Feature", "properties": { "id": 905, "transparent": true, "lat": 54.43, "lon": 14.779 }, "geometry": { "type": "Point", "coordinates": [ 14.779081369609004, 54.430838978675041 ] } },
{ "type": "Feature", "properties": { "id": 906, "transparent": true, "lat": 54.21, "lon": 14.78 }, "geometry": { "type": "Point", "coordinates": [ 14.780281791909534, 54.20615466723924 ] } },
{ "type": "Feature", "properties": { "id": 907, "transparent": true, "lat": 53.98, "lon": 14.781 }, "geometry": { "type": "Point", "coordinates": [ 14.781465904218081, 53.98146190582078 ] } },
{ "type": "Feature", "properties": { "id": 908, "transparent": true, "lat": 53.76, "lon": 14.783 }, "geometry": { "type": "Point", "coordinates": [ 14.782634004694582, 53.756760672576114 ] } },
{ "type": "Feature", "properties": { "id": 909, "transparent": true, "lat": 53.53, "lon": 14.784 }, "geometry": { "type": "Point", "coordinates": [ 14.783786384127152, 53.532050946169569 ] } },
{ "type": "Feature", "properties": { "id": 910, "transparent": true, "lat": 53.31, "lon": 14.785 }, "geometry": { "type": "Point", "coordinates": [ 14.784923326157047, 53.307332705774904 ] } },
{ "type": "Feature", "properties": { "id": 911, "transparent": true, "lat": 53.08, "lon": 14.786 }, "geometry": { "type": "Point", "coordinates": [ 14.786045107495429, 53.082605931077097 ] } },
{ "type": "Feature", "properties": { "id": 912, "transparent": true, "lat": 52.86, "lon": 14.787 }, "geometry": { "type": "Point", "coordinates": [ 14.787151998132265, 52.857870602273891 ] } },
{ "type": "Feature", "properties": { "id": 913, "transparent": true, "lat": 52.63, "lon": 14.788 }, "geometry": { "type": "Point", "coordinates": [ 14.788244261537697, 52.633126700077483 ] } },
{ "type": "Feature", "properties": { "id": 914, "transparent": true, "lat": 52.41, "lon": 14.789 }, "geometry": { "type": "Point", "coordinates": [ 14.789322154856233, 52.408374205715965 ] } },
{ "type": "Feature", "properties": { "id": 915, "transparent": true, "lat": 52.18, "lon": 14.79 }, "geometry": { "type": "Point", "coordinates": [ 14.790385929093995, 52.18361310093497 ] } },
{ "type": "Feature", "properties": { "id": 916, "transparent": true, "lat": 51.96, "lon": 14.791 }, "geometry": { "type": "Point", "coordinates": [ 14.791435829299356, 51.958843367999002 ] } },
{ "type": "Feature", "properties": { "id": 917, "transparent": true, "lat": 51.73, "lon": 14.792 }, "geometry": { "type": "Point", "coordinates": [ 14.792472094737226, 51.734064989692996 ] } },
{ "type": "Feature", "properties": { "id": 918, "transparent": false, "lat": 51.51, "lon": 14.793 }, "geometry": { "type": "Point", "coordinates": [ 14.79349495905724, 51.509277949323682 ] } },
{ "type": "Feature", "properties": { "id": 919, "transparent": false, "lat": 51.28, "lon": 14.795 }, "geometry": { "type": "Point", "coordinates": [ 14.794504650456094, 51.284482230720897 ] } },
{ "type": "Feature", "properties": { "id": 920, "transparent": false, "lat": 51.06, "lon": 14.796 }, "geometry": { "type": "Point", "coordinates": [ 14.795501391834275, 51.059677818238967 ] } },
{ "type": "Feature", "properties": { "id": 921, "transparent": false, "lat": 50.83, "lon": 14.796 }, "geometry": { "type": "Point", "coordinates": [ 14.796485400947414, 50.834864696758018 ] } },
{ "type": "Feature", "properties": { "id": 922, "transparent": true, "lat": 50.61, "lon": 14.797 }, "geometry": { "type": "Point", "coordinates": [ 14.797456890552439, 50.61004285168513 ] } },
{ "type": "Feature", "properties": { "id": 923, "transparent": true, "lat": 50.39, "lon": 14.798 }, "geometry": { "type": "Point", "coordinates": [ 14.798416068548786, 50.385212268955627 ] } },
{ "type": "Feature", "properties": { "id": 924, "transparent": true, "lat": 50.16, "lon": 14.799 }, "geometry": { "type": "Point", "coordinates": [ 14.799363138114829, 50.160372935034232 ] } },
{ "type": "Feature", "properties": { "id": 925, "transparent": true, "lat": 49.94, "lon": 14.8 }, "geometry": { "type": "Point", "coordinates": [ 14.800298297839738, 49.935524836916244 ] } },
{ "type": "Feature", "properties": { "id": 926, "transparent": true, "lat": 49.71, "lon": 14.801 }, "geometry": { "type": "Point", "coordinates": [ 14.801221741850899, 49.710667962128497 ] } },
{ "type": "Feature", "properties": { "id": 927, "transparent": true, "lat": 49.49, "lon": 14.802 }, "geometry": { "type": "Point", "coordinates": [ 14.802133659937125, 49.485802298730597 ] } },
{ "type": "Feature", "properties": { "id": 928, "transparent": true, "lat": 49.26, "lon": 14.803 }, "geometry": { "type": "Point", "coordinates": [ 14.803034237667802, 49.26092783531589 ] } },
{ "type": "Feature", "properties": { "id": 929, "transparent": true, "lat": 49.04, "lon": 14.804 }, "geometry": { "type": "Point", "coordinates": [ 14.803923656508086, 49.036044561012368 ] } },
{ "type": "Feature", "properties": { "id": 930, "transparent": true, "lat": 48.81, "lon": 14.805 }, "geometry": { "type": "Point", "coordinates": [ 14.804802093930371, 48.811152465483765 ] } },
{ "type": "Feature", "properties": { "id": 931, "transparent": true, "lat": 48.59, "lon": 14.806 }, "geometry": { "type": "Point", "coordinates": [ 14.805669723522103, 48.586251538930327 ] } },
{ "type": "Feature", "properties": { "id": 932, "transparent": true, "lat": 48.36, "lon": 14.807 }, "geometry": { "type": "Point", "coordinates": [ 14.806526715090113, 48.361341772089808 ] } },
{ "type": "Feature", "properties": { "id": 933, "transparent": true, "lat": 48.14, "lon": 14.807 }, "geometry": { "type": "Point", "coordinates": [ 14.807373234761613, 48.136423156238294 ] } },
{ "type": "Feature", "properties": { "id": 934, "transparent": true, "lat": 47.91, "lon": 14.808 }, "geometry": { "type": "Point", "coordinates": [ 14.80820944508193, 47.911495683190921 ] } },
{ "type": "Feature", "properties": { "id": 935, "transparent": true, "lat": 47.69, "lon": 14.809 }, "geometry": { "type": "Point", "coordinates": [ 14.809035505109158, 47.686559345302769 ] } },
{ "type": "Feature", "properties": { "id": 936, "transparent": true, "lat": 47.46, "lon": 14.81 }, "geometry": { "type": "Point", "coordinates": [ 14.809851570505785, 47.46161413546951 ] } }
]
}