forked from usgs-makerspace/analytics_pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgaTable.yaml
1158 lines (1100 loc) · 47.1 KB
/
gaTable.yaml
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
- longName: Publications Warehouse
shortName: Pubs
accountName: pubs.er.usgs.gov
viewID: "20354817"
accountId: "10113280"
webPropertyId: UA-10113280-1
internalWebPropertyId: "22153976"
viewName: pubs.er.usgs.gov
timezone: America/Chicago
websiteUrl: http://pubs.er.usgs.gov
botFilteringEnabled: "TRUE"
description: >-
The Publications Warehouse (Pubs) provides access to all publications written by
USGS scientists back to the founding of the bureau and is the public face of
all new USGS Series reports released since summer 2015. The app forms the
core of the publications access part of the USGS OSTP Open Access memo response,
providing access to USGS funded publications and linking to underlying datasets,
and is the authoritative source of publication metadata for other USGS systems
(WRET, Sciencebase, others).
projectContact: "Jim Kreft"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: Water Quality Portal
shortName: WQP
accountName: WQP
viewID: "53642301"
accountId: "27507375"
webPropertyId: UA-27507375-1
internalWebPropertyId: "52832367"
viewName: WQP
timezone: America/Chicago
websiteUrl: http://www.waterqualitydata.us
botFilteringEnabled: "TRUE"
description: >-
The Water Quality Portal (WQP) is a collaborative project between
the USGS and the EPA to provide a single point of access for discrete water quality
data. The WQP makes it possible to access hundreds of millions of individual water
quality results without having to engage in much of the onerous data clean-up
otherwise required. The WQP is focused on discrete, ambient water quality data from
both surface and groundwater.
projectContact: "Candice Hopkins"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: National Ground Water Monitoring Network Data Portal
shortName: NGWMN
accountName: NGWMN Data Portal
viewID: "56773153"
accountId: "29564531"
webPropertyId: UA-29564531-2
internalWebPropertyId: "55739376"
viewName: NGWMN Data Portal
timezone: America/Chicago
websiteUrl: http://cida.usgs.gov/ngwmn
botFilteringEnabled: ""
description: >-
The National Ground Water Monitoring Network Data Portal (NGWMN) data portal provides
on-demand access to groundwater data
from distributed systems through a map-based portal in a single, aggregated output.
The NGWMN portal displays status of water levels for NGWMN sites geographically in portal
using a statistics suite. This project continues to support data providers and develops
and maintains connections between provider data systems and NGWMN.
projectContact: "Candice Hopkins"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: Geo Data Portal
shortName: GDP
accountName: Geo Data Portal
viewID: "63434149"
accountId: "34380265"
webPropertyId: UA-34380265-1
internalWebPropertyId: "61904170"
viewName: Geo Data Portal
timezone: America/Chicago
websiteUrl: http://cida.usgs.gov/gdp/
botFilteringEnabled: ""
description: >-
The Geo Data Portal (GDP) and its data archives offer a multi-dataset processing
service for environmental modelers to gain access to downscaled climate projections. The
GDP is a processing service for watershed and other modelers to use to
access downscaled climate projections. The GDP project has an associated
archive of climate projections and other gridded time series dataset with web services.
Increasingly, this project relies on the Unidata programming office for help maintaining
software associated with the project.
projectContact: "Jordan Read"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: Coastal Change Hazards Portal
shortName: CCH
accountName: CIDA CCH
viewID: "79994645"
accountId: "46378632"
webPropertyId: UA-46378632-1
internalWebPropertyId: "77384024"
viewName: All Web Site Data
timezone: America/Chicago
websiteUrl: http://cida.usgs.gov/coastalchangehazardsportal/
botFilteringEnabled: ""
description: >-
The Coastal Change Hazards (CCH) Portal provides interactive access to coastal
change science and data for our Nation's coasts. It provides tools to researchers to
manage their coastal datasets' appearance in the Portal including real-time storm
forecast data sharing and updates throughout events, such as hurricanes. This app
allows users to create simple, sharable mash-ups of different coastal datasets and
provides historical data aiding the understanding and prediction of storm impacts.
projectContact: "Megan Hines"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: Biodata (Internal)
shortName: BiodataIn
accountName: BioData
viewID: "91413881"
accountId: "47407832"
webPropertyId: UA-47407832-1
internalWebPropertyId: "78657237"
viewName: BioData Input with Most CIDA Traffic Filtered Out
timezone: America/Chicago
websiteUrl: https://internal.aquatic.biodata.usgs.gov
botFilteringEnabled: "FALSE"
description: >-
BioData is an authoritative source of high-quality data that satisfies
FSP policies for data documentation, preservation, and dissemination of fish,
macroinvertebrate, and algae community data. Biodata is a coordinated data management
system for the capture, quality-assurance, maintenance, discovery, and distribution
of aquatic bioassessment data collected by USGS. The application will be included in
NWIS Modernization efforts to better align the system with OWI current development
practices, system operations, and to address significant technical debt.
projectContact: "Meredith Pavlick"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: Biodata Retrieval (External)
shortName: BiodataRet
accountName: BioData
viewID: "84991236"
accountId: "47407832"
webPropertyId: UA-47407832-2
internalWebPropertyId: "78668543"
viewName: BioData Retrieval
timezone: America/Chicago
websiteUrl: https://aquatic.biodata.usgs.gov
botFilteringEnabled: ""
description: >-
The BioData Retrieval (BiodataRet) system provides access to aquatic bioassessment data (biological
community and physical habitat data) collected by USGS scientists from stream ecosystems
across the nation. BioData Retrieval is a public system and disseminates data from over
15,000 fish, aquatic macroinvertebrate, and algae community samples.
projectContact: "Meredith Pavlick"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: NWIS Reporting Application (Internal)
shortName: NWIS-RA
accountName: NWIS-RA
viewID: "150563516"
accountId: "50379402"
webPropertyId: UA-50379402-5
internalWebPropertyId: "82341003"
viewName: All Web Site Data
timezone: America/Chicago
websiteUrl: https://nwisdata.usgs.gov
botFilteringEnabled: "FALSE"
description: >-
The NWIS Reporting Application (NWIS-RA) provides USGS staff with retrieval and reporting capabilities for
internal-only and public data in the National Water Information System (NWIS). Users
can access site information, surface water, groundwater, water quality, and water use
records. Discrete (non-continuous) data as well as time-series (continuous) data are
available from active and inactive sites.
projectContact: "Meredith Pavlick"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: National Water Census
shortName: NWC
accountName: National Water Census
viewID: "86002663"
accountId: "50928997"
webPropertyId: UA-50928997-1
internalWebPropertyId: "83038855"
viewName: All Web Site Data
timezone: America/Chicago
websiteUrl: http://cida.usgs.gov/nwc
botFilteringEnabled: ""
description: >-
The Water Availablity and Use Science Program National Water Census (NWC) will provide a baseline data resource for
water planning and management. The NWC curates research tools and outcomes of the
National Water Census initiative, integrates water use compilation data into water
budget data resources, is developing a framework for archiving and visualization
of national-scale hydrologic modeling, and provides value-added tools for evaluation of
ecological water needs.
projectContact: "Dave Blodgett"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: USGS-R Resources
shortName: USGS-R
accountName: USGS-R
viewID: "98740675"
accountId: "53797708"
webPropertyId: UA-53797708-5
internalWebPropertyId: "94745748"
viewName: All Web Site Data
timezone: America/Chicago
websiteUrl: http://owi.usgs.gov/R
botFilteringEnabled: ""
description: >-
USGS-R is a community of support for users of the R scientific programming language. USGS-R
resources include R training materials, R tools for the retrieval and analysis of USGS data,
and support for a growing group of USGS-R developers.
projectContact: "USGS-R Admin Team"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: "VizLab: California Drought"
shortName: VizLabCADrought
accountName: CIDA drought app
viewID: "94771699"
accountId: "57400827"
webPropertyId: UA-57400827-1
internalWebPropertyId: "91087966"
viewName: All Web Site Data
timezone: America/Chicago
websiteUrl: http://cida.usgs.gov/ca_drought
botFilteringEnabled: ""
description: >-
The Vizlab California Drought (VizLabCADrought) website graphically visualizes water data from State, Federal, and Tribal agencies
to help understand the effect of drought on rivers, streams, lakes, and reservoirs in the State of California.
projectContact: "Emily Read"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: NAWQA Water Quality Mapper
shortName: NAR
accountName: NAWQA Annual Reports
viewID: "105752773"
accountId: "65551512"
webPropertyId: UA-65551512-1
internalWebPropertyId: "101784549"
viewName: NAR Website Excluding Internal Traffic
timezone: America/Chicago
websiteUrl: http://cida.usgs.gov/quality/rivers/sites
botFilteringEnabled: "TRUE"
description: >-
The USGS National Water-Quality Assessment (NAWQA) Water Quality Mapper (NAR) characterizes the status and
trends of the Nation’s surface-water quality through a National Water Quality Network. This
website provides data on national ambient water-quality conditions for rivers and streams from the NAWQA project.
projectContact: "Jim Kreft"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: "VizLab: Colorado River Drought"
shortName: VizLabCRBDrought
accountName: OWDI Drought Vizzy
viewID: "106583560"
accountId: "66155743"
webPropertyId: UA-66155743-1
internalWebPropertyId: "102550529"
viewName: All Web Site Data
timezone: America/Chicago
websiteUrl: https://www.doi.gov/water/owdi.cr.drought/en/
botFilteringEnabled: ""
description: >-
The VizLab Colorado River Drought application (VizLabCRBDrought) was developed by the USGS and the Bureau of
Reclamation in support of the Department of the Interior’s Open Water Data Initiative
(OWDI). This visualization is part of a multi-agency effort to showcase the usefulness
of open data (i.e., data provided in a discoverable, sharable, and machine-readable
format) by exploring the current 16-year drought and its effects on the Colorado River
Basin.
projectContact: "Emily Read"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: OWI blog (Legacy)
shortName: OWI
accountName: OWI Website
viewID: "119859676"
accountId: "76112553"
webPropertyId: UA-76112553-1
internalWebPropertyId: "114685767"
viewName: All Web Site Data
timezone: America/Chicago
websiteUrl: http://owi.usgs.gov
botFilteringEnabled: ""
description: >-
The Office of Water Information (OWI) is committed to advancing USGS science by integrating data across scales and domains,
improving access to data and research, and developing tools for analysis and visualization,
fostering collaboration with the international community. This website highlights the people,
partners, products, and efforts of OWI.
projectContact: "Emily Read"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: "VizLab: Climate Change and Fisheries"
shortName: VizLabClimateFish
accountName: Vizlab
viewID: "129299951"
accountId: "78530187"
webPropertyId: UA-78530187-2
internalWebPropertyId: "124964749"
viewName: All Web Site Data
timezone: America/Chicago
websiteUrl: https://owi.usgs.gov/vizlab/climate-change-walleye-bass/
botFilteringEnabled: ""
description: >-
The VizLab Climate Change and Fisheries website (VizLabClimateFish) explains to a general audience the source
of shifts in Wisconsin fish habitat due to climate change. Warming lakes are changing fish
communities in Wisconsin, walleye populations are declining, and large mouth bass
populations are increasing.
projectContact: "Jordan Read"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: "VizLab: Microplastics in Our Waterways"
shortName: VizLabMicroplastics
accountName: Vizlab
viewID: "129289964"
accountId: "78530187"
webPropertyId: UA-78530187-3
internalWebPropertyId: "124954360"
viewName: All Web Site Data
timezone: America/Chicago
websiteUrl: https://owi.usgs.gov/vizlab/microplastics/
botFilteringEnabled: ""
description: >-
The VizLab Microplastics in Our Waterways (ViaLabMicroplastics) website describes the importance of
microplastics, plastic particles less than 5 millimeters in diameter, which are a contaminant
of emerging concern in aquatic environments. Microplastics come from a wide range of
potential sources (see Microplastics Sources sidebar), and are commonly grouped by size,
as well as by particle types including fibers/lines, pellets/beads, foams, films, and fragments.
projectContact: "Laura DeCicco"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: "VizLab: Water Use"
shortName: VizLabWaterUse
accountName: Vizlab
viewID: "135016013"
accountId: "78530187"
webPropertyId: UA-78530187-5
internalWebPropertyId: "131088296"
viewName: All Web Site Data
timezone: America/Chicago
websiteUrl: https://owi.usgs.gov/vizlab/water-use
botFilteringEnabled: "TRUE"
description: >-
The VizLab Water Use (VizLabWaterUse) application features water use data has been collected and compiled
by the USGS since 1950. This data has
changed over time in terms of how it was categorized and at what spatial scale it was
summarized to. This visualization shows that change over time as this dataset has
become more powerful, and attempts to illustrate where the data can go in the future
to be a more useful dataset going forward.
projectContact: "Emily Read"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: GCMRC Discharge, Sediment, and Water Quality Monitoring App
shortName: GCMRC
accountName: CIDA GCMRC Analytics
viewID: "80089136"
accountId: "46435687"
webPropertyId: UA-46435687-1
internalWebPropertyId: ""
viewName: All Web Site Data
timezone: America/Chicago
websiteUrl: https://www.gcmrc.gov/discharge_qw_sediment/
botFilteringEnabled: ""
description: >-
The Grand Canyon Monitoring and Research Center's (GCMRC) decision-support tools provide accurate,
near-real-time data and user-friendly interactive visualizations by continuous aggregation
of datasets and continual recomputed derived values based on latest available data.
The GCMRC Web app provides resource managers and decision makers access to continuous, aggregated data of interest in support of the Glen
Canyon Dam Adaptive Management Program (GCDAMP) and numerous other water projects in the
Western US to plan and implement controlled floods for rebuilding sandbars, and evaluate effects of hydropower and local floods on sand and sediment resources.
projectContact: "Megan Hines"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: National Environmental Methods Index
shortName: NEMI
accountName: nemi_usgs
viewID: "71090861"
accountId: "39958467"
webPropertyId: "UA-39958467-1"
internalWebPropertyId: "69003499"
viewName: All Web Site Data
timezone: "America/Chicago"
websiteUrl: https://www.nemi.gov
botFilteringEnabled: ""
description: >-
The National Environmental Methods Index (NEMI) is a publicly-accessible searchable
interface for monitoring methods and their associated
analytes of interest.
projectContact: "Candice Hopkins"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: NWISWeb (Mobile)
shortName: NWISWebMobile
accountName: USGS Mobile Water Data & Water Services
viewID: "73906131"
accountId: "42005086"
webPropertyId: UA-42005086-1
internalWebPropertyId: "71636360"
viewName: ""
timezone: "America/New_York"
websiteUrl: http://m.waterdata.usgs.gov
botFilteringEnabled: ""
description: >-
This site is an instance of the National Water Information System Website designed for mobile users (NWISWebMobile).
It highlights USGS current conditions water data.
For example, you can use it to monitor conditions at a favorite river or stream. All USGS
current conditions water data are available.
projectContact: "Jim Kreft"
projectContactEmail: "[email protected]"
analyticsContact: "Jim Kreft"
analyticsContactEmail: "[email protected]"
- longName: NWISWeb (NextGen + Legacy Desktop)
shortName: NWISWebDesktop
accountName: USGS Water Data for the Nation
viewID: "49785472"
accountId: "25350863"
webPropertyId: UA-25350863-1
internalWebPropertyId: "49291662"
viewName: ""
timezone: "America/Denver"
websiteUrl: http://waterdata.usgs.gov
botFilteringEnabled: ""
description: >-
This site is the public web interface to the USGS National Water Information System optimized
for desktop users (NWISWebDesktop). These
pages provide access to water-resources data collected at approximately 1.5 million sites
in all 50 States, the District of Columbia, Puerto Rico, the Virgin Islands, Guam, American
Samoa and the Commonwealth of the Northern Mariana Islands.
projectContact: "Jim Kreft"
projectContactEmail: "[email protected]"
analyticsContact: "Jim Kreft"
analyticsContactEmail: "[email protected]"
- longName: NWISWeb (Legacy Desktop)
shortName: NWISWebLegacyDesktop
accountName: USGS Water Data for the Nation
viewID: "221302252"
accountId: "25350863"
webPropertyId: UA-25350863-1
internalWebPropertyId: "49291662"
viewName: "legacy content"
timezone: "America/Denver"
websiteUrl: http://waterdata.usgs.gov
botFilteringEnabled: ""
description: >-
This site is the public web interface to the USGS National Water Information System optimized
for desktop users (NWISWebDesktop). These
pages provide access to water-resources data collected at approximately 1.5 million sites
in all 50 States, the District of Columbia, Puerto Rico, the Virgin Islands, Guam, American
Samoa and the Commonwealth of the Northern Mariana Islands.
projectContact: "Jim Kreft"
projectContactEmail: "[email protected]"
analyticsContact: "Jim Kreft"
analyticsContactEmail: "[email protected]"
- longName: Health Based Screening Levels
shortName: HBSL
accountName: NAWQA Data Warehouse
viewID: "83069807"
accountId: "27722501"
webPropertyId: UA-27722501-13
internalWebPropertyId: "80288862"
viewName: All Web Site Data
timezone: America/Chicago
websiteUrl: http://water.usgs.gov/nawqa/HBSL
botFilteringEnabled: ""
description: >-
The Health-Based Screening Levels (HBSL) application communicates the potential
relevance of water-quality findings from the USGS National Water-Quality Assessment
(NAWQA) Program in a human-health context. Federal drinking-water standards or
guidelines are not available for many of the hundreds of contaminants analyzed by
USGS in sources of drinking water.
projectContact: "Alice McCarthy"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: Groundwater Watch
shortName: GroundwaterWatch
accountName: "Groundwater Watch"
viewID: "77121234"
accountId: "44392125"
webPropertyId: "UA-44392125-1"
internalWebPropertyId: "74703043"
viewName: ""
timezone: "America/New_York"
websiteUrl: http://groundwaterwatch.usgs.gov
botFilteringEnabled: ""
description: >-
The Groundwater Watch (GroundwaterWatch) application provides easy access to geospatial
summaries of current and historical USGS groundwater data.
projectContact: "Steven Brady"
projectContactEmail: "[email protected]"
analyticsContact: "Steven Brady"
analyticsContactEmail: "[email protected]"
- longName: WaterWatch
shortName: WaterWatch
accountName: ""
viewID: "18857756"
accountId: "9370142"
webPropertyId: "UA-9370142-1"
internalWebPropertyId: "20799689"
viewName: ""
timezone: "America/New_York"
websiteUrl: waterwatch.usgs.gov
botFilteringEnabled: ""
description: >-
WaterWatch displays maps, graphs, and tables describing real-time, recent, and past
streamflow conditions for the United States. WaterWatch summarizes streamflow conditions
in a region (state or hydrologic unit) in terms of the long-term typical condition at
streamgages in the region.
projectContact: "WaterWatch Team"
projectContactEmail: "[email protected]"
analyticsContact: "Steven Brady"
analyticsContactEmail: "[email protected]"
- longName: "Water Science School (Natweb)"
shortName: "WaterSciSchool"
accountName: ""
viewID: "83658557"
accountId: "22425935"
webPropertyId: UA-22425935-1
internalWebPropertyId: "44153450"
viewName: 1-Water Science School
timezone: America/New_York
websiteUrl: https://water.usgs.gov/edu/
botFilteringEnabled: ""
description: >-
The Water Science School (WaterSciSchool) website offers information on many aspects of water, along with pictures, data,
maps, and an interactive center where you can give opinions and test your water knowledge. Large parts
of this content was migrated to Drupal in spring 2019.
projectContact: "Emily Read"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: "water.usgs.gov (Natweb)"
shortName: "water.usgs.gov"
accountName: ""
viewID: "83660223"
accountId: "22425935"
webPropertyId: UA-22425935-1
internalWebPropertyId: "44153450"
viewName: 2-Not W.S. School
timezone: America/New_York
websiteUrl: http://water.usgs.gov
botFilteringEnabled: .na.character
description: >-
The Water Mission Area website (water.usgs.gov) is the landing page of USGS Water, whose
mission is to collect and disseminate
reliable, impartial, and timely information that is needed to understand the Nation's
water resources.
Since the launch of the new WMA Drupal pages in spring 2019, this site now only contains
content that was not migrated to Drupal. Traffic has decreased substantially as a result.
projectContact: "Emily Read"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: "Streamer (TX WSC)"
shortName: "Streamer"
accountName: txwscwebgroup
viewID: "183233225"
accountId: "37706584"
webPropertyId: UA-37706584-2
internalWebPropertyId: "66373103"
viewName: Streamer
timezone: America/Chicago
websiteUrl: https://txpub.usgs.gov/DSS/streamer/web/
botFilteringEnabled: "TRUE"
description: >-
Streamer - TX WSC (Streamer) is a web-based mapper that visualizes water flow across America. Streamer allows users to explore our
Nation's major streams by tracing upstream to their source or downstream to where they empty. It
also creates reports about your stream traces and the places they pass through.
projectContact: "Streamer Team"
projectContactEmail: "[email protected]"
analyticsContact: "Ramona Neafie"
analyticsContactEmail: "[email protected]"
- longName: "StreamStats"
shortName: "StreamStats"
accountName: WIM USGS
viewID: "116153556"
accountId: "61219868"
webPropertyId: UA-61219868-6
internalWebPropertyId: "111309349"
viewName: All Web Site Data
timezone: America/New_York
websiteUrl: https://streamstats.usgs.gov/ss/
botFilteringEnabled: "FALSE"
description: >-
StreamStats is a Web-based Geographic Information Systems (GIS) application that provides
users with access to an assortment of analytical tools that are useful for a variety of
water-resources planning and management purposes, and for engineering and design purposes.
projectContact: "Hans Vraga"
projectContactEmail: "[email protected]"
analyticsContact: "Lauren Privette"
analyticsContactEmail: "[email protected]"
- longName: "IWAAs Surface Water Flow Trends"
shortName: "IWAAsSWFlowTrends"
accountName: WIM USGS
viewID: '233875529'
accountId: '61219868'
webPropertyId: UA-61219868-45
internalWebPropertyId: '135107854'
viewName: All Web Site Data
timezone: America/New_York
websiteUrl: https://iwaas.wim.usgs.gov/sw-flow-trends/
botFilteringEnabled: .na.character
description: >-
The U.S. Geological Survey (USGS) Water Resources Mission Area (WMA) has established the Integrated
Water Availability Assessments (IWAAs) to capitalize on the operational and scientific strengths of
the USGS to support understanding and management of the nation’s complex water resource issues. In
this effort, IWAAs provides nationally and regionally consistent assessments of water for human and
ecological needs at a range of spatial and temporal scales. Determining trends in water availability is
necessary to better understand the factors limiting water supply and use and inform forecasts of hydrologic extremes.
projectContact: 'Hans Vraga'
projectContactEmail: '[email protected]'
analyticsContact: 'Hans Vraga'
analyticsContactEmail: '[email protected]'
- longName: "NAWQA SW Water Quality Trends"
shortName: "NaWQASWTrends"
accountName: WIM USGS
viewID: "139280803"
accountId: "61219868"
webPropertyId: UA-61219868-19
internalWebPropertyId: "135107854"
viewName: All Web Site Data
timezone: America/New_York
websiteUrl: https://nawqatrends.wim.usgs.gov/swtrends/
botFilteringEnabled: .na.character
description: >-
The National Water-Quality Assessment - Water Quality Changes in the Nations Streams and Rivers
mapper (NaWQASWTrends) provides web-based results from the largest-ever assessment of water-quality changes in the
Nation's streams and rivers. More than 185 million water-quality records from over 600 Federal,
State, Tribal, and local organizations were screened as part of this assessment. The mapper
shows stream trends in water chemistry (nutrients, pesticides, sediment, carbon, and salinity)
and aquatic ecology (fish, invertebrates, and algae) for four time periods, 1972-2012, 1982-2012,
1992-2012, and 2002-2012.
projectContact: "Hans Vraga"
projectContactEmail: "[email protected]"
analyticsContact: "Lauren Privette"
analyticsContactEmail: "[email protected]"
- longName: "NAWQA GW Water Quality Trends"
shortName: "NaWQADecadalTrendsMapper"
accountName: WIM USGS
viewID: "116129201"
accountId: "61219868"
webPropertyId: UA-61219868-5
internalWebPropertyId: "111279201"
viewName: All Web Site Data
timezone: America/Los_Angeles
websiteUrl: http://nawqatrends.wim.usgs.gov/Decadal/
botFilteringEnabled: .na.character
description: >-
The National Water-Quality Assessment - Decadal Trends Mapper (NaWQADecadalTrendsMapper)
shows how concentrations of pesticides, nutrients, metals, and organic contaminants
in groundwater are changing during decadal periods across the Nation. Tracking changes in
groundwater quality and investigating the reasons for these changes is crucial for informing
management decisions to protect and sustain our valuable groundwater resources.
projectContact: "Hans Vraga"
projectContactEmail: "[email protected]"
analyticsContact: "Lauren Privette"
analyticsContactEmail: "[email protected]"
- longName: "Flood Inundation Mapper"
shortName: "FIM-JS"
accountName: WIM USGS
viewID: "147316934"
accountId: "61219868"
webPropertyId: UA-61219868-23
internalWebPropertyId: "142720692"
viewName: All Web Site Data
timezone: America/Los_Angeles
websiteUrl: https://fim.wim.usgs.gov/fim/
botFilteringEnabled: .na.character
description: >-
The Flood Inundation Mapper (FIM) allows users to explore the full set of inundation maps that shows where
flooding would occur given a selected stream condition. Users can also access historical
flood information and potential loss estimates based on the severity of the flood. The
FIM Mapper helps communities visualize potential flooding scenarios, identify areas and
resources that may be at risk, and enhance their local response effort during a flooding event.
projectContact: "Hans Vraga"
projectContactEmail: "[email protected]"
analyticsContact: "Lauren Privette"
analyticsContactEmail: "[email protected]"
- longName: "Flood Event Viewer"
shortName: "FEV"
viewID: "131080146"
accountId: "61219868"
webPropertyId: UA-61219868-14
viewName: All Web Site Data
timezone: "America/New_York"
websiteUrl: http://stn.wim.usgs.gov/fev/
botFilteringEnabled: "NA"
description: >-
The USGS Flood Event Viewer (FEV) is the public data discovery component of the
Short-Term Network (STN) database. Data viewable and downloadable from this page
are from the STN database. This application integrates with the USGS National Water
Information System (NWIS) database for display of time-series water data.
projectContact: "Hans Vraga"
projectContactEmail: "[email protected]"
analyticsContact: "Lauren Privette"
analyticsContactEmail: "[email protected]"
- longName: "NWISWeb (Mapper)"
shortName: "NWISMapper"
accountName: WIM USGS
viewID: "120202187"
accountId: "61219868"
webPropertyId: "UA-61219868-8"
viewName: "All Web Site Data"
timezone: "America/New_York"
websiteUrl: "http://maps.waterdata.usgs.gov"
botFilteringEnabled: "NA"
description: >-
The National Water Information System Mapper (NWISMapper) is a web mapping application for interfacing with NWIS data.
The National Water Information System Mapper - Water Alert (NWISMapper-WaterAlert) is a web-based map that links to
USGS gage data and allows users to subscribe to site notifications
through WaterAlert. WaterAlert service sends e-mail or text (SMS) messages when certain
parameters, as measured by a USGS real-time data-collection station, exceed user-definable thresholds.
projectContact: "Joseph Kalfsbeek"
projectContactEmail: "[email protected]"
analyticsContact: "Lauren Privette"
analyticsContactEmail: "[email protected]"
- longName: "Surface Water Flow Trends in the Nation's Streams and Rivers"
shortName: "SWFlowTrends"
accountName: WIM USGS
viewID: "233875529"
accountId: "61219868"
webPropertyId: "UA-61219868-45"
viewName: "All Web Site Data"
timezone: "America/New_York"
websiteUrl: "https://iwaas.wim.usgs.gov/sw-flow-trends"
botFilteringEnabled: "NA"
description: >-
The Surface Water Flow Trends mapper provides results from assessments of trends in low and high streamflows in the Nation's streams
and rivers over the past 100, 75, and 50 years (1916-2015, 1941-2015 and 1966-2015). Streamflow records from
more than 2,000 U.S. Geological Survey (USGS) streamgages across the conterminous U.S. were used in these
assessments. Tracking changes in streamflow and investigating the reasons for these changes is crucial for
informing management decisions to protect and sustain our valuable water resources and to mitigate water-related
hazards.
projectContact: "Nick Estes"
projectContactEmail: "[email protected]"
analyticsContact: "Lauren Privette"
analyticsContactEmail: "[email protected]"
- longName: "VizLab: Hurricane Harvey's Water Footprint"
shortName: VizLabHarvey
accountName: Vizlab
viewID: "159018840"
accountId: "78530187"
webPropertyId: UA-78530187-7
internalWebPropertyId: "157530047"
viewName: All Web Site Data
timezone: America/Chicago
websiteUrl: https://owi.usgs.gov/vizlab/hurricane-harvey
botFilteringEnabled: ""
description: >-
The VizLab Hurricane Harvey Water Footprint (VizLabHarvey) application demonstrates
Hurricane Harvey's approach to the U.S. Gulf coast on August 25-31, 2017. This
visualization shows the hurricane's impact on precipitation and streamflow.
projectContact: "Jordan Read"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: "VizLab: Hurricane Irma's Water Footprint"
shortName: VizLabIrma
accountName: Vizlab
viewID: "159805194"
accountId: "78530187"
webPropertyId: UA-78530187-8
internalWebPropertyId: "158389592"
viewName: All Web Site Data
timezone: America/Chicago
websiteUrl: https://owi.usgs.gov/vizlab/hurricane-irma
botFilteringEnabled: ""
description: >-
The VizLab Hurricane Irma Water Footprint (VizLabIrma) application demonstrates
Hurricane Irma's approach to Florida on Sept 8-12, 2017. This
visualization shows the hurricane's impact on precipitation and streamflow.
projectContact: "Jordan Read"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: "VizLab: Hurricane Maria's Water Footprint"
shortName: VizLabMaria
accountName: Vizlab
viewID: "160717710"
accountId: "78530187"
webPropertyId: UA-78530187-9
internalWebPropertyId: ""
viewName: All Web Site Data
timezone: America/Chicago
websiteUrl: https://owi.usgs.gov/vizlab/hurricane-maria
botFilteringEnabled: ""
description: >-
The VizLab Hurricane Maria Water Footprint (VizLabMaria) application demonstrates
Hurricane Maria's approach to Puerto Rico on Sept 18-25, 2017. This
visualization shows the hurricane's impact on precipitation and streamflow.
projectContact: "Jordan Read"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: "VizLab: 2015 Water Use"
shortName: VizLabWaterUse15
accountName: Vizlab
viewID: "177200146"
accountId: "78530187"
webPropertyId: UA-78530187-12
internalWebPropertyId: ""
viewName: All Web Site Data
timezone: America/Chicago
websiteUrl: https://owi.usgs.gov/vizlab/water-use-15
botFilteringEnabled: "TRUE"
description: >-
Water touches almost every aspect of American life: from food to electricity to
consumer products. Understanding how we use water is crucial for learning how
to be more responsible with water resources. For the first time, the U.S.
Geological Survey is displaying the national compilation of water use data for
every U.S. county. Explore the variety of water use across the U.S. to understand
how we use our current resources.
projectContact: "Jordan Read"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: "NWISWeb (NG BETA)"
shortName: "New Site Pages"
accountName: "USGS Water Data for the Nation"
viewID: "190316048"
accountId: "25350863"
webPropertyId: UA-25350863-1
internalWebPropertyId: ""
viewName: All Web Site Data
timezone: America/Chicago
websiteUrl: https://waterdata.usgs.gov/monitoring-location/03597860/
botFilteringEnabled: "TRUE"
description: >-
New site pages. Note that data starts on February 21st
(after the public soft release), and only contains URLs starting
with /monitoring-location/.
projectContact: "Jim Kreft"
projectContactEmail: "[email protected]"
analyticsContact: "Jim Kreft"
analyticsContactEmail: "[email protected]"
- longName: "WMA NSDI Node"
shortName: "Water NSDI node"
accountName: "Water NSDI node"
viewID: "196097632"
accountId: "141213604"
webPropertyId: UA-141213604-1
internalWebPropertyId: "202273746"
viewName: All Web Site Data
timezone: America/Chicago
websiteUrl: https://water.usgs.gov/lookup/getgislist
botFilteringEnabled: "TRUE"
description: >-
The USGS Water Resources NSDI Node provides data, photographs and maps produced
by the U.S. Geological Survey.
projectContact: "Mike Ierardi"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: "water.usgs.gov (Drupal)"
shortName: "WMA Drupal"
accountName: "WMA Drupal"
viewID: "176409830"
accountId: "1084444827"
webPropertyId: UA-1084444827
internalWebPropertyId: ""
viewName: WMA Drupal Content
timezone: America/Chicago
websiteUrl: www.usgs.gov/mission-areas/water-resources
botFilteringEnabled: "TRUE"
description: >-
WMA's pages in the Drupal content management system, launched in spring of 2019. WMA content is defined
by page paths starting with "water-resources/", "mission-areas/water-resources",
or "/products/data-and-tools/real-time-data/water".
projectContact: "Jen Bruce"
projectContactEmail: "[email protected]"
analyticsContact: "Mario Martin-Alciati"
analyticsContactEmail: "[email protected]"
- longName: "Water Science School (Drupal)"
shortName: "Water Science School (Drupal)"
accountName: "WMA Drupal"
viewID: "186591251"
accountId: "1084444827"
webPropertyId: UA-1084444827
internalWebPropertyId: ""
viewName: WMA Drupal Content
timezone: America/Chicago
websiteUrl: www.usgs.gov/special-topic/water-science-school
botFilteringEnabled: "TRUE"
description: >-
The Water Science School (WaterSciSchool) website offers information on many aspects of water, along with pictures, data,
maps, and an interactive center where you can give opinions and test your water knowledge. This content was
migrated from Natweb in spring of 2019.
projectContact: "Jen Bruce"
projectContactEmail: "[email protected]"
analyticsContact: "Mario Martin-Alciati"
analyticsContactEmail: "[email protected]"
- longName: "National Integrated Water Availability Assessments-Concept Map"
shortName: "IWAAs Water Availability Map"
accountName: "WBEEP"
viewID: "209651718"
accountId: "149352326"
webPropertyId: "UA-149352326-1"
internalWebPropertyId: ""
viewName: Prod Only
timezone: America/Chicago
websiteUrl: https://labs.waterdata.usgs.gov/estimated-availability/#/
botFilteringEnabled: "TRUE"
description: >-
This map shows the latest available daily estimates of natural water storage for approximately 110,000 regions
across the lower forty-eight states. Map shading indicates the current natural water storage relative to historical
conditions for this time of year.
projectContact: "Lindsay Platt"
projectContactEmail: "[email protected]"
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: "NWIS Tableau Data Connector"
shortName: "Tableau Data Connector"
accountName: "USGS Water Data for the Nation"
viewID: "216476377"
accountId: "25350863"
webPropertyId: "UA-25350863-3"
internalWebPropertyId: ""
viewName: "Tableau data connector"
timezone: America/New_York
websiteUrl: https://labs.waterdata.usgs.gov/
botFilteringEnabled: "TRUE"
description: ""
projectContact: ""
projectContactEmail: ""
analyticsContact: "David Watkins"
analyticsContactEmail: "[email protected]"
- longName: "waterservices.usgs.gov web pages"
shortName: "waterservices.usgs.gov"
accountName: "USGS Mobile Water Data & Water Services"
viewID: "83451443"
accountId: "42005086"
webPropertyId: "UA-42005086-2"
internalWebPropertyId: ""
viewName: "All Web Site Data"
timezone: America/Chicago
websiteUrl: https://waterservices.usgs.gov
botFilteringEnabled: "TRUE"
description: ""
projectContact: ""
projectContactEmail: ""
analyticsContact: ""
analyticsContactEmail: ""
- longName: "VizLab: Gages Through the Ages"