forked from traitortots/ArcSpider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist-federal-state-county-city-GIS-servers.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 42 should actually have 13 columns, instead of 14 in line 41.
3569 lines (3569 loc) · 384 KB
/
list-federal-state-county-city-GIS-servers.csv
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
Line-number,Type,State,County,Town,FIPS,Server-owner,ArcGIS-url,https,Show-contents,SSL,Open,Comment
1,0,,,,,,,,,,,When you use this resource please credit: Joseph Elfelt - https://mappingsupport.com
2,0,,,,,,,,,,,To donate to support this work please visit https://mappingsupport.com/p2/gissurfer-donate.html
3,0,,,,,,,,,,,Data you see here is based on a PDF file dated August 10 2022
4,0,,,,,,,,,,,PDF file online at https://mappingsupport.com/p/surf_gis/list-federal-state-county-city-GIS-servers.pdf
5,0,,,,,,,,,,,Page 2 of the PDF file contains a description of the fields in this csv file.
6,1,,,,,USDA - Agricultural Research Service,https://www.nrrig.mwa.ars.usda.gov/server40/rest/services,Y,Y,OK,Y,
7,1,,,,,USDA - Bio Gas,https://www.usda.gov/giseas1/rest/services/BioGas,Y,Y,OK,Y,
8,1,,,,,USDA - Bio Gas,https://www.usda.gov/giseas1/rest/services/BioRefineryTool,Y,Y,OK,Y,
9,1,,,,,USDA - Foreign Agricultural Service,https://geo.fas.usda.gov/arcgis1/rest/services,Y,Y,OK,Y,
10,1,,,,,USDA - Foreign Agricultural Service,https://geo.fas.usda.gov/arcgis2/rest/services,Y,Y,OK,Y,
11,1,,,,,USDA - Economic Research Service,https://gis.ers.usda.gov/arcgis/rest/services,Y,Y,OK,Y,
12,1,,,,,USDA - Farm Service Agency,https://gis.apfo.usda.gov/arcgis/rest/services,Y,Y,OK,Y,Includes NAIP as ImagerServer
13,1,,,,,USDA - Forest Service - Enterprise Data Warehouse (EDW),https://apps.fs.usda.gov/arcx/rest/services/EDW,Y,Y,OK,Y,
14,1,,,,,USDA - Forest Service - Forest Atlas,https://apps.fs.usda.gov/arcx/rest/services/RDW_FIA_ForestAtlas,Y,Y,OK,Y,
15,1,,,,,USDA - Forest Service - Forest health,https://apps.fs.usda.gov/fsgisx02/rest/services/foresthealth,Y,Y,OK,Y,
16,1,,,,,USDA - Forest Service - Various links,https://apps.fs.usda.gov/fsgisx01/rest/services,Y,Y,OK,Y, RDW_Wildfire has wildfire risk assessment
17,1,,,,,USDA - Forest Service - Various links,https://apps.fs.usda.gov/fsgisx02/rest/services,Y,Y,OK,Y,
18,1,,,,,USDA - Forest Service - Various links,https://apps.fs.usda.gov/fsgisx03/rest/services,Y,Y,OK,Y,
19,1,,,,,USDA - Forest Service - Various links,https://apps.fs.usda.gov/fsgisx05/rest/services,Y,Y,OK,Y,
20,1,,,,,USDA - Forest Service - Various links,https://fsapps.nwcg.gov/psp/arcgis/rest/services,Y,Y,OK,Y, wildfire related data
21,1,,,,,USDA - Natural Resources Conservation Service,https://nrcsgeoservices.sc.egov.usda.gov/arcgis/rest/services,Y,Y,OK,Y,
22,1,,,,,USDA - Rural Development,https://rdgdwe.sc.egov.usda.gov/arcgis/rest/services,Y,Y,OK,Y,
23,1,,,,,DOC - Census Bureau,https://tigerweb.geo.census.gov/arcgis/rest/services,Y,Y,OK,Y,
24,1,,,,,DOC - Census Bureau,https://mtgis-server.geo.census.gov/arcgis/rest/services,Y,Y,OK,Y,
25,1,,,,,DOC - National Oceanic & Atmospheric Administration (NOAA),https://seamlessrnc.nauticalcharts.noaa.gov/arcgis/rest/services,Y,Y,OK,Y,
26,1,,,,,DOC - National Oceanic & Atmospheric Administration (NOAA),https://coast.noaa.gov/arcgis/rest/services/,Y,Y,OK,Y,
27,1,,,,,DOC - National Oceanic & Atmospheric Administration (NOAA),https://maps.coast.noaa.gov/arcgis/rest/services,Y,Y,OK,Y,
28,1,,,,,DOC - National Oceanic & Atmospheric Administration (NOAA),https://maps1.coast.noaa.gov/arcgis/rest/services,Y,Y,OK,Y,
29,1,,,,,DOC - National Oceanic & Atmospheric Administration (NOAA),https://maps2.coast.noaa.gov/arcgis/rest/services,Y,Y,OK,Y,
30,1,,,,,DOC - National Oceanic & Atmospheric Administration (NOAA),https://maritimeboundaries.noaa.gov/arcgis/rest/services,Y,Y,OK,Y,
31,1,,,,,DOC - National Oceanic & Atmospheric Administration (NOAA),https://tiles.arcgis.com/tiles/C8EMgrsFcRFL6LrL/arcgis/rest/services,Y,Y,OK,Y,
32,1,,,,,DOC - National Oceanic & Atmospheric Administration (NOAA),https://gis.charttools.noaa.gov/arcgis/rest/services,Y,Y,OK,Y, Latest digital marine charts
33,1,,,,,DOC - National Oceanic & Atmospheric Administration (NOAA),https://satellitemaps.nesdis.noaa.gov/arcgis/rest/services,Y,Y,OK,Y, See: https://www.nesdis.noaa.gov
34,1,,,,,DOC - National Oceanic & Atmospheric Administration (NOAA),https://services.dat.noaa.gov/arcgis/rest/services,Y,Y,OK,Y, nws_damageassessmenttoolkit: preliminary storm damage
35,1,,,,,DOC - National Oceanic & Atmospheric Administration (NOAA),https://services.dat.noaa.gov/arcgis/rest/services/nws_damageassessmenttoolkit/DamageViewer/MapServer,Y,Y,OK,Y,tornado data
36,1,,,,,DOC - National Oceanic & Atmospheric Administration (NOAA),https://services1.arcgis.com/2iUE8l8JKrP2tygQ/ArcGIS/rest/services,Y,Y,OK,Y, A lot of Georgia layers but also some USA weather layers
37,1,,,,,DOC - National Oceanic & Atmospheric Administration (NOAA),https://mapservice.nohrsc.noaa.gov/arcgis/rest/services,Y,Y,OK,Y, Includes stream gages
38,1,,,,,DOC - National Oceanic & Atmospheric Administration (NOAA),https://mapservices.weather.noaa.gov/eventdriven/rest/services,Y,Y,OK,Y, Serves this map: https://viewer.geospatial.weather.gov
39,1,,,,,DOC - National Center for Environmental Prediction,https://idpgis.ncep.noaa.gov/arcgis/rest/services,Y,Y,OK,Y,Includes weather service layers
40,1,,,,,DOC - nowCOAST,https://nowcoast.noaa.gov/arcgis/rest/services,Y,Y,OK,Y,
41,1,,,,,DOC - National Center for Environmental Information,https://gis.ngdc.noaa.gov/arcgis/rest/services,Y,Y,OK,Y, cdo directory has good weather data. Also countries outline, but no names.
42,1,,,,,DOC - National Center for Environmental Information,https://gis.ngdc.noaa.gov/arcgis/rest/services/web_mercator/hazards/MapServer,Y,Y,OK,Y, Includes tsunami data
43,1,,,,,DOC - Electronic Nautical Charts (ENC),https://encdirect.noaa.gov/arcgis/rest/services,Y,Y,OK,Y,
44,1,,,,,DOC - Electronic Nautical Charts (ENC),https://wrecks.nauticalcharts.noaa.gov/arcgis/rest/services,Y,Y,OK,Y,
45,1,,,,,DOC - Gulf of Mexico Fishery Management Council,https://portal.gulfcouncil.org/arcgis/rest/services,Y,Y,OK,Y,
46,1,,,,,DOD - Air Force Recruiting Service,https://parcelviewer.geodecisions.com/arcgis/rest/services/AFRS/AFRS_Data/MapServer,Y,Y,OK,Y,
47,1,,,,,DOD - Army Corps of Engineers - Readiness Support Center,https://ienccloud.us/arcgis/rest/services,Y,Y,OK,Y,
48,1,,,,,DOD - Army Corps of Engineers - Readiness Support Center,https://services7.arcgis.com/n1YM8pTrFmm7L4hs/ArcGIS/rest/services,Y,Y,OK,Y,
49,1,,,,,DOD - Arlington National Cemetery,https://ancexplorer.army.mil/arcgis/rest/services,Y,Y,OK,Y,
50,1,,,,,DOEd - Data and Statistics,https://nces.ed.gov/opengis/rest/services,Y,Y,OK,Y,
51,1,,,,,DOE - Legacy Management,https://gems.lm.doe.gov/arcgis/rest/services,Y,Y,OK,Y,
52,1,,,,,DOE - Argonne National Laboratory,https://disgeoportal.egs.anl.gov/arcgis/rest/services,Y,Y,OK,Y,
53,1,,,,,DOE - Energy Information Administration (EIA),https://services.arcgis.com/jDGuO8tYggdCCnUJ/arcgis/rest/services,Y,Y,OK,Y,
54,1,,,,,HHS - Website: https://www.hhs.gov/,https://geohealth.hhs.gov/dataaccess/rest/services,Y,Y,OK,Y,
55,1,,,,,HHS - Health Resources and Services Administration (HRSA),https://gisportal.hrsa.gov/server/rest/services,Y,Y,OK,Y,
56,1,,,,,HHS - Indian Health Service,https://maps.ihs.gov/server/rest/services,Y,Y,OK,Y,
57,1,,,,,DHS - Federal Emergency Management Agency (FEMA),https://hazards.fema.gov/gis/nfhl/rest/services,Y,Y,OK,Y,
58,1,,,,,DHS - Federal Emergency Management Agency (FEMA),https://gis.fema.gov/arcgis/rest/services/,Y,Y,OK,Y,
59,1,,,,,DHS - Federal Emergency Management Agency (FEMA),https://gis.fema.gov/arcgis/rest/services/Partner/Fire_List_Current/MapServer,Y,Y,OK,Y, Wildland fires
60,1,,,,,DHS - Federal Emergency Management Agency (FEMA),https://services.arcgis.com/XG15cJAlne2vxtgt/ArcGIS/rest/services,Y,Y,OK,Y,
61,1,,,,,DHS - Various layers,https://gii.dhs.gov/host/rest/services,Y,Y,OK,Y,
62,1,,,,,HUD - Geospatial Data Storefront,https://egis.hud.gov/arcgis/rest/services,Y,Y,OK,Y,
63,1,,,,,HUD - Location Affordability Portal,https://services.arcgis.com/VTyQ9soqVukalItT/arcgis/rest/services,Y,Y,OK,Y,
64,1,,,,,DOI - Bureau of Land Management,https://gis.blm.gov/arcgis/rest/services,Y,Y,OK,Y,
65,1,,,,,DOI - Bureau of Land Management,https://gis.blm.gov/orarcgis/rest/services,Y,Y,OK,Y,
66,1,,,,,DOI - Bureau of Land Management,https://fire.ak.blm.gov/arcgis/rest/services,Y,Y,OK,Y, Includes Alaska wildland fires
67,1,,,,,DOI - Bureau of Land Management,https://landscape.blm.gov/nwparcgis/rest/services,Y,Y,OK,Y,
68,1,,,,,DOI - Bureau of Land Management,https://landscape.blm.gov/cyrarcgis/rest/services,Y,Y,OK,Y,
69,1,,,,,DOI - Bureau of Land Management,https://landscape.blm.gov/nosarcgis/rest/services,Y,Y,OK,Y,
70,1,,,,,DOI - Bureau of Land Management,https://gis.blm.gov/azarcgis/rest/services,Y,Y,OK,Y,Arizona
71,1,,,,,DOI - Bureau of Land Management,https://gis.blm.gov/coarcgis/rest/services,Y,Y,OK,Y,Colorado
72,1,,,,,DOI - Bureau of Land Management,https://gis.blm.gov/nmarcgis/rest/services,Y,Y,OK,Y,New Mexico
73,1,,,,,DOI - Bureau of Land Management,https://gis.blm.gov/utarcgis/rest/services,Y,Y,OK,Y,Utah
74,1,,,,,DOI - Bureau of Ocean Energy Management,https://gis.boem.gov/arcgis/rest/services,Y,Y,OK,Y, Above server produces an unusual message.
75,1,,,,,DOI - Bureau of Ocean Energy Management,https://gis.blm.gov/azarcgis/rest/services,Y,Y,OK,Y,
76,1,,,,,DOI - Bureau of Reclamation,https://geo.usbr.gov/server/rest/services,Y,Y,OK,Y,
77,1,,,,,DOI - Fish and Wildlife Service,https://gis.wim.usgs.gov/arcgis/rest/services,Y,Y,OK,Y,
78,1,,,,,DOI - Fish and Wildlife Service,https://cbrsgis.wim.usgs.gov/arcgis/rest/services,Y,Y,OK,Y,Coastal Barrier Resources System
79,1,,,,,DOI - Fish and Wildlife Service,https://services.arcgis.com/QVENGdaPbd4LUkLV/ArcGIS/rest/services,Y,Y,OK,Y,
80,1,,,,,DOI - Fish and Wildlife Service,https://services.arcgis.com/QVENGdaPbd4LUkLV/arcgis/rest/services,Y,Y,OK,Y,
81,1,,,,,DOI - Fish and Wildlife Service,https://tiles.arcgis.com/tiles/QVENGdaPbd4LUkLV/arcgis/rest/services,Y,Y,OK,Y,
82,1,,,,,DOI - Bureau of Indian Affairs,https://biamaps.doi.gov/server/rest/services,Y,Y,OK,Y,
83,1,,,,,DOI - National Park Service (NPS),https://mapservices.nps.gov/arcgis/rest/services,Y,Y,OK,Y,
84,1,,,,,DOI - National Park Service (NPS),https://mobilegis.nps.gov/arcgis/rest/services,Y,Y,OK,Y,Link works but maybe no data
85,1,,,,,DOI - National Park Service (NPS),https://services1.arcgis.com/fBc8EJBxQRMcHlei/ArcGIS/rest/services,Y,Y,OK,Y,
86,1,,,,,DOI - National Park Service (NPS),https://services.arcgis.com/EeCmkqXss9GYEKIZ/ArcGIS/rest/services,Y,Y,OK,Y, Includes Ice Age National Scenic Trail
87,1,,,,,DOI - National Park Service (NPS),https://services2.arcgis.com/UfGVyqUm4GHa2zrj/ArcGIS/rest/services,Y,Y,OK,Y, Includes North Country National Scenic Trail
88,1,,,,,DOI - Integrated Resource Management Applications,https://irmaservices.nps.gov/arcgis/rest/services,Y,Y,OK,Y,
89,1,,,,,DOI - Office of Surface Mining Reclamation and Enforcement (OSMRE),https://geoservices.osmre.gov/arcgis/rest/services,Y,Y,OK,Y,
90,1,,,,,USGS - The national map,https://basemap.nationalmap.gov/arcgis/rest/services,Y,Y,OK,Y,Includes USTopo basemap
91,1,,,,,USGS - The national map,https://services.nationalmap.gov/arcgis/rest/services,Y,Y,OK,Y,Includes NAIPPlus
92,1,,,,,USGS - The national map,https://index.nationalmap.gov/arcgis/rest/services,Y,Y,OK,Y, /USTopoAvailability/MapServer Layer 3 includes attribute data that lets you download the 7.5 minute vector topo map including data outside neatline.
93,1,,,,,USGS - The national map,https://partnerships.nationalmap.gov/arcgis/rest/services,Y,Y,OK,Y, Includes a trail layer that supports dynamic layers
94,1,,,,,USGS - The national map,https://hydro.nationalmap.gov/arcgis/rest/services,Y,Y,OK,Y,
95,1,,,,,USGS - The national map,https://carto.nationalmap.gov/arcgis/rest/services,Y,Y,OK,Y,
96,1,,,,,USGS - The national map,https://cartowfs.nationalmap.gov/arcgis/rest/services,Y,Y,OK,Y,
97,1,,,,,USGS - The national map,https://elevation.nationalmap.gov/arcgis/rest/services,Y,Y,OK,Y,
98,1,,,,,USGS - The national map,https://eerscmap.usgs.gov/arcgis/rest/services,Y,Y,OK,Y, wind turbines: /uswtdb/uswtdbDyn/MapServer
99,1,,,,,USGS - The national map,https://nimbus.cr.usgs.gov/arcgis/rest/services,Y,Y,OK,Y, Here are two non-government data sources that are also used on the national map
100,1,,,,,USGS - The national map,https://services.arcgisonline.com/arcgis/rest/services/USA_Topo_Maps/MapServer,Y,Y,OK,Y,
101,1,,,,,USGS - Land Treatments Digital Library,https://srfs.wr.usgs.gov/arcgis/rest/services/LTDL_Tool,Y,Y,OK,Y,
102,1,,,,,USGS - Snake River Field Station,https://srfs.wr.usgs.gov/arcgis/rest/services,Y,Y,OK,Y,
103,1,,,,,USGS - Earthquake and landslide,https://earthquake.usgs.gov/arcgis/rest/services,Y,Y,OK,Y,
104,1,,,,,USGS - Earthquake and landslide,https://earthquake.usgs.gov/arcgis/rest/services/ls/pwfdf_2020/MapServer,Y,Y,OK,Y, Example link for debris flow risk following wildland fire
105,1,,,,,USGS - Wildland fire,https://wildfire.cr.usgs.gov/arcgis/rest/services,Y,Y,OK,Y,
106,1,,,,,USGS - Wildland fire,https://rmgsc.cr.usgs.gov/arcgis/rest/services,Y,Y,OK,Y, Above server has the same data as the wildfire' server.
107,1,,,,,USGS - Wildland fire,https://landfire.cr.usgs.gov/arcgis/rest/services,Y,Y,OK,Y,
108,1,,,,,Upper Midwest Environmental Sciences Center,https://umesc-gisdb03.er.usgs.gov/arcgis/rest/services,Y,Y,OK,Y,
109,1,,,,,USGS - Eastern Energy Resources Science Center,https://eerscmap.usgs.gov/arcgis/rest/services,Y,Y,OK,Y,
110,1,,,,,USGS - ScienceBase,https://gis.usgs.gov/sciencebase2/rest/services,Y,Y,OK,Y,
111,1,,,,,USGS - Web Informatics and Mapping (WiM),https://gis.wim.usgs.gov/arcgis/rest/services,Y,Y,OK,Y,
112,1,,,,,USGS - Other ArcGIS servers,https://certmapper.cr.usgs.gov/server/rest/services,Y,Y,OK,Y,
113,1,,,,,USGS - Other ArcGIS servers,https://edcintl.cr.usgs.gov/arcgis/rest/services,Y,Y,OK,Y,
114,1,,,,,USGS - Other ArcGIS servers,https://gis1.usgs.gov/arcgis/rest/services,Y,Y,OK,Y,
115,1,,,,,USGS - Other ArcGIS servers,https://grandcanyon.usgs.gov/server/rest/services,Y,Y,OK,Y, Grand Canyon
116,1,,,,,USGS - Other ArcGIS servers,https://rmgsc.cr.usgs.gov/ArcGIS/rest/services,Y,Y,OK,Y,
117,1,,,,,DOT - Federal Highway Administration - Highway Safety Improvement Program (HSIP),https://geo.dot.gov/server/rest/services,Y,Y,OK,Y,
118,1,,,,,DOT - Federal Highway Administration - National Transportation Atlas Database (NTAD),https://geo.dot.gov/mapping/rest/services,Y,Y,OK,Y, Includes bridge and tunnel inventory
119,1,,,,,DOT - Federal Aviation Administration (FAA),https://services6.arcgis.com/ssFJjBXIUyZDrSYZ/arcgis/rest/services,Y,Y,OK,Y, UAS_Part_107 has the drone ceiling data
120,1,,,,,DOT - Federal Railroad Administration,https://fragis.fra.dot.gov/fragis/rest/services,Y,Y,OK,Y,
121,1,,,,,DOT - Various layers,https://fhfl15gisweb.flhd.fhwa.dot.gov/arcgis/rest/services,Y,Y,OK,Y,
122,1,,,,,DOT - Various layers,https://geo.dot.gov/server/rest/services,Y,Y,OK,Y,
123,1,,,,,EPA - EnviroAtlas,https://enviroatlas.epa.gov/arcgis/rest/services,Y,Y,OK,Y,
124,1,,,,,EPA - Environmental Justice Screening and Mapping,https://ejscreen.epa.gov/arcgis/rest/services,Y,Y,OK,Y,
125,1,,,,,EPA - WATERS (Watershed Assessment - Tracking & Environmental Results System),https://watersgeo.epa.gov/ArcGIS/rest/services,Y,Y,OK,Y,
126,1,,,,,EPA - WATERS (Watershed Assessment - Tracking & Environmental Results System),https://watersgeo.epa.gov/arcgis/rest/services,Y,Y,OK,Y,
127,1,,,,,EPA - Enforcement and Compliance History Online,https://echogeo.epa.gov/arcgis/rest/services,Y,Y,OK,Y,
128,1,,,,,EPA - Various layers,https://geopub.epa.gov/arcgis/rest/services,Y,Y,OK,Y,
129,1,,,,,EPA - Various layers,https://gispub.epa.gov/arcgis/rest/services,Y,Y,OK,Y,
130,1,,,,,EPA - Various layers,https://geodata.epa.gov/arcgis/rest/services,Y,Y,OK,Y,
131,1,,,,,EPA - Various layers,https://map22.epa.gov/arcgis/rest/services,Y,Y,OK,Y,
132,1,,,,,EPA - Various layers,https://map23.epa.gov/ArcGIS/rest/services,Y,Y,OK,Y,
133,1,,,,,EPA - Various layers,https://map24.epa.gov/ArcGIS/rest/services,Y,Y,OK,Y,
134,1,,,,,NASA - SERVIR,https://gis1.servirglobal.net/arcgis/rest/services,Y,Y,OK,Y,
135,1,,,,,NASA - MODIS and VIIRS imagery as ImageServer data:,https://modis.arcgis.com/arcgis/rest/services,Y,Y,OK,Y,
136,1,,,,,NASA - Disaster related,https://maps.disasters.nasa.gov/ags01/rest/services,Y,Y,OK,Y,
137,1,,,,,NASA - Disaster related,https://maps.disasters.nasa.gov/ags02/rest/services,Y,Y,OK,Y,
138,1,,,,,NASA - Disaster related,https://maps.disasters.nasa.gov/ags03/rest/services,Y,Y,OK,Y,
139,1,,,,,NASA - Disaster related,https://maps.disasters.nasa.gov/ags04/rest/services,Y,Y,OK,Y,
140,1,,,,,NASA - Langley Research Center,https://arcgis.asdc.larc.nasa.gov/server/rest/services,Y,Y,OK,Y,
141,1,,,,,NASA - Center for Climate Simulation,https://maps.nccs.nasa.gov/server/rest/services,Y,Y,OK,Y,
142,1,,,,,NASA - Center for Climate Simulation,https://maps.nccs.nasa.gov/mapping/rest/services,Y,Y,OK,Y, Countries. Includes layer for country boundaries with dynamic layer support
143,1,,,,,NASA - Center for Climate Simulation,https://maps.nccs.nasa.gov/image01/rest/services,Y,Y,OK,Y,
144,1,,,,,NASA - Center for Climate Simulation,https://maps.nccs.nasa.gov/image02/rest/services,Y,Y,OK,Y,
145,1,,,,,NASA various layers,https://landsat2.arcgis.com/arcgis/rest/services,Y,Y,OK,Y,
146,1,,,,,NASA various layers,https://landsat3.arcgis.com/arcgis/rest/services,Y,Y,OK,Y,
147,1,,,,,Social Security Administration,https://services6.arcgis.com/zFiipv75rloRP5N4/ArcGIS/rest/services,Y,Y,OK,Y,
148,1,,,,,U.S. Post Office,https://gis.usps.com/arcgis/rest/services,Y,Y,OK,Y,https://gis.usps.com/arcgis/rest/services/EDDM/EDDM_ZIP5/MapServer The following layers display at different zoom levels
149,1,,,,,Civil Air Patrol,https://imageryuploader.geoplatform.gov/arcgis/rest/services,Y,Y,OK,Y,
150,1,,,,,Federal Geographic Data Committee (FGDC),https://inlandwaters.geoplatform.gov/arcgis/rest/services,Y,Y,OK,Y,
151,1,,,,,Federal Geographic Data Committee (FGDC),https://disasters.geoplatform.gov/arcgis/rest/services,Y,Y,OK,Y,
152,2,Alabama,,,01,Alabama Department of Conservation and Natural Resources,https://conservationgis.alabama.gov/adcnrweb/rest/services,Y,Y,OK,Y,
153,2,Alabama,,,01,Alabama Department of Environmental Management,https://gis.adem.alabama.gov/arcgis/rest/services,Y,Y,OK,Y,
154,2,Alabama,,,01,Alabama Department of Transportation,https://aldotgis.dot.state.al.us/pubgis1/rest/services,Y,Y,OK,Y,
155,2,Alabama,,,01,Alabama Department of Transportation,https://aldotgis.dot.state.al.us/pubgis2/rest/services,Y,Y,OK,Y,
156,2,Alabama,,,01,Alabama Department of Transportation,https://aldotgis.dot.state.al.us/pubgis3/rest/services,Y,Y,OK,Y,
157,2,Alabama,,,01,Alabama Forestry Commission,https://gis.forestry.alabama.gov/arcgis/rest/services,Y,Y,OK,Y,
158,2,Alabama,,,01,Alabama Geological Survey and Oil & Gas Board,https://map.gsa.state.al.us/arcgis/rest/services,Y,Y,OK,Y,
159,2,Alabama,,,01,Alabama various layers,https://maps.alabama.gov/algogis/rest/services,Y,Y,OK,Y,
160,2,Alabama,,,01,Alabama various layers,https://alabamaflood.com/arcgis/rest/services,Y,Y,OK,Y,
161,2,Alabama,,,01,Alabama various layers,https://services7.arcgis.com/jF2q3LPxL7PETdYk/arcgis/rest/services,Y,Y,OK,Y, Parcel layers for (all?) counties
162,2,Alabama,Autauga,,01001,,https://www.emapsplus.com/arcgis/rest/services/Alabama/AutaugaAnalyst/MapServer,Y,Y,OK,Y,
163,2,Alabama,Autauga,,01001,,https://www.emapsplus.com/arcgis/rest/services/Alabama/AutaugaEmaps/MapServer,Y,Y,OK,Y,
164,2,Alabama,Baldwin,,01003,,https://web5.kcsgis.com/kcsgis/rest/services/Baldwin,Y,Y,OK,Y,
165,2,Alabama,Barbour,,01005,,https://www.emapsplus.com/arcgis/rest/services/Orthos/ALBarbour2015/ImageServer,Y,Y,OK,Y,
166,2,Alabama,Barbour,,01005,,https://www.emapsplus.com/arcgis/rest/services/Orthos/ALBarbour/ImageServer,Y,Y,OK,Y,
167,2,Alabama,Blount,,01009,,https://web5.kcsgis.com/kcsgis/rest/services/Blount_Imagery,Y,Y,OK,Y,
168,2,Alabama,Bullock,,01011,,https://web5.kcsgis.com/kcsgis/rest/services/Bullock/Public/MapServer,Y,Y,OK,Y,
169,2,Alabama,Cherokee,,01019,,https://web2.kcsgis.com/kcsgis/rest/services/Cherokee,Y,Y,OK,Y,
170,2,Alabama,Cherokee,,01019,,https://web2.kcsgis.com/kcsgis/rest/services/Imagery/AL_Cherokee_Imagery_2021/MapServer,Y,Y,OK,Y,
171,2,Alabama,Coffee,,01031,,https://www.emapsplus.com/arcgis/rest/services/Alabama/ALCoffeeAnalyst/MapServer,Y,Y,OK,Y,
172,2,Alabama,Coffee,,01031,,https://www.emapsplus.com/arcgis/rest/services/Alabama/ALCoffeeEmaps/MapServer,Y,Y,OK,Y,
173,2,Alabama,Coffee,,01031,,https://www.emapsplus.com/arcgis/rest/services/Orthos/ALCoffee/ImageServer,Y,Y,OK,Y,
174,2,Alabama,Colbert,,01033,,https://web2.kcsgis.com/kcsgis/rest/services/Colbert,Y,Y,OK,Y,
175,2,Alabama,Cullman,,01043,,https://web2.kcsgis.com/kcsgis/rest/services/Cullman,Y,Y,OK,Y,
176,2,Alabama,Cullman,,01043,,https://web2.kcsgis.com/kcsgis/rest/services/Imagery/AL_Cullman_Imagery_2017/MapServer,Y,Y,OK,Y,
177,2,Alabama,Dallas,,01047,,https://services7.arcgis.com/deoj2Y8l1tBr7P5X/ArcGIS/rest/services/Dallas_Service/FeatureServer,Y,Y,OK,Y,
178,2,Alabama,Etowah,,01055,,https://web2.kcsgis.com/kcsgis/rest/services/Etowah,Y,Y,OK,Y,
179,2,Alabama,Franklin,,01059,,https://web2.kcsgis.com/kcsgis/rest/services/Franklin,Y,Y,OK,Y,
180,2,Alabama,Franklin,,01059,,https://web5.kcsgis.com/kcsgis/rest/services/Franklin,Y,Y,OK,Y,
181,2,Alabama,Gardendale,,,,https://arcgis4.roktech.net/arcgis/rest/services/GardendaleAL,Y,Y,OK,Y,
182,2,Alabama,Greene,,01063,,https://services7.arcgis.com/deoj2Y8l1tBr7P5X/ArcGIS/rest/services/GreeneAL/FeatureServer,Y,Y,OK,Y,
183,2,Alabama,Hale,,01065,,https://services7.arcgis.com/deoj2Y8l1tBr7P5X/ArcGIS/rest/services/Hale_Service_2019/FeatureServer,Y,Y,OK,N,
184,2,Alabama,Jackson,,01071,,https://web2.kcsgis.com/kcsgis/rest/services/Jackson,Y,Y,OK,Y,
185,2,Alabama,Jefferson,,01073,,https://gis.jccal.org/arcgis/rest/services,Y,Y,OK,Y,
186,2,Alabama,Lauderdale,,01077,,https://web5.kcsgis.com/kcsgis/rest/services/Lauderdale,Y,Y,OK,Y,
187,2,Alabama,Lawrence,,01079,,https://web2.kcsgis.com/kcsgis/rest/services/Imagery/AL_Lawrence_Imagery_2016/MapServer,Y,Y,OK,Y,
188,2,Alabama,Lawrence,,01079,,https://web2.kcsgis.com/kcsgis/rest/services/Imagery/AL_Lawrence_Imagery/MapServer,Y,Y,OK,Y,
189,2,Alabama,Limestone,,01083,,https://web2.kcsgis.com/kcsgis/rest/services/Limestone,Y,Y,OK,Y,
190,2,Alabama,Macon,,01087,,https://www.emapsplus.com/arcgis/rest/services/Orthos/Macon2013_Imagery/ImageServer,Y,Y,OK,Y,
191,2,Alabama,Madison,,01089,,https://maps.madisonal.gov/server/rest/services,Y,Y,OK,Y,
192,2,Alabama,Madison,,01089,,https://www.emapsplus.com/arcgis/rest/services/Alabama/MadisonAnalyst/MapServer,Y,Y,OK,Y,
193,2,Alabama,Madison,,01089,,https://www.emapsplus.com/arcgis/rest/services/Alabama/MadisonAnalystSales/MapServer,Y,Y,OK,Y,
194,2,Alabama,Madison,,01089,,https://www.emapsplus.com/arcgis/rest/services/Alabama/MadisonEmapsDMO/MapServer,Y,Y,OK,Y,
195,2,Alabama,Madison,,01089,,https://www.emapsplus.com/arcgis/rest/services/Orthos/Madison2012_Imagery/ImageServer,Y,Y,OK,Y,
196,2,Alabama,Madison,,01089,,https://www.emapsplus.com/arcgis/rest/services/Orthos/Madison2015_Imagery/ImageServer,Y,Y,OK,Y,
197,2,Alabama,Madison,,01089,,https://www.emapsplus.com/arcgis/rest/services/Orthos/Madison2016_Imagery/ImageServer,Y,Y,OK,Y,
198,2,Alabama,Madison,,01089,,https://www.emapsplus.com/arcgis/rest/services/Orthos/Madison2018_Imagery/ImageServer,Y,Y,OK,Y,
199,2,Alabama,Madison,,01089,,https://www.emapsplus.com/arcgis/rest/services/Orthos/Madison2019_Imagery/ImageServer,Y,Y,OK,Y,
200,2,Alabama,Madison,,01089,,https://web2.kcsgis.com/kcsgis/rest/services/Madison,Y,Y,OK,Y,
201,2,Alabama,Marshall,,01095,,https://web2.kcsgis.com/kcsgis/rest/services/Marshall,Y,Y,OK,Y,
202,2,Alabama,Mobile,,01097,,https://services2.arcgis.com/dJHAcAx6kccDBtM6/arcgis/rest/services,Y,Y,OK,Y,
203,2,Alabama,Montgomery,,01101,,https://gis.montgomeryal.gov/server/rest/services,Y,Y,OK,Y,
204,2,Alabama,Morgan,,01103,,https://web2.kcsgis.com/kcsgis/rest/services/Morgan,Y,Y,OK,Y,
205,2,Alabama,Morgan,,01103,,https://web5.kcsgis.com/kcsgis/rest/services/Morgan/Public/MapServer,Y,Y,OK,Y,
206,2,Alabama,Pike,,01109,,https://arcgis5.roktech.net/arcgis/rest/services/Pike,Y,Y,OK,Y,
207,2,Alabama,St. Clair,,01115,,https://map.stclairco.com/arcgis/rest/services,Y,Y,OK,Y,
208,2,Alabama,Shelby,,01117,,https://maps.shelbyal.com/arcgis/rest/services,Y,Y,OK,Y,
209,2,Alabama,Talladega,,01121,,https://web5.kcsgis.com/kcsgis/rest/services/Talladega,Y,Y,OK,Y,
210,2,Alabama,Talladega,,01121,,https://web5.kcsgis.com/kcsgis/rest/services/Talladega911,Y,Y,OK,Y,
211,2,Alabama,Tuscaloosa,,01125,,https://arcgis.tuscco.com/arcgis5/rest/services,Y,Y,OK,Y,
212,2,Alabama,,Auburn,,,https://gis.auburnalabama.org/public/rest/services,Y,Y,OK,Y,
213,2,Alabama,,Birmingham,,,https://gisweb.birminghamal.gov/arcgis/rest/services,Y,Y,OK,Y,
214,2,Alabama,,Boaz,,,https://web2.kcsgis.com/kcsgis/rest/services/Imagery/AL_BoazCity_Imagery/MapServer,Y,Y,OK,Y,
215,2,Alabama,,Escambia,,,https://arcgis4.roktech.net/arcgis/rest/services/escambia,Y,Y,OK,Y,
216,2,Alabama,,Gadsden,,,https://coggis.cityofgadsden.com/arcgis/rest/services,Y,Y,OK,Y,
217,2,Alabama,,Huntsville,,,https://maps.huntsvilleal.gov/arcgis/rest/services,Y,Y,OK,Y,
218,2,Alabama,,Madison,,,https://madmaps1.madisonal.gov/server/rest/services,Y,Y,OK,Y,
219,2,Alabama,,Mobile,,,https://maps.cityofmobile.org/arcgis/rest/services,Y,N,OK,Y,
220,2,Alabama,,Montgomery,,,https://gis.montgomeryal.gov/server/rest/services,Y,Y,OK,Y,
221,2,Alabama,,Pelham,,,https://maps.pelhamalabama.gov/arcgis/rest/services,Y,Y,OK,Y,
222,2,Alabama,,Tuscaloosa,,,https://services1.arcgis.com/DADyRNMb7tdzKmmq/arcgis/rest/services,Y,Y,OK,Y,
223,2,Alaska,,,02,Alaska Department of Environmental Conservation,https://dec.alaska.gov/arcgis/rest/services,Y,Y,OK,Y,
224,2,Alaska,,,02,Alaska Department of Fish and Game,https://gis.adfg.alaska.gov/mapping/rest/services,Y,Y,OK,Y,
225,2,Alaska,,,02,Alaska Division of Geological & Geophysical Surveys,https://maps.dggs.alaska.gov/arcgis/rest/services,Y,Y,OK,Y,
226,2,Alaska,,,02,Alaska Department of Natural Resources,https://arcgis.dnr.alaska.gov/arcgis/rest/services,Y,Y,OK,Y,
227,2,Alaska,,,02,Alaska Department of Natural Resources,https://dog.dnr.alaska.gov/gis/rest/services,Y,Y,OK,Y,
228,2,Alaska,,,02,Alaska Department of Transportation and Public Facilities,https://services.arcgis.com/r4A0V7UzH9fcLVvv/ArcGIS/rest/services,Y,Y,OK,Y,
229,2,Alaska,,,02,Alaska Department of Commerce - Community - and Economic Development,https://maps.commerce.alaska.gov/server/rest/services,Y,Y,OK,Y,
230,2,Alaska,,,02,NOAA - Alaska,https://alaskafisheries.noaa.gov/arcgis/rest/services,Y,Y,OK,Y,
231,2,Alaska,,,02,Other data,https://elevation.alaska.gov/arcgis/rest/services,Y,Y,OK,Y,
232,2,Alaska,,,02,Other data,https://services1.arcgis.com/7HDiw78fcUiM2BWn/arcgis/rest/services,Y,Y,OK,Y,
233,2,Alaska,Anchorage,,02020,,https://services2.arcgis.com/Ce3DhLRthdwbHlfF/ArcGIS/rest/services,Y,Y,OK,Y,
234,2,Alaska,Kenai Peninsula Borough,,02122,,https://maps.kpb.us/gis/rest/services,Y,N,OK,Y,
235,2,Alaska,Kodiak Island Borough,,02150,,https://services1.arcgis.com/R5BNizttyFKxRSMm/arcgis/rest/services,Y,Y,OK,Y,
236,2,Alaska,Matanuska-Susitna Borough,,02170,,https://maps.matsugov.us/map/rest/services,Y,N,OK,Y,
237,2,Alaska,Matanuska-Susitna Borough,,02170,,https://maps.matsugov.us/imagery/rest/services,Y,N,OK,Y,
238,2,Alaska,,Anchorage,,,https://www.ancgis.com/arcgis/rest/services,Y,N,OK,Y,
239,2,Alaska,,Juneau,,,https://epv.ci.juneau.ak.us/arcgis/rest/services,Y,Y,OK,Y,
240,2,Alaska,,Ketchikan,,,https://services.arcgis.com/4YineAQdtmx0tv46/ArcGIS/rest/services/KetchikanAKFeatures/FeatureServer,Y,Y,OK,Y,
241,2,Arizona,,,04,Arizona - AZGEO - Open Data,https://azgeo.az.gov/arcgis/rest/services,Y,Y,OK,Y,
242,2,Arizona,,,04,Arizona - AZGEO - Open Data,https://services6.arcgis.com/clPWQMwZfdWn4MQZ/arcgis/rest/services,Y,Y,OK,Y,
243,2,Arizona,,,04,Arizona Department of Environmental Quality,https://mygis.azdeq.gov/map/rest/services,Y,Y,OK,Y,
244,2,Arizona,,,04,Arizona Game and Fish Department,https://arcgis.azgfdportal.com/arcgis/rest/services,Y,N,OK,Y,
245,2,Arizona,,,04,Arizona Department of Transportation,https://gis.azdot.gov/gis/rest/services,Y,N,OK,Y,
246,2,Arizona,,,04,Arizona Department of Water Resources,https://services.arcgis.com/C34zQ7veRS0V1t04/arcgis/rest/services,Y,Y,OK,Y,
247,2,Arizona,,,04,Arizona Land Department,http://gis.azland.gov/arcgis/rest/services,N,Y,,Y,
248,2,Arizona,,,04,Various layers,https://services6.arcgis.com/l7uujk4hHifqabRB/ArcGIS/rest/services,Y,Y,OK,Y,
249,2,Arizona,,,,Maricopa Association of Governments,https://geo.azmag.gov/arcgis/rest/services,Y,Y,OK,Y,
250,2,Arizona,Cochise,,04003,,https://services6.arcgis.com/Yxem0VOcqSy8T6TE/arcgis/rest/services,Y,Y,OK,Y,
251,2,Arizona,Coconino,,04005,,https://webmaps.coconino.az.gov/arcgis/rest/services,Y,Y,OK,Y,
252,2,Arizona,Gila,,04007,,https://gis.gilacountyaz.gov/arcgis/rest/services,Y,Y,OK,Y,
253,2,Arizona,Greenlee,,04011,,https://gis.newedgeservices.com/arcgis/rest/services/Greenlee,Y,Y,OK,Y,
254,2,Arizona,La Paz,,04012,,https://gis.lapazcountyaz.org/server/rest/services,Y,Y,X,Y,
255,2,Arizona,Maricopa,,04013,,https://gis.mcassessor.maricopa.gov/arcgis/rest/services,Y,Y,OK,Y,
256,2,Arizona,Maricopa,,04013,,https://gispreview.maricopa.gov/arcgis/rest/services,Y,N,OK,Y,
257,2,Arizona,Maricopa,,04013,,https://gis.maricopa.gov/arcgis/rest/services,Y,N,OK,Y,
258,2,Arizona,Maricopa,,04013,,https://gis.maricopa.gov/dot/rest/services,Y,N,OK,Y,
259,2,Arizona,Mohave,,04015,,https://mcgis.mohave.gov/arcgis/rest/services,Y,Y,OK,Y,
260,2,Arizona,Pima,,04019,,https://pimamaps.pima.gov/arcgis/rest/services,Y,Y,OK,Y,
261,2,Arizona,Pinal,,04021,,https://gismaps.pinalcountyaz.gov/webapps/rest/services,Y,Y,OK,Y,
262,2,Arizona,Santa Cruz,,04023,,https://mapservices.santacruzcountyaz.gov/wagis01/rest/services,Y,Y,OK,Y,
263,2,Arizona,Yavapai,,04025,,https://services1.arcgis.com/BajuNXbtZNiBKFkx/arcgis/rest/services,Y,Y,OK,Y,
264,2,Arizona,Yuma,,04027,,https://arcgis.yumacountyaz.gov/webgis/rest/services,Y,Y,OK,Y,
265,2,Arizona,,Mesa,,,https://services2.arcgis.com/1gVyYKfYgW5Nxb1V/arcgis/rest/services,Y,Y,OK,Y,
266,2,Arizona,,Phoenix,,,https://maps.phoenix.gov/pub/rest/services,Y,Y,OK,Y,
267,2,Arizona,,Scottsdale,,,https://maps.scottsdaleaz.gov/arcgis/rest/services,Y,N,OK,Y,
268,2,Arizona,,Tempe,,,https://gis.tempe.gov/arcgis/rest/services,Y,Y,OK,Y,
269,2,Arizona,,Tucson,,,https://maps2.tucsonaz.gov/arcgis/rest/services,Y,Y,OK,Y,
270,2,Arkansas,,,05,Arkansas GIS Office,https://gis.arkansas.gov/arcgis/rest/services,Y,Y,OK,Y,
271,2,Arkansas,,,05,Arkansas GIS Office,https://geostor.arkansas.gov/ArcGIS/rest/services,Y,Y,OK,Y,
272,2,Arkansas,,,05,Arkansas GIS Office,http://www.geostor.arkansas.gov/ArcGIS/rest/services,Y,Y,X,Y,https has
273,2,Arkansas,,,05,Arkansas GIS Office,http://www.geostor.arkansas.gov/arcgis/rest/services,Y,Y,X,Y,https has
274,2,Arkansas,,,05,Arkansas Game and Fish Commission,https://gisec2.agfc.com/arcgis/rest/services,Y,Y,OK,Y,
275,2,Arkansas,,,05,Arkansas Department of Transportation,https://arc.arkansashighways.com/arcgis/rest/services,Y,Y,OK,Y,
276,2,Arkansas,,,05,Arkansas Department of Environmental Quality,https://gis.adeq.state.ar.us/arcgis/rest/services,Y,Y,OK,Y,
277,2,Arkansas,,,05,University of Arkansas at Little Rock - GIS Applications Laboratory,https://argis.ualr.edu/arcgis/rest/services,Y,Y,OK,Y,
278,2,Arkansas,,,05,Arkansas various layers,https://maps.meshekgis.com/arcgis/rest/services/public,Y,Y,OK,Y,lots of flood related data
279,2,Arkansas,,,05,This layer might be statewide parcels,https://www.efsedge.com/arcgis/rest/services/Apprentice/Statewide/MapServer,Y,Y,OK,Y,
280,2,Arkansas,,,,Northwest Arkansas Regional Planning Commission,https://gis.nwarpc.org/arcgis/rest/services,Y,Y,OK,Y,
281,2,Arkansas,,,,Western Arkansas Planning & Development District,https://www.wagis.org/arcgis/rest/services,Y,Y,OK,Y,
282,2,Arkansas,Ashley,,05003,,https://www.efsedge.com/arcgis/rest/services/Ashley_County,Y,Y,OK,Y,
283,2,Arkansas,Benton,,05007,,https://gis.bentoncountyar.gov/arcgis/rest/services,Y,N,OK,Y,
284,2,Arkansas,Benton,,05007,,https://gis.nwarpc.org/arcgis/rest/services/Benton_County,Y,Y,OK,Y,
285,2,Arkansas,Benton,,05007,,https://gis.nwarpc.org/arcgis/rest/services/Imagery/Imagery_2020_BentonCounty/MapServer,Y,Y,OK,Y,
286,2,Arkansas,Benton,,05007,,https://gis.nwarpc.org/arcgis/rest/services/Base_Maps/NWARPC_Basemap/MapServer/18,Y,Y,OK,Y,
287,2,Arkansas,Bradley,,05011,,https://www.efsedge.com/arcgis/rest/services/Bradley_County,Y,Y,OK,Y,
288,2,Arkansas,Calhoun,,05013,,https://www.efsedge.com/arcgis/rest/services/Calhoun_County,Y,Y,OK,Y,
289,2,Arkansas,Chicot,,05017,,https://www.efsedge.com/arcgis/rest/services/Chicot_County,Y,Y,OK,Y,
290,2,Arkansas,Columbia,,05027,,https://www.efsedge.com/arcgis/rest/services/Columbia_County,Y,Y,OK,Y,
291,2,Arkansas,Conway,,05029,,https://gis.conwayarkansas.gov/arcgis/rest/services,Y,Y,OK,Y,
292,2,Arkansas,Craighead,,05031,,https://www.efsedge.com/arcgis/rest/services/Craighead,Y,Y,OK,Y,
293,2,Arkansas,Craighead,,05031,,https://web2.mobile311.com/arcgis/rest/services/Arkansas/CraigheadCountyAR/MapServer,Y,Y,OK,Y,
294,2,Arkansas,Crittenden,,05035,,https://www.efsedge.com/arcgis/rest/services/Crittenden_County,Y,Y,OK,Y,
295,2,Arkansas,Dallas,,05039,,https://www.efsedge.com/arcgis/rest/services/Dallas_County,Y,Y,OK,Y,
296,2,Arkansas,Desha,,05041,,https://www.efsedge.com/arcgis/rest/services/Desha_County,Y,Y,OK,Y,
297,2,Arkansas,Drew,,05043,,https://www.efsedge.com/arcgis/rest/services/Drew_County,Y,Y,OK,Y,
298,2,Arkansas,Faulkner,,05045,,https://www.efsedge.com/arcgis/rest/services/Faulkner_County,Y,Y,OK,Y,
299,2,Arkansas,Grant,,05053,,https://www.efsedge.com/arcgis/rest/services/Grant,Y,Y,OK,Y,
300,2,Arkansas,Howard,,05061,,https://www.efsedge.com/arcgis/rest/services/Howard_County,Y,Y,OK,Y,
301,2,Arkansas,Johnson,,05071,,https://www.efsedge.com/arcgis/rest/services/Johnson_County,Y,Y,OK,Y,
302,2,Arkansas,Lee,,05077,,https://www.efsedge.com/arcgis/rest/services/Lee_County,Y,Y,OK,Y,
303,2,Arkansas,Logan,,05083,,https://www.efsedge.com/arcgis/rest/services/Logan_County,Y,Y,OK,Y,
304,2,Arkansas,Ouachita,,05103,,https://www.efsedge.com/arcgis/rest/services/Ouachita_County,Y,Y,OK,Y,
305,2,Arkansas,Pike,,05109,,https://www.efsedge.com/arcgis/rest/services/Pike_County,Y,Y,OK,Y,
306,2,Arkansas,Poinsett,,05111,,https://www.efsedge.com/arcgis/rest/services/Poinsett_County,Y,Y,OK,Y,
307,2,Arkansas,Pope,,05115,,https://www.efsedge.com/arcgis/rest/services/Pope_County,Y,Y,OK,Y,
308,2,Arkansas,Pulaski,,05119,,https://www.pagis.org/arcgis/rest/services,Y,Y,OK,Y,
309,2,Arkansas,Saline,,05125,,https://www.efsedge.com/arcgis/rest/services/Saline_County,Y,Y,OK,Y,
310,2,Arkansas,St. Francis,,05123,,https://www.efsedge.com/arcgis/rest/services/StFrancis_County,Y,Y,OK,Y,
311,2,Arkansas,Stone,,05137,,https://www.efsedge.com/arcgis/rest/services/Stone_County,Y,Y,OK,Y,
312,2,Arkansas,Union,,05139,,https://www.efsedge.com/arcgis/rest/services/Union_County,Y,Y,OK,Y,
313,2,Arkansas,Washington,,05143,,https://arcserv.co.washington.ar.us/server/rest/services,Y,Y,OK,Y,
314,2,Arkansas,Washington,,05143,,https://gis.nwarpc.org/arcgis/rest/services/Imagery/Imagery_2021_WashingtonCounty/MapServer,Y,Y,OK,Y,
315,2,Arkansas,Washington,,05143,,https://gis.nwarpc.org/arcgis/rest/services/Base_Maps/NWARPC_Basemap/MapServer/8,Y,Y,OK,Y,
316,2,Arkansas,Yell,,05149,,https://www.efsedge.com/arcgis/rest/services/Yell_County,Y,Y,OK,Y,
317,2,Arkansas,,Altus,,,https://maps.meshekgis.com/arcgis/rest/services/City_of_Altus,Y,Y,OK,Y,
318,2,Arkansas,,Bella Vista,,,https://gis.nwarpc.org/arcgis/rest/services/Bella_Vista,Y,Y,OK,Y,
319,2,Arkansas,,Benton,,,https://www.efsedge.com/arcgis/rest/services/City_of_Benton,Y,Y,OK,Y,
320,2,Arkansas,,Bentonville,,,https://gis.bentonvillear.com/arcgis/rest/services,Y,Y,OK,Y,
321,2,Arkansas,,Bryant,,,https://www.efsedge.com/arcgis/rest/services/BryantCity,Y,Y,OK,Y,
322,2,Arkansas,,Cave Springs,,,https://gis.nwarpc.org/arcgis/rest/services/Cave_Springs,Y,Y,OK,Y,
323,2,Arkansas,,Decatur,,,https://gis.nwarpc.org/arcgis/rest/services/Decatur,Y,Y,OK,Y,
324,2,Arkansas,,Farmington,,,https://gis.nwarpc.org/arcgis/rest/services/Farmington,Y,Y,OK,Y,
325,2,Arkansas,,Fayetteville,,,https://maps.fayetteville-ar.gov/server/rest/services,Y,Y,OK,Y,
326,2,Arkansas,,Fort Smith,,,https://gisapps.fortsmithar.gov/arcgis/rest/services,Y,N,OK,Y,
327,2,Arkansas,,Garfield,,,https://gis.nwarpc.org/arcgis/rest/services/Garfield,Y,Y,OK,Y,
328,2,Arkansas,,Gentry,,,https://gis.nwarpc.org/arcgis/rest/services/Gentry,Y,Y,OK,Y,
329,2,Arkansas,,Goshen,,,https://gis.nwarpc.org/arcgis/rest/services/Goshen,Y,Y,OK,Y,
330,2,Arkansas,,Gravette,,,https://gis.nwarpc.org/arcgis/rest/services/Gravette,Y,Y,OK,Y,
331,2,Arkansas,,Greenland,,,https://gis.nwarpc.org/arcgis/rest/services/Greenland,Y,Y,OK,Y,
332,2,Arkansas,,Haskell,,,https://www.efsedge.com/arcgis/rest/services/City_of_Haskell,Y,Y,OK,Y,
333,2,Arkansas,,Highfill,,,https://gis.nwarpc.org/arcgis/rest/services/Highfill,Y,Y,OK,Y,
334,2,Arkansas,,Hot Springs,,,https://maps.cityhs.net/arcgiswebadaptor/rest/services,Y,Y,OK,Y,
335,2,Arkansas,,Hot Springs Village,,,https://www.efsedge.com/arcgis/rest/services/HSV,Y,Y,OK,Y,
336,2,Arkansas,,Lawrence,,,https://gis2.lawrenceks.org/arcgis/rest/services,Y,Y,OK,Y,
337,2,Arkansas,,Lenexa,,,https://gis.lenexa.com/arcgis/rest/services,Y,Y,OK,Y,
338,2,Arkansas,,Lincoln,,,https://gis.nwarpc.org/arcgis/rest/services/Lincoln,Y,Y,OK,Y,
339,2,Arkansas,,Little Rock,,,https://maps.littlerock.gov/server/rest/services,Y,Y,OK,Y,
340,2,Arkansas,,Lonoke,,,https://www.efsedge.com/arcgis/rest/services/Lonoke,Y,Y,OK,Y,
341,2,Arkansas,,Lowell,,,https://gis.nwarpc.org/arcgis/rest/services/Lowell,Y,Y,OK,Y,
342,2,Arkansas,,Moore,,,https://maps.meshekgis.com/arcgis/rest/services/City_of_Moore,Y,Y,OK,Y,
343,2,Arkansas,,Pea Ridge,,,https://gis.nwarpc.org/arcgis/rest/services/Pea_Ridge,Y,Y,OK,Y,
344,2,Arkansas,,Rogers,,,https://gis.rogersar.gov/gis/rest/services,Y,Y,OK,Y,
345,2,Arkansas,,Springdale,,,https://gis2.springdalear.gov/arcgis/rest/services,Y,Y,OK,Y,
346,2,Arkansas,,Springdale,,,https://web2.mobile311.com/arcgis/rest/services/Arkansas/SpringdaleAR/MapServer,Y,Y,OK,Y,
347,2,Arkansas,,Stuttgart,,,https://web2.mobile311.com/arcgis/rest/services/Arkansas/StuttgartAR/MapServer,Y,Y,OK,N,
348,2,Arkansas,,Sulphur Springs,,,https://gis.nwarpc.org/arcgis/rest/services/Sulphur_Springs,Y,Y,OK,Y,
349,2,Arkansas,,Tontitown,,,https://gis.nwarpc.org/arcgis/rest/services/Tontitown,Y,Y,OK,Y,
350,2,Arkansas,,West Fork,,,https://gis.nwarpc.org/arcgis/rest/services/West_Fork,Y,Y,OK,Y,
351,2,California,,,06,California Department of Technology,https://services3.arcgis.com/uknczv4rpevve42E/ArcGIS/rest/services,Y,Y,OK,Y, Evacuations: .../CA_EVACUATIONS_PROD/FeatureServer/0
352,2,California,,,06,California Natural Resources Agency,https://gis.cnra.ca.gov/arcgis/rest/services,Y,Y,OK,Y,
353,2,California,,,06,California Natural Resources Agency,https://devegis.fire.ca.gov/arcgis/rest/services,Y,Y,OK,Y,
354,2,California,,,06,California Department of Water Resources,https://gis.water.ca.gov/arcgis/rest/services,Y,Y,OK,Y,
355,2,California,,,06,California Water Resources Control Board,https://gispublic.waterboards.ca.gov/arcgis/rest/services,Y,Y,OK,Y,
356,2,California,,,06,California Flood Emergency Response Information Exchange (FERIX),https://ferix.water.ca.gov/arcgis/rest/services,Y,Y,OK,Y,
357,2,California,,,06,California Statewide Groundwater Elevation Monitoring (CASGEM),https://casgemgis.water.ca.gov/arcgis/rest/services,Y,Y,OK,Y,
358,2,California,,,06,California Department of Fish and Wildlife,https://map.dfg.ca.gov/arcgis/rest/services,Y,Y,OK,Y,
359,2,California,,,06,California Department of Transportation,https://gisdata.dot.ca.gov/arcgis/rest/services,Y,Y,OK,Y,
360,2,California,,,06,California Department of Transportation,https://odpsvcs.dot.ca.gov/arcgis/rest/services,Y,Y,OK,Y,
361,2,California,,,06,California Energy Commission,https://services3.arcgis.com/bWPjFyq029ChCGur/ArcGIS/rest/services,Y,Y,OK,Y,
362,2,California,,,06,CalFire,https://egis.fire.ca.gov/arcgis/rest/services,Y,Y,OK,Y,
363,2,California,,,06,UC Davis Center for Regional Change,https://interact.regionalchange.ucdavis.edu/arcgis/rest/services,Y,Y,OK,Y,
364,2,California,,,06,Fresno State University,http://spatial.lib.csufresno.edu/arcgis/rest/services,N,Y,,Y,
365,2,California,,,06,California various layers,https://atlas.resources.ca.gov/arcgis/rest/services,Y,Y,OK,Y,
366,2,California,,,06,California various layers,https://services.gis.ca.gov/arcgis/rest/services,Y,Y,OK,Y, Transportation/Bottleneck
367,2,California,,,06,California various layers,https://services1.arcgis.com/jUJYIo9tSA7EHvfZ/ArcGIS/rest/services,Y,Y,OK,Y,
368,2,California,,,06,California various layers,https://services1.arcgis.com/PCHfdHz4GlDNAhBb/arcgis/rest/services,Y,Y,OK,Y,
369,2,California,,,06,California various layers,https://services1.arcgis.com/sTaVXkn06Nqew9yU/arcgis/rest/services,Y,Y,OK,Y,
370,2,California,,,06,California various layers,https://services3.arcgis.com/i2dkYWmb4wHvYPda/ArcGIS/rest/services,Y,Y,OK,Y,
371,2,California,,,06,California various layers,https://services6.arcgis.com/bxsVBCAOuftUsVxD/arcgis/rest/services,Y,Y,OK,Y,
372,2,California,,,06,California various layers,https://services7.arcgis.com/1hXKyJAQgsvzDCOs/arcgis/rest/services,Y,Y,OK,Y,
373,2,California,,,06,California various layers,https://services8.arcgis.com/s7n9cRiugyMCsR0U/ArcGIS/rest/services,Y,Y,OK,Y,
374,2,California,,,06,California various layers,https://conservation2.arcgisonline.com/arcgis/rest/services,Y,Y,X,Y,
375,2,California,,,06,California various layers,https://services.arcgis.com/BLN4oKB0N1YSgvY8/ArcGIS/rest/services,Y,Y,OK,Y, Lots of good layers. Wildland fire layers.
376,2,California,,,,Southern California Association of Governments,https://maps.scag.ca.gov/scaggis/rest/services,Y,Y,OK,Y,
377,2,California,,,,Metropolitan Transportation Commission (Bay area),https://services3.arcgis.com/i2dkYWmb4wHvYPda/arcgis/rest/services,Y,Y,OK,Y,
378,2,California,,,,San Diego Association of Governments,https://gissd.sandag.org/rdw/rest/services,Y,Y,OK,Y,
379,2,California,Alameda,,06001,,https://gis.acgov.org/arcgis/rest/services,Y,Y,OK,Y,
380,2,California,Butte,,06007,,http://gis.buttecounty.net/arcgis/rest/services,N,Y,,Y,
381,2,California,Calaveras,,06009,,https://gisportal.co.calaveras.ca.us/arcserver/rest/services,Y,Y,OK,Y,
382,2,California,Contra Costa,,06013,,https://ccmap.cccounty.us/arcgis/rest/services/INTERNET/BASE_DATA_WEB/MapServer,Y,Y,OK,Y,
383,2,California,Del Norte,,06015,,https://services3.arcgis.com/IkUDY1vRIUWiVvcz/arcgis/rest/services,Y,Y,OK,Y,
384,2,California,El Dorado,,06017,,https://see-eldorado.edcgov.us/arcgis/rest/services,Y,Y,OK,Y,
385,2,California,Fortana,,,,https://services1.arcgis.com/XhE4Nx2bBPScQrhF/ArcGIS/rest/services,Y,Y,OK,Y,
386,2,California,Fresno,,06019,,https://gisprod10.co.fresno.ca.us/server/rest/services,Y,N,OK,Y,
387,2,California,Glenn,,06021,,https://services3.arcgis.com/GUHJKBhKMcD5JjTe/arcgis/rest/services,Y,Y,OK,Y,
388,2,California,Humboldt,,06023,,https://webgis.co.humboldt.ca.us/arcgis/rest/services,Y,N,OK,Y,
389,2,California,Kern,,06029,,https://maps.co.kern.ca.us/arcgis/rest/services,Y,Y,OK,Y,
390,2,California,Kern,,06029,,https://phweb.co.kern.ca.us/arcgis/rest/services,Y,Y,OK,Y,
391,2,California,Kings,,06031,,https://services3.arcgis.com/24gLq1DBBzDfd0cZ/arcgis/rest/services,Y,Y,OK,Y,
392,2,California,Lake,,06033,,https://gispublic.co.lake.ca.us/server/rest/services,Y,Y,OK,Y,
393,2,California,Los Angeles,,06037,,https://arcgis.gis.lacounty.gov/arcgis/rest/services,Y,Y,OK,Y,
394,2,California,Los Angeles,,06037,,https://public.gis.lacounty.gov/public/rest/services,Y,Y,OK,Y,
395,2,California,Los Angeles,,06037,,https://assessor.gis.lacounty.gov/assessor/rest/services,Y,Y,OK,Y,
396,2,California,Los Angeles,,06037,,https://dpw.gis.lacounty.gov/dpw/rest/services,Y,Y,OK,Y,
397,2,California,Los Angeles,,06037,,https://rpgis.isd.lacounty.gov/arcgis/rest/services,Y,Y,OK,Y,
398,2,California,Los Angeles,,06037,,https://services1.arcgis.com/tp9wqSVX1AitKgjd/arcgis/rest/services,Y,Y,OK,Y,
399,2,California,Los Angeles,,06037,,https://services.arcgis.com/RmCCgQtiZLDCtblq/arcgis/rest/services,Y,Y,OK,Y,
400,2,California,Los Angeles,,06037,,https://cache.gis.lacounty.gov/cache/rest/services,Y,Y,OK,Y,
401,2,California,Marin,,06041,,https://gis.marinpublic.com/arcgis/rest/services,Y,Y,OK,Y,
402,2,California,Marin,,06041,,https://gis.marinpublic.com/ArcGIS/rest/services,Y,Y,OK,Y,
403,2,California,Mariposa,,06043,,https://services2.arcgis.com/wEula7SYiezXcdRv/ArcGIS/rest/services,Y,Y,OK,Y,
404,2,California,Merced,,06047,,https://map.co.merced.ca.us/arcgis/rest/services,Y,Y,OK,Y,
405,2,California,Merced,,06047,,https://services6.arcgis.com/LYh3hRvKq5ASgAVM/arcgis/rest/services,Y,Y,OK,Y,
406,2,California,Mono,,06051,,https://gis.mono.ca.gov/webgis/rest/services,Y,Y,OK,Y,
407,2,California,Monterey,,06053,,https://maps.co.monterey.ca.us/server/rest/services,Y,Y,OK,Y,
408,2,California,Napa,,06055,,https://gis.napa.ca.gov/arcgis/rest/services,Y,Y,OK,Y,
409,2,California,Nevada,,06057,,https://gis.nevcounty.net/arcgis/rest/services,Y,Y,OK,Y,
410,2,California,Orange,,06059,,https://maps.ocgov.net/arcgis/rest/services,Y,Y,OK,Y,
411,2,California,Orange,,06059,,https://www.ocgis.com/arcpub/rest/services,Y,Y,OK,Y,
412,2,California,Placer,,06061,,https://maps.placer.ca.gov/arcgis/rest/services,Y,Y,OK,Y,
413,2,California,Riverside,,06065,,https://gis.countyofriverside.us/arcgis_public/rest/services,Y,Y,OK,Y,
414,2,California,Riverside,,06065,,https://content.rcflood.org/arcgis/rest/services,Y,Y,OK,Y,
415,2,California,Sacramento,,06067,,https://mapservices.gis.saccounty.net/arcgis/rest/services,Y,Y,OK,Y,
416,2,California,Sacramento,,06067,,https://services1.arcgis.com/5NARefyPVtAeuJPU/arcgis/rest/services,Y,Y,OK,Y,
417,2,California,San Benito,,06069,,https://gis.cosb.us/arcgis/rest/services,Y,Y,OK,Y,
418,2,California,San Bernardino,,06071,,https://services.arcgis.com/aA3snZwJfFkVyDuP/arcgis/rest/services,Y,Y,OK,Y,
419,2,California,San Diego,,06073,,https://gis.sandag.org/sdgis/rest/services,Y,Y,OK,Y,
420,2,California,San Francisco,,06075,,https://maps.sfmta.com/arcgis/rest/services,Y,Y,OK,Y,
421,2,California,San Francisco,,06075,,https://sfplanninggis.org/arcgiswa/rest/services,Y,Y,OK,Y,
422,2,California,San Francisco,,06075,,https://bsmnt.sfdpw.org/ArcGIS/rest/services,Y,Y,OK,Y,
423,2,California,San Francisco,,06075,,https://atlas.sfbg.org/sfbgis/rest/services,Y,Y,OK,Y,Botanical Garden
424,2,California,San Joaquin,,06077,,https://sjmap.org/ArcGIS/rest/services,Y,Y,OK,Y,
425,2,California,San Luis Obispo,,06079,,https://gis.slocounty.ca.gov/arcgis/rest/services,Y,Y,OK,Y,
426,2,California,San Mateo,,06081,,https://gis.smcgov.org/image/rest/services,Y,Y,OK,Y,
427,2,California,Santa Clara,,06085,,https://www.sccgov.org/parksags/rest/services,Y,Y,OK,Y,
428,2,California,Santa Clara,,06085,,https://webgis.sccgov.org/gis/rest/services,Y,Y,OK,Y,
429,2,California,Santa Cruz,,06087,,https://gis.santacruzcounty.us/arcserver/rest/services,Y,Y,OK,Y,
430,2,California,Shasta,,06089,,https://maps.co.shasta.ca.us/arcgis/rest/services,Y,Y,OK,Y,
431,2,California,Solano,,06095,,https://solanocountygis.com/server/rest/services,Y,Y,OK,Y,
432,2,California,Sonoma,,06097,,https://gis-webpub.sonoma-county.org/arcgis/rest/services,Y,Y,OK,Y,
433,2,California,Stanislaus,,06099,,https://gis2.stancounty.com/arcgis/rest/services,Y,Y,OK,Y,
434,2,California,Sutter,,06101,,https://services6.arcgis.com/rHMUPKWdiOvdGXkw/ArcGIS/rest/services,Y,Y,OK,Y,
435,2,California,Tulare,,06107,,https://ihost.tularecounty.ca.gov/ihost/rest/services,Y,Y,OK,Y,
436,2,California,Tuolumne,,06109,,https://services3.arcgis.com/afQpMaliVrwHS7Ud/ArcGIS/rest/services,Y,Y,OK,Y,
437,2,California,Ventura,,06111,,https://maps.ventura.org/arcgis/rest/services,Y,Y,OK,Y,
438,2,California,Yolo,,06113,,https://gis.yolocounty.org/ext/rest/services,Y,Y,OK,Y,
439,2,California,,Anaheim,,,https://gis.anaheim.net/server/rest/services,Y,Y,OK,Y,
440,2,California,,Bakersfield,,,https://gis.bakersfieldcity.us/webmaps/rest/services,Y,N,OK,Y,
441,2,California,,Chula Vista,,,https://gisweb.chulavistaca.gov/arcgis/rest/services,Y,N,OK,Y,
442,2,California,,Clovis,,,https://gis.ci.clovis.ca.us/cloviswebgis/rest/services,Y,Y,OK,Y,
443,2,California,,Concord,,,https://web2.mobile311.com/arcgis/rest/services/California/ConcordCA/MapServer,Y,Y,OK,Y,
444,2,California,,Corona,,,https://services3.arcgis.com/4pohxs3ZXJsQTQod/ArcGIS/rest/services,Y,Y,OK,Y,
445,2,California,,Costa Mesa,,,https://apps.costamesaca.gov/arcgis/rest/services,Y,Y,OK,Y,
446,2,California,,Cupertino,,,https://gis.cupertino.org/cupgis/rest/services,Y,Y,OK,Y,
447,2,California,,Escondido,,,https://services2.arcgis.com/eJcVbjTyyZIzZ5Ye/arcgis/rest/services,Y,Y,OK,Y,
448,2,California,,Fresno,,,https://gis4u.fresno.gov/arcgis/rest/services,Y,Y,OK,Y,
449,2,California,,Hayward,,,https://maps.hayward-ca.gov/arcgis/rest/services,Y,Y,OK,Y,
450,2,California,,Indian Wells,,,https://web2.mobile311.com/arcgis/rest/services/California/IndianWells/MapServer,Y,Y,OK,Y,
451,2,California,,Inglewood,,,https://gisweb.cityofinglewood.org/arcgis/rest/services,Y,Y,OK,Y,
452,2,California,,Irvine,,,https://gis.cityofirvine.org/arcgis/rest/services,Y,Y,OK,Y,
453,2,California,,Livermore,,,https://gisweb.cityoflivermore.net/arcgis/rest/services,Y,Y,OK,Y,
454,2,California,,Long Beach,,,https://tsdgis.longbeach.gov/webgis/rest/services,Y,Y,OK,Y,
455,2,California,,Los Altos,,,https://web2.mobile311.com/arcgis/rest/services/California/LosAltosSchoolDistrict/MapServer,Y,Y,OK,Y,
456,2,California,,Los Angeles,,,https://maps.lacity.org/arcgis/rest/services,Y,Y,OK,Y,
457,2,California,,Los Angeles,,,https://maps.lacity.org/lahub/rest/services,Y,Y,OK,Y,
458,2,California,,Los Angeles,,,http://myladot.lacity.org/arcgis/rest/services,N,Y,,Y,
459,2,California,,Los Angeles,,,http://zimas.lacity.org/arcgis/rest/services,N,Y,,Y,
460,2,California,,Los Angeles,,,https://services5.arcgis.com/7nsPwEMP38bSkCjy/arcgis/rest/services,Y,Y,OK,Y,
461,2,California,,Los Angeles,,,https://services5.arcgis.com/VAb1qw880ksyBtIL/arcgis/rest/services,Y,Y,OK,Y,
462,2,California,,Loyalton,,,https://gisdata.farrwestengineering.com/arcgis/rest/services/City_of_Loyalton_CA,Y,Y,OK,Y,
463,2,California,,Manteca,,,https://gisweb.ci.manteca.ca.us/arcgis/rest/services,Y,Y,OK,Y,
464,2,California,,Menlo Park,,,https://cmpweb2.menlopark.org/arcgis/rest/services,Y,Y,X,Y,
465,2,California,,Menlo Park,,,https://gisweb.menlopark.org/arcgis/rest/services,Y,Y,OK,Y,
466,2,California,,Monterey,,,http://gisags8.ci.monterey.ca.us/mry/rest/services,N,Y,,Y,
467,2,California,,Mountain View,,,https://maps.mountainview.gov/arcgis/rest/services,Y,Y,OK,Y,
468,2,California,,Napa,,,https://gismaps.cityofnapa.org/arcgis/rest/services,Y,Y,OK,Y,
469,2,California,,Newport Beach,,,https://nbgis.newportbeachca.gov/arcgis/rest/services,Y,Y,OK,Y,
470,2,California,,Oakland,,,https://gisapps1.mapoakland.com/oakgis/rest/services,Y,Y,OK,Y,
471,2,California,,Pasadena,,,https://services2.arcgis.com/zNjnZafDYCAJAbN0/arcgis/rest/services,Y,Y,OK,Y,
472,2,California,,Paso Robles,,,https://maps.prcity.com/server/rest/services,Y,Y,OK,Y,
473,2,California,,Pomona,,,https://gismaps.ci.pomona.ca.us/arcgis/rest/services,Y,Y,OK,Y,
474,2,California,,Rancho Cordova,,,https://maps.cityofranchocordova.org/externalarcgis/rest/services,Y,Y,OK,Y,
475,2,California,,Redding,,,https://services2.arcgis.com/3cLBYFivUvlzVu0H/arcgis/rest/services,Y,Y,OK,Y,
476,2,California,,Redlands,,,https://gis.cityofredlands.org/arcgis/rest/services,Y,Y,OK,Y,
477,2,California,,Richmond,,,http://geoweb02.ci.richmond.ca.us/arcgis/rest/services,N,Y,,Y,
478,2,California,,Roseville,,,https://ags.roseville.ca.us/arcgis/rest/services,Y,Y,OK,Y,
479,2,California,,Salinas,,,https://giswebservices.ci.salinas.ca.us/arcgis/rest/services,Y,Y,OK,Y,
480,2,California,,San Bruno,,,http://etrakit.sanbrunocable.com/arcgis/rest/services,N,Y,,Y,
481,2,California,,San Diego,,,https://services.arcgis.com/oxInpRhVIBxlo4pO/arcgis/rest/services,Y,Y,OK,Y,
482,2,California,,San Jose,,,https://geo.sanjoseca.gov/server/rest/services,Y,Y,OK,Y,
483,2,California,,San Leandro,,,https://web2.mobile311.com/arcgis/rest/services/California/CityOfSanLeandroM311/MapServer,Y,Y,OK,Y,
484,2,California,,San Leandro,,,https://web2.mobile311.com/arcgis/rest/services/California/CityOfSanLeandro/MapServer,Y,Y,OK,Y,
485,2,California,,Santa Clara,,,https://map.santaclaraca.gov/maps/rest/services,Y,Y,OK,Y,
486,2,California,,Santa Clarita,,,https://maps.santa-clarita.com/arcgis/rest/services,Y,N,OK,Y,
487,2,California,,Santa Monica,,,https://gis.santamonica.gov/server/rest/services,Y,Y,OK,Y,
488,2,California,,Santa Rosa,,,https://ags2maps.srcity.org/arcgis/rest/services,Y,Y,OK,Y,
489,2,California,,Stockton,,,https://www.stocktonca.gov/arcgis/rest/services,Y,Y,OK,Y,
490,2,California,,Temecula,,,https://gis.temeculaca.gov/arcgis/rest/services,Y,N,OK,Y,
491,2,California,,Tracy,,,https://maps.cityoftracy.org/server/rest/services,Y,Y,OK,Y,
492,2,California,,Sacramento,,,https://services5.arcgis.com/54falWtcpty3V47Z/ArcGIS/rest/services,Y,Y,OK,Y,
493,2,California,,San Diego,,,https://gissd.sandag.org/rdw/rest/services,Y,Y,OK,Y,
494,2,California,,San Jose,,,https://geo.sanjoseca.gov/server/rest/services,Y,Y,OK,Y,
495,2,California,,San Marcos,,,https://maps2.san-marcos.net/smgispub/rest/services,Y,Y,OK,Y,
496,2,California,,Santa Barbara,,,https://maps.santabarbaraca.gov/arcgis/rest/services,Y,Y,OK,Y,
497,2,California,,Santa Cruz,,,https://vw8.cityofsantacruz.com/server/rest/services,Y,Y,OK,Y,
498,2,California,,Santa Monica,,,https://gis.santamonica.gov/server/rest/services,Y,Y,OK,Y,
499,2,California,,South Lake Tahoe,,,https://services2.arcgis.com/gWRYLIS16mKUskSO/arcgis/rest/services,Y,Y,OK,Y,
500,2,California,,Stockton,,,http://www.stocktongov.com/arcgis/rest/services,N,Y,,Y,
501,2,California,,Vacaville,,,https://covgis.cityofvacaville.com/externalgis/rest/services,Y,Y,OK,Y,
502,2,California,,Ventura,,,https://map.cityofventura.net/arcgis/rest/services,Y,Y,OK,Y,
503,2,California,,Visalia,,,https://services7.arcgis.com/q3SI94vj8qWDxwBr/arcgis/rest/services,Y,Y,OK,Y,
504,2,California,,West Sacramento,,,https://gis.cityofwestsacramento.org/server/rest/services,Y,Y,OK,Y,
505,2,California,,Woodland,,,https://gis.cityofwoodland.org/cowgis/rest/services,Y,Y,OK,Y,
506,2,California,,Yolo,,,https://services2.arcgis.com/RETsakmE0SJfZXCd/arcgis/rest/services,Y,Y,OK,Y,
507,2,Colorado,,,08,Colorado - Office of Information Technology,https://gis.colorado.gov/oit/rest/services,Y,Y,OK,Y,
508,2,Colorado,,,08,Colorado Department of Transportation,https://dtdapps.coloradodot.info/arcgis/rest/services,Y,Y,OK,Y,
509,2,Colorado,,,08,Colorado Department of Transportation,https://dtddmzdev.dot.state.co.us/arcgis/rest/services,Y,Y,OK,Y,
510,2,Colorado,,,08,Colorado Department of Public Health and Environment,https://www.cohealthmaps.dphe.state.co.us/arcgis/rest/services,Y,Y,OK,Y,
511,2,Colorado,,,08,Colorado Natural Heritage Program,http://maps.natureserve.org/landscope3/rest/services/CO,Y,Y,OK,Y,
512,2,Colorado,,,08,Colorado State University - Colorado Atlas: Parks - Hunting and Fishing,https://ndismaps.nrel.colostate.edu/arcgis/rest/services,Y,Y,OK,Y,
513,2,Colorado,,,08,Colorado various layers,https://gis.colorado.gov/public/rest/services,Y,Y,OK,Y,
514,2,Colorado,,,08,Colorado various layers,https://services5.arcgis.com/ttNGmDvKQA7oeDQ3/arcgis/rest/services,Y,Y,OK,Y,
515,2,Colorado,,,08,Colorado various layers,https://gis.colorado.gov/oit/rest/services,Y,Y,OK,Y, See section on BLM servers, there is one with just Colorado data
516,2,Colorado,,,,Denver Regional Council of Governments,https://gis.drcog.org/server/rest/services,Y,Y,OK,Y,
517,2,Colorado,Adams,,08001,,https://gisapp.adcogov.org/arcgis/rest/services,Y,Y,OK,Y,
518,2,Colorado,Arapahoe,,08005,,https://gis.arapahoegov.com/arcgis/rest/services,Y,Y,OK,Y,
519,2,Colorado,Boulder,,08013,,https://services3.arcgis.com/0jWpHMuhmHsukKE3/arcgis/rest/services,Y,Y,OK,Y,
520,2,Colorado,Boulder,,08013,,https://services3.arcgis.com/T4QMspbfLg3qTGWY/arcgis/rest/services,Y,Y,OK,Y,
521,2,Colorado,Boulder,,08013,,https://maps.bouldercounty.org/arcgis/rest/services,Y,N,OK,Y,
522,2,Colorado,Clear Creek,,08019,,https://map.co.clear-creek.co.us/arcgis2/rest/services,Y,Y,OK,Y,
523,2,Colorado,Costilla,,08023,,https://services.arcgis.com/4YineAQdtmx0tv46/ArcGIS/rest/services/CostillaCOFeatures/FeatureServer,Y,Y,OK,Y,
524,2,Colorado,Delta,,08029,,https://maps.deltacounty.com/arcgis/rest/services,Y,Y,OK,Y,
525,2,Colorado,Douglas,,08035,,https://apps.douglas.co.us/geopendata/rest/services,Y,Y,OK,Y,
526,2,Colorado,Douglas,,08035,,https://apps.douglas.co.us/dcso/rest/services,Y,Y,OK,Y,
527,2,Colorado,Douglas,,08035,,https://apps.douglas.co.us/arcgis/rest/services,Y,Y,OK,Y,
528,2,Colorado,Eagle,,08037,,https://map.eaglecounty.us/arcgiswa/rest/services,Y,Y,OK,Y,
529,2,Colorado,Fremont,,08043,,https://fremontgis.com/arcgis_102/rest/services,Y,Y,OK,Y,
530,2,Colorado,Gilpin,,08047,,https://data.digitaldataservices.com/arcgis/rest/services/GilpinCounty,Y,Y,OK,Y,
531,2,Colorado,Huerfano,,08055,,https://maps.huerfano.us/server/rest/services,Y,Y,OK,Y,
532,2,Colorado,Jefferson,,08059,,https://services3.arcgis.com/9ntQlfNHEhmpX4cl/ArcGIS/rest/services,Y,Y,OK,Y,
533,2,Colorado,Jefferson,,08059,,https://mapservices1.jeffco.us/arcgis/rest/services,Y,Y,OK,Y,
534,2,Colorado,Jefferson,,08059,,https://mapservices2.jeffco.us/arcgis/rest/services,Y,Y,OK,Y,
535,2,Colorado,La Plata,,08067,,https://services2.arcgis.com/ilLrLpXfElYxSy9y/arcgis/rest/services,Y,Y,OK,Y,
536,2,Colorado,Larimer,,08069,,https://maps1.larimer.org/arcgis/rest/services,Y,Y,OK,Y,
537,2,Colorado,Logan,,08075,,https://services.arcgis.com/4YineAQdtmx0tv46/ArcGIS/rest/services/LoganCOAccelaFeatures/FeatureServer,Y,Y,OK,Y,
538,2,Colorado,Logan,,08075,,https://services.arcgis.com/4YineAQdtmx0tv46/ArcGIS/rest/services/LoganCOAccelaFeaturesTest/FeatureServer,Y,Y,OK,Y,
539,2,Colorado,Logan,,08075,,https://services.arcgis.com/4YineAQdtmx0tv46/ArcGIS/rest/services/LoganCOFeatures/FeatureServer,Y,Y,OK,Y,
540,2,Colorado,Mesa,,08077,,https://mcgis.mesacounty.us/arcgis/rest/services,Y,Y,OK,Y,
541,2,Colorado,Mesa,,08077,,https://mcgis.mesacounty.us/image/rest/services,Y,Y,OK,Y,
542,2,Colorado,Mineral,,08079,,https://services.arcgis.com/4YineAQdtmx0tv46/ArcGIS/rest/services/MineralCOFeatures/FeatureServer,Y,Y,OK,Y,
543,2,Colorado,Montezuma,,08083,,https://gis-server.co.montezuma.co.us/arcgis/rest/services,Y,Y,OK,Y,
544,2,Colorado,Montrose,,08085,,https://mcmap.montrosecounty.net/server/rest/services,Y,Y,OK,Y,
545,2,Colorado,Park,,08093,,https://maps.parkco.us/arcgis/rest/services,Y,Y,OK,Y,
546,2,Colorado,Pitkin,,08097,,https://maps.pitkincounty.com/arcgis/rest/services,Y,Y,OK,Y,
547,2,Colorado,Pueblo,,08101,,https://maps.co.pueblo.co.us/outside/rest/services,Y,Y,OK,Y,
548,2,Colorado,Routt,,08107,,https://gis.co.routt.co.us/server/rest/services,Y,Y,OK,Y,
549,2,Colorado,San Miguel,,08113,,https://mapping.sanmiguelcountyco.gov/server/rest/services,Y,Y,OK,Y,
550,2,Colorado,San Miguel,,08113,,https://services.arcgis.com/aXqye4IXyXsdIpPb/arcgis/rest/services,Y,Y,OK,Y,
551,2,Colorado,Summit,,08117,,https://gis.summitcountyco.gov/arcgis/rest/services,Y,Y,OK,Y,
552,2,Colorado,Teller,,08119,,https://cdsd.co.teller.co.us/arcgis/rest/services,Y,Y,OK,Y,
553,2,Colorado,Weld,,08123,,https://www.co.weld.co.us/maps/gis/rest/services,Y,Y,OK,Y,
554,2,Colorado,Weld,,08123,,https://www.co.weld.co.us/maps/image/rest/services,Y,Y,OK,Y,
555,2,Colorado,,Arvada,,,https://maps.arvada.org/arcgis/rest/services,Y,N,OK,Y,
556,2,Colorado,,Aspen,,,https://services3.arcgis.com/5FkYBrhNzpVtlA6F/arcgis/rest/services,Y,Y,OK,Y,
557,2,Colorado,,Aurora,,,https://ags.auroragov.org/aurora/rest/services/ACCELA/MapServer,Y,Y,OK,Y,
558,2,Colorado,,Aurora,,,https://ags.auroragov.org/aurora/rest/services/OpenData2/MapServer,Y,Y,OK,Y,
559,2,Colorado,,Avon,,,https://hostingdata2.tighebond.com/arcgis/rest/services/AvonCT,Y,Y,OK,Y,
560,2,Colorado,,Bethel,,,https://hostingdata2.tighebond.com/arcgis/rest/services/BethelCT,Y,Y,OK,Y,
561,2,Colorado,,Boulder,,,https://maps.bouldercolorado.gov/arcgis/rest/services,Y,Y,OK,Y,
562,2,Colorado,,Breckenridge,,,https://maps.townofbreckenridge.com/arcgis/rest/services,Y,Y,OK,Y,
563,2,Colorado,,Brookfield,,,https://hostingdata2.tighebond.com/arcgis/rest/services/BrookfieldCT,Y,Y,OK,Y,
564,2,Colorado,,Castle Rock,,,https://maps.crgov.com/web/rest/services,Y,Y,OK,Y,
565,2,Colorado,,Centennial,,,https://maps.centennialco.gov/arcgis/rest/services,Y,Y,OK,Y,
566,2,Colorado,,Central City,,,https://data.digitaldataservices.com/arcgis/rest/services/CentralCity,Y,Y,OK,Y,
567,2,Colorado,,Clinton,,,https://hostingdata2.tighebond.com/arcgis/rest/services/ClintonCT,Y,Y,OK,Y,
568,2,Colorado,,Colorado Springs,,,https://gis.coloradosprings.gov/arcgis/rest/services,Y,N,OK,Y,
569,2,Colorado,,Colorado Springs,,,https://data.digitaldataservices.com/arcgis/rest/services/ColoradoSprings,Y,Y,OK,Y,
570,2,Colorado,,Denver,,,https://denvergov.org/arcgis/rest/services,Y,Y,X,Y,
571,2,Colorado,,Denver,,,https://services1.arcgis.com/zdB7qR0BtYrg0Xpl/ArcGIS/rest/services,Y,Y,OK,Y,
572,2,Colorado,,Durango,,,https://gis.durangogov.org/map/rest/services,Y,Y,OK,Y,
573,2,Colorado,,Englewood,,,https://agiso.englewoodco.gov/public/rest/services,Y,Y,OK,Y,
574,2,Colorado,,Fort Collins,,,https://gisweb.fcgov.com/arcgis/rest/services,Y,N,OK,Y,
575,2,Colorado,,Greenwood Village,,,https://online.greenwoodvillage.com/server/rest/services,Y,Y,OK,Y,
576,2,Colorado,,Longmont,,,https://maps.ci.longmont.co.us/arcgis_public/rest/services,Y,Y,OK,Y,
577,2,Colorado,,Loveland,,,https://mapserv.cityofloveland.org/arcgis/rest/services,Y,Y,OK,Y,
578,2,Colorado,,Manitou Springs,,,https://services6.arcgis.com/JvLU4FaQtqrjGWfU/arcgis/rest/services,Y,Y,OK,Y,
579,2,Colorado,,Mofatt,,,https://services.arcgis.com/4YineAQdtmx0tv46/ArcGIS/rest/services/MoffatCOFeatures/FeatureServer,Y,Y,OK,Y,
580,2,Colorado,,Pueblo,,,https://services1.arcgis.com/IL17xsvNU5Bmw3RY/arcgis/rest/services,Y,Y,OK,Y,
581,2,Colorado,,Thornton,,,https://gis.cityofthornton.net/arcgis/rest/services,Y,Y,OK,Y,
582,2,Colorado,,Wheatridge,,,https://maps.ci.wheatridge.co.us/wrgis/rest/services,Y,Y,OK,Y,
583,2,Colorado,,Yuma,,,https://services.arcgis.com/4YineAQdtmx0tv46/ArcGIS/rest/services/YumaCOFeatures/FeatureServer,Y,Y,OK,Y,
584,2,Connecticut,,,09,Connecticut Open Data,https://www.ctgismaps2.ct.gov/arcgis/rest/services,Y,Y,OK,Y,
585,2,Connecticut,,,09,Connecticut Department of Energy and Environmental Protection (DEEP),http://ctgismaps2.stag.ct.gov/arcgis/rest/services/deep,Y,Y,OK,Y,
586,2,Connecticut,,,09,Connecticut Department of Energy and Environmental Protection (DEEP),https://sgsdgf.mapxpress.net/arcgis/rest/services/CT_DEEP/MapServer,Y,Y,OK,Y,
587,2,Connecticut,,,09,Connecticut Department of Transportation,https://services1.arcgis.com/FCaUeJ5SOVtImake/ArcGIS/rest/services,Y,Y,OK,Y,
588,2,Connecticut,,,09,Connecticut Department of Transportation,http://ctgismaps2.stag.ct.gov/arcgis/rest/services/DOT,Y,Y,OK,Y,
589,2,Connecticut,,,09,University of Connecticut - Environmental Conditions Online,https://cteco.uconn.edu/ctmaps/rest/services/,Y,Y,OK,Y,includes parcel layers
590,2,Connecticut,,,09,University of Connecticut - Environmental Conditions Online,https://cteco.uconn.edu/ctraster/rest/services/,Y,Y,OK,Y,
591,2,Connecticut,,,09,University of Connecticut - Center for Land Use Education and Research (CLEAR),https://clear3.uconn.edu/arcgis/rest/services,Y,Y,OK,Y,
592,2,Connecticut,,,09,Madison Land Trust trails,https://sgsdgf.mapxpress.net/arcgis/rest/services/MLCT,Y,Y,OK,Y,
593,2,Connecticut,,,09,Connecticut layers from FEMA,https://sgsdgf.mapxpress.net/arcgis/rest/services/FEMA_Statewide,Y,Y,OK,Y,
594,2,Connecticut,,,09,Connecticut - Various layers,https://services1.arcgis.com/FjPcSmEFuDYlIdKC/arcgis/rest/services,Y,Y,OK,Y,
595,2,Connecticut,,,09,Connecticut - Various layers,https://services2.arcgis.com/GJ0FAStzsVuLqJVA/ArcGIS/rest/services,Y,Y,OK,Y,
596,2,Connecticut,,,,Capitol Region Council of Governments,https://gis.crcog.org/arcgis/rest/services,Y,Y,OK,Y,
597,2,Connecticut,,,,Metropolitan Council of Governments,https://maps.ctmetro.org/server/rest/services,Y,Y,OK,Y,
598,2,Connecticut,,,,Metropolitan Council of Governments,https://maps.ctmetro.org/server/rest/services/GBRC,Y,Y,OK,Y,
599,2,Connecticut,,,,Metropolitan Council of Governments,https://maps.ctmetro.org/server/rest/services/MetroCOG,Y,Y,OK,Y,
600,2,Connecticut,,,,Lower Connecticut River Valley Council of Governments,https://services7.arcgis.com/uH7GnAlGDzMooG4B/arcgis/rest/services,Y,Y,OK,Y,
601,2,Connecticut,,,,Naugatuck Valley Council of Governments,https://services2.arcgis.com/LD8LGc05Tkd3FQoz/arcgis/rest/services,Y,Y,OK,Y,
602,2,Connecticut,,,,Northeastern Connecticut Council of Governments,https://gis.neccog.org/arcgis/rest/services,Y,Y,OK,Y,
603,2,Connecticut,,,,Northwest Hills Council of Governments,https://services3.arcgis.com/liKpeCR7exNEqmTR/arcgis/rest/services,Y,Y,OK,Y,
604,2,Connecticut,,,,South Central Regional Council of Governments,https://dfgdfg.mapxpress.net/arcgis/rest/services/SCRCOG,Y,Y,OK,Y,
605,2,Connecticut,,,,South Central Regional Council of Governments,https://sgsdgf.mapxpress.net/arcgis/rest/services/SCRCOG,Y,Y,OK,Y,
606,2,Connecticut,,,,Western Connecticut Council of Governments,https://tiles.arcgis.com/tiles/UwEXjTguDDovBVaQ/arcgis/rest/services,Y,Y,OK,Y,
607,2,Connecticut,,,,Madison Land Conservation Trust,https://dfgdfg.mapxpress.net/arcgis/rest/services/MLCT,Y,Y,OK,Y,
608,2,Connecticut,,Ansonia,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Ansonia,Y,Y,OK,Y,
609,2,Connecticut,,Ansonia,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Ansonia,Y,Y,OK,Y,
610,2,Connecticut,,Avon,,,https://hostingdata2.tighebond.com/arcgis/rest/services/AvonCT,Y,Y,OK,Y,
611,2,Connecticut,,Beacon Falls,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Beacon_Falls,Y,Y,OK,Y,
612,2,Connecticut,,Beacon Falls,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Beacon_Falls,Y,Y,OK,Y,
613,2,Connecticut,,Berlin,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Berlin,Y,Y,OK,Y,
614,2,Connecticut,,Berlin,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Berlin,Y,Y,OK,Y,
615,2,Connecticut,,Bethel,,,https://hostingdata3.tighebond.com/arcgis/rest/services/BethelCT,Y,Y,OK,Y,
616,2,Connecticut,,Bethany,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Bethany,Y,Y,OK,Y,
617,2,Connecticut,,Bethany,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Bethany,Y,Y,OK,Y,
618,2,Connecticut,,Bloomfield,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Bloomfield,Y,Y,OK,Y,
619,2,Connecticut,,Bloomfield,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Bloomfield,Y,Y,OK,Y,
620,2,Connecticut,,Branford,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Branford,Y,Y,OK,Y,
621,2,Connecticut,,Branford,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Branford,Y,Y,OK,Y,
622,2,Connecticut,,Bridgeport,,,https://maps.ctmetro.org/server/rest/services/Bridgeport,Y,Y,OK,Y,
623,2,Connecticut,,Bristol,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Bristol,Y,Y,OK,Y,
624,2,Connecticut,,Bristol,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Bristol,Y,Y,OK,Y,
625,2,Connecticut,,Brookfield,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Brookfield,Y,Y,OK,Y,
626,2,Connecticut,,Brookfield,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Brookfield,Y,Y,OK,Y,
627,2,Connecticut,,Burlington,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Burlington,Y,Y,OK,Y,
628,2,Connecticut,,Burlington,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Burlington,Y,Y,OK,Y,
629,2,Connecticut,,Canterbury,,,https://hostingdata3.tighebond.com/arcgis/rest/services/CanterburyCT,Y,Y,OK,Y,
630,2,Connecticut,,Canton,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Canton,Y,Y,OK,Y,
631,2,Connecticut,,Canton,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Canton,Y,Y,OK,Y,
632,2,Connecticut,,Cheshire,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Cheshire,Y,Y,OK,Y,
633,2,Connecticut,,Cheshire,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Cheshire,Y,Y,OK,Y,
634,2,Connecticut,,Clinton,,,https://hostingdata3.tighebond.com/arcgis/rest/services/ClintonCT,Y,Y,OK,Y,
635,2,Connecticut,,Colchester,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Colchester,Y,Y,OK,Y,
636,2,Connecticut,,Colchester,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Colchester,Y,Y,OK,Y,
637,2,Connecticut,,Coventry,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Coventry,Y,Y,OK,Y,
638,2,Connecticut,,Coventry,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Coventry,Y,Y,OK,Y,
639,2,Connecticut,,Darien,,,https://map.appgeo.com/arcgis/rest/services/DarienCT,Y,Y,OK,N,
640,2,Connecticut,,Darien,,,https://hostingdata3.tighebond.com/arcgis/rest/services/ClintonCT,Y,Y,OK,Y,
641,2,Connecticut,,Derby,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Derby,Y,Y,OK,Y,
642,2,Connecticut,,East Hampton,,,https://hostingdata3.tighebond.com/arcgis/rest/services/EastHamptonCT,Y,Y,OK,Y,
643,2,Connecticut,,East Haven,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/East_Haven,Y,Y,OK,Y,
644,2,Connecticut,,East Haven,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/East_Haven,Y,Y,OK,Y,
645,2,Connecticut,,East Lyme,,,https://hostingdata3.tighebond.com/arcgis/rest/services/EastLymeCT,Y,Y,OK,Y,
646,2,Connecticut,,Ellington,,,https://map.appgeo.com/arcgis/rest/services/EllingtonCT,Y,Y,OK,N,
647,2,Connecticut,,Enfield,,,https://gis.enfield.org/enfieldgis/rest/services,Y,Y,OK,Y,
648,2,Connecticut,,Enfield,,,https://gishost.cdmsmithgis.com/cdmsmithgis/rest/services/EnfieldCT_Basemap/MapServer,Y,Y,OK,Y,
649,2,Connecticut,,Enfield,,,https://gishost.cdmsmithgis.com/cdmsmithgis/rest/services/EnfieldCT_OpLayers/MapServer,Y,Y,OK,Y,
650,2,Connecticut,,Fairfield,,,https://maps.ctmetro.org/server/rest/services/Fairfield,Y,Y,OK,Y,
651,2,Connecticut,,Farmington,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Farmington,Y,Y,OK,Y,
652,2,Connecticut,,Farmington,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Farmington,Y,Y,OK,Y,
653,2,Connecticut,,Glastonbury,,,https://gisa2.glastonbury-ct.gov/arcgis/rest/services,Y,Y,OK,Y,
654,2,Connecticut,,Goshen,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Goshen,Y,Y,OK,Y,
655,2,Connecticut,,Goshen,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Goshen,Y,Y,OK,Y,
656,2,Connecticut,,Groton,,,https://maps.groton-ct.gov/arcgis/rest/services,Y,Y,OK,Y,
657,2,Connecticut,,Guilford,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Guilford,Y,Y,OK,Y,
658,2,Connecticut,,Guilford,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Guilford,Y,Y,OK,Y,
659,2,Connecticut,,Haddam,,,https://hostingdata3.tighebond.com/arcgis/rest/services/HaddamCT,Y,Y,OK,Y,
660,2,Connecticut,,Hamden,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Hamden,Y,Y,OK,Y,
661,2,Connecticut,,Hamden,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Hamden,Y,Y,OK,Y,
662,2,Connecticut,,Hartford,,,https://gis1.hartford.gov/arcgis/rest/services,Y,Y,OK,Y,
663,2,Connecticut,,Killingworth,,,https://hostingdata3.tighebond.com/arcgis/rest/services/KillingworthCT,Y,Y,OK,Y,
664,2,Connecticut,,Lisbon,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Lisbon,Y,Y,OK,Y,
665,2,Connecticut,,Lisbon,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Lisbon,Y,Y,OK,Y,
666,2,Connecticut,,Litchfield,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Litchfield,Y,Y,OK,Y,
667,2,Connecticut,,Litchfield,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Litchfield,Y,Y,OK,Y,
668,2,Connecticut,,Madison,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Madison,Y,Y,OK,Y,
669,2,Connecticut,,Madison,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Madison,Y,Y,OK,Y,
670,2,Connecticut,,Manchester,,,https://gis1.townofmanchester.org/arcgis/rest/services,Y,Y,OK,Y,
671,2,Connecticut,,Mansfield,,,https://web2.mobile311.com/arcgis/rest/services/Connecticut/MansfieldCT/MapServer,Y,Y,OK,Y,
672,2,Connecticut,,Meriden,,,https://gis1.meridenct.gov/arcgis/rest/services,Y,Y,OK,Y,
673,2,Connecticut,,Middlebury,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Middlebury,Y,Y,OK,Y,
674,2,Connecticut,,Middlebury,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Middlebury,Y,Y,OK,Y,
675,2,Connecticut,,Middlefield,,,https://hostingdata3.tighebond.com/arcgis/rest/services/MiddlefieldCT,Y,Y,OK,Y,
676,2,Connecticut,,Middletown,,,http://gis.cityofmiddletown.com:6080/arcgis/rest/services,N,Y,,Y,
677,2,Connecticut,,Milford,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Milford,Y,Y,OK,Y,
678,2,Connecticut,,Milford,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Milford,Y,Y,OK,Y,
679,2,Connecticut,,Monroe,,,https://maps.ctmetro.org/server/rest/services/Monroe,Y,Y,OK,Y,
680,2,Connecticut,,Naugatuck,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Naugatuck,Y,Y,OK,Y,
681,2,Connecticut,,Naugatuck,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Naugatuck,Y,Y,OK,Y,
682,2,Connecticut,,New Britain,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/New_Britain,Y,Y,OK,Y,
683,2,Connecticut,,New Britain,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/New_Britain,Y,Y,OK,Y,
684,2,Connecticut,,New Canaan,,,https://hostingdata2.tighebond.com/arcgis/rest/services/NewCanaanCT,Y,Y,OK,Y,
685,2,Connecticut,,New Canaan,,,https://hostingdata3.tighebond.com/arcgis/rest/services/NewCanaanCT,Y,Y,OK,Y,
686,2,Connecticut,,New Fairfield,,,https://hostingdata3.tighebond.com/arcgis/rest/services/NewFairfieldCT,Y,Y,OK,Y,
687,2,Connecticut,,New Hartford,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/New_Hartford,Y,Y,OK,Y,
688,2,Connecticut,,New Hartford,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/New_Hartford,Y,Y,OK,Y,
689,2,Connecticut,,New Haven,,,https://nhgis.newhavenct.gov/server/rest/services,Y,Y,OK,Y,
690,2,Connecticut,,New Haven,,,https://nhgis.newhavenct.gov:6443/arcgis/rest/services,Y,Y,OK,Y,
691,2,Connecticut,,New Milford,,,https://hostingdata2.tighebond.com/arcgis/rest/services/NewMilfordCT,Y,Y,OK,Y,
692,2,Connecticut,,New Milford,,,https://map.appgeo.com/arcgis/rest/services/NewMilfordCT,Y,Y,OK,N,
693,2,Connecticut,,Newtown,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Newtown,Y,Y,OK,Y,
694,2,Connecticut,,Newtown,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Newtown,Y,Y,OK,Y,
695,2,Connecticut,,North Branford,,,https://hostingdata3.tighebond.com/arcgis/rest/services/NorthBranfordCT,Y,Y,OK,Y,
696,2,Connecticut,,North Haven,,,https://map.appgeo.com/arcgis/rest/services/NorthHavenCT,Y,Y,OK,Y,
697,2,Connecticut,,North_Stonington,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/North_Stonington,Y,Y,OK,Y,
698,2,Connecticut,,North_Stonington,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/North_Stonington,Y,Y,OK,Y,
699,2,Connecticut,,Orange,,,https://hostingdata2.tighebond.com/arcgis/rest/services/OrangeCT,Y,Y,OK,Y,
700,2,Connecticut,,Orange,,,https://hostingdata3.tighebond.com/arcgis/rest/services/OrangeCT,Y,Y,OK,Y,
701,2,Connecticut,,Oxford,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Oxford,Y,Y,OK,Y,
702,2,Connecticut,,Oxford,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Oxford,Y,Y,OK,Y,
703,2,Connecticut,,Plainfield,,,https://hostingdata3.tighebond.com/arcgis/rest/services/PlainfieldCT,Y,Y,OK,Y,
704,2,Connecticut,,Plainville,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Plainville,Y,Y,OK,Y,
705,2,Connecticut,,Plainville,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Plainville,Y,Y,OK,Y,
706,2,Connecticut,,Plymouth,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Plymouth,Y,Y,OK,Y,
707,2,Connecticut,,Plymouth,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Plymouth,Y,Y,OK,Y,
708,2,Connecticut,,Preston,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Preston,Y,Y,OK,Y,
709,2,Connecticut,,Preston,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Preston,Y,Y,OK,Y,
710,2,Connecticut,,Prospect,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Prospect,Y,Y,OK,Y,
711,2,Connecticut,,Prospect,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Prospect,Y,Y,OK,Y,
712,2,Connecticut,,Redding,,,https://gis3.cdmsmithgis.com/arcgis/rest/services,Y,Y,OK,Y,
713,2,Connecticut,,Ridgefield,,,https://hostingdata2.tighebond.com/arcgis/rest/services/RidgefieldCT,Y,Y,OK,Y,
714,2,Connecticut,,Ridgefield,,,https://hostingdata3.tighebond.com/arcgis/rest/services/RidgefieldCT,Y,Y,OK,Y,
715,2,Connecticut,,Salem,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Salem,Y,Y,OK,Y,
716,2,Connecticut,,Salem,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Salem,Y,Y,OK,Y,
717,2,Connecticut,,Salisbury,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Salisbury,Y,Y,OK,Y,
718,2,Connecticut,,Seymour,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Seymour,Y,Y,OK,Y,
719,2,Connecticut,,Seymour,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Seymour,Y,Y,OK,Y,
720,2,Connecticut,,Shelton,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Shelton,Y,Y,OK,Y,
721,2,Connecticut,,Shelton,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Shelton,Y,Y,OK,Y,
722,2,Connecticut,,Simsbury,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Simsbury,Y,Y,OK,Y,
723,2,Connecticut,,Simsbury,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Simsbury,Y,Y,OK,Y,
724,2,Connecticut,,Somers,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Somers,Y,Y,OK,Y,
725,2,Connecticut,,Somers,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Somers,Y,Y,OK,Y,
726,2,Connecticut,,South Windsor,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/South_Windsor,Y,Y,OK,Y,
727,2,Connecticut,,South Windsor,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/South_Windsor,Y,Y,OK,Y,
728,2,Connecticut,,Southbury,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Southbury,Y,Y,OK,Y,
729,2,Connecticut,,Southbury,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Southbury,Y,Y,OK,Y,
730,2,Connecticut,,Southington,,,https://hostingdata2.tighebond.com/arcgis/rest/services/SouthingtonCT,Y,Y,OK,Y,
731,2,Connecticut,,Sterling,,,https://hostingdata3.tighebond.com/arcgis/rest/services/SterlingCT,Y,Y,OK,Y,
732,2,Connecticut,,Stonington,,,http://gis.stonington-ct.gov:6080/arcgis/rest/services,N,Y,,Y,
733,2,Connecticut,,Stratford,,,https://maps.ctmetro.org/server/rest/services/Stratford,Y,Y,OK,Y,
734,2,Connecticut,,Stratford,,,https://hostingdata2.tighebond.com/arcgis/rest/services/StratfordCT,Y,Y,OK,Y,
735,2,Connecticut,,Suffield,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Suffield,Y,Y,OK,Y,
736,2,Connecticut,,Suffield,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Suffield,Y,Y,OK,Y,
737,2,Connecticut,,Syracuse,,,http://74.93.16.209:6080/arcgis/rest/services/Syracuse,N,Y,,Y,
738,2,Connecticut,,Thomaston,,,https://hostingdata3.tighebond.com/arcgis/rest/services/ThomastonCT,Y,Y,OK,Y,
739,2,Connecticut,,Tolland,,,https://map.appgeo.com/arcgis/rest/services/TollandCT,Y,Y,OK,Y,
740,2,Connecticut,,Torrington,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Torrington,Y,Y,OK,Y,
741,2,Connecticut,,Torrington,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Torrington,Y,Y,OK,Y,
742,2,Connecticut,,Trumbull,,,https://maps.ctmetro.org/server/rest/services/Trumbull,Y,Y,OK,Y,
743,2,Connecticut,,Trumbull,,,https://hostingdata2.tighebond.com/arcgis/rest/services/TrumbullCT,Y,Y,OK,Y,
744,2,Connecticut,,Wallingford,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Wallingford,Y,Y,OK,Y,
745,2,Connecticut,,Wallingford,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Wallingford,Y,Y,OK,Y,
746,2,Connecticut,,Waterford,,,https://hostingdata2.tighebond.com/arcgis/rest/services/WaterfordCT,Y,Y,OK,Y,
747,2,Connecticut,,Waterford,,,https://hostingdata3.tighebond.com/arcgis/rest/services/WaterfordCT,Y,Y,OK,Y,
748,2,Connecticut,,Watertown,,,https://hostingdata2.tighebond.com/arcgis/rest/services/WatertownCT,Y,Y,OK,Y,
749,2,Connecticut,,Watertown,,,https://hostingdata3.tighebond.com/arcgis/rest/services/WatertownCT,Y,Y,OK,Y,
750,2,Connecticut,,West Hartford,,,https://web2.mobile311.com/arcgis/rest/services/Connecticut/WestHartfordCT/MapServer,Y,Y,OK,Y,
751,2,Connecticut,,West Haven,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/West_Haven,Y,Y,OK,Y,
752,2,Connecticut,,West Haven,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/West_Haven,Y,Y,OK,Y,
753,2,Connecticut,,Weston,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Weston,Y,Y,OK,Y,
754,2,Connecticut,,Weston,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Weston,Y,Y,OK,Y,
755,2,Connecticut,,Wilton,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Wilton,Y,Y,OK,Y,
756,2,Connecticut,,Wilton,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Wilton,Y,Y,OK,Y,
757,2,Connecticut,,Wilton,,,https://hostingdata2.tighebond.com/arcgis/rest/services/WiltonCT,Y,Y,OK,Y,
758,2,Connecticut,,Woodbridge,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Woodbridge,Y,Y,OK,Y,
759,2,Connecticut,,Woodbridge,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Woodbridge,Y,Y,OK,Y,
760,2,Connecticut,,Woodbury,,,https://dfgdfg.mapxpress.net/arcgis/rest/services/Woodbury,Y,Y,OK,Y,
761,2,Connecticut,,Woodbury,,,https://sgsdgf.mapxpress.net/arcgis/rest/services/Woodbury,Y,Y,OK,Y,
762,2,Delaware,,,10,Delaware Department of Transportation,https://deldot.kci.com/arcgis/rest/services,Y,Y,OK,Y,
763,2,Delaware,Kent,,10001,,https://co.kent.de.us/server/rest/services,Y,Y,OK,Y,
764,2,Delaware,New Castle,,10003,,https://gis.nccde.org/agsserver/rest/services,Y,Y,OK,Y,
765,2,Delaware,Sussex,,10005,,https://maps.sussexcountyde.gov/gis/rest/services,Y,Y,OK,Y,
766,2,Delaware,,Newark,,,https://services.arcgis.com/nQgBxn6WXyRCKVUz/arcgis/rest/services,Y,Y,OK,Y,
767,2,Florida,,,12,Florida Geographic Data Portal,https://maps.floridadisaster.org/GIS/rest/services,Y,Y,OK,Y,
768,2,Florida,,,12,Florida Department of Environmental Protection,https://ca.dep.state.fl.us/arcgis/rest/services,Y,Y,OK,Y,
769,2,Florida,,,12,Florida Department of Health,https://gis.flhealth.gov/arcgis/rest/services,Y,Y,X,Y,
770,2,Florida,,,12,Florida Department of Transportation,https://gis.fdot.gov/arcgis/rest/services,Y,Y,OK,Y,
771,2,Florida,,,12,Florida Department of Transportation,https://spatialags.vhb.com/arcgis/rest/services/FDOT_NWFL,Y,Y,OK,Y,
772,2,Florida,,,12,Florida Fish and Wildlife Conservation Commission,https://ocean.floridamarine.org/arcgis/rest/services,Y,Y,OK,Y,
773,2,Florida,,,12,Florida Fish and Wildlife Conservation Commission,https://atoll.floridamarine.org/arcgis/rest/services,Y,Y,OK,Y,
774,2,Florida,,,12,Florida Resources and Environmental Analysis Center,https://maps.freac.fsu.edu/arcgis/rest/services,Y,Y,OK,Y, See LABINS layer with PLSS data
775,2,Florida,,,12,University South Florida Water Institute,https://gis2.waterinstitute.usf.edu/arcgis/rest/services,Y,Y,OK,Y,
776,2,Florida,,,12,Florida International University GIS Center,https://maps.fiu.edu/arcgis/rest/services,Y,Y,OK,Y, Includes Florida DOT (Department of Transportation)
777,2,Florida,,,12,Florida Natural Areas Inventory,https://fnai04.fnai.org:6443/arcgis/rest/services,Y,Y,OK,Y,
778,2,Florida,,,12,Florida International University - GIS center,https://maps.fiu.edu/arcgis/rest/services,Y,Y,OK,Y,
779,2,Florida,,,12,Florida various layers,https://ags.dep.state.fl.us/arcgis/rest/services,Y,Y,OK,Y,
780,2,Florida,,,,Northwest Florida Water Management District,https://ca.dep.state.fl.us/arcgis/rest/services/OpenData/NWFWMD_LANDUSE/MapServer,Y,Y,OK,Y,
781,2,Florida,,,,Southwest Florida Water Management District,https://www25.swfwmd.state.fl.us/arcgis10/rest/services,Y,Y,OK,Y,
782,2,Florida,,,,Southwest Florida Water Management District,https://www25.swfwmd.state.fl.us/arcgis11/rest/services,Y,Y,OK,Y,
783,2,Florida,,,,Southwest Florida Water Management District,https://www25.swfwmd.state.fl.us/arcgis12/rest/services,Y,Y,OK,Y,
784,2,Florida,,,,South Florida Water Management District,https://mapsprod.sfwmd.gov/map_ssl/rest/services,Y,N,OK,Y,
785,2,Florida,,,,Suwanee River Water Management District,http://gis.srwmd.state.fl.us/arcgis/rest/services,N,Y,,Y,
786,2,Florida,,,,Central Florida Regional Transportation Authority Serves 3 counties.,https://services2.arcgis.com/rp0R3ANPwsAdELpS/arcgis/rest/services,Y,Y,OK,Y,
787,2,Florida,,,,West Florida Regional Planning Council,https://services2.arcgis.com/xDFo56nFuq1SBnBw/ArcGIS/rest/services,Y,Y,OK,Y,
788,2,Florida,Alachua,,12001,,https://gis.alachuacounty.us/arcgis/rest/services,Y,Y,OK,Y,
789,2,Florida,Bay,,12005,,https://gis.baycountyfl.gov/arcgis/rest/services,Y,Y,OK,Y,
790,2,Florida,Bradford,,12007,,https://services5.arcgis.com/I5xnndVVpH5WlmgL/arcgis/rest/services,Y,Y,OK,Y,
791,2,Florida,Brevard,,12009,,https://gis.brevardfl.gov/gissrv/rest/services,Y,Y,OK,Y,
792,2,Florida,Brevard,,12009,,https://www.bcpao.us/arcgis/rest/services,Y,Y,OK,Y,
793,2,Florida,Broward,,12011,,https://bcgishub.broward.org/image/rest/services,Y,Y,OK,Y,
794,2,Florida,Broward,,12011,,https://geoportal.sheriff.org/public/rest/services,Y,Y,OK,Y,
795,2,Florida,Broward,,12011,,https://gisweb-adapters.bcpa.net/arcgis/rest/services,Y,Y,OK,Y,
796,2,Florida,Calhoun,,12013,,https://gis.calhouncounty.org/arcgis5/rest/services/,Y,Y,OK,Y,
797,2,Florida,Calhoun,,12013,,https://gis.calhouncounty.org/arcgis6/rest/services/,Y,Y,OK,Y,
798,2,Florida,Charlotte,,12015,,https://agis.charlottecountyfl.gov/arcgis/rest/services,Y,N,OK,Y,
799,2,Florida,Citrus,,12017,,https://gis.citruspa.org/arcgisweb/rest/services,Y,N,OK,Y,
800,2,Florida,Clay,,12019,,https://maps.claycountygov.com:6443/arcgis/rest/services,Y,Y,OK,Y,
801,2,Florida,Collier,,12021,,https://ags2.colliercountyfl.gov/gis/rest/services,Y,Y,OK,Y,
802,2,Florida,Miami-Dade,,12086,,https://gisms.miamidade.gov/arcgis/rest/services,Y,Y,OK,Y,
803,2,Florida,Miami-Dade,,12086,,https://gisweb.miamidade.gov/arcgis/rest/services,Y,Y,OK,Y,
804,2,Florida,DeSoto,,12027,,https://web2.mobile311.com/arcgis/rest/services/Florida/Desoto/MapServer,Y,Y,OK,Y,
805,2,Florida,Duval,,12031,,https://maps.coj.net/coj/rest/services/DuvalMaps,Y,Y,OK,N,
806,2,Florida,Escambia,,12033,,https://gismaps.myescambia.com/arcgis/rest/services,Y,Y,OK,Y,
807,2,Florida,Escambia,,12033,,https://maps.escpa.org/arcgis1/rest/services,Y,Y,OK,Y,
808,2,Florida,Escambia,,12033,,https://arcgis5.roktech.net/arcgis/rest/services/escambia,Y,Y,OK,Y,
809,2,Florida,Flagler,,12035,,https://services3.arcgis.com/hSKL9bYjhP4rHxSD/arcgis/rest/services,Y,Y,OK,Y,
810,2,Florida,Gilchrist,,12041,,https://www.emapsplus.com/arcgis/rest/services/Florida/GilchristAnalyst/MapServer,Y,Y,OK,Y,
811,2,Florida,Gilchrist,,12041,,https://www.emapsplus.com/arcgis/rest/services/Florida/GilchristEmaps/MapServer,Y,Y,OK,Y,
812,2,Florida,Glades,,12043,,https://services6.arcgis.com/90Aakxb3SLGcQGor/arcgis/rest/services,Y,Y,OK,Y,
813,2,Florida,Gulf,,12045,,https://arcgis4.roktech.net/arcgis/rest/services/gulf,Y,Y,OK,Y,
814,2,Florida,Hardee,,12049,,https://gis.hardeecounty.net/arcgis/rest/services,Y,Y,OK,Y,
815,2,Florida,Hernando,,12053,,https://www.hernandocountygis-fl.us/arcgis10_3/rest/services,Y,Y,OK,Y,
816,2,Florida,Highlands,,12055,,https://gis.highlandsfl.gov/server/rest/services,Y,Y,OK,Y,
817,2,Florida,Hillsborough,,,,https://maps.hillsboroughcounty.org/arcgis/rest/services,Y,Y,OK,Y,
818,2,Florida,Hillsborough,,,,https://gis.hcpafl.org/arcgis/rest/services,Y,Y,OK,Y,
819,2,Florida,Indian River,,12061,,https://gisportal.ircgov.com/server3/rest/services,Y,N,OK,Y,
820,2,Florida,Jefferson,,12065,,https://webmap.trueautomation.com/arcgis/rest/services/JeffersonPAMapSearchNoLabels/MapServer,Y,Y,OK,Y,
821,2,Florida,Lake,,12069,,https://gis.lakecountyfl.gov/lakegis/rest/services,Y,Y,OK,Y,
822,2,Florida,Lake,,12069,,https://www.emapsplus.com/arcgis/rest/services/Florida/LakeAnalyst/MapServer,Y,Y,OK,Y,
823,2,Florida,Lee,,12071,,https://gismapserver.leegov.com/gisserver910/rest/services,Y,Y,OK,Y,
824,2,Florida,Leon,,12073,,https://interraster.leoncountyfl.gov/interraster/rest/services,Y,Y,OK,Y,
825,2,Florida,Leon,,12073,,https://intervector.leoncountyfl.gov/intervector/rest/services,Y,Y,OK,Y,
826,2,Florida,Manatee,,12081,,https://www.mymanatee.org/arcgis01/rest/services,Y,Y,OK,Y,
827,2,Florida,Manatee,,12081,,https://www.mymanatee.org/arcgis02/rest/services,Y,Y,OK,Y,
828,2,Florida,Manatee,,12081,,https://www.mymanatee.org/arcgis03/rest/services,Y,Y,OK,Y,
829,2,Florida,Manatee,,12081,,https://www.mymanatee.org/arcgis04/rest/services,Y,Y,OK,Y,
830,2,Florida,Manatee,,12081,,https://www.mymanatee.org/gisbads/rest/services,Y,Y,OK,Y,
831,2,Florida,Marion,,12083,,https://gis.marionfl.org/public/rest/services,Y,Y,OK,Y,
832,2,Florida,Martin,,12085,,https://geoweb.martin.fl.us/arcgis/rest/services/,Y,Y,OK,Y,
833,2,Florida,Monroe,,12087,,https://mcgis4.monroecounty-fl.gov/public/rest/services,Y,Y,OK,Y,
834,2,Florida,Nassau,,12089,,https://maps.nassauflpa.com/ncflpa_arcgis/rest/services/,Y,Y,OK,Y,
835,2,Florida,Okaloosa,,12091,,https://ags.myokaloosa.com/arcgis/rest/services,Y,Y,OK,Y,
836,2,Florida,Okaloosa,,12091,,http://ags.co.okaloosa.fl.us/arcgis/rest/services,N,Y,,Y,
837,2,Florida,Orange,,12095,,https://ocgis4.ocfl.net/arcgis/rest/services,Y,Y,OK,Y,
838,2,Florida,Osceola,,12097,,https://ira.property-appraiser.org/arcgis/rest/services,Y,Y,OK,Y,
839,2,Florida,Palm Beach,,12099,,https://maps.co.palm-beach.fl.us/arcgis/rest/services,Y,Y,OK,Y,
840,2,Florida,Pasco,,12101,,https://pascogis.pascocountyfl.net/gisweb/rest/services,Y,Y,OK,Y,
841,2,Florida,Pinellas,,12103,,https://gis.pinellascounty.org/arcgis/rest/services,Y,Y,X,Y,
842,2,Florida,Pinellas,,12103,,https://egis.pinellascounty.org/arcgis/rest/services,Y,Y,X,Y,
843,2,Florida,Putnam,,12107,,https://gisweb.putnam-fl.com/gispublic/rest/services,Y,Y,OK,Y,
844,2,Florida,Putnam,,12107,,https://services1.arcgis.com/YZc1OyqL6jbIOeOv/arcgis/rest/services,Y,Y,OK,Y,
845,2,Florida,St. Johns,,12109,,http://www.gis.bocc.co.st-johns.fl.us/sjcgis/rest/services,N,Y,,Y,
846,2,Florida,St. Lucie,,12111,,https://gis.stlucieco.gov/arcgisweb/rest/services,Y,Y,OK,Y,
847,2,Florida,St. Lucie,,12111,,https://www.paslc.org/arcgis/rest/services,Y,Y,OK,Y,
848,2,Florida,Santa Rosa,,12113,,https://gis.santarosa.fl.gov/arcgis/rest/services,Y,Y,OK,Y,
849,2,Florida,Santa Rosa,,12113,,https://arcgis5.roktech.net/arcgis/rest/services/santarosa,Y,Y,OK,Y,
850,2,Florida,Sarasota,,12115,,https://services3.arcgis.com/icrWMv7eBkctFu1f/arcgis/rest/services,Y,Y,OK,Y,
851,2,Florida,Seminole,,12117,,https://services3.arcgis.com/n4VF6lyYfB5kizho/arcgis/rest/services,Y,Y,OK,Y,
852,2,Florida,Seminole,,12117,,https://arcgis5.roktech.net/arcgis/rest/services/SeminoleFL,Y,Y,OK,Y,
853,2,Florida,Sumter,,12119,,https://gis.sumtercountyfl.gov/sumtergis/rest/services,Y,Y,OK,Y,
854,2,Florida,Volusia,,12127,,https://maps1.vcgov.org/arcgis/rest/services,Y,Y,OK,Y,
855,2,Florida,Volusia,,12127,,https://maps2.vcgov.org/arcgis/rest/services,Y,Y,OK,Y,
856,2,Florida,Walton,,12131,,https://services1.arcgis.com/TaXHPwWfIMuzJ7Ov/ArcGIS/rest/services,Y,Y,OK,Y,
857,2,Florida,Wakulla,,12129,,https://services9.arcgis.com/vAltLjtfYIJc7pDt/arcgis/rest/services,Y,Y,OK,Y,
858,2,Florida,,Boca-Raton,,,https://bocagis.ci.boca-raton.fl.us/arcgis/rest/services,Y,Y,OK,Y,
859,2,Florida,,Cape Coral,,,https://capeims.capecoral.gov/arcgis/rest/services,Y,Y,OK,Y,
860,2,Florida,,Coral Springs,,,https://services1.arcgis.com/mXWZ2wsX9klsJAJY/arcgis/rest/services,Y,Y,OK,Y,
861,2,Florida,,Cutler Bay,,,https://tcbgis.cutlerbay-fl.gov/arcgisdmz/rest/services,Y,Y,OK,Y,
862,2,Florida,,Dayton Beach,,,https://arcgis4.roktech.net/arcgis/rest/services/DaytonaBeach,Y,Y,OK,Y,
863,2,Florida,,Dayton Beach,,,https://arcgis5.roktech.net/arcgis/rest/services/DaytonaBeach,Y,Y,OK,Y,
864,2,Florida,,Deland,,,https://maps.deland.org:6443/arcgis/rest/services,Y,Y,OK,Y,
865,2,Florida,,Deltona,,,https://arcgis4.roktech.net/arcgis/rest/services/deltona,Y,Y,OK,Y,
866,2,Florida,,Deltona,,,https://arcgis5.roktech.net/arcgis/rest/services/deltona/City_of_Deltona/MapServer,Y,Y,OK,Y,
867,2,Florida,,Foret Lauderdale,,,https://gis.fortlauderdale.gov/arcgis/rest/services,Y,Y,OK,Y,
868,2,Florida,,Fort Myers,,,https://cfmgis.cityftmyers.com/arcgis/rest/services,Y,Y,OK,Y,
869,2,Florida,,Fort Walton Beach,,,https://gis.fwb.org/arcgis/rest/services,Y,Y,OK,Y,
870,2,Florida,,Gainesville,,,https://services1.arcgis.com/MiBZ4u97DWldovjI/arcgis/rest/services,Y,Y,OK,Y,
871,2,Florida,,Jacksonville,,,https://maps.coj.net/coj/rest/services,Y,Y,OK,Y,
872,2,Florida,,Jupiter,,,https://gisweb.jupiter.fl.us/arcgis/rest/services,Y,Y,OK,Y,
873,2,Florida,,Kissimmee,,,https://cw.kissimmee.org/arcgis/rest/services,Y,Y,X,Y,
874,2,Florida,,Lakeland,,,https://gismims.lakelandgov.net/portal/rest/services,Y,Y,OK,Y,
875,2,Florida,,Largo,,,https://etrakit.largo.com/gis/rest/services,Y,Y,OK,Y,
876,2,Florida,,Leesburg,,,https://map.leesburgflorida.gov/arcgis/rest/services,Y,Y,OK,Y,
877,2,Florida,,Miami,,,https://gis.miamigov.com/gis/rest/services,Y,Y,OK,Y,
878,2,Florida,,Naples,,,https://g.naplesgov.com/arcgis/rest/services,Y,Y,OK,Y,
879,2,Florida,,North Bay,,,https://arcgis4.roktech.net/arcgis/rest/services/northbayvillage,Y,Y,OK,Y,
880,2,Florida,,North Bay,,,https://arcgis5.roktech.net/arcgis/rest/services/northbayvillage,Y,Y,OK,Y,
881,2,Florida,,Ocala,,,https://gis.ocalafl.org/arcgis/rest/services,Y,Y,OK,Y,
882,2,Florida,,Orlando,,,https://gis.orlando.gov/server/rest/services,Y,N,OK,Y,
883,2,Florida,,Palm Bay,,,https://gis.palmbayflorida.org/arcgis/rest/services,Y,Y,OK,Y,
884,2,Florida,,Palm Coast,,,https://maps.palmcoastgov.com/arcgis/rest/services,Y,Y,OK,Y,
885,2,Florida,,Pensacola,,,https://arcgis4.roktech.net/arcgis/rest/services/Pensacola,Y,Y,OK,Y,
886,2,Florida,,Pensacola,,,https://arcgis5.roktech.net/arcgis/rest/services/Pensacola,Y,Y,OK,Y,
887,2,Florida,,Plantation,,,https://pgis.plantation.org/arcgis/rest/services,Y,Y,OK,Y,
888,2,Florida,,Port Orange,,,https://services1.arcgis.com/EHJIZRZ77WzgIElO/arcgis/rest/services,Y,Y,OK,Y,
889,2,Florida,,St. Petersburg,,,https://egis.stpete.org/arcgis/rest/services,Y,Y,OK,Y,
890,2,Florida,,Sarasota,,,https://services3.arcgis.com/icrWMv7eBkctFu1f/arcgis/rest/services,Y,Y,OK,Y,
891,2,Florida,,Seminole,,,https://arcgis4.roktech.net/arcgis/rest/services/SeminoleFL,Y,Y,OK,Y,
892,2,Florida,,Sunny Isles Beach,,,https://arcgis5.roktech.net/arcgis/rest/services/SunnyIsles,Y,Y,OK,Y,
893,2,Florida,,Tampa,,,https://arcgis.tampagov.net/arcgis/rest/services,Y,Y,OK,Y,
894,2,Florida,,Wellington,,,https://gis01.wellingtonfl.gov/imagery/rest/services,Y,Y,OK,Y,
895,2,Georgia,,,13,Georgia Department of Transportation,https://egis.dot.ga.gov/arcgis/rest/services,Y,Y,OK,Y,
896,2,Georgia,,,13,Georgia Department of Transportation,https://egisp.dot.ga.gov/arcgis/rest/services,Y,Y,OK,Y,
897,2,Georgia,,,13,Georgia Emergency Management Agency,https://services1.arcgis.com/2iUE8l8JKrP2tygQ/arcgis/rest/services,Y,Y,OK,Y,
898,2,Georgia,,,13,Georgia various layers,https://services2.arcgis.com/Gqyymy5JISeLzyNM/arcgis/rest/services,Y,Y,OK,Y,
899,2,Georgia,,,13,University of Georgia - Institute of Government,https://maps.itos.uga.edu/arcgis/rest/services,Y,Y,OK,Y,
900,2,Georgia,,,13,University of Georgia - Coastal Hazards,https://gchp.skio.uga.edu/arcgis/rest/services,Y,Y,OK,Y,
901,2,Georgia,,,13,Georgia Tech,https://geospat.gatech.edu/arcgis/rest/services,Y,Y,OK,Y,
902,2,Georgia,,,,Georgia Coastal Regional Commission,https://maps.crc.ga.gov/crcarcgis/rest/services,Y,Y,OK,Y,
903,2,Georgia,,,,Atlanta Regional Commission,https://arcgis.atlantaregional.com/arcgis/rest/services,Y,Y,OK,Y,
904,2,Georgia,,,,Southern Georgia Regional Commission,https://www.sgrcmaps.com/arcgis/rest/services,Y,Y,OK,Y,
905,2,Georgia,,,,Middle Georgia Regional Commission,https://www.mgrcmaps.org/arcgis/rest/services,Y,Y,OK,Y,
906,2,Georgia,,,,Middle Georgia Regional Commission,https://mgrcmaps.org/arcgis/rest/services,Y,Y,OK,Y,
907,2,Georgia,Bartow,,13015,,https://services.arcgis.com/0tQ9yX5b2VG5RHei/arcgis/rest/services,Y,Y,OK,Y,
908,2,Georgia,Bryan,,13029,,https://bryangis.bryan-county.org/arcgis/rest/services,Y,Y,OK,Y,
909,2,Georgia,Butts,,13035,,https://wfs.schneidercorp.com/arcgis/rest/services/ButtsCountyGA_WFS/MapServer,Y,Y,OK,Y,
910,2,Georgia,Camden,,13039,,https://maps.crc.ga.gov/crcarcgis/rest/services/Camden,Y,Y,OK,Y,
911,2,Georgia,Camden,,13039,,https://maps.crc.ga.gov/crcarcgis/rest/services/CamdenCD,Y,Y,OK,Y,
912,2,Georgia,Camden,,13039,,https://maps.crc.ga.gov/crcarcgis/rest/services/CamdenCountyVoting,Y,Y,OK,Y,
913,2,Georgia,Camden,,13039,,https://maps.crc.ga.gov/crcarcgis/rest/services/CamdenSchools,Y,Y,OK,Y,
914,2,Georgia,Camden,,13039,,https://maps.crc.ga.gov/crcarcgis/rest/services/Geodata_Camden,Y,Y,OK,Y,
915,2,Georgia,Chatham,,13051,,https://pub.sagis.org/arcgis/rest/services/ChathamCounty,Y,Y,OK,Y,
916,2,Georgia,Chatham,,13051,,https://pub.sagis.org/arcgis/rest/services/CCSheriff,Y,Y,OK,Y,
917,2,Georgia,Chatham,,13051,,https://maps.crc.ga.gov/crcarcgis/rest/services/Chatham,Y,Y,OK,Y,
918,2,Georgia,Cherokee,,13057,,https://gis.cherokeega.com/arcgis/rest/services,Y,Y,OK,Y,
919,2,Georgia,Clayton,,13063,,https://weba.co.clayton.ga.us:5443/server/rest/services,Y,Y,X,Y,
920,2,Georgia,Cobb,,13067,,https://services.arcgis.com/HYLRafMc4Ux6DA8c/arcgis/rest/services,Y,Y,OK,Y,
921,2,Georgia,Cobb,,13067,,https://services3.arcgis.com/nJbIFHiSnaX0z0hS/ArcGIS/rest/services/Cobb_Easements/FeatureServer,Y,Y,OK,Y,
922,2,Georgia,Columbia,,13073,,https://mapsonline.columbiacountyga.gov/arcgis/rest/services,Y,Y,OK,Y,
923,2,Georgia,Cook,,13075,,https://www.sgrcmaps.com/arcgis/rest/services/Cook,Y,Y,OK,Y,
924,2,Georgia,Coweta,,13077,,https://cccjcgiswa.coweta.ga.us/arcgis/rest/services,Y,Y,OK,Y,
925,2,Georgia,DeKalb,,13089,,https://gis.dekalbcountyga.gov/arcgis/rest/services,Y,Y,OK,Y,
926,2,Georgia,DeKalb,,13089,,http://gis.dekalb.k12.ga.us/arcgis_webadapter/rest/services,N,Y,,Y,
927,2,Georgia,Douglas,,13097,,https://gis.dcga.us/arcgis/rest/services,Y,Y,OK,Y,
928,2,Georgia,Echols,,13101,,https://www.sgrcmaps.com/arcgis/rest/services/Echols,Y,Y,OK,Y,
929,2,Georgia,Effingham,,13103,,https://maps.crc.ga.gov/crcarcgis/rest/services/Effingham,Y,Y,OK,Y,
930,2,Georgia,Forsyth,,13117,,https://geo.forsythco.com/gis/rest/services,Y,Y,OK,Y,
931,2,Georgia,Fulton,,13121,,https://services5.arcgis.com/buITjRsK0rZsAXbQ/arcgis/rest/services,Y,Y,OK,Y,
932,2,Georgia,Glynn,,13127,,https://maps.crc.ga.gov/crcarcgis/rest/services/Glynn,Y,Y,OK,Y,
933,2,Georgia,Gwinnett,,13135,,https://gis3.gwinnettcounty.com/mapvis/rest/services,Y,Y,OK,Y,
934,2,Georgia,Habersham,,13137,,https://arcgis4.roktech.net/arcgis/rest/services/habersham,Y,Y,OK,Y,
935,2,Georgia,Habersham,,13137,,https://arcgis5.roktech.net/arcgis/rest/services/habersham,Y,Y,OK,Y,
936,2,Georgia,Hall,,13139,,https://webmap.hallcounty.org/server/rest/services,Y,Y,OK,Y,
937,2,Georgia,Houston,,13153,,https://wfs.schneidercorp.com/arcgis/rest/services/HoustonCountyGA_AdvGar_WFS/MapServer,Y,Y,OK,Y,
938,2,Georgia,Jackson,,13157,,https://services8.arcgis.com/bcbi4lYRFOsss0F5/arcgis/rest/services,Y,Y,OK,Y,
939,2,Georgia,Liberty,,13179,,https://maps.crc.ga.gov/crcarcgis/rest/services/Liberty,Y,Y,OK,Y,
940,2,Georgia,Long,,13183,,https://maps.crc.ga.gov/crcarcgis/rest/services/Long,Y,Y,OK,Y,
941,2,Georgia,McIntosh,,13191,,https://maps.crc.ga.gov/crcarcgis/rest/services/McIntosh,Y,Y,OK,Y,
942,2,Georgia,McIntosh,,13191,,https://maps.crc.ga.gov/crcarcgis/rest/services/Sapelo,Y,Y,OK,Y, Barrier island
943,2,Georgia,Newton,,13217,,https://gis.ncboc.com/arcgis/rest/services,Y,Y,OK,Y,
944,2,Georgia,Paulding,,13223,,https://arcgis4.roktech.net/arcgis/rest/services/Paulding,Y,Y,OK,Y,
945,2,Georgia,Paulding,,13223,,https://arcgis5.roktech.net/arcgis/rest/services/Paulding,Y,Y,OK,Y,
946,2,Georgia,Sumter,,13261,,https://web4.kcsgis.com/kcsgis/rest/services/Americus_SumterCo_GA,Y,Y,OK,Y,
947,2,Georgia,Sumter,,13261,,https://web2.kcsgis.com/kcsgis/rest/services/Imagery/GA_Sumter_Imagery_2014/MapServer,Y,Y,OK,Y,
948,2,Georgia,,Alma,,,https://www.sgrcmaps.com/arcgis/rest/services/Alma,Y,Y,OK,Y,
949,2,Georgia,,Alto See,,,https://arcgis5.roktech.net/arcgis/rest/services/habersham,Y,Y,OK,Y,
950,2,Georgia,,Alpharetta,,,https://services3.arcgis.com/nJbIFHiSnaX0z0hS/ArcGIS/rest/services/AlphaMiltonStatus/FeatureServer,Y,Y,OK,Y,
951,2,Georgia,,Alpharetta,,,https://alphagis.alpharetta.ga.us/arcgis/rest/services,Y,Y,OK,Y,
952,2,Georgia,,Atlanta,,,https://gis.atlantaga.gov/dpcd/rest/services,Y,Y,OK,Y,
953,2,Georgia,,Atlanta,,,https://services3.arcgis.com/nJbIFHiSnaX0z0hS/ArcGIS/rest/services/ATL_Status_Service/FeatureServer,Y,Y,OK,Y,
954,2,Georgia,,Augusta,,,https://gismap.augustaga.gov/arcgis/rest/services,Y,Y,OK,Y,
955,2,Georgia,,Baldwin See,,,https://arcgis5.roktech.net/arcgis/rest/services/habersham,Y,Y,OK,Y,
956,2,Georgia,,Bloomingdale,,,https://maps.crc.ga.gov/crcarcgis/rest/services/Bloomingdale,Y,Y,OK,Y,
957,2,Georgia,,Brookhaven,,,https://maps.brookhavenga.gov/arcgis/rest/services,Y,Y,OK,Y,
958,2,Georgia,,Brooks,,,https://www.sgrcmaps.com/arcgis/rest/services/Brooks,Y,Y,OK,Y,
959,2,Georgia,,Bryan,,,https://maps.crc.ga.gov/crcarcgis/rest/services/Bryan,Y,Y,OK,Y,
960,2,Georgia,,Butler,,,https://web2.mobile311.com/arcgis/rest/services/Georgia/ButlerGA/MapServer,Y,Y,OK,Y,
961,2,Georgia,,Canton,,,https://gis.interdev.com/arcgis/rest/services/Canton,Y,Y,OK,Y,
962,2,Georgia,,Chamblee,,,https://gis.interdev.com/arcgis/rest/services/Chamblee,Y,Y,OK,Y,
963,2,Georgia,,Clarkesville See,,,https://arcgis5.roktech.net/arcgis/rest/services/habersham,Y,Y,OK,Y,
964,2,Georgia,,Cornelia See,,,https://arcgis5.roktech.net/arcgis/rest/services/habersham,Y,Y,OK,Y,
965,2,Georgia,,Decatur,,,https://gis.interdev.com/arcgis/rest/services/DecaturServices,Y,Y,OK,Y,
966,2,Georgia,,Demorest See,,,https://arcgis5.roktech.net/arcgis/rest/services/habersham,Y,Y,OK,Y,
967,2,Georgia,,Dunwoody,,,https://dungis.dunwoodyga.gov/arcgis/rest/services,Y,Y,OK,Y,
968,2,Georgia,,Hinesville,,,https://maps.crc.ga.gov/crcarcgis/rest/services/HinesvilleView,Y,Y,OK,Y,
969,2,Georgia,,Johns Creek,,,https://gis.johnscreekga.gov/jcgis/rest/services,Y,Y,OK,Y,
970,2,Georgia,,Johns Creek,,,https://services1.arcgis.com/bqfNVPUK3HOnCFmA/arcgis/rest/services,Y,Y,OK,Y,
971,2,Georgia,,LaGrange,,,http://maps.lagrange-ga.org/arcgis/rest/services,N,Y,,Y,
972,2,Georgia,,Live Oak,,,https://www.sgrcmaps.com/arcgis/rest/services/LiveOak/boundaries/MapServer,Y,Y,OK,Y,
973,2,Georgia,,Marietta,,,https://secure.mariettaga.gov/arcgis/rest/services,Y,Y,OK,Y,
974,2,Georgia,,Marietta,,,https://lucity.mariettaga.gov/arcgis/rest/services,Y,Y,OK,Y,
975,2,Georgia,,Milton,,,https://services3.arcgis.com/nJbIFHiSnaX0z0hS/ArcGIS/rest/services/AlphaMiltonStatus/FeatureServer,Y,Y,OK,Y,
976,2,Georgia,,Mt. Airy See,,,https://arcgis5.roktech.net/arcgis/rest/services/habersham,Y,Y,OK,Y,
977,2,Georgia,,Patterson,,,https://www.sgrcmaps.com/arcgis/rest/services/Patterson,Y,Y,OK,Y,
978,2,Georgia,,Pembroke,,,https://maps.crc.ga.gov/crcarcgis/rest/services/Bryan,Y,Y,OK,Y, Includes Pembroke
979,2,Georgia,,Powder Springs,,,https://services6.arcgis.com/hpvhAmRP1z50gTbO/arcgis/rest/services,Y,Y,OK,Y,
980,2,Georgia,,Rockdale,,,https://arcgis4.roktech.net/arcgis/rest/services/Rockdale,Y,Y,OK,Y,
981,2,Georgia,,Roswell,,,https://gisweb.ci.roswell.ga.us/arcgis/rest/services,Y,Y,OK,Y,
982,2,Georgia,,Sandy Springs,,,https://gis2.sandyspringsga.gov/arcgis/rest/services,Y,Y,OK,Y,
983,2,Georgia,,Savannah (area),,,https://cloud.sagis.org/arcgis/rest/services/SagisOrg2020/SAGISOrg/MapServer,Y,Y,OK,Y,
984,2,Georgia,,Savannah (area),,,https://pub.sagis.org/arcgis/rest/services,Y,Y,OK,Y,
985,2,Georgia,,St. Marys,,,https://maps.crc.ga.gov/crcarcgis/rest/services/GeodataService_StM,Y,Y,OK,Y,
986,2,Georgia,,Screven,,,https://maps.crc.ga.gov/crcarcgis/rest/services/Screven,Y,Y,OK,Y,
987,2,Georgia,,Stonecrest,,,https://gis.interdev.com/arcgis/rest/services/Stonecrest,Y,Y,OK,Y,
988,2,Georgia,,Tallulah See,,,https://arcgis5.roktech.net/arcgis/rest/services/habersham,Y,Y,OK,Y,
989,2,Georgia,,Tucker,,,https://gis.interdev.com/arcgis/rest/services/Tucker,Y,Y,OK,Y,
990,2,Georgia,,West Point,,,https://arcgis4.roktech.net/arcgis/rest/services/WestPoint,Y,Y,OK,Y,
991,2,Georgia,,West Point,,,https://arcgis5.roktech.net/arcgis/rest/services/WestPoint,Y,Y,OK,Y,
992,2,Georgia,,Woodstock,,,https://gis.woodstockga.gov/arcgis/rest/services,Y,Y,OK,Y,
993,2,Hawaii,,,15,Hawaii various layers,https://geodata.hawaii.gov/arcgis/rest/services,Y,Y,OK,Y, Here is an excel file with a nice list of the layers on this server
994,2,Hawaii,Hawaii,,15001,,https://gis.hawaiicounty.gov/arcgis/rest/services,Y,Y,OK,Y,
995,2,Hawaii,Honolulu,,15003,,https://services.arcgis.com/tNJpAOha4mODLkXz/arcgis/rest/services,Y,Y,OK,Y,
996,2,Hawaii,,Honolulu,,,https://locator.hawaii.gov/arcgis/rest/services,Y,Y,OK,Y,
997,2,Hawaii,,Honolulu,,,https://gis.aecomonline.net/arcgis/rest/services/Honolulu,Y,Y,OK,Y, Also see Honolulu county
998,2,Idaho,,,16,Idaho Geospatial Data Clearinghouse,https://insideidaho.org/arcgis/rest/services,Y,Y,OK,Y,
999,2,Idaho,,,16,Idaho Geospatial Data Clearinghouse,https://gis2.idaho.gov/arcgis/rest/services,Y,Y,OK,Y,