-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathleaf-comprehensive-heatWebGL.html
More file actions
2473 lines (2434 loc) · 115 KB
/
Copy pathleaf-comprehensive-heatWebGL.html
File metadata and controls
2473 lines (2434 loc) · 115 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<title>Scott Leaflet 7</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta charset="utf-8" />
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.css" />
<script src="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.js"></script>
<script src="http://maps.google.com/maps/api/js?v=3.2&sensor=false"></script>
<script src="/leaflet-google.js"></script>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<!--scripts WebGL heat map.-->
<script type="text/javascript" src="/webgl-heatmap-leaflet-master/js/shCore.js"></script>
<script type="text/javascript" src="/webgl-heatmap-leaflet-master/js/shBrushJScript.js"></script>
<script type="text/javascript" src="/webgl-heatmap-leaflet-master/js/webgl-heatmap.js"></script>
<script type="text/javascript" src="/webgl-heatmap-leaflet-master/js/webgl-heatmap-leaflet.js"></script>
<!--scripts and style sheets for search/geosearch. Also requires jquery.-->
<script src="/geosearch/js/l.control.geosearch.js"></script>
<script src="/geosearch/js/l.geosearch.provider.google.js"></script>
<link rel="stylesheet" href="/geosearch/css/l.geosearch.css" />
<script src='//api.tiles.mapbox.com/mapbox.js/plugins/leaflet-locatecontrol/v0.24.0/L.Control.Locate.js'></script>
<link href='//api.tiles.mapbox.com/mapbox.js/plugins/leaflet-locatecontrol/v0.24.0/L.Control.Locate.css' rel='stylesheet' />
<!--[if lt IE 9]>
<link href='//api.tiles.mapbox.com/mapbox.js/plugins/leaflet-locatecontrol/v0.21.0/L.Control.Locate.ie.css' rel='stylesheet' />
<![endif]-->
<style>
body {
padding: 0;
margin: 0;
}
html, body, #map {
height: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
// get url paramaters for the address serach function
function getURLParameter(name) {
return decodeURI(
(RegExp(name + '=' + '(.+?)(&|$)').exec(location.search)||[,])[1]
);
}
var regionParameter = getURLParameter('region');
var region = (regionParameter === 'undefined') ? '' : regionParameter;
var cmAttr = '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors',
cmUrl = 'http://{s}.tile.osm.org/{z}/{x}/{y}.png';
var attribution = '© <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>';
// Base Maps
var googleLayer = new L.Google('ROADMAP');
var mapnik = L.tileLayer(
'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png'
, {attribution: attribution}
)
// Layers
var clouds = L.tileLayer('http://{s}.tile.openweathermap.org/map/clouds/{z}/{x}/{y}.png', {
attribution: 'Map data © <a href="http://openweathermap.org">OpenWeatherMap</a>'
, opacity: 0.5
})
var wind = L.tileLayer('http://{s}.tile.openweathermap.org/map/wind/{z}/{x}/{y}.png', {
attribution: 'Map data © <a href="http://openweathermap.org">OpenWeatherMap</a>'
, opacity: 0.1
})
var temperature = L.tileLayer('http://{s}.tile.openweathermap.org/map/temp/{z}/{x}/{y}.png', {
attribution: 'Map data © <a href="http://openweathermap.org">OpenWeatherMap</a>'
, opacity: 0.5
})
var cycle = L.tileLayer('http://{s}.tile.opencyclemap.org/cycle/{z}/{x}/{y}.png', {
attribution: '© OpenCycleMap contributors - © OpenStreetMap contributors'
, opacity: 1
})
var cities = new L.LayerGroup();
L.marker([39.61, -105.02]).bindPopup('This is Littleton, CO.').addTo(cities),
L.marker([39.74, -104.99]).bindPopup('This is Denver, CO.').addTo(cities),
L.marker([39.73, -104.8]).bindPopup('This is Aurora, CO.').addTo(cities),
L.marker([39.77, -105.23]).bindPopup('This is Golden, CO.').addTo(cities);
var restaurants = new L.LayerGroup();
L.marker([39.69, -104.85]).bindPopup('<p>What I am reading: , Behavioural economics and public policy – FT.com, http://www.ft.com/cms/s/2/9d7d31a4-aea8-11e3-aaa6-00144feab7de.html, http://www.instapaper.com/rss/238947/i35BSjISqVKnAGF4lqMOZltq2L0, Instapaper: Unread, ,</p>A <a href="http://scottbrenner.com">fake</a> restaurant').addTo(restaurants);
L.marker([39.69, -105.12]).bindPopup('A fake restaurant').addTo(restaurants);
var heatmap = new L.TileLayer.WebGLHeatMap({size: 100, autoresize: true, alphaRange: .05,});
var dataPoints = [[39.745700529714, -104.98764510138, 12],
[39.746337418885, -104.996778837639, 15],
[39.746337418885, -104.996778837639, 45.2],
[39.7564605260521, -105.003144706815, 15.0556],
[39.7462965359389, -104.991938876831, 7.7],
[39.7507894166832, -104.995859827047, 15.2917],
[39.7462965359389, -104.991938876831, 16.1333],
[39.7462965359389, -104.991938876831, 14.9394],
[39.7507894166832, -104.995859827047, 16.3529],
[39.7462965359389, -104.991938876831, 15.2],
[39.7462965359389, -104.991938876831, 1.8286],
[39.7462965359389, -104.991938876831, 5],
[39.7462965359389, -104.991938876831, 11.7333],
[39.7462965359389, -104.991938876831, 11.2063],
[39.7462965359389, -104.991938876831, 13.873],
[39.7462965359389, -104.991938876831, 12.1846],
[39.7462965359389, -104.991938876831, 12.8676],
[39.7462965359389, -104.991938876831, 12.6324],
[39.7462965359389, -104.991938876831, 11.3143],
[39.7448269175582, -104.995604810318, 41.1053],
[39.7462965359389, -104.991938876831, 14.1282],
[39.7462965359389, -104.991938876831, 2.1],
[39.7462965359389, -104.991938876831, 13.9205],
[39.7462965359389, -104.991938876831, 14.9333],
[39.7462965359389, -104.991938876831, 15.9333],
[39.7462965359389, -104.991938876831, 14.2667],
[39.7462965359389, -104.991938876831, 14.9892],
[39.7462965359389, -104.991938876831, 14.2043],
[39.745700529714, -104.98764510138, 17.3617],
[39.745700529714, -104.98764510138, 21.0851],
[39.745700529714, -104.98764510138, 12.7979],
[39.745700529714, -104.98764510138, 12.7979],
[39.745700529714, -104.98764510138, 19.8511],
[39.745700529714, -104.98764510138, 12.7979],
[39.745700529714, -104.98764510138, 12.7979],
[39.746337418885, -104.996778837639, 23.5213],
[39.745700529714, -104.98764510138, 12.7979],
[39.745700529714, -104.98764510138, 24.8085],
[39.745700529714, -104.98764510138, 18.6064],
[39.745700529714, -104.98764510138, 17.3617],
[39.7462965359389, -104.991938876831, 13.8421],
[39.7462965359389, -104.991938876831, 15.0211],
[39.7462965359389, -104.991938876831, 13.0737],
[39.7462965359389, -104.991938876831, 14.5263],
[39.7462965359389, -104.991938876831, 14.1633],
[39.7462965359389, -104.991938876831, 15.0204],
[39.7462965359389, -104.991938876831, 14.87],
[39.7462965359389, -104.991938876831, 5.01],
[39.7462965359389, -104.991938876831, 15.13],
[39.7462965359389, -104.991938876831, 14.9417],
[39.7462965359389, -104.991938876831, 13.7619],
[39.7462965359389, -104.991938876831, 15.1333],
[39.7462965359389, -104.991938876831, 14.6574],
[39.7462965359389, -104.991938876831, 14.3519],
[39.7462965359389, -104.991938876831, 16.1364],
[39.7510210446768, -104.993832172969, 3.5495],
[39.7481455684137, -104.995678290068, 16.5714],
[39.7462965359389, -104.991938876831, 14.8142],
[39.7497201454256, -105.022612592214, 2.6271],
[39.745700529714, -104.98764510138, 12.7333],
[39.7462965359389, -104.991938876831, 14.65],
[39.745700529714, -104.98764510138, 21.125],
[39.745700529714, -104.98764510138, 21.125],
[39.745700529714, -104.98764510138, 19.8833],
[39.745700529714, -104.98764510138, 12.7333],
[39.745700529714, -104.98764510138, 21.125],
[39.745700529714, -104.98764510138, 12.7333],
[39.745700529714, -104.98764510138, 18.6333],
[39.745700529714, -104.98764510138, 17.3917],
[39.745700529714, -104.98764510138, 12.7333],
[39.745700529714, -104.98764510138, 18.6333],
[39.7510210446768, -104.993832172969, 2.7619],
[39.7510210446768, -104.993832172969, 2.1328],
[39.7509658484392, -105.003684708398, 15.9769],
[39.7462965359389, -104.991938876831, 14.8571],
[39.7462965359389, -104.991938876831, 4.9704],
[39.745700529714, -104.98764510138, 12.6986],
[39.745700529714, -104.98764510138, 12.6986],
[39.745700529714, -104.98764510138, 12.6986],
[39.745700529714, -104.98764510138, 11.5822],
[39.745700529714, -104.98764510138, 17.2055],
[39.745700529714, -104.98764510138, 20.8904],
[39.745700529714, -104.98764510138, 20.8904],
[39.745700529714, -104.98764510138, 12.6986],
[39.745700529714, -104.98764510138, 27.3356],
[39.745700529714, -104.98764510138, 20.8904],
[39.745700529714, -104.98764510138, 19.6575],
[39.7510210446768, -104.993832172969, 3.7432],
[39.7509658484392, -105.003684708398, 15.7467],
[39.746337418885, -104.996778837639, 22.3476],
[39.7494505664395, -105.001077354524, 15.2616],
[39.7510210446768, -104.993832172969, 2.6556],
[39.7462965359389, -104.991938876831, 14.9344],
[39.7510210446768, -104.993832172969, 4.4432],
[39.7288129336127, -104.997587372931, 2.6505],
[39.7510210446768, -104.993832172969, 3.9733],
[39.7462965359389, -104.991938876831, 15.2926],
[39.7494505664395, -105.001077354524, 15.2356],
[39.7494505664395, -105.001077354524, 15.2356],
[39.7462965359389, -104.991938876831, 15.9634],
[39.7510210446768, -104.993832172969, 3.9583],
[39.7524559595672, -104.999831065402, 8.8454],
[39.7462965359389, -104.991938876831, 14.8724],
[39.7510210446768, -104.993832172969, 3.0201],
[39.7481455684137, -104.995678290068, 16.8557],
[39.7481455684137, -104.995678290068, 17.209],
[39.7288129336127, -104.997587372931, 2.6552],
[39.7288129336127, -104.997587372931, 2.6432],
[39.7497070078037, -104.997290984614, 15.528],
[39.7477572121452, -104.986520505069, 23.1389],
[39.7481455684137, -104.995678290068, 15.4753],
[39.7481455684137, -104.995678290068, 15.4753],
[39.7481455684137, -104.995678290068, 15.4753],
[39.7481455684137, -104.995678290068, 15.4753],
[39.7481455684137, -104.995678290068, 15.1256],
[39.7481455684137, -104.995678290068, 15.6906],
[39.7481455684137, -104.995678290068, 15.4753],
[39.7481455684137, -104.995678290068, 14.2152],
[39.7481455684137, -104.995678290068, 15.4753],
[39.7524559595672, -104.999831065402, 9.2237],
[39.7308715194745, -104.998325224244, 1.9087],
[39.7308715194745, -104.998325224244, 1.913],
[39.7627846524618, -104.973006237272, 2.1545],
[39.7509658484392, -105.003684708398, 15.9534],
[39.7510210446768, -104.993832172969, 1.5083],
[39.7462965359389, -104.991938876831, 6.9877],
[39.7288129336127, -104.997587372931, 2.6337],
[39.7510210446768, -104.993832172969, 3.7683],
[39.7288129336127, -104.997587372931, 2.652],
[39.7462965359389, -104.991938876831, 8.8088],
[39.7288129336127, -104.997587372931, 2.6508],
[39.7288129336127, -104.997587372931, 2.6429],
[39.7462965359389, -104.991938876831, 13.7747],
[39.7288129336127, -104.997587372931, 2.651],
[39.7462965359389, -104.991938876831, 14.0781],
[39.7288129336127, -104.997587372931, 2.6462],
[39.7462965359389, -104.991938876831, 14.3063],
[39.7462965359389, -104.991938876831, 14.0664],
[39.7462965359389, -104.991938876831, 12.9446],
[39.7462965359389, -104.991938876831, 14.9188],
[39.7462965359389, -104.991938876831, 14.9373],
[39.7462965359389, -104.991938876831, 11.4432],
[39.7494505664395, -105.001077354524, 14.2065],
[39.7462965359389, -104.991938876831, 14.9715],
[39.7462965359389, -104.991938876831, 14.5618],
[39.7501832989111, -105.00184870925, 12.3908],
[39.7501832989111, -105.00184870925, 11.2183],
[39.7462965359389, -104.991938876831, 14.6014],
[39.595296, -105.08786, 48.7762],
[39.7462965359389, -104.991938876831, 14.9965],
[39.7462965359389, -104.991938876831, 14.559],
[39.7482379073615, -105.004999959506, 9.1375],
[39.7462965359389, -104.991938876831, 15.7045],
[39.7462965359389, -104.991938876831, 5.2048],
[39.7462965359389, -104.991938876831, 14.0717],
[39.7462965359389, -104.991938876831, 11.8243],
[39.7458499329052, -104.998928838105, 12.5733],
[39.7462965359389, -104.991938876831, 14.0498],
[39.7462965359389, -104.991938876831, 14.6146],
[39.7462965359389, -104.991938876831, 13.8007],
[39.7462965359389, -104.991938876831, 14.9003],
[39.7462965359389, -104.991938876831, 16.0891],
[39.7462965359389, -104.991938876831, 14.9142],
[39.7462965359389, -104.991938876831, 14.5588],
[39.7462965359389, -104.991938876831, 14.9444],
[39.7462965359389, -104.991938876831, 14.9804],
[39.7462965359389, -104.991938876831, 14.6592],
[39.7510210446768, -104.993832172969, 1.535],
[39.7550894745172, -105.004195955766, 5.9778],
[39.745700529714, -104.98764510138, 21.0615],
[39.7510210446768, -104.993832172969, 1.4776],
[39.7285928907835, -104.997871263138, 2.6478],
[39.7524559595672, -104.999831065402, 9.1433],
[39.7524559595672, -104.999831065402, 9.3205],
[39.6531608398394, -104.88697384444, 0.5457],
[39.6531608398394, -104.88697384444, 0.5516],
[39.6531608398394, -104.88697384444, 0.5398],
[39.6531608398394, -104.88697384444, 0.5457],
[39.7767647629086, -105.051006065731, 1.7185],
[39.7524559595672, -104.999831065402, 9.2632],
[39.7482379073615, -105.004999959506, 9.1628],
[39.7767647629086, -105.051006065731, 1.6839],
[39.7537683107596, -104.994510448343, 5.9011],
[39.7524559595672, -104.999831065402, 9.3211],
[39.7537683107596, -104.994510448343, 8.0531],
[39.7507894166832, -104.995859827047, 7.7493],
[39.7462965359389, -104.991938876831, 12.9399],
[39.7767647629086, -105.051006065731, 1.7139],
[39.7510210446768, -104.993832172969, 3.7333],
[39.7456930996282, -104.992025814019, 2.7846],
[39.7501832989111, -105.00184870925, 11.9129],
[39.7462965359389, -104.991938876831, 13.7828],
[39.7627846524618, -104.973006237272, 1.7859],
[39.7462965359389, -104.991938876831, 16.1911],
[39.7462965359389, -104.991938876831, 15.3212],
[39.7462965359389, -104.991938876831, 15.455],
[39.7348112599227, -105.005749726523, 0.5231],
[39.7550894745172, -105.004195955766, 7.2354],
[39.7537683107596, -104.994510448343, 8.5301],
[39.7462965359389, -104.991938876831, 15.0433],
[39.7462965359389, -104.991938876831, 15.6034],
[39.7462965359389, -104.991938876831, 13.9314],
[39.7462965359389, -104.991938876831, 15.8685],
[39.7462965359389, -104.991938876831, 15.6379],
[39.7462965359389, -104.991938876831, 15.6491],
[39.7462965359389, -104.991938876831, 15.484],
[39.7462965359389, -104.991938876831, 4.9615],
[39.7462965359389, -104.991938876831, 15.842],
[39.7462965359389, -104.991938876831, 15.3929],
[39.7288129336127, -104.997587372931, 2.6489],
[39.7462965359389, -104.991938876831, 14.9236],
[39.7308715194745, -104.998325224244, 1.4642],
[39.7308715194745, -104.998325224244, 1.1627],
[39.7308715194745, -104.998325224244, 1.7245],
[39.7308715194745, -104.998325224244, 1.2928],
[39.7308715194745, -104.998325224244, 1.0347],
[39.7308715194745, -104.998325224244, 1.4252],
[39.7490469051168, -105.000597385704, 6.0065],
[39.7550894745172, -105.004195955766, 6.8086],
[39.7462965359389, -104.991938876831, 14.9551],
[39.7507230332944, -105.001119269965, 10.0577],
[39.7462965359389, -104.991938876831, 5.1071],
[39.7462965359389, -104.991938876831, 14.0858],
[39.7462965359389, -104.991938876831, 4.9603],
[39.7629009939013, -104.979225088696, 2.6763],
[39.7462965359389, -104.991938876831, 12.9217],
[39.7510210446768, -104.993832172969, 4.4553],
[39.7490469051168, -105.000597385704, 5.9825],
[39.7462965359389, -104.991938876831, 13.343],
[39.7490469051168, -105.000597385704, 5.7894],
[39.7550894745172, -105.004195955766, 6.0906],
[39.7288129336127, -104.997587372931, 2.6453],
[39.7519597663017, -104.999558265604, 3.2808],
[39.7535668660844, -104.989042757562, 1.3181],
[39.7328368943514, -104.99129379531, 4.3432],
[39.7598410192997, -105.014269279559, 2.9759],
[39.7481455684137, -104.995678290068, 14.6758],
[39.7462965359389, -104.991938876831, 13.0034],
[39.7537683107596, -104.994510448343, 1.9817],
[39.7356438246277, -104.993800562625, 8.3095],
[39.7270444720737, -104.983897510508, 3.0724],
[39.7270444720737, -104.983897510508, 3.0623],
[39.7270444720737, -104.983897510508, 3.1033],
[39.7270444720737, -104.983897510508, 3.0881],
[39.7541900917725, -104.991483966677, 4.3589],
[39.7490469051168, -105.000597385704, 6.1282],
[39.7348112599227, -105.005749726523, 0.5386],
[39.7510210446768, -104.993832172969, 3.0416],
[39.7435663626154, -104.976669457671, 3.6881],
[39.7499768217249, -105.002168877608, 7.9237],
[39.7537683107596, -104.994510448343, 2.0295],
[39.7258515031347, -104.997136088925, 0.9971],
[39.7507230332944, -105.001119269965, 9.6237],
[39.7270444720737, -104.983897510508, 3.0918],
[39.7270444720737, -104.983897510508, 3.0873],
[39.7288129336127, -104.997587372931, 2.6469],
[39.7258518924939, -104.997349409453, 0.9855],
[39.7255354552681, -104.99734071514, 2.6609],
[39.7258516372897, -104.997207187861, 0.9715],
[39.7258517524994, -104.997278298069, 0.9673],
[39.7258520113738, -104.997420464872, 0.9524],
[39.7459421891682, -104.985207255837, 4.9805],
[39.7302165936918, -104.998826681652, 2.6653],
[39.7435663626154, -104.976669457671, 3.6334],
[39.7761874241111, -105.044068207148, 2.3297],
[39.7255364902486, -104.997147695984, 2.1304],
[39.7294344449645, -104.983229238091, 2.527],
[39.7724969176705, -105.010883909016, 0.9386],
[39.7524559595672, -104.999831065402, 9.2097],
[39.7254594644287, -104.997097862808, 2.2978],
[39.7524559595672, -104.999831065402, 9.2882],
[39.7627846524618, -104.973006237272, 1.575],
[39.7466051572975, -104.992830977378, 4.6493],
[39.7511550555844, -104.987203782616, 1.8821],
[39.7524559595672, -104.999831065402, 9.0998],
[39.7459421891682, -104.985207255837, 5.077],
[39.7629009939013, -104.979225088696, 2.529],
[39.7580748168905, -105.021305715728, 3.5665],
[39.7580748168905, -105.021305715728, 3.5371],
[39.7580748168905, -105.021305715728, 3.2367],
[39.7629009939013, -104.979225088696, 3.7579],
[39.7471098370836, -104.983931315513, 7.6112],
[39.7629009939013, -104.979225088696, 2.4936],
[39.7524559595672, -104.999831065402, 9.3209],
[39.7254604847102, -104.997372226579, 1.8956],
[39.72541595641, -104.997371829963, 2.0162],
[39.7403208698353, -104.993847688788, 5.7164],
[39.7207697129593, -104.953096352075, 5.2491],
[39.7255217717463, -104.997212336832, 2.0696],
[39.7481455684137, -104.995678290068, 6.5482],
[39.7348112599227, -105.005749726523, 0.5401],
[39.7510210446768, -104.993832172969, 3.814],
[39.7722025533654, -104.981534145604, 1.175],
[39.7524559595672, -104.999831065402, 9.2656],
[39.7308715194745, -104.998325224244, 1.4262],
[39.7533097986438, -104.994361983748, 4.4207],
[39.7348112599227, -105.005749726523, 0.547],
[39.7197406042534, -105.000635688302, 1.2687],
[39.7348112599227, -105.005749726523, 0.5419],
[39.7288129336127, -104.997587372931, 2.1214],
[39.7510478128342, -105.00278823591, 9.9679],
[39.7288129336127, -104.997587372931, 2.6452],
[39.7580370065398, -105.010573521108, 4.2238],
[39.747344921185, -104.977715813716, 1.9462],
[39.7516105185372, -105.003520461277, 1.9843],
[39.7255357143831, -104.997419837441, 2.0656],
[39.7336266859395, -104.988499101557, 1.478],
[39.7336266859395, -104.988499101557, 1.4272],
[39.7336266859395, -104.988499101557, 1.4594],
[39.7336266859395, -104.988499101557, 1.4066],
[39.7336266859395, -104.988499101557, 1.4272],
[39.7336266859395, -104.988499101557, 1.4272],
[39.7336266859395, -104.988499101557, 1.4174],
[39.7336266859395, -104.988499101557, 1.4272],
[39.7336266859395, -104.988499101557, 1.4174],
[39.7336266859395, -104.988499101557, 1.4174],
[39.7336266859395, -104.988499101557, 1.4066],
[39.7197406042534, -105.000635688302, 1.3],
[39.7512090785094, -104.99878485896, 1.4548],
[39.7512090785094, -104.99878485896, 6.0577],
[39.7512090785094, -104.99878485896, 5.7692],
[39.7490469051168, -105.000597385704, 7.0409],
[39.7550894745172, -105.004195955766, 6.9505],
[39.7502083143758, -105.000665438231, 3.7255],
[39.7544214069129, -105.023814896283, 1.2206],
[39.7524559595672, -104.999831065402, 9.2637],
[39.6923598000675, -104.978450121176, 2.724],
[39.7336294997777, -104.989874613469, 3.842],
[39.7336294997777, -104.989874613469, 1.9214],
[39.7336294997777, -104.989874613469, 1.9214],
[39.7336294997777, -104.989874613469, 1.9214],
[39.7336294997777, -104.989874613469, 1.9214],
[39.7336294997777, -104.989874613469, 1.9214],
[39.7336294997777, -104.989874613469, 1.9214],
[39.7336294997777, -104.989874613469, 2.2313],
[39.7001376177413, -104.979732929702, 0.639],
[39.7499768217249, -105.002168877608, 7.9289],
[39.6884406099122, -104.980108281212, 0.7376],
[39.6884406099122, -104.980108281212, 0.7376],
[39.6884406099122, -104.980108281212, 0.7376],
[39.6884406099122, -104.980108281212, 0.7376],
[39.6884406099122, -104.980108281212, 0.7376],
[39.6884406099122, -104.980108281212, 0.7376],
[39.6884406099122, -104.980108281212, 0.7376],
[39.7197406042534, -105.000635688302, 1.2672],
[39.6884406099122, -104.980108281212, 0.7314],
[39.7627846524618, -104.973006237272, 1.4076],
[39.7197406042534, -105.000635688302, 1.2672],
[39.7294344449645, -104.983229238091, 2.3941],
[39.7643045243727, -104.950633995126, 0.6825],
[39.7197406042534, -105.000635688302, 1.268],
[39.7580370065398, -105.010573521108, 2.0472],
[39.7197406042534, -105.000635688302, 1.2638],
[39.7197406042534, -105.000635688302, 1.2646],
[39.7520961660735, -104.987962118331, 1.4454],
[39.7197406042534, -105.000635688302, 1.268],
[39.7197406042534, -105.000635688302, 1.268],
[39.7197406042534, -105.000635688302, 1.268],
[39.7197406042534, -105.000635688302, 1.268],
[39.7197406042534, -105.000635688302, 1.268],
[39.7197406042534, -105.000635688302, 1.268],
[39.7433955463384, -104.966492656791, 1.7268],
[39.7516105185372, -105.003520461277, 2.0489],
[39.7457804432033, -104.999563275321, 4.822],
[39.7197406042534, -105.000635688302, 1.2654],
[39.7197406042534, -105.000635688302, 1.2654],
[39.7197406042534, -105.000635688302, 1.2654],
[39.7510210446768, -104.993832172969, 4.8344],
[39.7219603585518, -104.955495754591, 3.1048],
[39.7519402938335, -104.996865164301, 1.7984],
[39.7307483965158, -104.998859995343, 1.7936],
[39.7307483965158, -104.998859995343, 1.7936],
[39.7197406042534, -105.000635688302, 1.267],
[39.7524559595672, -104.999831065402, 0.8308],
[39.7369451290355, -104.993159069994, 0.9282],
[39.7197406042534, -105.000635688302, 1.2652],
[39.7722025533654, -104.981534145604, 1.0044],
[39.7722025533654, -104.981534145604, 1.0725],
[39.7348112599227, -105.005749726523, 0.542],
[39.7506877264258, -105.00022667487, 2.896],
[39.7370422741668, -104.993611158766, 1.8782],
[39.7516105185372, -105.003520461277, 2.0028],
[39.7197406042534, -105.000635688302, 1.2649],
[39.7428311882679, -104.981413578422, 4.1034],
[39.7497201454256, -105.022612592214, 2.4147],
[39.7342240319888, -104.992706564972, 4.1492],
[39.7722025533654, -104.981534145604, 1.0213],
[39.7722025533654, -104.981534145604, 1.08],
[39.7580370065398, -105.010573521108, 2.7904],
[39.7583585371953, -104.986582848148, 1.9427],
[39.7459421891682, -104.985207255837, 5.6204],
[39.7459421891682, -104.985207255837, 5.6658],
[39.7459421891682, -104.985207255837, 5.5675],
[39.7459421891682, -104.985207255837, 5.5886],
[39.7459421891682, -104.985207255837, 5.6443],
[39.7191709001118, -104.948111538138, 2.5796],
[39.7370429492771, -104.993686808154, 1.5032],
[39.7529460550723, -104.978325543417, 1.6519],
[39.753434836664, -104.985549052657, 1.0594],
[39.7428311882679, -104.981413578422, 4.102],
[39.6923598000675, -104.978450121176, 2.6259],
[39.753510062511, -104.985649109302, 0.9976],
[39.7301529329718, -104.999066084224, 2.2],
[39.7342240319888, -104.992706564972, 4.1499],
[39.734983207027, -104.956477336576, 1.1231],
[39.6531608398394, -104.88697384444, 0.1101],
[39.6531608398394, -104.88697384444, 0.1101],
[39.7226957296097, -104.891674505055, 0.5508],
[39.7402576478293, -104.994084079347, 2.3391],
[39.7618634092785, -105.01636539177, 2.0851],
[39.7226957296097, -104.891674505055, 0.5505],
[39.7505623967854, -104.889387686979, 0.5581],
[39.7624038594473, -105.010904907088, 1.6111],
[39.7348112599227, -105.005749726523, 0.5256],
[39.7598410192997, -105.014269279559, 2.6018],
[39.7301529329718, -104.999066084224, 2.0175],
[39.7507230332944, -105.001119269965, 7.8245],
[39.7505623967854, -104.889387686979, 0.5593],
[39.7505623967854, -104.889387686979, 0.5615],
[39.7429926776819, -104.966333895295, 0.9707],
[39.7197406042534, -105.000635688302, 1.2658],
[39.7493785528822, -105.001913744136, 4.1597],
[39.7226957296097, -104.891674505055, 0.5514],
[39.737014552189, -104.993925849491, 1.7242],
[39.7627846524618, -104.973006237272, 1.2848],
[39.7627846524618, -104.973006237272, 1.2626],
[39.721224420992, -104.992330856121, 0.8017],
[39.7197406042534, -105.000635688302, 1.2651],
[39.7125501669756, -104.997498790571, 0.5107],
[39.7509874150039, -105.000774351949, 7.3989],
[39.7524559595672, -104.999831065402, 6.9688],
[39.7525167503133, -104.987625831494, 2.5572],
[39.7552892816518, -104.990064068791, 1.1838],
[39.7490469051168, -105.000597385704, 4.381],
[39.7661770492638, -105.010761708309, 0.9425],
[39.7397173368831, -104.971113207072, 1.3344],
[39.7205211279776, -104.956155994651, 3.0737],
[39.7348112599227, -105.005749726523, 0.541],
[39.7672351138302, -104.978317566028, 1.3577],
[39.7271157032866, -104.983332288935, 0.8734],
[39.7418365328625, -104.980623824774, 1.9782],
[39.7582428967632, -105.012019356793, 1.1134],
[39.7395231604287, -104.981448529148, 1.0631],
[39.7254801169861, -104.999155637137, 0.935],
[39.7205211279776, -104.956155994651, 3.0746],
[39.7197406042534, -105.000635688302, 1.308],
[39.7348112599227, -105.005749726523, 0.5447],
[39.7366408486295, -104.991207728773, 1.7261],
[39.7197406042534, -105.000635688302, 1.2651],
[39.7197406042534, -105.000635688302, 1.2651],
[39.7722025533654, -104.981534145604, 0.9407],
[39.7254567511898, -104.991717290589, 0.4483],
[39.6832383839628, -104.980810221562, 1.5714],
[39.7348112599227, -105.005749726523, 0.5379],
[39.7509874150039, -105.000774351949, 7.6833],
[39.7509874150039, -105.000774351949, 7.6833],
[39.7509874150039, -105.000774351949, 7.6833],
[39.7348112599227, -105.005749726523, 0.5412],
[39.7583585371953, -104.986582848148, 2.1984],
[39.7447275362504, -104.975815886438, 1.3363],
[39.7270313338282, -104.983333218596, 0.7961],
[39.6831841836423, -104.980804082908, 1.5947],
[39.7254799539398, -104.999259602855, 0.7018],
[39.7350050236165, -104.991069246415, 2.5136],
[39.7076654540978, -104.982484150356, 1.5628],
[39.7275652702309, -104.999271148468, 0.8264],
[39.7582671202201, -105.019112832674, 0.9868],
[39.7307483965158, -104.998859995343, 1.612],
[39.7722025533654, -104.981534145604, 0.8707],
[39.7722025533654, -104.981534145604, 0.8888],
[39.744570265705, -104.96378610121, 0.9498],
[39.7437107662084, -104.976421185241, 1.711],
[39.7298111117073, -104.998342121931, 0.7032],
[39.7298794497454, -104.998342957184, 0.7124],
[39.7447492490974, -104.975642454278, 1.555],
[39.7312588639466, -104.99835797224, 0.5958],
[39.7618420426673, -105.010904972936, 0.7357],
[39.7055594371247, -104.986988954848, 0.7502],
[39.7581762005117, -105.012380945036, 0.5398],
[39.7445708433733, -104.96391054625, 1.2767],
[39.7274819148394, -104.984353586728, 1.5521],
[39.7348112599227, -105.005749726523, 0.5417],
[39.757967380159, -105.007691019027, 1.055],
[39.7357796080356, -104.988535940435, 6.2403],
[39.7495545186651, -104.99920413782, 3.7629],
[39.6788836648832, -104.92053959749, 0.2867],
[39.6788836648832, -104.92053959749, 0.2504],
[39.6788836648832, -104.92053959749, 0.2512],
[39.6788836648832, -104.92053959749, 0.2867],
[39.6788836648832, -104.92053959749, 0.2742],
[39.6531608398394, -104.88697384444, 0.2634],
[39.7422067664665, -104.978439735559, 2.0263],
[39.7422748373302, -104.978433786451, 1.8317],
[39.7527235056536, -104.995876129657, 3.7599],
[39.7497681392849, -104.999715276982, 3.7162],
[39.7095384991502, -104.986698996751, 1.5182],
[39.7238904466135, -104.99043155293, 0.9218],
[39.7238905723513, -104.990533131858, 1.0028],
[39.7238902086816, -104.990223174491, 0.9845],
[39.6859452314051, -104.98065468955, 0.689],
[39.7500790988424, -104.987086831945, 1.2072],
[39.7437750721404, -104.967558885149, 0.8138],
[39.7520961660735, -104.987962118331, 1.2806],
[39.7079106964575, -104.987217364618, 1.411],
[39.7722025533654, -104.981534145604, 1.0231],
[39.7722025533654, -104.981534145604, 0.9839],
[39.7472908501677, -104.977095331225, 0.8568],
[39.7365981749397, -104.992455912172, 0.9136],
[39.7445697939982, -104.963656663507, 1.345],
[39.762459689279, -104.982751912395, 1.9178],
[39.7443060474485, -104.970561097386, 0.9548],
[39.7371482509128, -104.993270877852, 0.7938],
[39.7374268463775, -104.993268787362, 1.0246],
[39.737217336009, -104.993268421642, 1.0197],
[39.7372882177316, -104.993267949324, 0.8026],
[39.7373583220006, -104.993267401357, 1.0246],
[39.7377000087538, -104.99326639147, 1.1905],
[39.7197220914857, -104.95575388589, 4.8161],
[39.7230558258768, -104.985906804401, 0.6691],
[39.7538642763514, -104.99438545666, 3.5535],
[39.6823670837718, -104.980803972709, 0.4002],
[39.7279590270832, -104.985235372548, 0.7956],
[39.7594861115967, -104.98537290353, 1.2896],
[39.7076724713231, -104.963318861533, 1.9981],
[39.7724241630256, -104.999091758598, 0.6625],
[39.7439693457734, -104.963134345551, 1.1365],
[39.7282360133652, -104.984510194914, 1.1074],
[39.7403964874071, -104.95312878537, 1.1894],
[39.7680354520749, -104.969995078877, 0.608],
[39.7371569601189, -104.980206908528, 1.3093],
[39.7413426244326, -104.966882027287, 0.9744],
[39.7671766390504, -105.000929760788, 0.5564],
[39.7495106858537, -104.999263065304, 3.826],
[39.7160394304228, -104.987129480973, 1.2631],
[39.7361529557336, -104.992627059256, 0.8867],
[39.7540984324399, -104.978412381711, 1.3082],
[39.6789728246266, -104.989643498768, 0.3962],
[39.7462196876976, -104.994813958476, 1.9997],
[39.7372715545054, -104.994434518242, 1.2752],
[39.6940077303361, -104.990083175887, 0.5482],
[39.6827109198186, -104.980800531785, 1.0886],
[39.7412766827016, -104.967567135115, 1.528],
[39.7413754481929, -104.990651287468, 2.4621],
[39.7481109764133, -104.999297880492, 4.5914],
[39.7374014069602, -104.982666259706, 1.1712],
[39.7445448800135, -104.964038651712, 1.1837],
[39.6934587412986, -104.990507689278, 0.3958],
[39.7505447966802, -105.000414305216, 2.7821],
[39.704425672722, -104.980747336891, 1.2],
[39.7554342077818, -104.989877082508, 1.0918],
[39.727875577552, -105.003237771183, 1.0646],
[39.7491200885659, -105.000500920598, 3.1654],
[39.6827797239734, -104.980799655267, 0.7677],
[39.6771029762676, -104.987168196156, 0.6518],
[39.6926296030057, -104.955012274167, 0.6022],
[39.6935609538426, -104.990506280425, 0.5421],
[39.6828489419637, -104.980799100716, 0.8989],
[39.6959447445682, -104.98703914601, 0.6147],
[39.7278893246816, -104.984510754099, 0.7971],
[39.7444389802484, -104.961913339606, 0.767],
[39.7497199097506, -104.999781561893, 2.4701],
[39.7428311882679, -104.981413578422, 4.1049],
[39.7765646169408, -104.959324156105, 0.2476],
[39.743753192054, -104.969346103784, 0.9508],
[39.7191709001118, -104.948111538138, 1.1428],
[39.7277556836515, -104.985235906844, 1.1649],
[39.7359487739087, -104.993798099682, 0.8783],
[39.7518874079384, -104.999654016308, 7.8911],
[39.7531720952124, -104.99454101447, 2.8368],
[39.7439687591998, -104.971252740756, 0.7157],
[39.7505623967854, -104.889387686979, 0.5621],
[39.759949323268, -104.984064611132, 1.0006],
[39.7500519017202, -104.997615521414, 6.2651],
[39.7486448568475, -104.985474544595, 1.6202],
[39.742685982726, -104.980760524158, 0.9943],
[39.7437513661467, -104.970558608196, 0.8644],
[39.7440646402533, -104.979566232547, 0.8006],
[39.7526041934736, -104.988304548677, 0.971],
[39.7524697364132, -104.99619788728, 3.309],
[39.7315617821398, -104.985754146436, 1.0587],
[39.7347762335705, -104.993265261165, 1.284],
[39.7359501256908, -104.994436641497, 0.731],
[39.7526245593468, -104.986530350602, 0.9544],
[39.7270701671522, -104.983110273889, 1.0726],
[39.7612360354996, -104.973003371553, 0.707],
[39.7314934909983, -104.985752767901, 1.0417],
[39.7562038826087, -104.975674015199, 0.4895],
[39.7722025533654, -104.981534145604, 0.9609],
[39.682300095657, -104.980804502619, 0.4265],
[39.7558653267525, -104.976108037384, 0.8766],
[39.7365989201298, -104.992565649606, 1.2814],
[39.7618858358617, -105.033397100861, 1.2625],
[39.7618855560858, -105.033309450921, 1.0483],
[39.7555848081018, -104.977513128708, 1.5105],
[39.7563556581622, -104.976484560495, 0.4639],
[39.7231242925723, -104.985907020196, 0.7148],
[39.7226957296097, -104.891674505055, 0.5507],
[39.7226957296097, -104.891674505055, 0.5511],
[39.6930995257979, -104.954245803417, 0.6656],
[39.7758092453993, -105.043894410284, 0.5214],
[39.7572152232306, -104.981450843047, 1.1686],
[39.7490669263066, -105.003236153266, 4.6431],
[39.7455926043082, -104.983220564446, 1.6038],
[39.7398874591194, -104.951542712061, 0.8819],
[39.7593450901633, -104.968764983081, 1.0352],
[39.7442403504416, -104.970560662605, 0.8816],
[39.6985157, -105.026301933441, 0.546],
[39.7446090422749, -104.977729422072, 2.21],
[39.7348112599227, -105.005749726523, 0.5405],
[39.6531608398394, -104.88697384444, 0.2587],
[39.7609051773274, -105.02587892214, 0.8991],
[39.7587989131582, -105.009516039508, 0.703],
[39.7215680679733, -104.979578125129, 2.3362],
[39.7409602509937, -104.959487800466, 1.1722],
[39.6938669624957, -104.98068685971, 0.6263],
[39.7516105185372, -105.003520461277, 1.9802],
[39.7505623967854, -104.889387686979, 0.5626],
[39.7418730924729, -104.966334140398, 0.8196],
[39.7505623967854, -104.889387686979, 0.561],
[39.7449136838888, -104.99303673917, 5.7423],
[39.7513355946431, -105.000805596284, 9.2619],
[39.7226957296097, -104.891674505055, 0.5613],
[39.6531608398394, -104.88697384444, 0.2739],
[39.7291564170647, -104.996571657081, 0.6666],
[39.7063152436469, -104.98716040802, 0.5666],
[39.7459236166446, -104.976993920408, 1.1123],
[39.6531608398394, -104.88697384444, 0.2587],
[39.7541084438077, -104.977813851548, 2.0337],
[39.7728840282119, -104.980987700464, 0.6071],
[39.7326573714328, -104.992429483286, 0.5861],
[39.7459259647013, -104.977116713364, 1.1035],
[39.7459275936695, -104.97724117017, 1.1019],
[39.7114641391046, -104.989308675773, 0.4278],
[39.7518211433796, -105.000525449817, 5.3561],
[39.7294344449645, -104.983229238091, 2.2693],
[39.7445313398623, -104.975733160624, 0.8362],
[39.7444638849481, -104.975731183565, 0.4779],
[39.7445974854871, -104.97573126646, 0.8075],
[39.7410374852866, -104.975747175179, 1.0246],
[39.7455470319332, -104.977183543226, 0.9948],
[39.7454785315466, -104.97718286935, 1.0075],
[39.7413076311996, -104.975746925105, 1.5707],
[39.7439186725919, -104.97717636545, 0.8118],
[39.7226957296097, -104.891674505055, 0.5513],
[39.7211088068652, -104.993769279089, 1.2485],
[39.7458499329052, -104.998928838105, 2.9178],
[39.7458499329052, -104.998928838105, 3.1184],
[39.7458499329052, -104.998928838105, 2.9129],
[39.7458499329052, -104.998928838105, 2.9997],
[39.6531608398394, -104.88697384444, 0.2664],
[39.7355363548523, -104.992027977987, 0.5427],
[39.7722162411844, -105.016167650824, 0.4594],
[39.7695455019676, -105.038404517508, 0.7188],
[39.7505623967854, -104.889387686979, 0.5869],
[39.7580968277045, -105.019114546172, 0.7309],
[39.7346252464217, -104.990638185628, 0.5427],
[39.7228079687135, -104.986620109073, 0.6664],
[39.732598282442, -104.989872962742, 0.6888],
[39.7613757864618, -104.982068117348, 0.5706],
[39.7329823026207, -104.99256006633, 1.5573],
[39.7507230332944, -105.001119269965, 7.557],
[39.7507230332944, -105.001119269965, 7.557],
[39.7507230332944, -105.001119269965, 7.5371],
[39.6531608398394, -104.88697384444, 0.2852],
[39.7438625301404, -104.960661947778, 0.7341],
[39.7459292246617, -104.977365601939, 0.9618],
[39.7489006891469, -105.000025940876, 6.1806],
[39.7489006891469, -105.000025940876, 6.4097],
[39.7410565672857, -104.979604873174, 0.6566],
[39.7265991421705, -104.983245747925, 1.2309],
[39.7489006891469, -105.000025940876, 6.1207],
[39.7299657072035, -104.998344019683, 1.0589],
[39.734777501269, -104.945865871819, 1.4426],
[39.7505623967854, -104.889387686979, 0.5651],
[39.7505623967854, -104.889387686979, 0.6751],
[39.6291385811154, -104.893938415416, 4.499],
[39.6531608398394, -104.88697384444, 0.2647],
[39.7418719537104, -104.960673341576, 0.8985],
[39.7623665144357, -105.036627117973, 0.9503],
[39.740686259465, -104.975747491007, 2.2368],
[39.7159921272089, -105.000601257115, 0.2358],
[39.7429277476266, -104.98075787427, 1.6857],
[39.7404443127236, -104.950593734386, 1.2603],
[39.6531608398394, -104.88697384444, 0.2603],
[39.6531608398394, -104.88697384444, 0.2774],
[39.7489006891469, -105.000025940876, 6.0553],
[39.7479870639553, -104.987131071324, 0.5226],
[39.6531608398394, -104.88697384444, 0.2591],
[39.6531608398394, -104.88697384444, 0.2652],
[39.6531608398394, -104.88697384444, 0.267],
[39.7444316353928, -104.964403129772, 0.8808],
[39.7505623967854, -104.889387686979, 0.573],
[39.6874819334834, -104.990912187896, 0.189],
[39.7418948534485, -104.972636614796, 0.8854],
[39.7505623967854, -104.889387686979, 0.5564],
[39.7114641391046, -104.989308675773, 0.4117],
[39.7585850529564, -105.04458782144, 0.3126],
[39.7442411220408, -104.964403036995, 0.9087],
[39.6739768388036, -104.987185383832, 0.559],
[39.7696947376768, -105.030806242571, 0.3941],
[39.7114872754052, -104.980695347969, 0.9131],
[39.7196456701147, -104.949072380217, 0.885],
[39.7530042752441, -104.993756633036, 3.2923],
[39.7196454957822, -104.948923505299, 0.8217],
[39.6703271033353, -104.987212095235, 0.4894],
[39.7426694146118, -104.978431706301, 1.1538],
[39.7526121127098, -104.996002289484, 2.2129],
[39.744525662593, -104.964403175503, 0.7922],
[39.7505623967854, -104.889387686979, 0.5735],
[39.7489891133901, -105.001681272115, 5.1287],
[39.6291385811154, -104.893938415416, 4.163],
[39.7226957296097, -104.891674505055, 0.5518],
[39.6842810889774, -104.987179207791, 0.8546],
[39.7405807967413, -104.971879099764, 1.6656],
[39.7800181105333, -105.05083040545, 1.1718],
[39.7036805252262, -104.980109814476, 0.9239],
[39.7359382537348, -104.994845892085, 1.0577],
[39.7437292061788, -104.977823650227, 0.6595],
[39.7631018820098, -105.010397297572, 0.706],
[39.7114623083634, -104.989079498604, 0.382],
[39.7722025533654, -104.981534145604, 0.9453],
[39.6531608398394, -104.88697384444, 0.2587],
[39.6531608398394, -104.88697384444, 0.2587],
[39.6291385811154, -104.893938415416, 4.4927],
[39.6291385811154, -104.893938415416, 4.4927],
[39.7479322104694, -105.024820694303, 0.6975],
[39.7477401348494, -105.024820861588, 0.6959],
[39.744331708844, -104.964403081127, 1.0087],
[39.7035851891249, -104.980105791893, 0.6544],
[39.7435472133775, -104.989581824614, 2.6873],
[39.715916847043, -104.995515706379, 0.1457],
[39.7185555796513, -104.992603010287, 1.1064],
[39.6291385811154, -104.893938415416, 4.4316],
[39.6291385811154, -104.893938415416, 4.4316],
[39.7252269970786, -104.998990666267, 0.464],
[39.7226957296097, -104.891674505055, 0.5509],
[39.7623665386087, -105.036773411808, 0.9933],
[39.7256850588224, -104.993917986289, 0.627],
[39.7508295170787, -105.025697386566, 0.594],
[39.7435472133775, -104.989581824614, 2.8857],
[39.7505623967854, -104.889387686979, 0.5546],
[39.7114705957889, -104.991812487054, 0.5052],
[39.6531608398394, -104.88697384444, 0.2597],
[39.7534995540585, -104.987103648319, 1.077],
[39.7547692178744, -104.9871401625, 0.8738],
[39.7196639284205, -105.028802098013, 0.1685],
[39.6788836648832, -104.92053959749, 0.3992],
[39.7328469474834, -104.992516251921, 1.0386],
[39.6291385811154, -104.893938415416, 4.0351],
[39.7408401486882, -104.938613470809, 0.4578],
[39.7552377468784, -104.977954253839, 0.9467],
[39.7432449140613, -104.953911574602, 0.5667],
[39.7310228826498, -104.981967361841, 1.3694],
[39.6832894093224, -104.989115626343, 0.286],
[39.7268323858496, -104.983245930505, 0.7548],
[39.7217843700795, -104.974382540226, 1.683],
[39.744060709387, -104.960117174644, 0.9876],
[39.7115029720937, -104.981223446802, 0.4822],
[39.6906507906035, -104.980756241476, 1.1647],
[39.7696053701333, -105.027799792628, 0.4905],
[39.7457842803634, -104.96188322095, 0.8108],
[39.7458791585076, -104.963133271248, 0.8462],
[39.7435776117522, -104.946201721196, 0.7205],
[39.7740622093886, -104.999090017917, 0.9356],
[39.6941165213689, -104.990494748943, 0.3665],
[39.7421289240232, -104.96313779212, 0.7783],
[39.7464364684204, -104.96066878405, 0.9004],
[39.7514633685716, -105.020113980475, 0.358],
[39.7113526000603, -104.973994902744, 0.6968],
[39.7411908816497, -104.96756796333, 0.9576],
[39.6886015868792, -104.989046558811, 0.7834],
[39.7076714178533, -104.963097226396, 0.4902],
[39.7442016860749, -104.972482353272, 0.4744],
[39.7269342332015, -104.983245079914, 0.5121],
[39.7531894488936, -104.998757985311, 4.6666],
[39.744385711327, -104.970561273662, 0.6738],
[39.7419537052522, -104.980761743501, 0.8069],
[39.7477590953852, -105.00592455044, 3.2534],
[39.6865006969798, -104.958968598252, 0.5549],
[39.7443216525909, -104.968804289439, 1.0538],
[39.7232109848821, -104.985908018164, 0.8157],
[39.7477590953852, -105.00592455044, 3.2508],
[39.7609083903041, -105.00959442209, 0.7022],
[39.6531608398394, -104.88697384444, 0.2661],
[39.7722025533654, -104.981534145604, 0.9707],
[39.7294344449645, -104.983229238091, 2.268],
[39.7696658858208, -105.031749533253, 0.6683],
[39.7294344449645, -104.983229238091, 2.2692],
[39.7370527190293, -104.993236194986, 1.0343],
[39.7294344449645, -104.983229238091, 2.2683],
[39.7258748918674, -104.974932828596, 0.5235],
[39.7255742852032, -104.99148559909, 0.8015],
[39.6887136395893, -104.921908113692, 0.2793],
[39.6887136395893, -104.921908113692, 0.2793],
[39.6887136395893, -104.921908113692, 0.2793],
[39.6887136395893, -104.921908113692, 0.2793],
[39.775201812903, -105.044081761276, 0.3861],
[39.7213488976725, -104.897674461813, 0.5028],
[39.7213488976725, -104.897674461813, 0.4856],
[39.7420660434667, -104.981980431529, 2.5986],
[39.731276645471, -105.012197863462, 0.4101],
[39.7505623967854, -104.889387686979, 0.6458],
[39.7294344449645, -104.983229238091, 2.2689],
[39.7287143595855, -105.001370550025, 0.5918],
[39.7404307097091, -104.932580588581, 0.3659],
[39.7407863443787, -104.932940881259, 0.5589],
[39.7404306377448, -104.93287150863, 0.3148],
[39.7404306772057, -104.933160755834, 0.5687],
[39.6780085650249, -104.93707644624, 0.305],
[39.7426835812426, -104.959498334133, 0.8964],
[39.7281644093347, -105.000591770157, 0.5923],
[39.7403195238942, -104.966741009589, 1.5583],
[39.7693616453483, -105.040884071572, 0.5364],
[39.7482082184286, -105.024820878129, 0.4136],
[39.7488472844683, -104.998976182468, 2.68],
[39.7090494940366, -105.03512985345, 0.1596],
[39.7409724702564, -104.965652297784, 1.02],
[39.748450584093, -104.99970064094, 1.9492],
[39.7446166920044, -104.964403254283, 0.7534],
[39.7427397433358, -104.96313710074, 0.7104],
[39.7407463963559, -104.979608484563, 0.8838],
[39.7117692009739, -104.973735031866, 0.601],
[39.7540482355305, -104.993434619981, 1.3947],
[39.7722025533654, -104.981534145604, 0.9701],
[39.7262888600812, -104.999055652775, 0.3971],
[39.7404183681533, -104.935004511413, 0.3816],
[39.7820498159342, -104.978679361474, 0.71],
[39.7364784574072, -104.99840943783, 0.8704],
[39.7398787603567, -104.921452996293, 0.6445],
[39.7435064024376, -104.977129767489, 0.7273],
[39.7506603018812, -105.025699466114, 0.6112],
[39.7375964738927, -104.99326673356, 1.4445],
[39.7314961139113, -104.99836116974, 0.7981],
[39.7348170497642, -104.990636335335, 0.9088],
[39.7269298354482, -104.998309624081, 1.1126],
[39.7313607528798, -104.998359345637, 1.1179],
[39.7414028121464, -104.959482693831, 1.1052],
[39.6531608398394, -104.88697384444, 0.2649],
[39.7398636838111, -105.020877922217, 0.8091],
[39.7532361350374, -104.994457977124, 1.4763],
[39.7404312880907, -104.933605135351, 0.4363],
[39.7694640234163, -104.930021449353, 0.1055],
[39.7184987241791, -104.999794436731, 0.3607],
[39.7583794315715, -105.052484193544, 0.3487],
[39.6865006969798, -104.958968598252, 0.5142],
[39.7355748302528, -104.998399267564, 1.0092],
[39.7638815104777, -104.940934641847, 0.2896],
[39.7419900795667, -104.973808113094, 0.7262],
[39.7581957849996, -105.014722015579, 0.7018],
[39.7409472869933, -104.975135471283, 0.5669],
[39.7503825639691, -105.00183549668, 8.7543],
[39.7444647329041, -104.976568299102, 1.085],
[39.7627366687241, -105.010382155671, 0.6145],
[39.7477513103617, -104.960121462325, 0.7652],
[39.7226957296097, -104.891674505055, 0.5509],
[39.7209330959596, -105.000272066559, 0.5852],
[39.7441482253731, -104.965093301428, 0.5894],
[39.743872885954, -104.965093557217, 0.648],
[39.7429463514199, -104.961224424564, 0.5531],
[39.7438715874377, -104.963135048003, 0.7466],
[39.6798716658872, -104.991428051946, 0.4965],
[39.7067496534249, -105.038948566765, 0.0784],
[39.6531608398394, -104.88697384444, 0.2728],
[39.6975668923622, -104.962053858473, 0.6985],
[39.697986652557, -104.962050718797, 1.2349],
[39.7622924124504, -105.029402635607, 0.6603],
[39.7226957296097, -104.891674505055, 0.551],
[39.7571344109862, -105.019521737708, 0.6062],
[39.747061823152, -104.964390896158, 0.7779],
[39.752701963756, -104.9918306262, 1.1734],
[39.7438713305329, -104.967561553256, 1.0705],
[39.7188423182834, -105.001231400356, 0.2702],
[39.7237471139392, -104.943296053059, 0.8955],
[39.73667523828, -104.999821670792, 0.3302],
[39.7354367420354, -104.99896190451, 1.0566],
[39.7426511015643, -104.973045560387, 1.2857],
[39.7226957296097, -104.891674505055, 0.5512],
[39.7435732918103, -104.975342842988, 1.1104],
[39.7458596754414, -104.977899066223, 0.6773],
[39.7209330959596, -105.000272066559, 0.5834],
[39.7227789987547, -104.981393003726, 0.5301],
[39.691378087379, -104.977182703023, 0.2802],
[39.7554391256802, -104.987075140484, 1.6816],
[39.7398973983125, -104.938145415242, 0.7799],
[39.7209330959596, -105.000272066559, 0.5832],
[39.7257705434223, -104.976711777567, 0.3828],
[39.739699385837, -104.919111376555, 0.6515],
[39.7425974912951, -104.973804962395, 1.23],
[39.7437460722143, -104.966877302059, 1.0442],
[39.7209330959596, -105.000272066559, 0.5837],
[39.7695552200403, -105.026010941421, 0.4967],
[39.7625654048186, -105.010856372422, 1.2266],
[39.7617914514473, -105.01677986603, 0.9239],
[39.7436455834152, -104.977065107301, 0.7127],
[39.7349133013894, -104.941049835246, 0.8014],