forked from OurHike/OurHike
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwater_distance.json
More file actions
6398 lines (6398 loc) · 204 KB
/
Copy pathwater_distance.json
File metadata and controls
6398 lines (6398 loc) · 204 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
{
"_README": [
"How far the nearest water source is from each A.T. shelter and campsite,",
"in feet, keyed to ATC's GlobalIDs.",
"",
"GENERATED by build_water_distance.py - re-run that script rather than",
"editing rows here, and review the diff it produces. export_poi.py reads",
"this file and publishes `water_distance_ft` on shelter and campsite",
"features; a record with a null distance publishes none.",
"",
"No ATC facility layer carries water at all (the shelter layer's 135 fields",
"and the campsite layer's 98 were checked one by one, 2026-08-13). The",
"distances come from the Campsite_Sustainability_Index layer on ATC's own",
"ArcGIS org - official sites only, the user-created rows are never even",
"requested - joined to ATC's features spatially with name agreement",
"preferred. `provenance` is CSI's own `Nearest_Water_Source` value,",
"verbatim: how ATC measured that row (FarOut waypoints, NHD hydrography,",
"or a steward's field estimate), which is what each number is worth.",
"",
"A null distance always carries an `unresolved` reason - no CSI row near",
"the feature (most of Maine), a 0 ft value that reads as at-the-source or",
"unmeasured without saying which, or a provenance value this build does",
"not know (an allowlist: FarOut joined it 2026-08-13 on the maintainer's",
"authorisation, #688; anything newer waits for a human). None is a guess:",
"where water is matters more than most numbers here, so a blank beats an",
"invention. Every shelter and campsite is listed either way, so a match",
"lost on a later run shows up as a changed line rather than a vanished",
"one."
],
"source": {
"title": "Campsite Sustainability Index - Overnight Site (official sites only)",
"url": "https://services9.arcgis.com/Nb3RpWJ36xRlYQj2/arcgis/rest/services/Campsite_Sustainability_Index/FeatureServer/0",
"provider": "Appalachian Trail Conservancy",
"licence": "ATC's formal org terms remain unstated (SOURCE_SURVEY.md \u00a79); reuse rides sources.json's atc_licence block - maintainer authorisation on the basis of ATC affiliation, 2026-08-13, FarOut-measured rows included on the maintainer's specific direction (#688). ATC's own written answer stays the ideal; a club inheriting this project should re-confirm all of it in its own name.",
"note": "Only Site_Type in ('Shelter', 'A.T. Club or Agency Created Campsite') is ever requested; the layer's 2,333 user-created campsites never reach this build. Distances attach to features already published from ATC's facility layers."
},
"counts": {
"features": 512,
"with_distance": 305,
"shelters": 280,
"shelters_with_distance": 163,
"campsites": 232,
"campsites_with_distance": 142
},
"sites": [
{
"layer": "shelters",
"atc_global_id": "75de15f3-5e98-458b-adb4-09b4c127a997",
"atc_name": "501 Shelter",
"distance_ft": 12,
"listed_distance_ft": 12.055586769,
"provenance": "FarOut",
"csi_rims_id": "c8c740f5-d779-4f23-88ea-8350c0d13ff3",
"csi_location": "1196.7 501 Shelter",
"match": "name",
"offset_m": 20
},
{
"layer": "shelters",
"atc_global_id": "39a2f155-3b0d-4533-864f-6aaedb823f49",
"atc_name": "A. Rufus Morgan Shelter",
"distance_ft": 25,
"listed_distance_ft": 24.7963139204,
"provenance": "FarOut",
"csi_rims_id": "dc4d6b88-8960-4318-cd70-ec5b330be961",
"csi_location": "Rufus Morgan Shelter",
"match": "name",
"offset_m": 7
},
{
"layer": "shelters",
"atc_global_id": "6c413158-7e0a-4ce1-ab3f-d0fe4895fbef",
"atc_name": "Abingdon Gap Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "8e31bb71-3a86-405d-b507-c11b9762cbee",
"atc_name": "Alec Kennedy Shelter",
"distance_ft": 339,
"listed_distance_ft": 338.687410565,
"provenance": "NHDP_HR_Stream",
"csi_rims_id": "70329abe-c7f0-45e4-c08a-3c076b67466d",
"csi_location": "1120.7 Alec Kennedy Shelter",
"match": "name",
"offset_m": 16
},
{
"layer": "shelters",
"atc_global_id": "4fd04709-23ef-4fac-ab5d-31f1afbf6900",
"atc_name": "Allentown Shelter",
"distance_ft": 1155,
"listed_distance_ft": 1155.4022982,
"provenance": "FarOut",
"csi_rims_id": "c723a483-183a-440d-f6b5-015f7c6413c4",
"csi_location": "1242.8 Allentown Hiking Club Shelter",
"match": "name",
"offset_m": 25
},
{
"layer": "shelters",
"atc_global_id": "a4a6ba19-8c98-4f2f-b752-28fc372e3a74",
"atc_name": "Amicalola Falls (Max Epperson) Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "18914f47-3edf-4664-ae01-62acf28791c6",
"atc_name": "Bailey Gap Shelter",
"distance_ft": 1204,
"listed_distance_ft": 1204.3869969,
"provenance": "NHDP_HR_Stream",
"csi_rims_id": "3cce618d-eae9-4be1-e0cb-987398aa9bbb",
"csi_location": "Bailey Gap Shelter Site 1",
"match": "name",
"offset_m": 4
},
{
"layer": "shelters",
"atc_global_id": "4dc51ace-cf68-41bf-acab-bb95ebddfc3f",
"atc_name": "Bake Oven Knob Shelter",
"distance_ft": 12,
"listed_distance_ft": 11.9549655062,
"provenance": "FarOut",
"csi_rims_id": "dda54f7b-ba39-4162-d383-9929c212bd75",
"csi_location": "1252.8 Bake Oven Knob Shelter",
"match": "name",
"offset_m": 28
},
{
"layer": "shelters",
"atc_global_id": "55cd3715-dfde-4896-bce0-7a408303b3f7",
"atc_name": "Bald Mtn Brook Lean-to Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "9de458a0-37c2-40c0-b6dd-cacc68b18303",
"atc_name": "Bald Mtn Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "37b30d25-33ef-4561-80e5-5a1a8df468f9",
"atc_name": "Baldpate Lean-to Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "987f9d96-20ec-4cf9-9f21-1a677390a6b9",
"atc_name": "Bearfence Mtn Hut Shelter",
"distance_ft": 54,
"listed_distance_ft": 54.3085031057,
"provenance": "FarOut",
"csi_rims_id": "55458834-de4f-4028-c88e-4d9a028bf7bc",
"csi_location": "919.0 Bearfence Shelter",
"match": "name",
"offset_m": 3
},
{
"layer": "shelters",
"atc_global_id": "081c31e3-689f-4e59-bbb2-721201f70bcf",
"atc_name": "Beaver Brook Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "453dc8b2-e7e0-4b59-926d-c4cd0907bf0b",
"atc_name": "Bemis Mtn Lean-to Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "d5460156-2b23-4687-b2ef-40a27afe20e5",
"atc_name": "Big Branch Shelter",
"distance_ft": 8,
"listed_distance_ft": 8.14947813114,
"provenance": "FarOut",
"csi_rims_id": "d9e7d27b-e250-4770-9e8a-5979797f2556",
"csi_location": "Big Branch Shelter",
"match": "name",
"offset_m": 19
},
{
"layer": "shelters",
"atc_global_id": "82ba8757-6b9e-4916-a79e-bd972dcbbab1",
"atc_name": "Birch Run Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": "ff655b41-4544-42d6-9da4-1137e141290e",
"csi_location": "1095.5 Birch Run Shelter",
"match": "name",
"offset_m": 22,
"unresolved": "the CSI row gives 0 ft, which reads as at-the-source or unmeasured, and does not say which"
},
{
"layer": "shelters",
"atc_global_id": "88b6ea46-75c8-448f-a703-347e28a72817",
"atc_name": "Black Gap Shelter",
"distance_ft": 816,
"listed_distance_ft": 816.39955437,
"provenance": "FarOut",
"csi_rims_id": "05d3bd27-5ec3-433f-8667-a3963806c1fa",
"csi_location": "Black gap shelter",
"match": "name",
"offset_m": 11
},
{
"layer": "shelters",
"atc_global_id": "49ad05e8-891d-4be9-a745-15114c481911",
"atc_name": "Blackrock Hut Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": "50ff9d14-3f88-4092-9ee7-141e71e6d304",
"csi_location": "Blackrock Hut",
"match": "name",
"offset_m": 8,
"unresolved": "the CSI row gives 0 ft, which reads as at-the-source or unmeasured, and does not say which"
},
{
"layer": "shelters",
"atc_global_id": "ea54c5a7-d95a-4e6d-8416-fe10df6d90c2",
"atc_name": "Blood Mtn Shelter",
"distance_ft": 1648,
"listed_distance_ft": 1647.99792678,
"provenance": "NHDP_HR_Stream",
"csi_rims_id": "14de9093-0c6d-41b6-f9db-4d7cf3b5745b",
"csi_location": "Blood Mountain Shelter",
"match": "name",
"offset_m": 9
},
{
"layer": "shelters",
"atc_global_id": "2eb8bf86-9ff1-4cf9-95fc-cf75f02e3bfa",
"atc_name": "Blue Mtn Shelter",
"distance_ft": 439,
"listed_distance_ft": 438.572780173,
"provenance": "FarOut",
"csi_rims_id": "fd745b7b-8b45-4585-ee1c-78945352a64a",
"csi_location": "Blue Mtn Shelter",
"match": "name",
"offset_m": 9
},
{
"layer": "shelters",
"atc_global_id": "b924dcf7-3ff7-4094-b53a-c76020ce2b15",
"atc_name": "Bobblets Gap Shelter",
"distance_ft": 32,
"listed_distance_ft": 32,
"provenance": "OSA_Field_Estimate",
"csi_rims_id": "da7e9621-a2d6-4d0a-9bd6-751692eb4480",
"csi_location": "749.1 Bobblets Gap Shelter",
"match": "name",
"offset_m": 10
},
{
"layer": "shelters",
"atc_global_id": "3fd1e380-4f85-4c0c-a56e-c5ba3317ed8b",
"atc_name": "Brassie Brook Shelter",
"distance_ft": 69,
"listed_distance_ft": 69.3712733106,
"provenance": "FarOut",
"csi_rims_id": "685b8b5f-518d-4722-aed4-3292df129a49",
"csi_location": "Brassie Brook Shelter",
"match": "name",
"offset_m": 25
},
{
"layer": "shelters",
"atc_global_id": "3ad8db05-c8d3-451d-8fbc-8399a78135c0",
"atc_name": "Brink Rd Shelter",
"distance_ft": 173,
"listed_distance_ft": 173.155112479,
"provenance": "FarOut",
"csi_rims_id": "2562b61b-363a-481d-cba2-7a068abd3e32",
"csi_location": "Brink Shelter",
"match": "name",
"offset_m": 6
},
{
"layer": "shelters",
"atc_global_id": "c68f20f9-57f2-4f5f-bedd-a0607063f8f4",
"atc_name": "Bromley Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "2937a477-293e-4278-bf7a-e29a8e874d5a",
"atc_name": "Brown Fork Gap Shelter",
"distance_ft": 90,
"listed_distance_ft": 90.14533116,
"provenance": "FarOut",
"csi_rims_id": "d981fed0-71d5-47f6-98b3-383438299457",
"csi_location": "Brown Fork Gap Sh tent 3",
"match": "name",
"offset_m": 13
},
{
"layer": "shelters",
"atc_global_id": "0155c6d6-2c61-487c-843f-2e4f204c4aa2",
"atc_name": "Brown Mtn Creek Shelter",
"distance_ft": 26,
"listed_distance_ft": 26.4215420768,
"provenance": "FarOut",
"csi_rims_id": "3c877391-ff69-4dc7-c814-b0251b107e8c",
"csi_location": "807.6 Brown Mountain Creek Shelter",
"match": "name",
"offset_m": 22
},
{
"layer": "shelters",
"atc_global_id": "6032d0e1-4488-4370-96cc-09b72c94a609",
"atc_name": "Bryant Ridge Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": "2fcf2373-aa79-4433-8cbd-83844bba2034",
"csi_location": "762.6 Bryant Ridge Shelter",
"match": "name",
"offset_m": 12,
"unresolved": "the CSI row gives 0 ft, which reads as at-the-source or unmeasured, and does not say which"
},
{
"layer": "shelters",
"atc_global_id": "5d61b67a-709a-45a8-a8a0-ffaf8785b534",
"atc_name": "Byrds Nest 3 Hut Shelter",
"distance_ft": 1194,
"listed_distance_ft": 1193.68291541,
"provenance": "NHDP_HR_Stream",
"csi_rims_id": "4dd24959-47bb-4738-cad5-22e2cfc28e66",
"csi_location": "941.5 Byrd's Nest #3 Shelter",
"match": "proximity",
"offset_m": 21
},
{
"layer": "shelters",
"atc_global_id": "8da42cfc-1bbb-4314-8d39-54d9cddc7429",
"atc_name": "Cable Gap Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": "d7f9fb21-0516-4ad2-c69f-c92184d8750d",
"csi_location": "Cable Gap Shl tent 1",
"match": "name",
"offset_m": 16,
"unresolved": "the CSI row gives 0 ft, which reads as at-the-source or unmeasured, and does not say which"
},
{
"layer": "shelters",
"atc_global_id": "f7fc8ea2-c21f-441a-a12e-e1267fbdaaae",
"atc_name": "Calf Mtn Shelter",
"distance_ft": 569,
"listed_distance_ft": 568.879452007,
"provenance": "FarOut",
"csi_rims_id": "5ca7eddd-d197-4b3d-81e2-a93cb3c01481",
"csi_location": "Calf Mountain Shelter",
"match": "name",
"offset_m": 12
},
{
"layer": "shelters",
"atc_global_id": "77fcb0e5-9678-4d70-83e7-c2cf63e2dfdb",
"atc_name": "Campbell Shelter",
"distance_ft": 539,
"listed_distance_ft": 539.450318365,
"provenance": "FarOut",
"csi_rims_id": "b2955ccb-d232-4e87-e253-ef3b77d05045",
"csi_location": "Catawba Shelter",
"match": "proximity",
"offset_m": 21
},
{
"layer": "shelters",
"atc_global_id": "0574d15d-03e6-4cef-ab87-1d7b5f1efbf9",
"atc_name": "Carl A. Newhall Lean-to Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "c6af4274-b211-4992-8beb-b68a3d93848f",
"atc_name": "Carlo Col Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "00721d72-05aa-40f3-aba0-5e3b8db4a7ff",
"atc_name": "Carter Gap Shelter",
"distance_ft": 25,
"listed_distance_ft": 25.2838420123,
"provenance": "FarOut",
"csi_rims_id": "f51c2221-7227-45a4-eed2-74062460637f",
"csi_location": "Carter Gap Shelter",
"match": "name",
"offset_m": 5
},
{
"layer": "shelters",
"atc_global_id": "fa056c2c-d0c3-4f2b-b3bc-021d90328695",
"atc_name": "Carter Notch Hut",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "3a3408cc-a20e-4ec6-b3d1-7a2dad3bdf67",
"atc_name": "Catawba Mtn Shelter",
"distance_ft": 8,
"listed_distance_ft": 7.58971478828,
"provenance": "FarOut",
"csi_rims_id": "437da15f-65b8-422b-e35c-46c6c4349e68",
"csi_location": "Catawba Shelter",
"match": "name",
"offset_m": 12
},
{
"layer": "shelters",
"atc_global_id": "c9861673-e35b-466d-b3c3-6c00e7a95d32",
"atc_name": "Chairback Gap Lean-to Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "caafc82b-34e2-40bd-b744-b8a031c10592",
"atc_name": "Chatfield Memorial Shelter",
"distance_ft": 25,
"listed_distance_ft": 25.151330725,
"provenance": "NHDP_HR_Stream",
"csi_rims_id": "416a0c2d-1afb-4b33-e16c-d7920dc4aa2b",
"csi_location": "Chatfield Shelter",
"match": "name",
"offset_m": 19
},
{
"layer": "shelters",
"atc_global_id": "cae2361c-e48c-4a2e-8b2d-746ad1ae8e7d",
"atc_name": "Cherry Gap Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "a6300a16-227a-4c04-ae90-30623615a40e",
"atc_name": "Chestnut Knob Shelter",
"distance_ft": 774,
"listed_distance_ft": 773.649002073,
"provenance": "FarOut",
"csi_rims_id": "20e6e850-4657-4da8-c1e5-563cd911a45a",
"csi_location": "Chestnut Knob Shelter",
"match": "name",
"offset_m": 3
},
{
"layer": "shelters",
"atc_global_id": "9f22ee0c-72c8-4871-8c23-53abab8e567e",
"atc_name": "Churchill Scott Shelter",
"distance_ft": 66,
"listed_distance_ft": 65.6352271473,
"provenance": "FarOut",
"csi_rims_id": "6699803b-a1da-4dff-f705-6163f1a4f873",
"csi_location": "Churchill Scott Shelter",
"match": "name",
"offset_m": 9
},
{
"layer": "shelters",
"atc_global_id": "d399ed28-d7cb-480b-bcb9-d3fe5206a0d6",
"atc_name": "Clarendon Shelter",
"distance_ft": 28,
"listed_distance_ft": 28,
"provenance": "OSA_Field_Estimate",
"csi_rims_id": "d365dabf-a9da-44f6-c089-037317ea9073",
"csi_location": "Clarendon Shelter tent 2",
"match": "name",
"offset_m": 14
},
{
"layer": "shelters",
"atc_global_id": "8552cf63-2e9f-4243-bddc-d354ae90d0a0",
"atc_name": "Clarks Ferry Shelter",
"distance_ft": 432,
"listed_distance_ft": 432.123193602,
"provenance": "FarOut",
"csi_rims_id": "f6af1fb0-a958-42be-eeda-b3adec4814a4",
"csi_location": "1154.5 Clarks Ferry Shelter",
"match": "name",
"offset_m": 24
},
{
"layer": "shelters",
"atc_global_id": "e939eba4-9789-4c02-9fc4-a73fd49be304",
"atc_name": "Cloud Pond Lean-to Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "cb59cfcd-3d11-49d3-8b3d-b8540acc83b8",
"atc_name": "Clyde Smith Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "37b4d1ec-e772-4401-93af-e80ca8c1ab0d",
"atc_name": "Cold Spring Shelter",
"distance_ft": 20,
"listed_distance_ft": 20,
"provenance": "OSA_Field_Estimate",
"csi_rims_id": "21b6ff63-f09f-4fb5-88ba-ce258fa809af",
"csi_location": "Cold Spring Shelter",
"match": "name",
"offset_m": 13
},
{
"layer": "shelters",
"atc_global_id": "1e7b95fa-315c-439a-b9bb-d7cd3f54fca5",
"atc_name": "Congdon Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": "5df79d89-c131-45c5-ca6a-ff5de6723284",
"csi_location": "Congdon",
"match": "name",
"offset_m": 14,
"unresolved": "the CSI row gives 0 ft, which reads as at-the-source or unmeasured, and does not say which"
},
{
"layer": "shelters",
"atc_global_id": "f349f50f-c2d8-42d5-96f8-b0393500b90c",
"atc_name": "Cooper Brook Falls Lean-to Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "4c481b69-1220-4513-a3c1-a5e0d878e979",
"atc_name": "Cooper Lodge Shelter",
"distance_ft": 2,
"listed_distance_ft": 2.17590792751,
"provenance": "FarOut",
"csi_rims_id": "0a2185bc-2c87-4189-f2cc-d321e243f87b",
"csi_location": "Cooper Lodge Shelter",
"match": "name",
"offset_m": 1
},
{
"layer": "shelters",
"atc_global_id": "14252a5c-0d4f-46f2-a189-42a487572bd1",
"atc_name": "Cornelius Creek Shelter",
"distance_ft": 7,
"listed_distance_ft": 7.40321466737,
"provenance": "FarOut",
"csi_rims_id": "087d188a-e353-4331-cc35-d93359c0469f",
"csi_location": "767.5 Cornelius Creek Shelter",
"match": "name",
"offset_m": 3
},
{
"layer": "shelters",
"atc_global_id": "6bc0deea-824d-45b1-9a28-1d1acda33a96",
"atc_name": "Cosby Knob Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": "66fa735e-4fca-4e29-c17c-06d2f406b26a",
"csi_location": "Cosby Knob Shelter",
"match": "name",
"offset_m": 12,
"unresolved": "the CSI row gives 0 ft, which reads as at-the-source or unmeasured, and does not say which"
},
{
"layer": "shelters",
"atc_global_id": "86ad6d94-171f-47ae-af08-3c21eebb63ae",
"atc_name": "Cove Mtn (PA) Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "0ba4b95f-cfeb-4f8f-942e-07f9ed17f557",
"atc_name": "Cove Mtn (VA) Shelter",
"distance_ft": 1613,
"listed_distance_ft": 1612.969349,
"provenance": "NHDP_HR_Stream",
"csi_rims_id": "07de294f-8da0-4f71-dd01-d46491c1e9f3",
"csi_location": "755.6 Cove Mountain Shelter",
"match": "name",
"offset_m": 4
},
{
"layer": "shelters",
"atc_global_id": "c793c611-c4de-4a8e-a6ce-f49119127f11",
"atc_name": "Cow Camp Gap Shelter",
"distance_ft": 17,
"listed_distance_ft": 16.8669571511,
"provenance": "NHDP_HR_Stream",
"csi_rims_id": "8236a331-cb25-46c5-a1ef-c2cf59e14912",
"csi_location": "813.2 Cow Camp Gap Shelter",
"match": "name",
"offset_m": 10
},
{
"layer": "shelters",
"atc_global_id": "473dc296-7d1e-4d20-b5bc-7cc9e5dcc380",
"atc_name": "Crampton Gap Shelter",
"distance_ft": 29,
"listed_distance_ft": 28.5256689811,
"provenance": "FarOut",
"csi_rims_id": "79359c0c-e0df-471d-bc8d-a1f72e28d5df",
"csi_location": "1037.1 Crampton Gap Shelter",
"match": "name",
"offset_m": 9
},
{
"layer": "shelters",
"atc_global_id": "5824b5d9-8a3d-43ad-afba-0717f5462cc2",
"atc_name": "Curley Maple Gap Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "54023d43-724e-4ed8-b26e-2cc498ef321e",
"atc_name": "Darlington Shelter",
"distance_ft": 681,
"listed_distance_ft": 681.066390243,
"provenance": "FarOut",
"csi_rims_id": "198c8b36-78fa-46d8-a635-559e80aea0ce",
"csi_location": "1138.9 Darlington Shelter",
"match": "name",
"offset_m": 28
},
{
"layer": "shelters",
"atc_global_id": "b48de456-32ee-46ba-8e04-4405edec1836",
"atc_name": "Davenport Gap Shelter",
"distance_ft": 78,
"listed_distance_ft": 78.042998446,
"provenance": "FarOut",
"csi_rims_id": "707fcbeb-ed53-4cb1-b364-ee42a0a9ff84",
"csi_location": "Davenport Gap Shelter",
"match": "name",
"offset_m": 16
},
{
"layer": "shelters",
"atc_global_id": "f686d612-5710-47e1-b8c3-d5b732678bb1",
"atc_name": "David Lesser Memorial Shelter",
"distance_ft": 1111,
"listed_distance_ft": 1110.93411252,
"provenance": "FarOut",
"csi_rims_id": "1d47af8a-4262-4b9c-da99-ff8008f7901d",
"csi_location": "1017.1 David Lesser Memorial Shelter",
"match": "name",
"offset_m": 21
},
{
"layer": "shelters",
"atc_global_id": "bc545d11-54e6-4c5f-8256-75e5f6da8e36",
"atc_name": "Deep Gap Shelter",
"distance_ft": 13,
"listed_distance_ft": 13.040396057,
"provenance": "FarOut",
"csi_rims_id": "8ba148cb-72b6-49c1-949c-84a96305cfd1",
"csi_location": "Deep Gap Shelter",
"match": "name",
"offset_m": 4
},
{
"layer": "shelters",
"atc_global_id": "aa4b3980-4d58-40c4-8781-6c785937c04b",
"atc_name": "Deer Lick Shelter 1",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "98e0f710-aa70-4256-a555-b631e492eb82",
"atc_name": "Deer Lick Shelter 2",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "e605cb37-010c-49dc-a5fd-74cb59cda020",
"atc_name": "Deer Park Mtn Shelter",
"distance_ft": 130,
"listed_distance_ft": 130,
"provenance": "OSA_Field_Estimate",
"csi_rims_id": "be576cb7-0530-4ac8-efa5-7ba8d990c4f8",
"csi_location": "Deer Park Mtn Shelter",
"match": "name",
"offset_m": 9
},
{
"layer": "shelters",
"atc_global_id": "ebaf0dd5-c5f1-4974-88b8-6accf9229fe0",
"atc_name": "Derrick Knob Shelter",
"distance_ft": 33,
"listed_distance_ft": 32.7580897608,
"provenance": "FarOut",
"csi_rims_id": "552d6810-4b2c-4c66-b053-b293a9fe84dc",
"csi_location": "Derrick Knob shelter",
"match": "name",
"offset_m": 11
},
{
"layer": "shelters",
"atc_global_id": "f6a6d3cf-d647-4b24-ab34-a98dab7d1df4",
"atc_name": "Doc's Knob Shelter",
"distance_ft": 38,
"listed_distance_ft": 37.6932312752,
"provenance": "FarOut",
"csi_rims_id": "d48c9c06-f656-4072-e2a0-657544fe80d5",
"csi_location": "Doc's Knob Shelter",
"match": "name",
"offset_m": 10
},
{
"layer": "shelters",
"atc_global_id": "f601ba0b-7a61-4bc5-81e4-865cc99923a5",
"atc_name": "Double Spring Gap Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": "05ee3049-0f29-46a7-e61d-6f6a47f91f15",
"csi_location": "Double Spring Gap Shelter",
"match": "name",
"offset_m": 3,
"unresolved": "the CSI row gives 0 ft, which reads as at-the-source or unmeasured, and does not say which"
},
{
"layer": "shelters",
"atc_global_id": "b7b1d295-c9ac-407e-b19c-02837e761689",
"atc_name": "Double Springs Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "b8c1dad8-0cb4-4f3f-95c2-4d6d6ecd8420",
"atc_name": "Eagles Nest Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": "8884ba0c-916f-4773-8632-00ebdd6fe473",
"csi_location": "1211.6 Eagles Nest Shelter",
"match": "name",
"offset_m": 31,
"unresolved": "the CSI row gives 0 ft, which reads as at-the-source or unmeasured, and does not say which"
},
{
"layer": "shelters",
"atc_global_id": "fd5bb582-5311-4a87-9ff9-9d60f0523cdc",
"atc_name": "East Branch (Pleasant River) Lean-to Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "f383b890-5249-4aad-bb04-fa8bf6c3aad8",
"atc_name": "Eckville Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "3993c216-7d8a-41fd-88d8-437a799f10ae",
"atc_name": "Ed Garvey Shelter",
"distance_ft": 1138,
"listed_distance_ft": 1137.55729138,
"provenance": "FarOut",
"csi_rims_id": "732f0055-0fab-4228-db57-e17bb3664f26",
"csi_location": "1033.0 Ed Garvey Shelter",
"match": "name",
"offset_m": 35
},
{
"layer": "shelters",
"atc_global_id": "d5cd4e1d-783b-474e-b1c7-aaf1043fc44f",
"atc_name": "Eliza Brook Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "0ca6f11f-b015-4238-8059-670d0b496733",
"atc_name": "Ensign Cowall Shelter",
"distance_ft": 384,
"listed_distance_ft": 384.195387264,
"provenance": "FarOut",
"csi_rims_id": "6cdb4bfc-edbc-47bd-f3c8-449fce82acc2",
"csi_location": "Ensign Cowall Shelter",
"match": "name",
"offset_m": 18
},
{
"layer": "shelters",
"atc_global_id": "833a2666-3b53-4213-9863-dc05b9934664",
"atc_name": "Ethan Pond Shelter",
"distance_ft": 150,
"listed_distance_ft": 150,
"provenance": "OSA_Field_Estimate",
"csi_rims_id": "5c5c234a-8ecc-41ae-af52-04609958c0a5",
"csi_location": "Ethan Pond Shelter",
"match": "name",
"offset_m": 9
},
{
"layer": "shelters",
"atc_global_id": "8cbafcd3-26c4-453c-b4be-7add6513e4ff",
"atc_name": "Fingerboard Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": null,
"csi_location": null,
"match": null,
"offset_m": null,
"unresolved": "no CSI row within 150 m"
},
{
"layer": "shelters",
"atc_global_id": "cf548bce-eb01-49db-8f4f-dba753050977",
"atc_name": "Flint Mtn Shelter",
"distance_ft": null,
"listed_distance_ft": null,
"provenance": null,
"csi_rims_id": "e3529ac1-87dd-4fca-fc5f-0e10be1a24c3",
"csi_location": "Flint Mountain Shelter",
"match": "name",
"offset_m": 3,
"unresolved": "the CSI row gives 0 ft, which reads as at-the-source or unmeasured, and does not say which"
},
{
"layer": "shelters",
"atc_global_id": "25835b16-b6ba-43db-ab64-6703396d069f",
"atc_name": "Fontana Dam Shelter",
"distance_ft": 63,
"listed_distance_ft": 62.5301865252,
"provenance": "FarOut",
"csi_rims_id": "020d2ad0-416f-42bf-e418-67d2c7ef9848",
"csi_location": "Fontana Dam Shelter",